/* ============================================================
   Verbana landing — Editorial-Luxury build (Awwwards-tier pass)
   Plain CSS, no build. Warm-OLED + rose/gold + Playfair serif.
   Motion: scroll-reveal, parallax, spotlight, magnetic CTAs.
   ============================================================ */

:root {
  /* palette — warm near-OLED */
  --bg: #0b0709;
  --bg-2: #0f0a0d;
  --card: #150f12;
  --card-2: #1c1419;
  --rose: #e63946;          /* warm rose-red CTA */
  --rose-bright: #ff5765;
  --rose-deep: #bb1b56;     /* deep-rose wordmark */
  --gold: #e3b52b;          /* brass-gold accent */
  --gold-soft: #f0d27a;
  --text: #f7f1f2;
  --muted: #b6a9ae;
  --muted-2: #7e7077;
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);

  --radius-xl: 30px;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);

  /* soft diffused colored shadows (never harsh black) */
  --shadow-soft: 0 30px 60px -28px rgba(0, 0, 0, 0.75), 0 8px 24px -16px rgba(187, 27, 86, 0.18);
  --shadow-pop: 0 40px 90px -30px rgba(230, 57, 70, 0.42), 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  --inset-hi: inset 0 1px 0 rgba(255, 255, 255, 0.10);

  --grad-flame: linear-gradient(135deg, var(--rose-bright) 0%, var(--rose) 48%, var(--gold) 130%);
  --grad-gold: linear-gradient(110deg, var(--gold-soft), var(--gold) 60%, #c98f23);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --space-sec: clamp(96px, 12vw, 176px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient aurora behind dark sections */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 78% -6%, rgba(230, 57, 70, 0.16), transparent 60%),
    radial-gradient(50vw 45vh at 8% 12%, rgba(245, 166, 35, 0.10), transparent 62%),
    radial-gradient(55vw 55vh at 50% 108%, rgba(187, 27, 86, 0.14), transparent 60%),
    var(--bg);
}

/* film grain — fixed, pointer-events none (perf-safe) */
#grain {
  position: fixed; inset: 0; z-index: 9; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* scroll progress */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 60;
  background: var(--grad-flame); box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
  transition: width 0.08s linear;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* eyebrow pill */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  background: rgba(245, 166, 35, 0.07); border: 1px solid rgba(245, 166, 35, 0.22);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}

h1, h2 { font-family: var(--font-display); font-weight: 600; font-optical-sizing: auto; line-height: 1.05; letter-spacing: -0.015em; }
h3 { font-family: var(--font-ui); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }

.section { padding: var(--space-sec) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 18px; line-height: 1.6; }

/* ---------- BUTTONS (pill + button-in-button arrow + magnetic) ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  padding: 15px 18px 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: "↗"; display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; font-size: 0.9rem; font-weight: 600; line-height: 1;
  background: rgba(255, 255, 255, 0.16); color: inherit;
  transition: transform 0.5s var(--ease-spring), background 0.4s var(--ease);
}
.btn:hover::after { transform: translate(3px, -2px) scale(1.06); }
.btn:active { transform: scale(0.975); }
/* sheen sweep */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.7s var(--ease);
}
.btn:hover::before { transform: translateX(130%); }

