/* ─────────────────────────────────────────────
 * YourADI marketing site — component styles
 * Depends on assets/colors_and_type.css tokens.
 * ─────────────────────────────────────────── */

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
/* Sections have large internal top padding (~96px). Without adjustment, anchor
   links stop at the section's border — leaving the eyebrow/title well below the
   fold. Negative scroll-margin-top pulls the anchor target UP so the section's
   own padding is absorbed. */
section.section[id] { scroll-margin-top: -60px; }
body { background: var(--color-surface); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-left { display: flex; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 26px; }
.brand-tld { font-size: 14px; color: var(--color-text-muted); font-weight: 500; margin-left: -6px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14.5px; color: var(--color-text); font-weight: 500; }
.nav-links a:hover { color: var(--color-accent); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right .nav-menu-toggle { display: none; padding: 8px 10px; }
.nav-mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 8px 20px 16px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
}
.nav-mobile a {
  display: block; padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px; font-weight: 500; color: var(--color-text);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--color-accent); text-decoration: none; }
.nav.open .nav-mobile { display: block; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  font-family: inherit; cursor: pointer; font-weight: 600;
  border-radius: var(--radius-md); transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--color-accent); color: white; border: none;
  padding: 11px 20px; font-size: 14.5px;
  box-shadow: var(--shadow-xs);
}
.btn-primary:hover { background: var(--color-accent-hover); }
.btn-primary.lg { padding: 14px 26px; font-size: 15.5px; }

.btn-secondary {
  background: var(--color-surface); color: var(--color-text);
  border: 1px solid var(--color-border-dark);
  padding: 10px 18px; font-size: 14.5px; font-weight: 500;
}
.btn-secondary:hover { background: var(--color-surface-2); }
.btn-secondary.lg { padding: 13px 22px; font-size: 15.5px; }

.btn-ghost {
  background: transparent; color: var(--color-text); border: none;
  padding: 10px 14px; font-size: 14.5px; font-weight: 500;
}
.btn-ghost:hover { color: var(--color-accent); }

/* ═══════════ HERO ═══════════ */
.hero {
  padding-top: 72px; padding-bottom: 72px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "text visual";
  gap: 48px; align-items: center;
  position: relative;
}
.hero > .hero-text { grid-area: text; }
.hero > .hero-visual { grid-area: visual; }
.hero-grid-bg {
  position: absolute; inset: 0;
  grid-column: 1 / -1; grid-row: 1;
  background-image:
    linear-gradient(to right, rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 75%);
  pointer-events: none; z-index: 0;
}
.hero > *:not(.hero-grid-bg) { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(5,150,105,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(5,150,105,0.05); }
}

.hero h1 {
  font-size: 56px; line-height: 1.03; letter-spacing: -0.028em;
  font-weight: 700; color: var(--color-text);
}
.hero h1 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--color-accent);
}
.hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--color-text-muted);
  margin-top: 22px; max-width: 540px;
}
.hero-cta { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; gap: 22px; margin-top: 36px;
  font-size: 13.5px; color: var(--color-text-muted);
  flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { flex-shrink: 0; }

/* ═══════════ HERO VISUALS (3 variants) ═══════════ */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual > * { display: none; }
body[data-hero="booking"] .hero-visual .hv-booking,
body[data-hero="storefront"] .hero-visual .hv-storefront,
body[data-hero="calendar"] .hero-visual .hv-calendar { display: block; }

/* Auto-rotation: all variants render, JS controls which is active */
body[data-hero="auto"] .hero-visual > *:not(.hv-dots) {
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  transform: scale(0.97);
  pointer-events: none;
}
body[data-hero="auto"] .hero-visual > .hv-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* For centered single-card variants (storefront / calendar) in auto mode */
body[data-hero="auto"] .hero-visual > .hv-storefront,
body[data-hero="auto"] .hero-visual > .hv-calendar {
  left: 50%; top: 50%; right: auto; bottom: auto;
  transform: translate(-50%, -50%) scale(0.97);
}
body[data-hero="auto"] .hero-visual > .hv-storefront.hv-active,
body[data-hero="auto"] .hero-visual > .hv-calendar.hv-active {
  transform: translate(-50%, -50%) scale(1);
}

/* Auto-rotation indicator dots */
.hv-dots {
  display: none;
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  gap: 8px; z-index: 2;
}
body[data-hero="auto"] .hv-dots { display: flex; }
.hv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-border-dark);
  cursor: pointer; transition: all .25s;
  border: none; padding: 0;
}
.hv-dot:hover { background: var(--color-text-muted); }
.hv-dot.active {
  background: var(--color-accent);
  width: 24px; border-radius: 999px;
}

