/* ============================================================================
   Objectuve marketing site — 2026 redesign
   ============================================================================
   Consolidates design-system tokens + shared (Meet Coach) + landing styles
   for use across index.html and meet-coach.html.
   ============================================================================ */

/* ─── Fonts (self-hosted) ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2-variations'),
       url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-variable.woff2') format('woff2-variations'),
       url('../fonts/outfit-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ─── Design tokens ───────────────────────────────────────────────────────── */
:root {
  /* Core surfaces */
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 203 78% 41%;

  /* Brand */
  --primary: 203 78% 41%;       /* #177BBB */
  --primary-light: 203 78% 61%;
  --brand-1: 203 78% 41%;
  --brand-2: 194 96% 51%;       /* #05CBFC */
  --brand-deep: 215 70% 18%;
  --ink: 222 47% 11%;

  /* Accents */
  --accent: 27 89% 55%;         /* #F28529 */
  --gold: 43 96% 56%;           /* #FCC419 */
  --coach: 271 91% 65%;         /* #A855F7 */
  --coach-2: 258 90% 66%;
  --coach-deep: 262 64% 32%;
  --success: 160 84% 39%;       /* #10B77F */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(203 78% 41%), hsl(194 96% 51%));
  --gradient-coach:   linear-gradient(135deg, hsl(271 91% 65%), hsl(258 90% 66%));
  --gradient-accent:  linear-gradient(135deg, hsl(27 89% 55%),  hsl(22 93% 76%));
  --gradient-gold:    linear-gradient(135deg, hsl(43 96% 56%),  hsl(48 98% 70%));

  /* Radii */
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Menlo', monospace;
}

/* ─── Base ─────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: hsl(var(--foreground));
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body { line-height: 1.5; font-size: 16px; }

img { max-width: 100%; height: auto; display: block; }

a { color: hsl(var(--primary)); text-decoration: none; transition: color .2s ease; }
a:hover { color: hsl(var(--brand-2)); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: hsl(var(--foreground));
  margin: 0;
}

p { margin: 0; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: hsl(var(--primary)); color: #fff;
  padding: 8px 16px; text-decoration: none; z-index: 9999;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

/* ─── Layout primitives ───────────────────────────────────────────────────── */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 900px) {
  .site-container { padding: 0 28px; }
}

.site-section { position: relative; overflow: hidden; }
.site-section.padded    { padding: 110px 0; }
.site-section.padded-sm { padding: 80px 0; }
@media (max-width: 900px) {
  .site-section.padded    { padding: 72px 0; }
  .site-section.padded-sm { padding: 56px 0; }
}

.site-section.dark {
  background: linear-gradient(180deg, #060B18 0%, #0B1530 55%, #07101F 100%);
  color: #fff;
}
.site-section.dark .site-title { color: #fff; }
.site-section.dark .eyebrow-brand { color: hsl(var(--brand-2)); }

/* ─── Type utilities ──────────────────────────────────────────────────────── */
.site-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: hsl(var(--ink));
}
.site-title em {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Italic glyphs overhang the box; pad the clip area so the trailing letter isn't sliced. */
  padding-right: 0.28em;
  margin-right: -0.22em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.site-title em.coach,
.d-title em.coach,
.cta-title em.coach,
.mc-hero-title em.coach {
  background: var(--gradient-coach);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.28em;
  margin-right: -0.22em;
  /* Multi-line italic ems also clip on the line-break edge; box-decoration-break:clone
     gives each fragment its own padded box so mid-em wraps don't slice the trailing letter. */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.cta-title em,
.mc-hero-title em {
  font-style: italic;
}

.d-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: hsl(var(--foreground));
}
.d-title em {
  font-style: italic;
  background: var(--gradient-coach);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.28em;
  margin-right: -0.22em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.eyebrow-brand {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--brand-1));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-brand::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--coach));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.mc-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.mc-btn-brand {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px -8px hsla(203, 78%, 41%, 0.55);
}
.mc-btn-brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px hsla(203, 78%, 41%, 0.6);
  color: #fff;
}
.mc-btn-coach {
  background: var(--gradient-coach);
  color: white;
  box-shadow: 0 8px 24px -8px hsla(271, 91%, 55%, 0.55);
}
.mc-btn-coach:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px hsla(271, 91%, 55%, 0.6);
  color: #fff;
}
.mc-btn-ghost {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}
.mc-btn-ghost:hover { background: rgba(255,255,255,0.95); transform: translateY(-1px); }
.mc-btn-ghost.on-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.mc-btn-ghost.on-dark:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ─── Decorative halo ─────────────────────────────────────────────────────── */
.halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(60px);
}
/* Default halo placement when used standalone in meet-coach hero */
.mc-hero .hero-visual-backdrop > .halo-coach {
  width: 520px; height: 520px;
  top: -160px; right: -120px;
}
.mc-hero .hero-visual-backdrop > .halo-brand {
  width: 420px; height: 420px;
  bottom: -220px; left: -140px;
  opacity: 0.28;
}
.halo-coach { background: hsl(271, 91%, 65%); }
.halo-brand { background: hsl(203, 78%, 61%); opacity: 0.28; }
.halo-warm  { background: hsl(27, 89%, 60%); opacity: 0.35; }
.halo-success { background: hsl(160, 84%, 50%); opacity: 0.30; }

