/* ===== Skip link ===== */
.skip-link {
  position: fixed; top: var(--s2); left: var(--s2); z-index: 9999;
  padding: 12px 20px; background: var(--brand-darker); color: #fff;
  border-radius: var(--r-sm); font-weight: 600; font-size: var(--fs-sm);
  text-decoration: none; transform: translateY(-200%);
  transition: transform var(--t-base) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ===== Base ===== */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { letter-spacing: -.015em; line-height: 1.15; font-family: var(--font-display); }
h1 { font-size: var(--fs-3xl); font-weight: 800; }
h2 { font-size: var(--fs-2xl); font-weight: 800; }
h3 { font-size: var(--fs-xl);  font-weight: 700; }
h4 { font-size: var(--fs-base); font-weight: 700; font-family: var(--font-body); }
a  { color: inherit; }

/* ===== Layout ===== */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--s7); }
.section-head { max-width: 640px; margin-bottom: var(--s6); }
.section-head h2 { margin-block: var(--s2); }
.section-head p { color: var(--text-2); font-size: var(--fs-lg); line-height: 1.65; }
.center { text-align: center; margin-inline: auto; }

/* ===== Pill label (eyebrow) ===== */
.pill-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: var(--r-full);
  background: var(--brand-soft); color: var(--brand-darker);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: var(--s2);
}
.pill-label--gold { background: var(--accent-soft); color: #7a5200; }
.pill-label--light { background: rgba(255,255,255,.15); color: #fff; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-full);
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap; text-decoration: none; border: none;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base);
}
.btn:active { transform: scale(.97) !important; }

.btn--primary {
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  color: #fff; box-shadow: var(--sh-brand);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(119,158,204,.50); }

.btn--accent {
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #2a1a00; box-shadow: var(--sh-accent);
}
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,209,102,.60); }

.btn--ghost {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }

.btn--white {
  background: #fff; color: var(--brand-darker);
  box-shadow: var(--sh-sm);
}
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.btn--lg { padding: 18px 36px; font-size: var(--fs-base); }

/* ===== Nav ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t-slow), box-shadow var(--t-slow);
}
.nav.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--s4); }

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; flex: none; }
.logo__mark {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, var(--brand), var(--brand-darker));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  box-shadow: var(--sh-sm);
}
.logo__word { font-size: var(--fs-base); color: var(--text); }

.nav__menu { display: flex; align-items: center; gap: var(--s3); }
.nav__menu a {
  font-size: var(--fs-sm); font-weight: 600; color: var(--text-2);
  text-decoration: none; transition: color var(--t-fast); white-space: nowrap;
}
.nav__menu a:not(.btn):hover { color: var(--text); }
.nav__menu .btn { display: none; }

.nav__cta { display: flex; align-items: center; gap: var(--s2); }
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; background: transparent;
  align-items: center; justify-content: center; cursor: pointer; border: 2px solid var(--border);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav__toggle:hover { border-color: var(--brand-soft); background: var(--brand-soft); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: var(--r-full);
  position: relative; transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle span::before { position: absolute; top: -5px; }
.nav__toggle span::after  { position: absolute; top:  5px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { transform: translateY(5px) rotate(45deg); }
.nav.open .nav__toggle span::after  { transform: translateY(-5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; padding-top: 120px; padding-bottom: var(--s8);
  overflow: hidden; text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 60% at 80% 10%, rgba(119,158,204,.16), transparent 65%),
    radial-gradient(50% 50% at 20% 80%, rgba(255,209,102,.13), transparent 65%),
    radial-gradient(35% 45% at 50% 50%, rgba(119,158,204,.07), transparent 70%),
    var(--bg);
}

/* Floating badges */
.hero__badges { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.badge-float {
  position: absolute; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--r-full); font-weight: 700;
  font-size: var(--fs-sm); background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  animation: heroFloat 7s var(--ease) infinite;
  white-space: nowrap;
}
.badge-float--1 { top: 18%; left: 4%;  animation-delay:    0s; }
.badge-float--2 { top: 22%; right: 3%; animation-delay: -1.4s; }
.badge-float--3 { top: 48%; left: 2%;  animation-delay: -2.8s; }
.badge-float--4 { top: 52%; right: 2%; animation-delay: -4.2s; }
.badge-float--5 { bottom: 28%; left: 6%;  animation-delay: -0.7s; }
.badge-float--6 { bottom: 24%; right: 5%; animation-delay: -3.5s; }
.badge-float--7 { top: 34%; left: 10%;  animation-delay: -2.1s; }
.badge-float--8 { top: 38%; right: 9%; animation-delay: -5.6s; }
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-14px) rotate(-1.5deg); }
  66%      { transform: translateY(-7px)  rotate(1deg); }
}