.btn-primary { background: var(--grad-flame); color: #fff; box-shadow: 0 16px 36px -14px rgba(230, 57, 70, 0.6); background-size: 140% 140%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 56px -16px rgba(230, 57, 70, 0.7); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border-color: var(--line); }
.btn-ghost::after { background: rgba(255, 255, 255, 0.10); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: space-between; }
.btn.is-disabled, .btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn.is-disabled::after, .btn:disabled::after { display: none; }
.btn.is-disabled:hover, .btn:disabled:hover { transform: none; box-shadow: none; }
.btn.is-disabled:hover::before, .btn:disabled:hover::before { transform: translateX(-130%); }

/* ---------- NAV — floating glass island ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 18px 16px; pointer-events: none; }
.nav-inner {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  max-width: 980px; margin: 0 auto; height: 60px; padding: 0 12px 0 24px;
  background: rgba(18, 12, 15, 0.55); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-soft), var(--inset-hi);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(14, 9, 12, 0.78); }
.brand { display: inline-flex; align-items: center; gap: 0; font-family: var(--font-display); font-weight: 600; font-optical-sizing: auto; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--rose-deep); }
.brand .qmark { color: var(--rose-deep); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.nav-cta) { color: var(--muted); font-size: 0.92rem; font-weight: 500; position: relative; transition: color 0.3s var(--ease); }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--grad-gold); transition: width 0.4s var(--ease); }
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.lang-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 700; }
.lang-toggle button { background: none; border: none; color: var(--muted-2); font: inherit; cursor: pointer; padding: 2px 5px; border-radius: 7px; transition: color 0.3s var(--ease); }
.lang-toggle button.active { color: var(--gold); }
.lang-toggle .sep { color: var(--muted-2); }
.nav-cta { padding: 10px 12px 10px 20px; font-size: 0.9rem; }
.nav-cta::after { width: 26px; height: 26px; font-size: 0.8rem; }
.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,0.04); cursor: pointer; position: relative; }
.nav-burger span { position: absolute; left: 11px; width: 18px; height: 1.6px; background: var(--text); border-radius: 2px; transition: transform 0.45s var(--ease-spring), opacity 0.3s var(--ease); }
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 23px; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); top: 23px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; will-change: transform; background: #0b0709 url("/assets/hero-bg.jpg") center 42% / cover no-repeat; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(135% 95% at 50% 22%, rgba(14, 8, 11, 0.10), rgba(14, 8, 11, 0.52) 50%, rgba(11, 7, 9, 0.96) 100%),
    linear-gradient(180deg, rgba(11, 7, 9, 0.55) 0%, transparent 26%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 130px 0 90px; }
.hero-content::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(72% 58% at 50% 44%, rgba(6, 4, 5, 0.66), rgba(6, 4, 5, 0.34) 52%, transparent 78%);
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-2%, -2.5%, 0); }
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 9px 20px; border-radius: 999px; margin-bottom: 30px;
  backdrop-filter: blur(8px); box-shadow: var(--inset-hi);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero h1 { font-size: clamp(2.7rem, 6.8vw, 5.4rem); text-shadow: 0 2px 30px rgba(0, 0, 0, 0.72), 0 1px 6px rgba(0, 0, 0, 0.55); }
.hero h1 .accent { color: var(--gold); display: block; font-style: italic; }
.hero .lede { max-width: 580px; margin: 28px auto 38px; color: rgba(255, 255, 255, 0.9); font-size: clamp(1.05rem, 2vw, 1.22rem); text-shadow: 0 1px 14px rgba(0, 0, 0, 0.78), 0 1px 3px rgba(0, 0, 0, 0.6); }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: grid; place-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-cue .chev { width: 22px; height: 22px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg); animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; } 50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; } }

/* ---------- DOUBLE-BEZEL CARD SYSTEM ---------- */
.card, .step, .tier, .men-row, .amb-stat, .compare-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), var(--inset-hi);
}
/* spotlight that follows cursor (set via --mx/--my in JS) */
.card, .tier, .men-row {
  --mx: 50%; --my: 0%;
}
.card::after, .tier::after, .men-row::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(245, 166, 35, 0.10), transparent 45%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover::after, .tier:hover::after, .men-row:hover::after { opacity: 1; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card.problem-card { padding: 34px; transition: transform 0.5s var(--ease), border-color 0.4s var(--ease); }
.card.problem-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.14); }
.problem-card h3 { font-family: var(--font-display); font-weight: 600; font-optical-sizing: auto; font-size: 1.42rem; margin-bottom: 12px; color: #fff; }
.problem-card p { color: var(--muted); font-size: 1rem; }

/* ---------- SOLUTION ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding: 36px 32px; text-align: left; transition: transform 0.5s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px;
  background: var(--grad-flame); color: #fff; margin-bottom: 22px; box-shadow: 0 12px 28px -10px rgba(230,57,70,0.6);
}
.step h3 { font-size: 1.32rem; margin-bottom: 12px; }
.step p { color: var(--muted); }

/* ---------- FOR MEN ---------- */
.men-rows { display: grid; gap: 16px; max-width: 880px; margin: 0 auto; }
.men-row { padding: 28px 32px; transition: transform 0.5s var(--ease), border-color 0.4s var(--ease); }
.men-row:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.13); }
.men-row .prob { font-weight: 600; color: #fff; font-size: 1.12rem; margin-bottom: 10px; font-family: var(--font-display); }
.men-row .sol { color: var(--muted); }
.men-row .sol .arrow { color: var(--gold); font-weight: 700; }
.men-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 42px; }
.men-badges span { font-weight: 600; font-size: 0.92rem; color: var(--text); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); padding: 11px 22px; border-radius: 999px; }