/* ─── Glass card ──────────────────────────────────────────────────────────── */
.glass-card,
.mc-card-glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 24px;
  box-shadow: 0 20px 60px -20px hsla(262, 64%, 32%, 0.25);
}

/* ─── Sparkle orb (Coach mark) ────────────────────────────────────────────── */
.spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gradient-coach);
  color: white;
  box-shadow: 0 6px 20px -8px hsla(271, 91%, 55%, 0.7);
  position: relative;
}
.spark svg { width: 55%; height: 55%; }
.spark::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: inherit;
  border: 1px solid hsla(271, 91%, 65%, 0.3);
  pointer-events: none;
}

/* ─── Chat bubble ─────────────────────────────────────────────────────────── */
.bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 85%;
  box-shadow: 0 2px 10px -4px rgba(15,23,42,.08);
}
.bubble-me {
  background: var(--gradient-coach);
  color: white;
  border-bottom-right-radius: 6px;
  margin-left: auto;
  box-shadow: 0 6px 18px -8px hsla(271, 91%, 55%, 0.55);
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid hsl(var(--border));
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.site-nav-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-nav-brand img { height: 42px; width: auto; display: block; }
.site-nav-links {
  display: flex; gap: 28px;
  align-items: center;
}
.site-nav .nav-link,
.site-nav a.nav-link {
  color: #334155; font-size: 14px; font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav .nav-link:hover { color: hsl(var(--brand-1)); }
.site-nav .nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.site-nav .nav-signin {
  color: #334155; font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 8px 14px; white-space: nowrap;
}
.site-nav .nav-signin:hover { color: hsl(var(--brand-1)); }
.site-nav .nav-actions .mc-btn { padding: 10px 18px; font-size: 13.5px; white-space: nowrap; }
.site-nav .mc-btn-sm { padding: 8px 14px; font-size: 13px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid hsl(var(--border));
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: #0F172A;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-nav-links { display: none; }
  .site-nav .nav-signin { display: none; }
  .site-nav .nav-actions .mc-btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid hsl(var(--border));
  padding: 20px 28px 28px;
  z-index: 49;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 500; color: #0F172A; text-decoration: none;
  padding: 8px 0;
}
.mobile-menu .mc-btn { margin-top: 8px; align-self: flex-start; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F4F9FF 0%, #ECF7FE 45%, #FFFFFF 100%);
  padding: 72px 0 110px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  margin: 0 0 24px;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: #475569;
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  color: #64748B; font-size: 13px;
  list-style: none; padding: 0;
}
.hero-trust .dot,
.hero-trust-dot {
  width: 6px; height: 6px; border-radius: 999px; background: #10B77F;
  display: inline-block; margin-right: 6px;
}
.hero-trust .sep,
.hero-trust-sep {
  width: 1px; height: 14px; background: #CBD5E1;
  display: inline-block;
}
.hero-trust-item {
  display: inline-flex; align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-section { padding: 56px 0 80px; }
}

/* Hero visual (phone + floating chips) */
.hero-visual {
  position: relative;
  height: 640px;
}
.hero-visual-backdrop {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,203,252,0.16), rgba(23,123,187,0.06));
  border-radius: 0;
  filter: blur(2px);
}
/* Meet-Coach uses the same wrapper at section scope to host purple halos.
   Strip the blue tint so the coach palette dominates. */