.hero__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.hero h1 { margin-block: var(--s3); letter-spacing: -.02em; line-height: 1.1; }
.text-gradient {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  letter-spacing: .01em;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub { font-size: var(--fs-lg); color: var(--text-2); line-height: 1.7; margin-bottom: var(--s5); max-width: 580px; margin-inline: auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-bottom: var(--s6); }

.hero__stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat { padding-inline: var(--s4); }
.stat__num { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 800; color: var(--text); line-height: 1; }
.stat__label { font-size: var(--fs-xs); color: var(--text-3); margin-top: 4px; font-weight: 600; letter-spacing: .03em; }
.stat__divider { width: 1px; height: 40px; background: var(--border); flex: none; }

/* ===== Problem section ===== */
.problem { background: var(--surface); }
.problem__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.problem-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: var(--s4);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), border-color var(--t-base);
  position: relative; overflow: hidden;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.problem-card__ico {
  font-size: 2.5rem; display: block; margin-bottom: var(--s3);
  line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.10));
}
.problem-card h3 { font-size: var(--fs-base); margin-bottom: var(--s1); }
.problem-card p { color: var(--text-2); font-size: var(--fs-sm); line-height: 1.6; }

/* ===== Solution / Match showcase ===== */
.match-showcase {
  display: grid; grid-template-columns: 420px 1fr;
  gap: var(--s6); align-items: center;
}
.match-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: var(--s4); box-shadow: var(--sh-lg);
  position: relative;
}
.match-card::before {
  content: ""; position: absolute; top: 0; left: var(--s4); right: var(--s4); height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 0 0 var(--r-full) var(--r-full);
}
.match-card__header {
  display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s3);
  flex-wrap: wrap;
}
.match-avatars { display: flex; align-items: center; position: relative; }
.avatar { width: 52px; height: 52px; border-radius: var(--r-full); object-fit: cover; border: 3px solid var(--bg); box-shadow: var(--sh-sm); }
.match-avatars .avatar:last-child { margin-left: -16px; }
.match-heart {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  font-size: 1rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}
.match-names h3 { font-size: var(--fs-base); margin-bottom: 0; }
.match-names span { font-size: var(--fs-xs); color: var(--text-3); }
.match-score-badge {
  margin-left: auto; background: var(--brand-soft); border-radius: var(--r-lg);
  padding: 10px 16px; text-align: center;
}
.match-score-badge span:first-child { font-size: 1.5rem; font-weight: 900; color: var(--brand-dark); letter-spacing: -.04em; }
.match-score-badge span:last-of-type { font-size: var(--fs-sm); font-weight: 800; color: var(--brand-dark); }
.match-score-badge small { display: block; font-size: var(--fs-xs); color: var(--text-3); font-weight: 600; }
.match-interests__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--s2); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s3); }
.tag {
  padding: 7px 14px; border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 700; background: var(--brand-soft); color: var(--brand-darker);
  border: 1px solid rgba(119,158,204,.20);
}
.compat-bars { display: grid; gap: 10px; margin-bottom: var(--s3); }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-label { font-size: var(--fs-xs); font-weight: 600; color: var(--text-2); width: 60px; flex: none; }
.bar-track { flex: 1; height: 8px; border-radius: var(--r-full); background: var(--surface-2); overflow: hidden; }
.bar-fill { height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--success)); transition: width 1.4s var(--ease); }
.bar-pct { font-size: var(--fs-xs); font-weight: 700; color: var(--brand-dark); width: 32px; flex: none; text-align: right; }
.match-card__footer { font-size: var(--fs-xs); color: var(--text-3); font-weight: 600; padding-top: var(--s2); border-top: 1px solid var(--border); }