/* ---------- COMPARISON ---------- */
.compare-wrap { max-width: 940px; margin: 0 auto; overflow: hidden; }
table.compare { width: 100%; border-collapse: collapse; }
table.compare th, table.compare td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.compare thead th { background: rgba(255, 255, 255, 0.03); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
table.compare thead th:nth-child(2) { color: var(--muted); }
table.compare thead th:nth-child(3) { color: var(--gold); }
table.compare tbody td:first-child { color: var(--muted-2); font-size: 0.88rem; font-weight: 600; width: 24%; }
table.compare tbody td:nth-child(2) { color: var(--muted); }
table.compare tbody td:nth-child(3) { color: var(--text); font-weight: 500; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr { transition: background 0.3s var(--ease); }
table.compare tbody tr:hover td { background: rgba(245, 166, 35, 0.04); }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.tier { display: flex; flex-direction: column; padding: 34px 26px; transition: transform 0.5s var(--ease), border-color 0.4s var(--ease); }
.tier:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.14); }
.tier.soon { opacity: 0.9; }
/* featured: animated conic gradient ring */
.tier.featured { border-color: transparent; box-shadow: var(--shadow-pop), var(--inset-hi); }
.tier.featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px; pointer-events: none;
  background: conic-gradient(from 140deg, var(--rose), var(--gold) 30%, var(--rose-deep) 62%, var(--rose));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.tier .tier-tag { position: absolute; top: 16px; right: 16px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }
.tier .popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--font-ui); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--grad-flame); padding: 6px 18px; border-radius: 999px; white-space: nowrap; box-shadow: 0 10px 24px -8px rgba(230,57,70,0.7); }
.tier h3 { font-size: 1.34rem; margin-bottom: 8px; }
.tier .price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; margin-bottom: 22px; }
.tier .price small { font-size: 0.78rem; color: var(--muted); font-weight: 500; font-family: var(--font-ui); }
.tier ul { list-style: none; display: grid; gap: 13px; margin-bottom: 26px; flex: 1; }
.tier li { color: var(--muted); font-size: 0.95rem; padding-left: 28px; position: relative; }
.tier li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: rgba(245,166,35,0.14); }
.tier li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 5px; height: 8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(40deg); }
.tier .btn { margin-top: auto; }
.pay-note { text-align: center; color: var(--muted-2); font-size: 0.9rem; margin-top: 30px; }