/* Variant A: booking cards (stacked, design system pattern) */
.hv-booking { position: relative; width: 100%; height: 100%; }
.bk-card {
  position: absolute; background: var(--color-surface);
  border-radius: var(--radius-xl); border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px; width: 340px;
}
.bk-card.back {
  top: 20px; right: 10px; transform: rotate(3.5deg);
  background: #0f172a; color: white; border-color: #0f172a;
}
.bk-card.front { top: 140px; left: 20px; transform: rotate(-2.5deg); }
.bk-card.float {
  top: 330px; right: 40px; transform: rotate(1.5deg);
  width: 280px; padding: 16px 18px;
}
.bk-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-faint); margin-bottom: 10px;
}
.bk-card.back .bk-label { color: #94a3b8; }
.bk-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.bk-meta { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }
.bk-card.back .bk-meta { color: #cbd5e1; }
.bk-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--color-border); }
.bk-card.back .bk-row { border-top-color: #334155; }
.bk-amount { font-family: var(--font-mono); font-size: 18px; font-weight: 600; }
.bk-status {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: var(--color-accent-light); color: var(--color-accent);
}
.bk-card.back .bk-status { background: rgba(5,150,105,0.2); color: #6ee7b7; }
.bk-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #6ee7b7, #059669);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 13px;
  flex-shrink: 0;
}
.bk-float-row { display: flex; align-items: center; gap: 12px; }
.bk-float-text { flex: 1; min-width: 0; }
.bk-float-title { font-size: 13px; font-weight: 600; }
.bk-float-sub { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }

/* Variant B: storefront mock (instructor page) */
.hv-storefront {
  width: 420px; max-width: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sf-url-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mono); font-size: 12px; color: var(--color-text-muted);
}
.sf-url-bar .dots { display: flex; gap: 5px; margin-right: 6px; }
.sf-url-bar .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border-dark); }
.sf-url-bar .path { color: var(--color-text); }
.sf-url-bar .slash { color: var(--color-text-faint); }
.sf-hero {
  padding: 28px 24px 20px; display: flex; gap: 14px; align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
}
.sf-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #047857);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 20px;
  flex-shrink: 0;
}
.sf-name { font-size: 18px; font-weight: 700; }
.sf-tag { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.sf-badges { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.sf-badge {
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  background: var(--color-accent-light); color: var(--color-accent);
}
.sf-body { padding: 20px 24px; }
.sf-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-faint); margin-bottom: 12px;
}
.sf-date-row { display: flex; gap: 8px; margin-bottom: 16px; }
.sf-date {
  flex: 1; text-align: center; padding: 10px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 12px; color: var(--color-text-muted);
}
.sf-date.active { border-color: var(--color-accent); background: var(--color-accent-light); color: var(--color-accent); }
.sf-date .day { font-size: 14px; font-weight: 700; color: var(--color-text); }
.sf-date.active .day { color: var(--color-accent); }
.sf-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sf-slot {
  text-align: center; padding: 9px 0;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500;
}
.sf-slot.taken { background: var(--color-surface-2); color: var(--color-text-faint); text-decoration: line-through; }
.sf-slot.selected { border-color: var(--color-accent); background: var(--color-accent); color: white; }
.sf-book-row {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
}
.sf-price { font-size: 15px; font-weight: 700; }
.sf-price small { font-weight: 400; color: var(--color-text-muted); font-size: 12px; }
.sf-book-btn {
  background: var(--color-accent); color: white; border: none;
  padding: 9px 16px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 600; cursor: pointer;
}

/* Variant C: calendar mock */
.hv-calendar {
  width: 440px; max-width: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cal-head {
  padding: 16px 20px; border-bottom: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
}
.cal-title { font-size: 14px; font-weight: 600; }
.cal-week { font-size: 13px; color: var(--color-text-muted); }
.cal-grid { display: grid; grid-template-columns: 40px repeat(5, 1fr); }
.cal-dayhead {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--color-text-faint); text-align: center; padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.cal-dayhead:last-child { border-right: none; }
.cal-hour {
  font-size: 10px; color: var(--color-text-faint);
  padding: 6px 4px; text-align: right;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  min-height: 44px;
}
.cal-slot {
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  position: relative; min-height: 44px;
}
.cal-slot:last-child { border-right: none; }
.cal-event {
  position: absolute; left: 4px; right: 4px; top: 4px;
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  padding: 5px 7px; border-radius: 4px;
  font-size: 10.5px; font-weight: 600; color: var(--color-accent);
  line-height: 1.3;
  overflow: hidden;
}
.cal-event.tall { height: 78px; }
.cal-event.v2 { background: rgba(29,78,216,0.08); border-left-color: var(--color-info); color: var(--color-info); }
.cal-event.v3 { background: rgba(180,83,9,0.08); border-left-color: var(--color-warning); color: var(--color-warning); }
.cal-event small { display: block; font-weight: 500; color: inherit; opacity: 0.75; margin-top: 2px; font-size: 9.5px; }

/* ═══════════ SECTION TABS (persona switcher) ═══════════ */
.section { padding: 88px 0; border-top: 1px solid var(--color-border); }
.section-bg-tint { background: var(--color-bg); }

.section-head { margin-bottom: 48px; max-width: 680px; }
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 14px;
}
.section h2 {
  font-size: 40px; letter-spacing: -0.025em; line-height: 1.12;
  font-weight: 700;
}
.section h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--color-accent); }
.section-sub { color: var(--color-text-muted); font-size: 17px; margin-top: 14px; line-height: 1.55; }