.solution__features { display: grid; gap: var(--s4); }
.feature-item { display: flex; gap: var(--s3); align-items: flex-start; }
.feature-ico {
  font-size: 1.75rem; flex: none; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: var(--r-lg);
  background: var(--brand-soft); filter: drop-shadow(0 4px 8px rgba(0,0,0,.06));
}
.feature-item h4 { font-size: var(--fs-base); margin-bottom: 4px; }
.feature-item p  { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.55; }

/* ===== How it works (Steps) ===== */
.steps-section { background: var(--surface); }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: var(--s4); }
.step__num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: var(--brand); opacity: .22; line-height: 1; margin-bottom: var(--s2);
}
.step__ico { font-size: 2.5rem; display: block; margin-bottom: var(--s2); }
.step h3  { font-size: var(--fs-lg); margin-bottom: var(--s1); }
.step p   { color: var(--text-2); font-size: var(--fs-sm); line-height: 1.6; max-width: 240px; margin-inline: auto; }
.step__connector {
  flex: none; width: 80px; height: 2px; margin-top: 100px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

/* ===== Experiences ===== */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.exp-card {
  background: var(--card-bg, var(--surface)); border-radius: var(--r-xl);
  padding: var(--s4); text-align: center;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
  border: 1.5px solid transparent;
}
.exp-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--sh-md); }
.exp-card__ico {
  font-size: 2.25rem; display: grid; place-items: center;
  width: 68px; height: 68px; border-radius: var(--r-lg);
  background: var(--card-ico-bg, rgba(255,255,255,.6));
  margin: 0 auto var(--s3);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.exp-card h3 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 4px; }
.exp-card p  { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.5; }

/* ===== AI Wingman ===== */
.wingman { background: var(--surface); }
.wingman__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center; }
.feat-list { display: grid; gap: var(--s3); margin-top: var(--s4); }
.feat-item { display: flex; gap: var(--s2); align-items: flex-start; }
.feat-ico {
  font-size: 1.5rem; flex: none; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: var(--r-md);
  background: var(--bg); box-shadow: var(--sh-sm); border: 1.5px solid var(--border);
}
.feat-item h4 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 2px; }
.feat-item p  { font-size: var(--fs-xs); color: var(--text-2); }