/* ---------- AMBASSADOR ---------- */
.amb-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.amb-inner > div:first-child { text-align: left; }
.amb-list { list-style: none; display: grid; gap: 13px; margin: 24px 0 30px; }
.amb-list li { padding-left: 30px; position: relative; color: var(--muted); }
.amb-list li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.amb .note { color: var(--muted-2); font-size: 0.85rem; margin-top: 18px; }
.amb-stats { display: grid; gap: 18px; }
.amb-stat { padding: 30px 32px; text-align: center; }
.amb-stat .big { font-family: var(--font-display); font-weight: 800; font-size: 3rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.amb-stat .lbl { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }

/* ---------- FINAL CTA ---------- */
.final { text-align: center; }
.final h2 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); }
.final h2 .accent { color: var(--gold); font-style: italic; }
.final p { color: var(--muted); font-size: 1.14rem; margin: 24px auto 34px; max-width: 540px; }
.final .sub-note { font-size: 0.98rem; color: var(--muted-2); margin-top: 28px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 72px 0 48px; background: var(--bg-2); position: relative; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; margin-bottom: 46px; }
.footer .brand { margin-bottom: 14px; }
.footer .tagline { color: var(--muted); font-size: 0.95rem; }
.footer .copy { color: var(--muted-2); font-size: 0.84rem; margin-top: 16px; }
.footer h4 { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--muted); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 28px; color: var(--muted-2); font-size: 0.82rem; }
.footer-bottom .legal-blurb { margin-top: 10px; max-width: 780px; line-height: 1.6; }

/* ---------- COOKIE ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 580px; margin: 0 auto;
  background: rgba(21, 15, 18, 0.82); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-soft), var(--inset-hi);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transform: translateY(0); transition: transform 0.6s var(--ease-spring), opacity 0.4s var(--ease);
}
.cookie.hidden { transform: translateY(160%); opacity: 0; pointer-events: none; }
.cookie p { color: var(--muted); font-size: 0.92rem; flex: 1; min-width: 200px; }
.cookie .cookie-btns { display: flex; gap: 10px; }
.cookie .btn { padding: 10px 18px; font-size: 0.88rem; }
.cookie .btn::after { display: none; }
.cookie .btn { padding-right: 18px; }

/* ---------- SCROLL REVEAL (added by JS via .reveal) ---------- */
.reveal { opacity: 0; transform: translateY(38px); filter: blur(8px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); transition-delay: var(--d, 0ms); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* ---------- LEGAL PAGES ---------- */
.legal { max-width: 800px; margin: 0 auto; padding: 130px 0 100px; }
.legal h1 { font-size: clamp(2rem, 4.4vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted-2); font-size: 0.9rem; margin-bottom: 34px; }
.legal h2 { font-family: var(--font-display); font-size: 1.36rem; margin: 38px 0 14px; color: #fff; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; color: var(--muted); display: grid; gap: 8px; }
.legal a { color: var(--gold); }
.legal .back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); margin-bottom: 34px; font-size: 0.95rem; transition: color 0.3s var(--ease); }
.legal .back:hover { color: var(--gold); }
.legal hr { border: none; border-top: 1px solid var(--line-soft); margin: 28px 0; }
.legal strong { color: var(--text); }

/* ---------- FIXED CINEMATIC BACKGROUND (scroll-scrubbed crossfade) ---------- */
#cine-bg { position: fixed; inset: 0; z-index: -1; background: var(--bg); overflow: hidden; }
.cine-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; will-change: opacity; }
.cine-scene[data-scene="0"] { opacity: 1; }
.page-solid { position: relative; z-index: 1; background: var(--bg); }