.mc-hero .hero-visual-backdrop {
  inset: 0;
  background: transparent;
  border-radius: 0;
  filter: none;
}
.hero-phone {
  position: absolute; top: 4%; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 700px) {
  .hero-visual { height: 540px; }
  .hero-section .hero-visual-backdrop { filter: none; }
}

/* Device frame */
.device-frame {
  position: relative;
  width: 300px;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(160deg, #0F172A 0%, #1E293B 100%);
  box-shadow:
    0 40px 100px -30px rgba(15,23,42,0.45),
    0 8px 24px -10px rgba(15,23,42,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.device-frame .notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; border-radius: 999px;
  background: #000; z-index: 2;
}
.device-frame .device-screen {
  border-radius: 32px; overflow: hidden; background: #FCFAFF;
  aspect-ratio: 780 / 1688;
}
.device-frame .device-screen img,
.device-frame .device-screen picture {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block;
}
.device-frame.sm { width: 185px; padding: 6px; border-radius: 28px; }
.device-frame.sm .notch { width: 60px; height: 14px; top: 12px; }
.device-frame.sm .device-screen { border-radius: 22px; }

/* Stat chip */
.stat-chip {
  background: #fff;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: 0 20px 40px -16px rgba(15,23,42,0.18);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid hsl(var(--border));
  position: absolute;
  z-index: 3;
}
.stat-chip .ico-tile,
.stat-chip .chip-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.chip-icon-accent { background: linear-gradient(135deg, #F28529, #FCC419); }
.chip-icon-coach  { background: linear-gradient(135deg, hsl(271,91%,65%), hsl(258,90%,66%)); }
.chip-icon-success{ background: hsl(203, 78%, 96%); color: hsl(203, 78%, 41%); }
.chip-icon-gold   { background: linear-gradient(135deg, #FCC419, #FBBF24); }
.stat-chip .label,
.stat-chip .chip-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  color: #64748B;
}
.stat-chip .value,
.stat-chip .chip-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #0F172A;
  margin-top: 2px;
}
.stat-chip .msg,
.stat-chip .chip-msg {
  font-size: 13px; line-height: 1.45; color: #0F172A; margin-top: 2px;
}

.chip-streak    { right: 0;   top: 18%; }
.chip-coach     { left: 0;    top: 45%; max-width: 260px; }
.chip-week      { right: -2%; bottom: 20%; }
.chip-badge     { left: -2%;  bottom: 2%; }

@media (max-width: 700px) {
  .chip-coach { max-width: 220px; }
  .stat-chip .value { font-size: 18px; }
}

/* ─── Trust strip ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.trust-strip-inner,
.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-platforms {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px;
  color: #475569; font-size: 14px; font-weight: 500;
  align-items: center;
}
.trust-platforms li,
.trust-platforms span {
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-tagline,
.trust-promise {
  color: #64748B; font-size: 13px;
}

/* ─── Manifesto ───────────────────────────────────────────────────────────── */
.manifesto-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid hsl(var(--border));
  align-items: start;
}
.manifesto-row:last-child {
  border-bottom: 1px solid hsl(var(--border));
}
.manifesto-row .n {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: hsl(var(--brand-1));
  padding-top: 6px;
}
.manifesto-row .h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
  color: hsl(var(--ink));
  max-width: 720px;
}
.manifesto-row .b {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
  max-width: 720px;
  margin: 0;
}
@media (max-width: 800px) {
  .manifesto-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .manifesto-row .h { font-size: 24px; }
}
@media (max-width: 600px) {
  .manifesto-row { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
  .manifesto-row .h { font-size: 22px; }
}

/* ─── Section heads (intro blocks) ────────────────────────────────────────── */
.section-intro {
  max-width: 780px;
  margin-bottom: 64px;
}
.section-intro .site-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 20px;
}
.section-intro p {
  font-size: 18px; line-height: 1.6;
  color: #475569; max-width: 640px;
}
.section-intro .eyebrow,
.section-intro .eyebrow-brand { margin-bottom: 20px; }
.section-intro .d-title { margin: 0 0 22px; }
.section-intro .section-lede { margin: 0; }

.section-intro-split {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 56px; gap: 40px; flex-wrap: wrap;
}
.section-intro-split .lead { max-width: 620px; }
.section-intro-split .lead .site-title { font-size: clamp(36px, 5vw, 64px); margin: 0; }
.section-intro-split .aside {
  max-width: 380px;
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* ─── Features grid ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feat-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid hsl(var(--border));
  background: linear-gradient(180deg, #ffffff 0%, #FAFAFC 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(15,23,42,0.18);
  border-color: hsla(203, 78%, 41%, 0.25);
}
.feat-card-visual {
  position: relative;
  padding: 28px 28px 0;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid hsl(var(--border));
}
.feat-card-tag {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  z-index: 2;
}
.feat-card-phone {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 185px;
}
.feat-card-body {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.feat-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feat-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #0F172A;
}
.feat-card-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  flex: 1;
}
.feat-card-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none;
}

/* Feature accent variants */
.feat-card.tint-brand     .feat-card-visual { background: linear-gradient(160deg, rgba(23,123,187,0.10), transparent 70%); }
.feat-card.tint-brand     .feat-card-tag    { border: 1px solid rgba(23,123,187,0.25); color: hsl(203, 78%, 41%); }
.feat-card.tint-brand     .feat-card-eyebrow{ color: hsl(203, 78%, 41%); }

.feat-card.tint-coach     .feat-card-visual { background: linear-gradient(160deg, rgba(168,85,247,0.10), transparent 70%); }
.feat-card.tint-coach     .feat-card-tag    { border: 1px solid rgba(168,85,247,0.30); color: hsl(271, 91%, 55%); }
.feat-card.tint-coach     .feat-card-eyebrow{ color: hsl(271, 91%, 55%); }
.feat-card.tint-coach     .feat-card-link   { color: hsl(271, 91%, 55%); }

.feat-card.tint-gold      .feat-card-visual { background: linear-gradient(160deg, rgba(252,196,25,0.14), transparent 70%); }
.feat-card.tint-gold      .feat-card-tag    { border: 1px solid rgba(252,196,25,0.35); color: hsl(38, 92%, 40%); }
.feat-card.tint-gold      .feat-card-eyebrow{ color: hsl(38, 92%, 40%); }

.feat-card.tint-success   .feat-card-visual { background: linear-gradient(160deg, rgba(16,183,127,0.10), transparent 70%); }
.feat-card.tint-success   .feat-card-tag    { border: 1px solid rgba(16,183,127,0.25); color: hsl(160, 84%, 30%); }
.feat-card.tint-success   .feat-card-eyebrow{ color: hsl(160, 84%, 30%); }

.feat-card.tint-accent    .feat-card-visual { background: linear-gradient(160deg, rgba(242,133,41,0.10), transparent 70%); }
.feat-card.tint-accent    .feat-card-tag    { border: 1px solid rgba(242,133,41,0.25); color: hsl(27, 89%, 45%); }
.feat-card.tint-accent    .feat-card-eyebrow{ color: hsl(27, 89%, 45%); }

/* ─── Coach teaser ────────────────────────────────────────────────────────── */
.coach-teaser-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .coach-teaser-grid { grid-template-columns: 1fr; gap: 56px; }
}