.persona-tabs {
  display: flex; gap: 4px; padding: 4px;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: 999px; margin-bottom: 48px;
  width: fit-content;
}
.persona-tab {
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  border-radius: 999px; cursor: pointer;
  color: var(--color-text-muted);
  border: none; background: transparent; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s;
}
.persona-tab:hover { color: var(--color-text); }
.persona-tab.active {
  background: var(--color-surface); color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.persona-tab .num {
  font-family: var(--font-mono); font-size: 11px; color: var(--color-text-faint);
}
.persona-tab.active .num { color: var(--color-accent); }

/* ═══════════ FEATURE GRID ═══════════ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: all .15s;
}
.feature:hover {
  border-color: var(--color-border-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--color-accent-light); color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 16.5px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feature p {
  font-size: 14.5px; color: var(--color-text-muted);
  line-height: 1.55;
}

/* persona panels */
.persona-panel { display: none; }
.persona-panel.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.persona-head { margin-bottom: 40px; max-width: 720px; }
.persona-head h3.persona-h {
  font-size: 32px; letter-spacing: -0.02em; line-height: 1.15;
  font-weight: 700; margin-bottom: 12px;
}
.persona-head h3.persona-h em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--color-accent);
}
.persona-head p { font-size: 17px; color: var(--color-text-muted); line-height: 1.5; }

/* ═══════════ PRICING ═══════════ */
.pricing-frame {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center;
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px; position: relative;
  box-shadow: var(--shadow-md);
}
body[data-pricing="emerald"] .pricing-card {
  background: var(--color-accent); color: white; border-color: var(--color-accent);
}
body[data-pricing="emerald"] .pricing-card * { color: inherit; }
body[data-pricing="emerald"] .pricing-card .price-term,
body[data-pricing="emerald"] .pricing-card .price-row-sub { color: rgba(255,255,255,0.8); }
body[data-pricing="emerald"] .pricing-card .price-hr { border-color: rgba(255,255,255,0.2); }
body[data-pricing="emerald"] .pricing-card .pricing-btn { background: white; color: var(--color-accent); }
body[data-pricing="emerald"] .pricing-card .pricing-btn:hover { background: rgba(255,255,255,0.9); }
body[data-pricing="emerald"] .pricing-card .pricing-tag { background: rgba(255,255,255,0.15); color: white; }

body[data-pricing="dark"] .pricing-card {
  background: var(--color-text); color: white; border-color: var(--color-text);
}
body[data-pricing="dark"] .pricing-card * { color: inherit; }
body[data-pricing="dark"] .pricing-card .price-term,
body[data-pricing="dark"] .pricing-card .price-row-sub { color: #94a3b8; }
body[data-pricing="dark"] .pricing-card .price-hr { border-color: #334155; }
body[data-pricing="dark"] .pricing-card .pricing-btn { background: var(--color-accent); color: white; }
body[data-pricing="dark"] .pricing-card .pricing-tag { background: rgba(5,150,105,0.2); color: #6ee7b7; }
body[data-pricing="dark"] .pricing-card .price-check { color: #6ee7b7; }

.pricing-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--color-accent-light); color: var(--color-accent);
  margin-bottom: 20px;
}
.price-headline { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 4px; }
.price-tag-sub { font-size: 14px; color: var(--color-text-muted); margin-bottom: 28px; }
body[data-pricing="emerald"] .price-tag-sub { color: rgba(255,255,255,0.8); }
body[data-pricing="dark"] .price-tag-sub { color: #94a3b8; }

.price-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px;
}
.price-amount {
  font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  font-family: var(--font-sans);
}
.price-term { font-size: 15px; color: var(--color-text-muted); }
.price-row-sub { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: 28px; }

/* "Was €35 — Save €15/month" strip above the live price.
   Diagonal red strikethrough on the old price reads as a price-cut sticker. */
.price-was-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 4px; line-height: 1.1;
}
.price-was-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.price-strike {
  position: relative; display: inline-block;
  font-size: 22px; font-weight: 700; color: #94a3b8;
  font-family: var(--font-sans); letter-spacing: -0.01em;
  padding: 0 2px;
}
.price-strike::after {
  content: ""; position: absolute; left: -4px; right: -4px; top: 50%;
  height: 3px; background: var(--color-danger);
  transform: rotate(-12deg); transform-origin: center;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
  pointer-events: none;
}
.price-save-badge {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--color-danger); color: #fff;
  margin-left: auto;
}