.section-cine { position: relative; overflow: hidden; background: transparent; }
.section-cine > .container { position: relative; z-index: 2; }
.section-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,5,7,0.58) 0%, rgba(8,5,7,0.34) 30%, rgba(8,5,7,0.34) 70%, rgba(8,5,7,0.62) 100%);
}
.section-cine .problem-card {
  background: rgba(20, 13, 17, 0.46); backdrop-filter: blur(16px) saturate(120%);
  border-color: rgba(255, 255, 255, 0.10);
}
@media (max-width: 820px) {
  /* PORTRAIT-FIRST (Device-Lens Gate): phones get native 9:16 scene art, NOT cropped 16:9.
     Desktop keeps its approved 16:9 videos; mobile swaps to portrait stills (fast + correct framing). */
  .cine-scene { display: none; }
  /* NO fixed bg on mobile — a position:fixed bg fights the iOS address-bar show/hide and
     twitches on scroll-direction change. Put each scene on its own section so it scrolls naturally. */
  #cine-bg { display: none; }
  .hero { background-image: url("/assets/scene-hero-portrait.jpg"); background-size: cover; background-position: center; }
  #problema.section-cine { background-image: url("/assets/scene-problema-portrait.jpg"); background-size: cover; background-position: center; }
  .section-scene > .scene-bg { display: none; }
  #como-funciona.section-scene { background-image: url("/assets/scene-solucion-portrait.jpg"); background-size: cover; background-position: center; }
  .final.section-scene { background-image: url("/assets/scene-cta-portrait.jpg"); background-size: cover; background-position: center; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 76px; left: 16px; right: 16px; padding: 26px 28px;
    background: rgba(14, 9, 12, 0.92); backdrop-filter: blur(24px);
    border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  }
  .nav-links.open .nav-cta { width: 100%; justify-content: space-between; }
  .nav-burger { display: block; }
  .grid-2, .steps, .pricing-grid { grid-template-columns: 1fr; }
  .amb-inner { grid-template-columns: 1fr; gap: 40px; }
  .amb-inner > div:first-child { text-align: center; }
  .amb-list { justify-items: start; max-width: 360px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  table.compare th, table.compare td { padding: 13px 14px; font-size: 0.9rem; }
  .hero-content { padding: 120px 0 80px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .tier.featured::before { animation: none; }
  .btn::before { display: none; }
}

/* ---------- SCENE-BACKED SECTIONS (still preview; swap <img.scene-bg> for boomerang <video> at animate) ---------- */
.section-scene { position: relative; overflow: hidden; }
.section-scene > .scene-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.section-scene > .section-scrim { z-index: 1; }
.section-scene > .container { position: relative; z-index: 2; }
.section-scene .step,
.section-scene .card { background: rgba(20, 13, 17, 0.54); backdrop-filter: blur(16px) saturate(120%); border-color: rgba(255, 255, 255, 0.10); }
.section.final.section-scene h2,
.section.final.section-scene p { text-shadow: 0 2px 26px rgba(0, 0, 0, 0.82), 0 1px 4px rgba(0, 0, 0, 0.6); }
.section.final.section-scene .sub-note { color: rgba(255, 255, 255, 0.72); }

/* ---------- PLAN-TYPES SHOWCASE STRIP ---------- */
.planes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.plan-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: transform 700ms cubic-bezier(0.32, 0.72, 0, 1), box-shadow 700ms cubic-bezier(0.32, 0.72, 0, 1); }
.plan-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(0.32, 0.72, 0, 1); }
.plan-tile .plan-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8, 5, 7, 0.08) 28%, rgba(8, 5, 7, 0.42) 62%, rgba(8, 5, 7, 0.88) 100%); }
.plan-tile .plan-txt { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 22px; }
.plan-tile .plan-kicker { font-family: var(--font-ui); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.plan-tile h3 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.3rem; line-height: 1.1; margin-top: 7px; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72); }
.plan-tile:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.plan-tile:hover img { transform: scale(1.06); }
@media (max-width: 820px) { .planes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .planes-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- FINAL CTA over a scene: text on the dark LEFT, subject stays clear on the right ---------- */
.final.section-scene { text-align: left; }
.final.section-scene > .section-scrim {
  background: linear-gradient(90deg, rgba(8, 5, 7, 0.90) 0%, rgba(8, 5, 7, 0.74) 30%, rgba(8, 5, 7, 0.32) 58%, rgba(8, 5, 7, 0.06) 80%, transparent 100%);
}
.final.section-scene h2 { max-width: 560px; }
.final.section-scene p { max-width: 480px; margin-left: 0; }
@media (max-width: 760px) {
  .final.section-scene { text-align: center; }
  .final.section-scene > .section-scrim {
    background: linear-gradient(180deg, rgba(8, 5, 7, 0.52) 0%, rgba(8, 5, 7, 0.48) 48%, rgba(8, 5, 7, 0.80) 100%);
  }
  .final.section-scene h2 { max-width: 100%; }
  .final.section-scene p { max-width: 100%; margin-left: auto; }
}

/* ==================== POLISH PASS — 2026-05-30 (mobile-first audit) ==================== */
html, body { overflow-x: hidden; }

/* Pricing — draw the eye to the live FREE tier (the paid ones are "Próximamente"/disabled) */
.tier:not(.soon) {
  border-color: rgba(245, 166, 35, 0.42);
  box-shadow: var(--shadow-soft), var(--inset-hi),
    0 0 0 1px rgba(245, 166, 35, 0.22), 0 20px 54px -24px rgba(245, 166, 35, 0.5);
}

/* For men — bigger, clearer copy + badges that read as designed chips, not floaters */
.men-row .prob { font-size: 1.22rem; }
.men-row .sol { font-size: 1.04rem; line-height: 1.55; }
.men-badges { gap: 12px; margin-top: 48px; }
.men-badges span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.98rem; padding: 13px 22px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft), var(--inset-hi);
}
.men-badges span::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--grad-flame); box-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
}