/* Phone mockup */
.phone-mockup {
  max-width: 340px; margin-inline: auto;
  background: var(--bg); border-radius: 36px;
  box-shadow: var(--sh-xl), 0 0 0 2px rgba(0,0,0,.08);
  overflow: hidden; border: 2px solid rgba(0,0,0,.06);
}
.phone-status {
  background: var(--text); color: #fff; padding: 8px 20px;
  display: flex; justify-content: space-between;
  font-size: .7rem; font-weight: 600; letter-spacing: .05em;
}
.phone-header {
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
}
.phone-avatar {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: rgba(255,255,255,.25); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .85rem; flex: none;
}
.phone-header__info b    { display: block; font-size: var(--fs-sm); color: #fff; }
.phone-header__info small { font-size: var(--fs-xs); color: rgba(255,255,255,.8); }
.chat-messages { padding: var(--s2); display: flex; flex-direction: column; gap: 8px; min-height: 200px; }
.bubble { padding: 10px 14px; border-radius: 18px; font-size: var(--fs-xs); line-height: 1.5; max-width: 88%; }
.bubble--ai { background: var(--surface-2); color: var(--text); border-bottom-left-radius: 5px; align-self: flex-start; }
.bubble--me { background: linear-gradient(145deg, var(--brand), var(--brand-dark)); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.chat-composer {
  display: flex; gap: 8px; padding: var(--s2);
  border-top: 1px solid var(--border);
}
.chat-composer input {
  flex: 1; padding: 10px 14px; border-radius: var(--r-full);
  border: 1.5px solid var(--border); background: var(--surface); font-size: var(--fs-xs);
  color: var(--text-3); font-family: var(--font-body);
}
.chat-composer button {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--brand); color: #fff; border: none; cursor: not-allowed;
  display: grid; place-items: center; font-size: 1rem;
}

/* ===== Human Matchmaking ===== */
.matchmaking__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s6); align-items: center; }
.matchmaking__card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl); aspect-ratio: 5/4;
}
.matchmaking__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.matchmaking__badge {
  position: absolute; left: var(--s3); bottom: var(--s3); right: var(--s3);
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md); padding: var(--s2) var(--s3);
  display: flex; align-items: center; gap: var(--s2);
  box-shadow: var(--sh-sm); border: 1px solid rgba(255,255,255,.6);
}
.badge-ico { font-size: 1.5rem; flex: none; }
.matchmaking__badge b    { display: block; font-size: var(--fs-xs); font-weight: 700; margin-bottom: 2px; }
.matchmaking__badge span { font-size: var(--fs-xs); color: var(--text-2); }
.matchmaking__stats { display: flex; gap: var(--s4); margin-top: var(--s4); flex-wrap: wrap; }
.mstat { text-align: center; }
.mstat__n { display: block; font-size: var(--fs-xl); font-weight: 900; color: var(--brand-dark); letter-spacing: -.03em; }
.mstat__l { font-size: var(--fs-xs); color: var(--text-3); font-weight: 600; letter-spacing: .03em; }

/* ===== Community / Founding ===== */
.community { background: linear-gradient(160deg, rgba(119,158,204,.07), var(--bg) 60%); }
.founding-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); align-items: center;
  background: var(--bg); border-radius: var(--r-2xl); padding: var(--s6);
  position: relative; overflow: hidden;
  box-shadow: var(--sh-md);
}
.founding-box::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--brand), var(--accent), var(--brand));
  background-size: 200% 200%; animation: gradientShift 6s ease infinite;
}
.founding-box::after {
  content: ""; position: absolute; inset: 2px; border-radius: calc(var(--r-2xl) - 2px); z-index: -1;
  background: var(--bg);
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.founding-box__benefits { display: grid; gap: var(--s2); }
.benefit { display: flex; align-items: center; gap: var(--s2); }
.benefit-ico { font-size: 1.25rem; flex: none; width: 36px; height: 36px; display: grid; place-items: center; background: var(--surface); border-radius: var(--r-sm); }
.benefit span { font-size: var(--fs-sm); font-weight: 600; }

/* ===== Safety ===== */
.safety__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.safety-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: var(--s5); text-align: center;
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), border-color var(--t-base);
}
.safety-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--brand-soft); }
.safety-card__ico { font-size: 2.5rem; display: block; margin-bottom: var(--s3); }
.safety-card h3  { font-size: var(--fs-base); margin-bottom: var(--s1); }
.safety-card p   { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6; }

/* ===== Testimonials ===== */
.testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
.tcard {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: var(--s4); box-shadow: var(--sh-sm);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), border-color var(--t-base);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--brand-soft); }
.tcard__stars { color: var(--accent-dark); font-size: var(--fs-sm); letter-spacing: 3px; margin-bottom: var(--s2); }
.tcard blockquote {
  font-family: var(--font-accent); font-size: var(--fs-xl); line-height: 1.45;
  margin-bottom: var(--s3); color: var(--text); font-weight: 600; font-style: italic;
}
.tcard__who { display: flex; align-items: center; gap: 10px; }
.tcard__who img { width: 42px; height: 42px; border-radius: var(--r-full); object-fit: cover; }
.tcard__who b    { display: block; font-size: var(--fs-sm); font-weight: 700; }
.tcard__who span { font-size: var(--fs-xs); color: var(--text-3); }