/* Inline diagonal strikethrough used in body bullets (e.g. persona card). */
.price-strike-inline {
  position: relative; display: inline-block;
  color: var(--color-text-muted); font-weight: 600;
  padding: 0 2px;
}
.price-strike-inline::after {
  content: ""; position: absolute; left: -2px; right: -2px; top: 55%;
  height: 2px; background: var(--color-danger);
  transform: rotate(-10deg); transform-origin: center;
  border-radius: 2px;
  pointer-events: none;
}

/* On the dark/emerald pricing-card variants, lift the muted greys so
   the strikethrough still reads against the dark surface. */
body[data-pricing="emerald"] .price-strike,
body[data-pricing="dark"] .price-strike { color: rgba(255,255,255,0.7); }
body[data-pricing="emerald"] .price-was-label,
body[data-pricing="dark"] .price-was-label { color: rgba(255,255,255,0.85); }
.price-hr { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }

.price-check-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.price-check { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.price-check-list strong { font-weight: 600; }

.pricing-btn {
  display: block; box-sizing: border-box;
  width: 100%; padding: 14px; border: none; border-radius: var(--radius-md);
  background: var(--color-accent); color: white; font-weight: 600; font-size: 15px;
  text-align: center; text-decoration: none;
  cursor: pointer; font-family: inherit;
}
.pricing-btn:hover { background: var(--color-accent-hover); text-decoration: none; }

.pricing-notes {
  display: flex; flex-direction: column; gap: 16px;
}
.pricing-note {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex; gap: 14px;
}
.pricing-note-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-note h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.pricing-note p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.5; }

.price-lock-ribbon {
  position: absolute; top: -14px; right: 28px;
  background: var(--color-text); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}

/* ═══════════ FAQ ═══════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-accent); }
.faq-item[open] summary { color: var(--color-accent); }
.faq-item summary .plus {
  flex-shrink: 0; margin-left: 20px;
  width: 20px; height: 20px; position: relative;
  transition: transform .25s;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-item summary .plus::before { top: 9px; left: 0; right: 0; height: 2px; }
.faq-item summary .plus::after { left: 9px; top: 0; bottom: 0; width: 2px; }
.faq-answer {
  padding: 0 0 24px;
  color: var(--color-text-muted); font-size: 15px; line-height: 1.65;
  max-width: 620px;
}

/* FAQ two-column variant */
body[data-faq="open"] .faq-list { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; }
body[data-faq="open"] .faq-item { border-bottom: 1px solid var(--color-border); padding: 20px 0; }
body[data-faq="open"] .faq-item summary { pointer-events: none; padding: 0 0 8px; }
body[data-faq="open"] .faq-item summary .plus { display: none; }
body[data-faq="open"] .faq-answer { padding: 0; display: block !important; }
body[data-faq="open"] .faq-item:not([open]) .faq-answer { display: block; }


/* ═══════════ BIG CTA BAND ═══════════ */
.cta-band {
  background: var(--color-text); color: white;
  border-radius: var(--radius-2xl);
  padding: 64px 56px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  margin: 0 0 88px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 100%, rgba(5,150,105,0.3), transparent 40%),
    radial-gradient(circle at 95% 0%, rgba(5,150,105,0.2), transparent 40%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: 40px; letter-spacing: -0.025em; line-height: 1.1; color: white; }
