/* Design tokens ported 1:1 from napeledelas_flutter/lib/core/theme
   (app_colors.dart, app_typography.dart, app_dimens.dart) so this page reads
   as the same product as the app. */

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --plum: #6D214F;
  --rose: #B33771;
  --violet: #82589F;
  --bg-rose: #FDF2F7;
  --field-bg: #FFFAFD;
  --border: #F9E6EE;
  --white: #FFFFFF;
  --ink: #1A1A1A;

  --radius-card: 32px;
  --radius-pill: 999px;
  --shadow-card: 0 6px 20px rgba(109, 33, 79, 0.06);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-xxl: 24px;
  --space-section: 32px;

  --content-max-width: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-rose);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}
.header__row {
  display: flex;
  align-items: center;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  object-fit: contain;
}
.brand__name {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--plum);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: var(--white);
  padding: var(--space-section) 0 40px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 var(--space-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
}
.hero__title {
  margin: 0 0 var(--space-lg);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.2;
}
.hero__title em {
  font-weight: 700;
}
.hero__subtitle {
  margin: 0 auto;
  max-width: 480px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

/* Options */
.options {
  display: grid;
  gap: var(--space-xxl);
  padding: var(--space-section) var(--gutter) var(--space-section);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-xxl);
}

.card__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  background: var(--bg-rose);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--android { color: #059669; background: #ECFDF5; }
.card__icon--ios { color: var(--violet); background: #F5F3FF; }

.card__title {
  margin: 0 0 var(--space-xs);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--plum);
}
.card__lead {
  margin: 0;
  font-size: 14px;
  color: #4B4B4B;
}

.badge {
  display: inline-block;
  margin-bottom: var(--space-md);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--rose);
  background: var(--bg-rose);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.card__steps {
  margin: 0 0 var(--space-xl);
  padding-left: 22px;
  color: #333;
  font-size: 15px;
}
.card__steps li + li { margin-top: var(--space-sm); }

.btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px var(--space-xl);
  border-radius: var(--radius-pill);
  transition: opacity 0.15s ease;
}
.btn:active { opacity: 0.85; }

.btn--primary {
  background: linear-gradient(90deg, var(--plum), var(--rose));
  color: var(--white);
}

/* Footer */
.footer {
  padding: var(--space-xxl) 0 40px;
  text-align: center;
}
.footer p {
  margin: 0;
  font-size: 13px;
  color: #7A7A7A;
}

@media (min-width: 640px) and (max-width: 899px) {
  .options {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

@media (min-width: 900px) {
  .options {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}