.coach-teaser-grid .eyebrow { margin-bottom: 20px; }
.coach-teaser-grid .d-title { margin: 0 0 22px; }
.coach-teaser-grid .section-lede { margin: 0 0 32px; }
.coach-teaser-grid .hero-actions { margin-top: 8px; }

.coach-quote-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 40px 80px -20px hsla(271,91%,50%,0.4);
}
.coach-quote-card .head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.coach-quote-card .head .spark { width: 38px; height: 38px; }
.coach-quote-card .head .mc-mono { color: hsl(271, 91%, 80%); }
.coach-quote-card .body {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1.3; font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff; margin: 0 0 22px;
}
.coach-quote-card .chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.coach-quote-card .chip {
  padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 999px;
  color: hsl(271, 91%, 88%);
}

.coach-personas-chip {
  position: absolute; bottom: -24px; left: -20px; z-index: 2;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  display: flex; align-items: center; gap: 14px;
}
.coach-personas-chip .mc-mono { color: rgba(255,255,255,0.6); }
.coach-personas-chip .row { display: flex; gap: 8px; }
.coach-personas-chip .pill {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; color: #fff;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ─── Gamification tiers + stats ──────────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
.tier-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid hsl(var(--border));
  background: linear-gradient(180deg, #fff 0%, #FAFAFC 100%);
  position: relative;
  overflow: hidden;
}
.tier-card .tier-medal {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.tier-card.tier-common    .tier-medal { background: linear-gradient(135deg, #64748B, #64748B99); box-shadow: 0 12px 30px -10px rgba(100,116,139,0.30); }
.tier-card.tier-rare      .tier-medal { background: linear-gradient(135deg, #177BBB, #177BBB99); box-shadow: 0 12px 30px -10px rgba(23,123,187,0.40); }
.tier-card.tier-epic      .tier-medal { background: linear-gradient(135deg, #A855F7, #A855F799); box-shadow: 0 12px 30px -10px rgba(168,85,247,0.45); }
.tier-card.tier-legendary .tier-medal { background: linear-gradient(135deg, #FCC419, #FCC41999); box-shadow: 0 12px 30px -10px rgba(252,196,25,0.55); }
.tier-card.tier-common    .mc-mono   { color: #64748B; }
.tier-card.tier-rare      .mc-mono   { color: #177BBB; }
.tier-card.tier-epic      .mc-mono   { color: #A855F7; }
.tier-card.tier-legendary .mc-mono   { color: #B68000; }
.tier-card .desc {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0F172A;
  margin-top: 6px;
}

.bigstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.bigstats .stat {
  padding: 0 24px;
  border-left: 1px solid hsl(var(--border));
}
.bigstats .stat:first-child { border-left: none; }
.bigstats .stat .v {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0F172A;
}
.bigstats .stat .v small {
  font-size: 0.36em;
  color: #94A3B8;
  font-weight: 600;
  margin-left: 6px;
}
.bigstats .stat .l {
  font-size: 14px;
  color: #64748B;
  margin-top: 10px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .bigstats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .bigstats .stat:nth-child(3) { border-left: none; }
}

/* ─── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%);
}
.pricing-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.pricing-intro .eyebrow-brand { justify-content: center; margin-bottom: 22px; }
.pricing-intro .site-title { font-size: clamp(36px, 5vw, 64px); margin: 0 0 16px; }
.pricing-intro p { font-size: 17px; line-height: 1.6; color: #475569; margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.price-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  min-height: 540px;
  overflow: hidden;
}
.price-card.featured {
  background: linear-gradient(180deg, #0B1530 0%, #060B18 100%);
  color: #fff;
  border: 1px solid rgba(5, 203, 252, 0.3);
  box-shadow: 0 40px 100px -30px hsla(203, 78%, 41%, 0.35);
}
.price-card .mc-mono { color: hsl(var(--brand-1)); margin-bottom: 14px; }
.price-card.featured .mc-mono { color: hsl(194, 96%, 75%); }
.price-card .price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0F172A;
}
.price-card.featured .price { color: #fff; }
.price-card .price small {
  font-size: 18px;
  color: #94A3B8;
  font-weight: 600;
}
.price-card.featured .price small { color: rgba(255,255,255,0.6); }
.price-card .price-desc {
  font-size: 15px;
  color: #475569;
  margin: 18px 0 24px;
  line-height: 1.6;
}
.price-card.featured .price-desc { color: rgba(255,255,255,0.7); }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px; flex: 1;
}
.price-card ul li {
  display: flex; gap: 10px;
  padding: 9px 0;
  font-size: 14.5px;
  color: #334155;
  border-top: 1px solid #F1F5F9;
}
.price-card.featured ul li {
  color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price-card ul li .check {
  width: 16px; height: 16px; flex-shrink: 0;
  color: hsl(160, 84%, 39%);
  margin-top: 3px;
}
.price-card.featured ul li .check { color: hsl(194, 96%, 65%); }
.price-card .mc-btn { width: 100%; }
.price-card .relative { position: relative; }

.pricing-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: #64748B;
}

/* ─── Final CTA ───────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #ECF7FE 80%);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .cta-section { padding: 72px 0; }
}
.cta-section .cta-finefoot { margin-top: 28px; margin-bottom: 0; }
.cta-orb {
  width: 72px; height: 72px;
  border-radius: 24px;
  margin: 0 auto 28px;
  background: var(--gradient-primary);
  box-shadow: 0 24px 50px -16px hsla(203, 78%, 41%, 0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.cta-title {
  font-size: clamp(40px, 6vw, 80px);
  margin: 0 0 22px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.cta-lede {
  font-size: 18px;
  color: #475569;
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.6;
}
.cta-actions {
  display: inline-flex; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.cta-actions .mc-btn { padding: 16px 28px; font-size: 16px; }
.cta-finefoot {
  margin-top: 40px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  color: #64748B;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-finefoot .dot { width: 6px; height: 6px; border-radius: 999px; background: #10B77F; }
.cta-finefoot .sep { width: 1px; height: 14px; background: #CBD5E1; }

.clerk-waitlist-container {
  margin-top: 32px;
  min-height: 100px;
  display: flex;
  justify-content: center;
}
.clerk-waitlist-container:empty { min-height: 0; }
/* Target by ID because Clerk's mountWaitlist() replaces the element's className */
#clerk-waitlist {
  display: flex;
  justify-content: center;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #060B18;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.site-footer h4,
.site-footer h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color .15s ease;
}
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 36px; margin-bottom: 18px; display: block;
}
.footer-brand p,
.footer-brand .footer-blurb {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: 340px;
}
.footer-col {
  display: flex; flex-direction: column;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  line-height: 1.5;
}
.footer-brand .pill {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
}
.footer-brand .pill .dot {
  width: 6px; height: 6px; border-radius: 999px; background: #10B77F;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .mc-mono { color: rgba(255,255,255,0.5); }
.footer-bottom .copy { display: flex; gap: 18px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-social {
  display: flex; gap: 12px; margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: #fff; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Reveal-on-scroll (progressively enhanced; default visible) ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Meet Coach page (purple-led palette) ────────────────────────────────── */
.mc-hero {
  position: relative;
  padding: 64px 0 96px;
  background: linear-gradient(180deg, #F6EEFF 0%, #ECDFFC 50%, #FFFFFF 100%);
  overflow: hidden;
}
.mc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) {
  .mc-hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.mc-hero-title {
  font-size: clamp(48px, 8vw, 88px);
  margin: 0 0 24px;
}
.mc-hero-lede {
  font-size: 19px; line-height: 1.6; color: #475569;
  max-width: 520px; margin: 0 0 36px;
}
.mc-hero-trust {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  color: #64748B; font-size: 13px;
}

.mc-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 520px;
}
.mc-hero-visual .backdrop {
  position: absolute; inset: 8% 4%;
  background: linear-gradient(160deg, rgba(168,85,247,0.12), rgba(88,28,135,0.04));
  border-radius: 36px;
  filter: blur(1px);
}
.mc-hero-visual::before {
  /* soft purple backdrop behind the floating sheet */
  content: "";
  position: absolute; inset: 8% 4%;
  background: linear-gradient(160deg, rgba(168,85,247,0.12), rgba(88,28,135,0.04));
  border-radius: 36px;
  filter: blur(1px);
  z-index: 0;
}
.mc-hero-orb {
  position: absolute; top: 4%; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 92px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(258, 90%, 66%));
  color: #fff;
  z-index: 3;
  box-shadow: 0 30px 80px -20px hsla(271,91%,55%,0.55),
              inset 0 -8px 20px rgba(0,0,0,0.1);
}
.mc-hero-orb svg { width: 44px; height: 44px; }
.mc-hero-orb .orb-ring {
  position: absolute; inset: -6px;
  border-radius: inherit;
  border: 1px solid hsla(271, 91%, 65%, 0.35);
  pointer-events: none;
}
.mc-hero-orb .orb-ring-2 {
  inset: -14px;
  border-color: hsla(271, 91%, 65%, 0.18);
}
.mc-hero-sheet {
  position: absolute; top: 22%; left: 6%; right: 6%;
  padding: 28px;
  z-index: 2;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 24px;
  box-shadow: 0 30px 80px -20px hsla(262, 64%, 32%, 0.28);
}
.mc-hero-sheet-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.mc-hero-sheet-head .spark { flex: 0 0 32px; }
.mc-hero-sheet-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  color: hsl(var(--foreground));
  line-height: 1.1;
}
.mc-hero-sheet-head .mc-mono { margin: 4px 0 0; }
.mc-hero-sheet .mc-mono .dot { color: hsl(271,91%,55%); margin-right: 6px; }
.mc-hero-sheet .body,
.mc-hero-sheet-msg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: #0F172A;
  margin: 0 0 18px;
}
.mc-hero-sheet .chips,
.mc-hero-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mc-hero-sheet .chip,
.mc-hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 13px; font-weight: 500;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.22);
  border-radius: 999px;
  color: #6B21A8;
}
.mc-hero-chip svg { width: 12px; height: 12px; }
.mc-hero-chip-streak {
  position: absolute; right: -2%; top: 46%;
}
.mc-hero-chip-week {
  position: absolute; left: -2%; bottom: 6%;
}
.mc-hero-bubble {
  position: absolute; right: 4%; bottom: -2%;
  z-index: 4;
  max-width: 260px;
}

/* Positioning strip */
.mc-positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .mc-positioning-grid { grid-template-columns: 1fr; }
}
.pos-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: #fff;
  color: #0F172A;
  border: 1px solid hsl(var(--border));
}
.pos-card.is-coach {
  background: linear-gradient(180deg, #1A0D2E, #2E1065);
  color: #fff;
  border: 1px solid rgba(168,85,247,0.35);
  box-shadow: 0 30px 60px -24px hsla(271,91%,50%,0.45);
}
.pos-card.is-coach::before {
  content: "";
  position: absolute; inset: 0; border-radius: 20px;
  pointer-events: none;
  background: radial-gradient(circle at 80% 0%, rgba(168,85,247,0.25), transparent 50%);
}
.pos-card .opt {
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #64748B;
  margin-bottom: 14px;
  position: relative;
}
.pos-card.is-coach .opt { color: hsl(271, 91%, 80%); }
.pos-card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  position: relative;
}
/* Global h1–h6 rule sets dark color; on the dark coach card we need to inherit white. */
.pos-card.is-coach h3,
.pos-card.is-coach p { color: inherit; }
.pos-card.is-coach p { color: rgba(255,255,255,0.85); }
.pos-card ul {
  list-style: none; padding: 0; margin: 0; position: relative;
}
.pos-card li {
  display: flex; gap: 10px;
  padding: 8px 0;
  font-size: 14px; line-height: 1.55;
  color: #334155;
  border-top: 1px solid #F1F5F9;
}
.pos-card li:first-child { border-top: 0; }
.pos-card.is-coach li {
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pos-card .mark {
  width: 18px; height: 18px; border-radius: 999px;
  flex-shrink: 0; margin-top: 2px;
  background: #F1F5F9; color: #64748B;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; line-height: 1;
}
.pos-card.is-coach .mark {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff;
}

/* Anatomy section */
.site-section.dark.mc-anatomy,
.mc-anatomy {
  background: linear-gradient(180deg, #0B0714 0%, #1A0D2E 60%, #110822 100%);
  color: #fff;
}
.mc-anatomy .eyebrow { color: hsl(271, 91%, 75%); }
.mc-anatomy .d-title { color: #fff; }
.mc-anatomy .lede {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 20px 0 0; max-width: 560px;
}

/* On-dark overrides for section-intro elements (used in mc-anatomy + similar dark sections). */
.eyebrow.on-dark { color: hsl(271, 91%, 78%); }
.d-title.on-dark { color: #fff; }
.section-lede.on-dark { color: rgba(255,255,255,0.72); }
.mc-anatomy-grid,
.mc-anatomy-board {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .mc-anatomy-grid,
  .mc-anatomy-board { grid-template-columns: 1fr; gap: 56px; }
}
.mc-input-col { list-style: none; padding: 0; margin: 0; }
.mc-input-row {
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 12px;
}
.mc-input-row .n,
.mc-input-row .mc-input-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: hsl(271, 91%, 75%);
  padding-top: 3px;
}
.mc-input-row .h,
.mc-input-row .mc-input-head {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.mc-input-row .mc-input-head svg { color: hsl(271, 91%, 78%); }
.mc-input-row .s,
.mc-input-row p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.mc-anatomy-output-wrap {
  position: relative;
}
.mc-anatomy-beam {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.mc-anatomy-output {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: 0 40px 80px -20px hsla(271,91%,50%,0.3);
  margin-left: 80px;
}
@media (max-width: 900px) {
  .mc-anatomy-output { margin-left: 0; }
  .mc-anatomy-beam { display: none; }
}
.mc-anatomy-output-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.mc-anatomy-output-head .spark { flex: 0 0 32px; }
.mc-anatomy-output-head .mc-mono { color: hsl(271, 91%, 80%); }
.mc-anatomy-output .head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.mc-anatomy-output .head .spark { width: 32px; height: 32px; }
.mc-anatomy-output .head .mc-mono { color: hsl(271, 91%, 80%); }
.mc-anatomy-output .body,
.mc-anatomy-bubble {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.32;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  max-width: none;
}
.mc-anatomy-output .chips,
.mc-anatomy-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mc-anatomy-output .chip,
.mc-anatomy-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 13px; font-weight: 500;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 999px;
  color: hsl(271, 91%, 85%);
}
.mc-anatomy-meta span svg { width: 12px; height: 12px; }
/* Halo positions inside Anatomy section */
.mc-anatomy .hero-visual-backdrop { inset: 0; background: transparent; border-radius: 0; filter: none; }
.mc-anatomy-halo-1 {
  width: 600px; height: 600px;
  top: -200px; left: 40%;
  background: hsl(271, 91%, 55%);
  opacity: 0.28;
}
.mc-anatomy-halo-2 {
  width: 400px; height: 400px;
  bottom: -200px; right: -100px;
  background: hsl(203, 78%, 55%);
  opacity: 0.20;
}

/* Moments */
.moments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 800px) {
  .moments-grid { grid-template-columns: 1fr; }
}
.moment-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid hsl(var(--border));
  background: linear-gradient(180deg, #fff, #FAFAFC);
}
/* Markup is .moment-icon + sibling h3 + sibling p (3 children in a 2-col grid).
   Anchor the icon to span both rows so h3 and p stay in column 2. */
.moment-card .moment-icon,
.moment-card .ico {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.moment-card .moment-icon svg,
.moment-card .ico svg { width: 26px; height: 26px; }
.moment-card h3,
.moment-card p { grid-column: 2; }

.moment-card.color-coach   .ico,
.moment-card.mc-moon       .moment-icon { background: linear-gradient(135deg, rgba(139,92,246,0.10), rgba(139,92,246,0.04)); border: 1px solid rgba(139,92,246,0.20); color: #8B5CF6; }
.moment-card.color-brand   .ico,
.moment-card.mc-sun        .moment-icon { background: linear-gradient(135deg, rgba(23,123,187,0.10),  rgba(23,123,187,0.04));  border: 1px solid rgba(23,123,187,0.20);  color: #177BBB; }
.moment-card.color-accent  .ico,
.moment-card.mc-gold       .moment-icon { background: linear-gradient(135deg, rgba(252,196,25,0.12),  rgba(252,196,25,0.04));  border: 1px solid rgba(252,196,25,0.22);  color: #FCC419; }
.moment-card.color-success .ico,
.moment-card.mc-bar        .moment-icon { background: linear-gradient(135deg, rgba(16,183,127,0.10),  rgba(16,183,127,0.04));  border: 1px solid rgba(16,183,127,0.20);  color: #10B77F; }
.moment-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin: 6px 0 8px;
  line-height: 1.25;
}
.moment-card p {
  font-size: 14.5px; line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Voice pairs */
.voice-list {
  display: grid; gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.voice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.voice-bad,
.voice-good {
  padding: 22px 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voice-bad {
  background: #fff;
  border: 1px solid #FECACA;
}
.voice-good {
  background: linear-gradient(160deg, #FCFAFF, #F6F0FF);
  border: 1px solid rgba(168,85,247,0.3);
}
.voice-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}
.voice-tag-bad { color: #DC2626; }
.voice-tag-good { color: hsl(271, 91%, 55%); }
.voice-tag svg { width: 12px; height: 12px; }
.voice-bad-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: #94A3B8;
  text-decoration: line-through;
}
.voice-good-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: #1F1028;
  font-weight: 500;
}
@media (max-width: 760px) {
  .voice-row { grid-template-columns: 1fr; }
}

/* Meet Coach final CTA */
.mc-cta {
  background: linear-gradient(180deg, #FFFFFF, #F6F0FF 80%);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .mc-cta { padding: 72px 0; }
}
.mc-cta .spark { width: 64px; height: 64px; margin: 0 auto 24px; }
.mc-cta .d-title {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 auto 20px;
  max-width: 820px;
}
.mc-cta p {
  font-size: 18px; color: #475569;
  margin: 0 auto 36px; max-width: 540px;
  line-height: 1.6;
}
.mc-cta .cta-finefoot { margin-top: 28px; margin-bottom: 0; }
.mc-cta .row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.mc-cta .row .mc-btn { padding: 16px 28px; font-size: 16px; }
.mc-cta .fine { margin-top: 32px; font-size: 13px; color: #64748B; }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFC 100%);
}
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: grid; gap: 12px;
}
.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: hsla(203, 78%, 41%, 0.35); }
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
  color: #0F172A;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px; font-weight: 400;
  color: hsl(var(--brand-1));
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer,
.faq-item > p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 15px; line-height: 1.65;
  color: #475569;
}