.cta-band h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: #6ee7b7; }
.cta-band p { color: #cbd5e1; font-size: 16px; margin-top: 14px; line-height: 1.55; max-width: 460px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; justify-self: end; }
.cta-band .btn-primary { background: white; color: var(--color-accent); }
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.9); }
.cta-band .btn-secondary { background: transparent; color: white; border-color: #334155; }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--color-text); color: #cbd5e1;
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: white; font-size: 13px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer a { display: block; color: #cbd5e1; font-size: 14px; padding: 5px 0; }
.footer a:hover { color: white; text-decoration: none; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 24px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 14px; color: #94a3b8; line-height: 1.6; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid #1e293b; margin-top: 44px; padding-top: 20px;
  font-size: 12.5px;
  /* Dark footer (bg = slate-950 #0f172a). The platform muted token is
     calibrated for light surfaces — placing it on the dark footer
     yields 2.35:1 (fails AA). Match the .footer-tagline rule above
     (slate-400 on slate-950 = 5.74:1 ✓). The lang-switcher button
     inside .footer-bottom uses color: 'inherit' so this cascade
     covers it too.
     See docs/findings/marketing-a11y-sweep-2026-05.md "Pt 2 correction". */
  color: #94a3b8;
  display: flex; justify-content: space-between; align-items: center;
}


/* ═══════════ RESPONSIVE ═══════════ */

/* Tablet portrait + smaller laptops (≤ 960px) */
@media (max-width: 960px) {
  .wrap { padding: 0 20px; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "visual";
    padding: 48px 0 32px;
    gap: 24px;
  }
  .hero h1 { font-size: 42px; }
  .hero-sub { font-size: 17px; }
  .hero-visual { height: 460px; margin-top: 8px; }
  .hv-storefront, .hv-calendar { width: 100%; max-width: 440px; margin: 0 auto; }
  .feature-grid, .feature-grid.two-col { grid-template-columns: repeat(2, 1fr); }
  .pricing-frame { grid-template-columns: 1fr; gap: 24px; }
  .cta-band { grid-template-columns: 1fr; padding: 44px 36px; gap: 28px; }
  .cta-band h2 { font-size: 32px; }
  .cta-band-actions { justify-self: start; flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  body[data-faq="open"] .faq-list { grid-template-columns: 1fr; gap: 0; }
  .nav-links { display: none; }
  .nav-right .nav-menu-toggle { display: inline-flex; }
  .nav-signin { display: none; }
  .section { padding: 64px 0; }
  .section h2 { font-size: 32px; }
  .section-head { margin-bottom: 36px; }
  .persona-head h3.persona-h { font-size: 26px; }
}

/* Mobile (≤ 640px) — phone-first */
@media (max-width: 640px) {
  html { scroll-padding-top: 74px; }
  .wrap { padding: 0 16px; }

  /* Nav */
  .nav-inner { height: 58px; }
  .nav-left { gap: 12px; }
  .brand img { height: 22px; }
  .btn-ghost { padding: 8px 10px; font-size: 13.5px; }
  .btn-primary { padding: 9px 14px; font-size: 13.5px; }
  .btn-primary.lg { padding: 12px 18px; font-size: 14.5px; }
  .btn-secondary.lg { padding: 11px 16px; font-size: 14.5px; }

  /* Hero */
  .hero { padding-top: 36px; padding-bottom: 28px; gap: 20px; }
  .hero h1 { font-size: 34px; line-height: 1.07; letter-spacing: -0.022em; }
  .hero-sub { font-size: 16px; margin-top: 16px; }
  .hero-cta { margin-top: 24px; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero-trust { gap: 12px 18px; margin-top: 24px; font-size: 13px; }
  .eyebrow { font-size: 12px; padding: 5px 11px; margin-bottom: 18px; }
  .hero-visual { height: 440px; }

  /* Scale down hero visual variants so they fit 320-420px wide */
  .bk-card { width: 260px; padding: 16px 18px; }
  .bk-card.back { top: 10px; right: 4px; }
  .bk-card.front { top: 110px; left: 8px; }
  .bk-card.float { top: 260px; right: 12px; width: 230px; padding: 12px 14px; }
  .bk-title { font-size: 14px; }
  .bk-meta { font-size: 12px; }
  .bk-amount { font-size: 16px; }
  .hv-storefront { max-width: 100%; }
  .sf-hero { padding: 20px 18px 16px; gap: 12px; }
  .sf-name { font-size: 16px; }
  .sf-body { padding: 16px 18px; }
  .sf-slots { gap: 6px; }
  .sf-slot { font-size: 12px; padding: 8px 0; }
  .hv-calendar { font-size: 10px; }
  .cal-event { font-size: 9.5px; padding: 4px 5px; }
  .cal-event small { font-size: 9px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section h2 { font-size: 28px; line-height: 1.15; }
  .section-sub { font-size: 15.5px; }
  .section-head { margin-bottom: 32px; }

  /* Persona tabs — horizontal scroll handled by ScrollableTabBar wrapper. */
  .persona-tabs { padding: 3px; margin-bottom: 32px; }
  .persona-tab { padding: 8px 14px; font-size: 13px; white-space: nowrap; flex-shrink: 0; }
  .persona-tab .num { display: none; }
  .persona-head h3.persona-h { font-size: 22px; }
  .persona-head p { font-size: 15.5px; }
  .feature-grid, .feature-grid.two-col { grid-template-columns: 1fr; gap: 12px; }
  .feature { padding: 22px 20px; }

  /* Pricing */
  .pricing-card { padding: 28px 24px; }
  .price-amount { font-size: 48px; }
  .price-headline { font-size: 19px; }
  .price-lock-ribbon { top: -12px; right: 16px; font-size: 10px; padding: 5px 12px; }
  .price-strike { font-size: 19px; }
  .price-save-badge { font-size: 10.5px; padding: 3px 9px; margin-left: 0; }

  /* FAQ */
  .faq-item summary { font-size: 15.5px; padding: 18px 0; }
  .faq-answer { font-size: 14.5px; }

  /* CTA band */
  .cta-band { padding: 36px 24px; border-radius: var(--radius-xl); }
  .cta-band h2 { font-size: 26px; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }


  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

}

/* Stack hero CTA vertically on narrow phone screens — above this threshold
   two side-by-side buttons can't fit the longer primary text ("Claim your
   booking link →") without clipping, because `.btn` uses white-space: nowrap
   and the ≤640px rule sets `flex: 1; min-width: 0` on hero-cta buttons. */
@media (max-width: 520px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* Very small (≤ 380px) — tighter paddings */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .nav-right .btn-ghost { display: none; }
}

/* Large monitors / TVs (≥ 1600px) — cap content width, relax whitespace */
@media (min-width: 1600px) {
  .wrap { max-width: 1320px; }
  .hero { padding-top: 96px; padding-bottom: 88px; gap: 64px; }
  .hero h1 { font-size: 64px; }
  .hero-sub { font-size: 20px; max-width: 560px; }
  .section { padding: 112px 0; }
  .section h2 { font-size: 48px; }
  .cta-band { padding: 80px 72px; }
  .cta-band h2 { font-size: 44px; }
}

/* ═══════════ STORY CARDS (replaces SOCIAL POSTS) ═══════════ */
.stories-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas: "persona persona" "title body" "title points" "link link";
  gap: 14px 48px;
  box-shadow: var(--shadow-xs);
}
.story-card .story-persona { grid-area: persona; }
.story-card > .story-title { grid-area: title; }
.story-card > .story-body { grid-area: body; }
.story-card > .story-points { grid-area: points; align-self: start; }
.story-card > .story-link { grid-area: link; }

.story-persona {
  display: inline-flex; align-items: baseline; gap: 14px;
  padding-bottom: 18px; margin-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
}
.story-num {
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic; font-size: 22px;
  color: var(--color-accent);
  font-weight: 500;
}
.story-role {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--color-text-muted); text-transform: uppercase;
}
.story-title {
  font-family: var(--font-display, var(--font-sans, system-ui));
  font-size: 34px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 8px 0 6px; color: var(--color-text);
  font-weight: 600;
}
.story-title-accent {
  font-style: italic; font-weight: 500; color: var(--color-accent);
  font-family: var(--font-serif, Georgia, serif);
}
.story-body p {
  font-size: 16px; line-height: 1.6; color: var(--color-text-muted);
  margin: 0 0 12px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body code {
  background: var(--color-accent-light); color: var(--color-accent);
  padding: 2px 6px; border-radius: var(--radius-sm);
  font-size: 0.92em; font-weight: 500;
}
.story-points {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.story-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.45; color: var(--color-text);
}
.story-check {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--color-accent-light); color: var(--color-accent);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.story-link {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px dashed var(--color-border);
  font-size: 15px; font-weight: 600; color: var(--color-accent);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s ease;
}
.story-link:hover { gap: 14px; text-decoration: none; }

/* Dark variant — schools */
.story-card-dark {
  background: var(--color-ink, #0f172a);
  border-color: var(--color-ink, #0f172a);
  color: #f1f5f9;
}
.story-card-dark .story-persona { border-bottom-color: rgba(255,255,255,0.14); }
.story-card-dark .story-num { color: #6ee7b7; }
.story-card-dark .story-role { color: rgba(255,255,255,0.65); }
.story-card-dark .story-title { color: #f8fafc; }
.story-card-dark .story-title-accent { color: #6ee7b7; }
.story-card-dark .story-body p { color: rgba(255,255,255,0.78); }
.story-card-dark .story-point { color: #f1f5f9; }
.story-card-dark .story-check { background: rgba(110,231,183,0.18); color: #6ee7b7; }
.story-card-dark .story-link { color: #6ee7b7; border-top-color: rgba(255,255,255,0.14); }
.story-card-dark .story-body code { background: rgba(110,231,183,0.18); color: #6ee7b7; }

/* Tint variant — learners */
.story-card-tint {
  background: var(--color-accent-light);
  border-color: transparent;
}
.story-card-tint .story-persona { border-bottom-color: rgba(5,150,105,0.22); }
.story-card-tint .story-link { border-top-color: rgba(5,150,105,0.22); }

@media (max-width: 860px) {
  .story-card {
    grid-template-columns: 1fr;
    grid-template-areas: "persona" "title" "body" "points" "link";
    padding: 32px 28px;
    gap: 12px;
  }
  .story-title { font-size: 28px; }
  .story-body p { font-size: 15px; }
}

/* ═══════════ SUBPAGE LAYOUT ═══════════ */
.subpage-hero {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
}
.subpage-hero .eyebrow { margin-bottom: 16px; }
.subpage-hero h1 {
  font-size: 44px; line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--color-text);
  max-width: 760px;
}
.subpage-hero .subpage-lede {
  font-size: 17px; line-height: 1.55; color: var(--color-text-muted);
  max-width: 720px; margin: 0;
}
.subpage-breadcrumbs {
  font-size: 13px; color: var(--color-text-faint);
  margin-bottom: 20px;
}
.subpage-breadcrumbs a { color: var(--color-text-faint); }
.subpage-breadcrumbs a:hover { color: var(--color-accent); text-decoration: none; }
.subpage-breadcrumbs span { margin: 0 8px; }

.subpage-body { padding: 56px 0 80px; }
.subpage-body .wrap { max-width: 820px; }
.subpage-body h2 {
  font-size: 26px; line-height: 1.2; letter-spacing: -0.012em;
  margin: 40px 0 12px; color: var(--color-text);
}
.subpage-body h2:first-child { margin-top: 0; }
.subpage-body h3 {
  font-size: 18px; font-weight: 600; margin: 28px 0 8px; color: var(--color-text);
}
.subpage-body p, .subpage-body li {
  font-size: 16px; line-height: 1.65; color: var(--color-text-muted);
}
.subpage-body p { margin: 0 0 14px; }
.subpage-body ul, .subpage-body ol { margin: 0 0 18px; padding-left: 22px; }
.subpage-body li { margin-bottom: 6px; }
.subpage-body strong { color: var(--color-text); font-weight: 600; }
.subpage-body a { color: var(--color-accent); }
/* Inline body-copy links must stay distinguishable from surrounding muted
 * text without relying on color alone — token darkening alone cannot
 * satisfy axe's link-in-text-block rule (3:1 between link FG and
 * surrounding-text FG). Underline base state; exclude .btn so styled
 * CTAs in body content (none today, defensive against future) keep
 * their own treatment. See sweep audit for the 5 violations this
 * resolves on /terms + /privacy-policy. */
.subpage-body p a:not(.btn),
.subpage-body li a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.subpage-meta {
  font-size: 13px; color: var(--color-text-faint);
  padding: 14px 18px; border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  background: var(--color-surface);
}
.subpage-placeholder {
  background: var(--color-accent-light);
  border: 1px dashed rgba(5,150,105,0.32);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  color: #047857;
  font-size: 14.5px; line-height: 1.55;
  margin: 24px 0 32px;
}
.subpage-placeholder strong { color: inherit; }
@media (max-width: 640px) {
  .subpage-hero { padding: 36px 0 18px; }
  .subpage-hero h1 { font-size: 30px; }
  .subpage-body { padding: 36px 0 60px; }
  .subpage-body h2 { font-size: 22px; margin-top: 32px; }
}

/* ═══════════ CONTACT FORM ═══════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-side h3 {
  font-size: 17px; font-weight: 600; color: var(--color-text);
  margin: 0 0 10px;
}
.contact-side p {
  font-size: 15px; line-height: 1.6; color: var(--color-text-muted);
  margin: 0 0 18px;
}
.contact-channels {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-channels li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; color: var(--color-text);
}
.contact-channels svg {
  flex-shrink: 0; margin-top: 2px; color: var(--color-accent);
}
.contact-channels small {
  display: block; color: var(--color-text-muted);
  font-size: 13px; margin-top: 2px;
}
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-xs);
}
.contact-form .form-section { margin-bottom: 24px; }
.contact-form .form-section:last-of-type { margin-bottom: 28px; }
.contact-form label,
.contact-form .form-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: inherit; font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}
.contact-form textarea {
  resize: vertical; min-height: 120px; font-family: inherit;
}
.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact-form .help-text {
  font-size: 12.5px; color: var(--color-text-muted);
  margin-top: 6px; line-height: 1.45;
}
.form-segmented {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 8px;
}
.form-segmented input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.form-segmented label {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); cursor: pointer;
  font-size: 14.5px; font-weight: 500; color: var(--color-text);
  background: var(--color-surface);
  transition: border-color .15s, background .15s;
  margin-bottom: 0;
}
.form-segmented label:hover { border-color: var(--color-accent); background: var(--color-accent-light); }
.form-segmented input:checked + label {
  border-color: var(--color-accent); background: var(--color-accent-light); color: #047857;
}
.form-segmented .seg-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent-light);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-accent); flex-shrink: 0;
}
.form-segmented input:checked + label .seg-icon { background: var(--color-accent); color: #fff; }

.form-radio-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.form-radio-list label {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); cursor: pointer; font-weight: 500;
  font-size: 14.5px; color: var(--color-text);
  background: var(--color-surface);
  transition: border-color .15s, background .15s;
  margin-bottom: 0;
}
.form-radio-list label:hover { border-color: var(--color-accent); }
.form-radio-list input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--color-accent); margin: 0;
}
.form-radio-list .radio-content { display: flex; flex-direction: column; gap: 2px; }
.form-radio-list .radio-title { font-weight: 600; }
.form-radio-list .radio-hint { font-size: 12.5px; color: var(--color-text-muted); font-weight: 400; }

.contact-form .form-submit {
  display: flex; justify-content: flex-end; gap: 12px;
  padding-top: 12px; border-top: 1px solid var(--color-border);
}
.contact-form .btn[disabled],
.contact-form .btn[aria-disabled="true"] {
  opacity: 0.55; cursor: not-allowed;
}

/* Single-column contact page layout (no side panel) */
.contact-single { max-width: 760px; }

.contact-success {
  background: var(--color-accent-light);
  border: 1px solid rgba(5,150,105,0.28);
  border-radius: var(--radius-lg);
  padding: 28px 32px; color: #047857;
}
.contact-success h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; color: inherit; }
.contact-success p { margin: 0; font-size: 14.5px; color: inherit; opacity: 0.9; }

@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 26px 22px; }
  .form-segmented { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ═══════════ HELP CENTRE + STATUS ═══════════ */
.help-topics {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; margin-top: 16px;
}
.help-topic {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: border-color .15s, transform .15s;
  color: inherit;
}
.help-topic:hover { border-color: var(--color-accent); transform: translateY(-1px); text-decoration: none; }
.help-topic h4 { font-size: 15.5px; font-weight: 600; margin: 0 0 4px; color: var(--color-text); }
.help-topic p { font-size: 13.5px; color: var(--color-text-muted); margin: 0; line-height: 1.5; }

.status-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.status-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: 15px;
  gap: 12px; flex-wrap: wrap;
}
.status-row .status-name { font-weight: 600; color: var(--color-text); }
.status-row .status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #047857;
}
.status-row .status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.18);
}

/* ═══════════ LAUNCH WAITLIST GATE ═══════════ */
.launch-gate-wrap {
  max-width: 640px;
  padding-top: 48px; padding-bottom: 80px;
}
.launch-gate-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}
.launch-gate-card h1 {
  font-size: 32px; line-height: 1.12; letter-spacing: -0.02em;
  margin: 10px 0 12px;
}
.launch-gate-lede {
  color: var(--color-text-muted); font-size: 16px; line-height: 1.6;
  margin-bottom: 24px;
}
.launch-gate-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; padding: 4px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  margin-bottom: 24px;
}
.launch-gate-tab {
  padding: 9px 14px; border-radius: 999px;
  border: none; background: transparent;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--color-text-muted); cursor: pointer;
  transition: all .15s;
}
.launch-gate-tab:hover { color: var(--color-text); }
.launch-gate-tab.active {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.launch-gate-form {
  display: flex; flex-direction: column; gap: 0;
}
.launch-gate-form .form-section { margin-bottom: 18px; }
.launch-gate-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--color-text); margin-bottom: 8px;
}
.launch-gate-form input {
  width: 100%; font-family: inherit; font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.launch-gate-form input:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}
.launch-gate-submit {
  width: 100%; justify-content: center; margin-top: 4px;
}
.launch-gate-submit[disabled],
.launch-gate-submit[aria-disabled="true"] {
  opacity: 0.55; cursor: not-allowed;
}
.launch-gate-footnote {
  font-size: 12.5px; color: var(--color-text-faint);
  margin-top: 12px; text-align: center;
}
.launch-gate-back {
  margin-top: 24px; font-size: 13.5px; text-align: center;
}
.launch-gate-back a { color: var(--color-text-muted); }
.launch-gate-back a:hover { color: var(--color-accent); text-decoration: none; }

@media (max-width: 640px) {
  .launch-gate-card { padding: 28px 22px; }
  .launch-gate-card h1 { font-size: 26px; }
}