/* ===== FAQ ===== */
.faq__list { max-width: 700px; margin-inline: auto; display: grid; gap: 10px; }
.faq__item {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq__item[open] { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(119,158,204,.12); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s3); padding: var(--s3) var(--s4); cursor: pointer;
  font-weight: 700; font-size: var(--fs-sm); list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { display: none; }
.faq__q::after {
  content: "+"; flex: none; width: 28px; height: 28px; border-radius: var(--r-full);
  background: var(--surface-2); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.1rem; font-weight: 700;
  transition: transform var(--t-slow) var(--ease-spring), background var(--t-base), color var(--t-base);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq__a { padding: 0 var(--s4) var(--s4); }
.faq__a p { color: var(--text-2); font-size: var(--fs-sm); line-height: 1.75; }

/* ===== Waitlist Form ===== */
.waitlist { background: var(--surface); }
.form-shell {
  max-width: 640px; margin-inline: auto;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-2xl); padding: var(--s5); box-shadow: var(--sh-xl);
  position: relative;
}
.form-shell::before {
  content: ""; position: absolute; top: 0; left: var(--s5); right: var(--s5); height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
  border-radius: 0 0 var(--r-full) var(--r-full);
  background-size: 200% 100%; animation: gradientShift 4s ease infinite;
}

/* Progress bar */
.progress { display: flex; align-items: center; gap: 10px; margin-bottom: var(--s3); }
.progress__bar { flex: 1; height: 6px; border-radius: var(--r-full); background: var(--surface-2); overflow: hidden; }
.progress__fill { height: 100%; width: calc(100% / 7); background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: inherit; transition: width .5s var(--ease); }
.progress__txt { font-size: var(--fs-xs); font-weight: 700; color: var(--text-3); white-space: nowrap; }

/* Step dots */
.progress__steps { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: var(--s4); }
.pstep {
  width: 28px; height: 28px; border-radius: var(--r-full); border: 2px solid var(--border);
  display: grid; place-items: center; font-size: var(--fs-xs); font-weight: 700;
  color: var(--text-3); transition: all var(--t-base) var(--ease);
}
.pstep.active { background: var(--brand); border-color: var(--brand); color: #fff; transform: scale(1.15); box-shadow: var(--sh-brand); }
.pstep.done { background: var(--success); border-color: var(--success); color: #fff; }

/* Step layout */
.fstep { display: none; }
.fstep.active { display: block; animation: stepIn .38s var(--ease-spring); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px) scale(.99); }
  to   { opacity: 1; transform: none; }
}

.step-header {
  display: flex; align-items: flex-start; gap: var(--s3);
  padding: var(--s3); margin-bottom: var(--s4);
  background: var(--surface); border-radius: var(--r-lg);
  border: 1.5px solid var(--border-soft);
}
.step-icon { font-size: 2.5rem; flex: none; line-height: 1; margin-top: 2px; }
.step-header h3 { font-size: var(--fs-xl); margin-bottom: 4px; letter-spacing: -.025em; }
.step-header p  { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.5; }

/* Fields */
.field { margin-bottom: var(--s3); }
.field label {
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.field-optional { font-weight: 400; letter-spacing: 0; text-transform: none; font-size: var(--fs-xs); color: var(--text-3); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface); font-size: var(--fs-sm);
  color: var(--text); font-family: var(--font-body);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: var(--bg);
  box-shadow: 0 0 0 4px rgba(119,158,204,.15);
}
.field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.field select   { cursor: pointer; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }

/* Errors */
.err { color: #DC2626; font-size: var(--fs-xs); font-weight: 600; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: #DC2626; box-shadow: 0 0 0 3px rgba(220,38,38,.10);
}
.field.invalid .err { display: block; }
.err-check { display: none; color: #DC2626; font-size: var(--fs-xs); font-weight: 600; margin-top: var(--s1); }

/* Interest checkboxes */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.checks--emoji .check-pill span { font-size: var(--fs-sm); }
.check-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-pill span {
  display: block; text-align: center; padding: 12px 8px;
  border-radius: var(--r-md); border: 1.5px solid var(--border);
  background: var(--surface); font-size: var(--fs-xs); font-weight: 700;
  cursor: pointer; transition: all var(--t-base) var(--ease);
}
.check-pill input:checked + span {
  background: var(--brand-soft); border-color: var(--brand); color: var(--brand-darker);
  box-shadow: 0 0 0 3px rgba(119,158,204,.14);
  transform: scale(1.02);
}
.check-pill input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.check-pill span:hover { border-color: var(--brand-dark); }

/* Gender radio pills — compact horizontal row */
.field--inline { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s3); }
.field--inline > label:first-child { font-size: var(--fs-sm); font-weight: 700; color: var(--text); white-space: nowrap; flex: none; }
.radio-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill span {
  display: block; padding: 8px 18px; border-radius: var(--r-full);
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: var(--fs-xs); font-weight: 700; cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.radio-pill input:checked + span {
  background: var(--brand-soft); border-color: var(--brand); color: var(--brand-darker);
  box-shadow: 0 0 0 3px rgba(119,158,204,.14);
}
.radio-pill input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.radio-pill span:hover { border-color: var(--brand-dark); }

/* Radio cards */
.radio-group { display: grid; gap: 8px; margin-top: 8px; }
.radio-card { display: flex; align-items: center; gap: var(--s2); cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card span {
  flex: 1; padding: 14px 18px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: var(--fs-sm); font-weight: 600; transition: all var(--t-base) var(--ease);
  display: block;
}
.radio-card input:checked + span {
  background: var(--brand-soft); border-color: var(--brand); color: var(--brand-darker);
  box-shadow: 0 0 0 3px rgba(119,158,204,.14);
}
.radio-card span:hover { border-color: var(--brand-dark); }

/* Sponsored date section */
.sponsored-info {
  background: var(--accent-soft); border: 1.5px solid rgba(255,209,102,.40);
  border-radius: var(--r-md); padding: var(--s3); margin-bottom: var(--s3);
}
.sponsored-info p { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.65; }

/* Streaming rule callout — shown when "yes" is selected */
.stream-rule {
  display: flex; gap: var(--s2); align-items: flex-start;
  background: linear-gradient(135deg, rgba(255,209,102,.18), rgba(255,209,102,.07));
  border: 1.5px solid rgba(255,209,102,.55);
  border-left: 4px solid var(--accent-dark);
  border-radius: var(--r-md); padding: var(--s3);
  margin-bottom: var(--s3);
}
.stream-rule__icon { font-size: 1.5rem; flex: none; line-height: 1; margin-top: 2px; }
.stream-rule strong { display: block; font-size: var(--fs-sm); font-weight: 800; margin-bottom: 6px; color: var(--text); }
.stream-rule p { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.65; }

.sponsored-consent { margin-top: var(--s3); }
.consent-question { font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--s2); }
.consent-note {
  display: flex; gap: 8px; align-items: flex-start;
  background: var(--surface-2); border-radius: var(--r-sm);
  padding: var(--s2) var(--s3); margin-top: var(--s2);
}
.consent-note p { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.55; }

/* Form nav */
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: var(--s2); margin-top: var(--s5); }
.form-nav .btn--ghost[hidden] { visibility: hidden; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: var(--s3); }
.modal.open { display: grid; }
.modal__veil {
  position: absolute; inset: 0; background: rgba(15,23,42,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .3s var(--ease-out);
}
.modal__card {
  position: relative; background: var(--bg); border-radius: var(--r-2xl);
  padding: var(--s6) var(--s5); max-width: 420px; text-align: center;
  box-shadow: var(--sh-xl); animation: popIn .45s var(--ease-spring);
  border: 1.5px solid var(--border);
}
.modal__emoji { font-size: 3rem; display: block; margin-bottom: var(--s2); animation: bounce .6s var(--ease-spring) .3s both; }
.modal__card h3 { font-size: var(--fs-xl); font-weight: 800; margin-bottom: var(--s2); }
.modal__card p  { color: var(--text-2); font-size: var(--fs-sm); line-height: 1.6; margin-bottom: var(--s4); }
@keyframes bounce { from { transform: scale(0) rotate(-20deg); } to { transform: scale(1) rotate(0deg); } }

/* ===== Final CTA ===== */
.final { padding-block: var(--s7); }
.final__card {
  position: relative; overflow: hidden; border-radius: var(--r-2xl);
  padding: var(--s8) var(--s4); text-align: center;
  background: linear-gradient(145deg, var(--brand-darker) 0%, var(--brand-dark) 50%, #4a7bb8 100%);
  color: #fff; box-shadow: var(--sh-xl);
}
.final__card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 90% 10%, rgba(255,209,102,.28), transparent 60%),
    radial-gradient(30% 40% at 5% 90%,  rgba(119,158,204,.20), transparent 60%);
}
.final__card > * { position: relative; z-index: 1; }
.final__card h2 { font-size: var(--fs-2xl); font-weight: 900; margin-bottom: var(--s2); max-width: 600px; margin-inline: auto; }
.final__card p  { font-size: var(--fs-lg); opacity: .88; margin-bottom: var(--s5); max-width: 520px; margin-inline: auto; line-height: 1.65; }
.final__cta { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }

/* ===== Footer ===== */
.footer { padding-block: var(--s5); border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__tagline { font-family: var(--font-accent); font-size: 1.05rem; color: var(--text-2); font-style: italic; font-weight: 600; letter-spacing: .01em; }
.footer__copy { font-size: var(--fs-xs); color: var(--text-3); }
.footer nav { display: flex; gap: var(--s3); flex-wrap: wrap; }
.footer nav a { font-size: var(--fs-xs); font-weight: 600; color: var(--text-2); text-decoration: none; transition: color var(--t-fast); }
.footer nav a:hover { color: var(--text); }

/* ===== Form Modal ===== */
.fmodal {
  position: fixed; inset: 0; z-index: 150;
  display: none; place-items: center; padding: var(--s4);
}
.fmodal.open { display: grid; }

.fmodal__veil {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: fadeIn .25s var(--ease-out);
}

.fmodal__panel {
  position: relative; z-index: 1;
  background: var(--bg); width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; overflow-x: hidden;
  border-radius: var(--r-2xl); border: 1.5px solid var(--border);
  box-shadow: var(--sh-xl);
  display: flex; flex-direction: column;
  animation: fmodalIn .42s var(--ease-spring);
  /* Animated top bar via inset box-shadow */
  box-shadow: var(--sh-xl), inset 0 4px 0 var(--brand);
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
@keyframes fmodalIn {
  from { opacity: 0; transform: scale(.93) translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.fmodal__head {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s2) var(--s4);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.fmodal__brand { display: flex; align-items: center; gap: 10px; }
.fmodal__title { font-size: var(--fs-base); font-weight: 800; color: var(--text); }

.fmodal__close {
  flex: none; width: 36px; height: 36px; border-radius: var(--r-full);
  display: grid; place-items: center; cursor: pointer;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-2);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), transform var(--t-base) var(--ease-spring);
}
.fmodal__close:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-3); }
.fmodal__close:active { transform: scale(.9); }

.fmodal__body { padding: var(--s4); flex: 1; }

/* Larger, bolder check-pills inside the form modal */
.fmodal__body .check-pill span {
  padding: 14px 10px; font-size: var(--fs-sm);
}
/* Bigger radio cards */
.fmodal__body .radio-card span { padding: 16px 20px; font-size: var(--fs-base); }

/* Form nav inside modal — equal width buttons, separated */
.fmodal__body .form-nav {
  padding-top: var(--s4); border-top: 1px solid var(--border);
}

/* ===== Lead utility ===== */
.lead { color: var(--text-2); font-size: var(--fs-lg); line-height: 1.65; }
.lead--mb { margin-bottom: var(--s4); }

/* ===== Scroll reveal ===== */
.js-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ===== Keyframes ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes popIn  { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