/* Comparison — the 3-col table is cramped on phones; restyle each row as a stacked card */
@media (max-width: 720px) {
  .compare-wrap { background: none; border: none; box-shadow: none; overflow: visible; }
  table.compare, table.compare tbody, table.compare tr, table.compare td { display: block; width: 100%; }
  table.compare thead { display: none; }
  table.compare tr {
    background: linear-gradient(180deg, var(--card-2), var(--card));
    border: 1px solid var(--line-soft); border-radius: var(--radius);
    box-shadow: var(--shadow-soft); padding: 18px 20px; margin-bottom: 14px;
  }
  table.compare td { border: none !important; padding: 3px 0; width: 100% !important; }
  table.compare tbody td:first-child {
    font-family: var(--font-display); font-size: 1.08rem; color: #fff;
    font-weight: 700; margin-bottom: 10px;
  }
  table.compare tbody td:nth-child(2) { color: var(--muted); }
  table.compare tbody td:nth-child(2)::before { content: "Tinder / Bumble — "; color: var(--muted-2); font-weight: 600; }
  table.compare tbody td:nth-child(3) { color: #fff; margin-top: 3px; }
  table.compare tbody td:nth-child(3)::before { content: "Verbana — "; color: var(--gold); font-weight: 700; }
}

/* ==================== POLISH v2 — 2026-05-30 ==================== */

/* FOR MEN — the 3 items as icon feature cards (were plain floating pills "sitting there") */
.men-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin: 48px auto 0; }
.men-feat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 30px 24px; background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-soft), var(--inset-hi); }
.men-feat-ic { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: rgba(245, 166, 35, 0.10); border: 1px solid rgba(245, 166, 35, 0.24); color: var(--gold); }
.men-feat-ic svg { width: 28px; height: 28px; }
.men-feat h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: #fff; line-height: 1.2; }
@media (max-width: 600px) {
  .men-features { grid-template-columns: 1fr; gap: 12px; }
  .men-feat { flex-direction: row; text-align: left; padding: 18px 20px; gap: 16px; }
  .men-feat-ic { width: 48px; height: 48px; flex: none; }
}

/* PACKAGES — gold aura + gentle levitate (GPU transform = mobile-safe) */
@keyframes qfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.pricing-grid .tier { animation: qfloat 6s var(--ease) infinite; box-shadow: var(--shadow-soft), var(--inset-hi), 0 34px 64px -36px rgba(245, 166, 35, 0.42); }
.pricing-grid .tier:nth-child(2) { animation-delay: 1.2s; }
.pricing-grid .tier:nth-child(3) { animation-delay: 2.4s; }
.pricing-grid .tier:nth-child(4) { animation-delay: 0.6s; }
.pricing-grid .tier:hover { animation-play-state: paused; }
.pricing-grid .tier:not(.soon) { box-shadow: var(--shadow-soft), var(--inset-hi), 0 0 0 1px rgba(245, 166, 35, 0.3), 0 34px 70px -32px rgba(245, 166, 35, 0.6); }

/* SCROLL-TWITCH fixes (mobile): smooth-scroll fights touch; 100dvh resizes with the iOS address
   bar (the direction-change twitch) -> use stable svh; drop the fixed mix-blend grain that
   re-composites every scroll tick. Plus gentle Ken-Burns gives mobile "life" without video. */
@keyframes qkenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (max-width: 820px) {
  html { scroll-behavior: auto; }
  .hero { min-height: 100svh; }
  #grain { display: none; }
  .plan-tile img { animation: qkenburns 16s ease-in-out infinite alternate; }
}

/* ==================== RICHNESS PASS — 2026-05-30 (lower sections felt flat/basic) ==================== */
/* Root cause: the opaque .page-solid bg covered the ambient aurora, so the whole lower half
   went flat black while the top stayed cinematic. Give the lower half its own dimensional depth. */
.page-solid {
  background:
    radial-gradient(75vw 38vh at 86% 1%, rgba(245, 166, 35, 0.08), transparent 58%),
    radial-gradient(62vw 40vh at 5% 22%, rgba(230, 57, 70, 0.07), transparent 60%),
    radial-gradient(58vw 36vh at 95% 52%, rgba(187, 27, 86, 0.07), transparent 60%),
    radial-gradient(82vw 50vh at 50% 99%, rgba(245, 166, 35, 0.06), transparent 64%),
    var(--bg);
}

/* Eyebrow kickers as glowing chips (high-end pattern) — richer section headers */
.section-head .kicker {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: rgba(245, 166, 35, 0.08); border: 1px solid rgba(245, 166, 35, 0.22);
  color: var(--gold); letter-spacing: 0.22em;
}

/* Problem + solution cards — a thin gold top-accent so they read as crafted, not flat boxes */
.card.problem-card, .step { position: relative; overflow: hidden; }
.card.problem-card::before, .step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.75), transparent);
  opacity: 0.5;
}

/* Comparison — crown the Verbana column (gold wash) + ✓/✕ in the header (desktop) */
table.compare thead th:nth-child(2)::after { content: "  ✕"; color: #c75c5c; }
table.compare thead th:nth-child(3)::after { content: "  ✓"; color: var(--gold); }
table.compare tbody td:nth-child(3) { background: rgba(245, 166, 35, 0.06); }
@media (max-width: 720px) {
  table.compare thead th:nth-child(2)::after, table.compare thead th:nth-child(3)::after { content: ""; }
  table.compare tbody td:nth-child(3) { background: none; }
}

/* Pricing now has 2 tiers (Free + Standard) — center them on desktop (mobile stacks via the 880 rule) */
@media (min-width: 881px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
}


/* ==================== TRANSITION SMOOTHING — 2026-06-10 ==================== */
/* Heavier, slower glide so sections flow in rather than snap (Chris: early sections felt abrupt) */
.reveal { transition: opacity 1.05s var(--ease), transform 1.05s var(--ease), filter 1.05s var(--ease); transform: translateY(46px); filter: blur(10px); }
/* Soften the boundary where the fixed cinematic bg hands off to the solid lower half */
.page-solid::after { content: ""; position: absolute; top: -90px; left: 0; right: 0; height: 90px; pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, transparent, var(--bg)); }

/* ==================== MOBILE SECTION BLEND — 2026-06-10 ==================== */
/* Dissolve the hard image-to-image seam between full-bleed scene sections on mobile.
   Pure CSS inset shadow — NO scroll JS, so zero scroll friction. Each scene fades its
   top + bottom edge into the dark bg, so adjacent sections melt through a shared dark band. */
@media (max-width: 820px) {
  .hero,
  #problema.section-cine,
  #como-funciona.section-scene,
  .final.section-scene {
    box-shadow: inset 0 100px 82px -55px var(--bg), inset 0 -100px 82px -55px var(--bg);
  }
}
