/* =====================================================================
   NIGHTSTAR CONSULTING Brand Kit: "Celestial Navigator"
   ---------------------------------------------------------------------
   Palette : Obsidian night skies, a guiding-star gold, aurora teal,
             nebula violet.
   Type    : Fraunces (display serif) + Inter (UI / body sans).
   Voice   : Boutique strategy firm meets AI systems. Calm, premium,
             human. "Find your path through the AI night."
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* Night sky surfaces */
  --night-950: #04060D;
  --night-900: #070B15;
  --night-850: #0A0F1D;
  --night-800: #0E1424;
  --night-750: #131A2D;
  --night-700: #1A2338;
  --night-650: #212C45;
  --line:      #26314C;
  --line-soft: #1B2338;

  /* Accents */
  --star:        #C4CEE0;   /* starlight silver, primary accent */
  --star-bright: #E9EFFA;
  --star-deep:   #8B95AB;
  --aurora:      #46E4C6;   /* teal */
  --aurora-dim:  #2BB9A0;
  --nebula:      #8C7DF6;   /* violet */
  --nebula-dim:  #6C5CE0;

  /* Text */
  --text:      #EEF2FC;
  --text-soft: #C3CBDE;
  --muted:     #A7B0C4;
  --muted-2:   #7A85A1;

  /* Gradients */
  --grad-aurora: linear-gradient(120deg, var(--nebula) 0%, var(--aurora) 100%);
  --grad-star:   linear-gradient(90deg, #DCE3F0 0%, #FFFFFF 26%, #CBD5E7 50%, #FFFFFF 76%, #E2E8F4 100%);
  --glow-star:   radial-gradient(closest-side, rgba(196,206,224,.35), transparent);
  --glow-aurora: radial-gradient(closest-side, rgba(70,228,198,.22), transparent);
  --glow-nebula: radial-gradient(closest-side, rgba(140,125,246,.24), transparent);

  /* Shape & motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,.7);
  --shadow-soft: 0 12px 40px -20px rgba(0,0,0,.6);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: clamp(1160px, 88vw, 1560px);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  position: relative;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--night-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Ambient star-field + aurora glows painted behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 75% 18%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.4px 1.4px at 46% 62%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 85% 70%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 12% 82%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.2px 1.2px at 62% 40%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 33% 12%, rgba(255,255,255,.4), transparent);
  opacity: .5;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 78% -5%, rgba(140,125,246,.16), transparent 70%),
    radial-gradient(50% 45% at 8% 8%, rgba(70,228,198,.10), transparent 70%),
    radial-gradient(70% 60% at 50% 108%, rgba(196,206,224,.07), transparent 70%);
  pointer-events: none;
}

/* --------------------------- Utilities ----------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(24px, 3vw, 44px); }
.section { padding: 110px 0; position: relative; }
.center { text-align: center; }
.stack-lg > * + * { margin-top: 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--star);
  padding: 7px 14px;
  border: 1px solid rgba(196,206,224,.28);
  border-radius: 100px;
  background: rgba(196,206,224,.06);
}
.eyebrow.alt { color: var(--aurora); border-color: rgba(70,228,198,.28); background: rgba(70,228,198,.06); }
.eyebrow.alt .dot { background: var(--aurora); box-shadow: 0 0 10px var(--aurora); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--star); box-shadow: 0 0 10px var(--star); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }

.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.025em;
}
.h2 { font-size: clamp(2rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--text-soft); max-width: 60ch; }
.muted { color: var(--muted); }
.grad-text { background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.star-text { color: var(--star); }
.serif-em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.section-head { max-width: 860px; margin: 0 0 56px; text-align: left; }
.section-head .lead { margin: 18px 0 0; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .96rem;
  padding: 14px 26px; border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #0F1420;
  background: var(--grad-star);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), inset 0 -2px 4px rgba(120,134,162,.4), 0 10px 28px -12px rgba(200,214,238,.65);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -2px 4px rgba(120,134,162,.35), 0 18px 42px -12px rgba(206,220,242,.8); }
.btn-ghost { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--star); color: var(--star); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--aurora);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: 13px; color: var(--star); }
.link-arrow svg { width: 16px; height: 16px; }

/* ------------------------------ Nav -------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,21,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line-soft); background: rgba(5,7,13,.86); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.28rem; letter-spacing: -.01em; }
.brand .mark { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(196,206,224,.5)); }
.brand b { font-weight: 600; }
.brand .co { color: var(--muted); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: .95rem; color: var(--text-soft); font-weight: 500; transition: color .25s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--star); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ------------------------------ Hero ------------------------------- */
.hero { position: relative; padding: 92px 0 96px; overflow: hidden; }
#starfield { position: fixed; inset: 0; z-index: -1; opacity: .9; pointer-events: none; }
.hero-glow {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(10px); pointer-events: none;
}
.hero .g1 { width: 520px; height: 520px; top: -160px; right: -80px; background: var(--glow-nebula); }
.hero .g2 { width: 440px; height: 440px; bottom: -180px; left: -120px; background: var(--glow-aurora); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 5vw, 110px); align-items: center; }

.hero h1 { margin: 22px 0 0; }
.hero .lead { margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero-proof .stat b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; display: block; line-height: 1; }
.hero-proof .stat span { font-size: .84rem; color: var(--muted); }
.hero-proof .stat b.aurora { color: var(--aurora); }
.hero-proof .stat b.star { color: var(--star); }

/* Hero visual: the "console" card */
.console {
  position: relative;
  background: linear-gradient(160deg, var(--night-750), var(--night-850));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow);
}
.console::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-xl); padding: 1px;
  background: linear-gradient(160deg, rgba(140,125,246,.5), transparent 40%, rgba(70,228,198,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.console-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.console-top .title { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.console-top .dots { display: flex; gap: 6px; }
.console-top .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.console-top .dots i:first-child { background: var(--star); }

.pipe-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(255,255,255,.02); border: 1px solid var(--line-soft);
  margin-bottom: 10px;
}
.pipe-row .l { display: flex; align-items: center; gap: 12px; }
.pipe-row .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.pipe-row .ico svg { width: 17px; height: 17px; }
.ico.violet { background: rgba(140,125,246,.14); color: var(--nebula); }
.ico.teal   { background: rgba(70,228,198,.14); color: var(--aurora); }
.ico.gold   { background: rgba(196,206,224,.14); color: var(--star); }
.pipe-row .name { font-weight: 600; font-size: .92rem; }
.pipe-row .sub { font-size: .78rem; color: var(--muted); }
.pipe-row .val { font-family: var(--font-display); font-size: 1.15rem; }
.pipe-row .val.up { color: var(--aurora); }

.console-bar { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; }
.console-bar .k { font-size: .8rem; color: var(--muted); }
.console-bar .v { font-family: var(--font-display); font-size: 1.05rem; color: var(--star); }

/* --------------------------- Logo strip ---------------------------- */
.trust { padding: 34px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust p { text-align: center; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.trust-row span { font-family: var(--font-display); font-size: 1.15rem; color: var(--muted); }

/* --------------------------- Card grids ---------------------------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(165deg, var(--night-800), var(--night-850));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.card .c-ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
}
.card .c-ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Numbered steps (the Nightstar System) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 32px 28px; border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--night-800), var(--night-850));
  border: 1px solid var(--line-soft);
}
.step .num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--star);
  line-height: 1; margin-bottom: 16px; display: block;
}
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .95rem; }
.step .connector { position: absolute; top: 46px; right: -14px; color: var(--line); z-index: 2; }
.step .connector svg { width: 24px; height: 24px; }

/* -------------------------- Split feature --------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: -1; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .check {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(70,228,198,.12); color: var(--aurora); margin-top: 2px;
}
.feature-list .check svg { width: 15px; height: 15px; }
.feature-list b { font-weight: 600; }
.feature-list p { color: var(--muted); font-size: .93rem; margin-top: 2px; }

.media-card {
  position: relative; border-radius: var(--r-xl); padding: 30px;
  background: linear-gradient(160deg, var(--night-750), var(--night-900));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.balance {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin-bottom: 24px;
}
.balance .side { text-align: center; padding: 22px 14px; border-radius: var(--r-md); border: 1px solid var(--line-soft); background: rgba(255,255,255,.02); }
.balance .side .big { font-family: var(--font-display); font-size: 1.5rem; }
.balance .side .lbl { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.balance .side.ai .big { color: var(--nebula); }
.balance .side.human .big { color: var(--star); }
.balance .plus { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-aurora); color: #0A0F1D; font-weight: 700; }
.metric-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line-soft); font-size: .92rem; }
.metric-row .m-v { color: var(--aurora); font-weight: 600; }

/* --------------------------- Testimonials -------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  padding: 30px; border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--night-800), var(--night-850));
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; color: var(--star); margin-bottom: 16px; }
.stars svg { width: 17px; height: 17px; }
.quote blockquote { font-size: 1.02rem; color: var(--text-soft); line-height: 1.6; flex: 1; }
.quote .who { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.quote .who b { display: block; font-size: .92rem; }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* ----------------------------- Pricing ----------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier {
  position: relative; padding: 34px 30px; border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--night-800), var(--night-850));
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.tier:hover { transform: translateY(-5px); border-color: var(--line); }
.tier.featured { border-color: rgba(196,206,224,.5); background: linear-gradient(170deg, #15182a, var(--night-850)); box-shadow: 0 30px 70px -30px rgba(196,206,224,.25); }
.tier .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #0C111C; background: var(--grad-star); padding: 6px 16px; border-radius: 100px;
}
.tier .t-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.tier .t-desc { color: var(--muted); font-size: .9rem; min-height: 42px; }
.tier .t-price { margin: 22px 0 4px; font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.tier .t-price small { font-size: .95rem; color: var(--muted); font-family: var(--font-sans); }
.tier .t-meta { font-size: .84rem; color: var(--aurora); margin-bottom: 24px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; flex: 1; }
.tier ul li { display: flex; gap: 11px; font-size: .92rem; color: var(--text-soft); align-items: flex-start; }
.tier ul .check { flex: none; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: rgba(70,228,198,.12); color: var(--aurora); margin-top: 2px; }
.tier ul .check svg { width: 12px; height: 12px; }
.tier .btn { width: 100%; justify-content: center; }

/* ------------------------------ FAQ -------------------------------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--r-md); background: var(--night-850); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .3s var(--ease); color: var(--star); flex: none; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: .96rem; }

/* ------------------------------ CTA -------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  position: relative; text-align: center; padding: 70px 40px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--night-750), var(--night-900));
  border: 1px solid var(--line); overflow: hidden;
}
.cta-card::before { content: ""; position: absolute; width: 500px; height: 500px; top: -260px; left: 50%; transform: translateX(-50%); background: var(--glow-star); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card .h2 { margin-bottom: 16px; }
.cta-card .lead { margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------ About ------------------------------ */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: center; }
.founder-photo {
  position: relative; border-radius: var(--r-xl); aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(160deg, var(--night-700), var(--night-900));
  border: 1px solid var(--line); display: grid; place-items: center;
}
.founder-photo .initials { font-family: var(--font-display); font-size: 5rem; color: var(--star); opacity: .9; }
.founder-photo .ring { position: absolute; inset: 22px; border: 1px solid rgba(196,206,224,.25); border-radius: calc(var(--r-xl) - 12px); }
.founder .role { color: var(--aurora); font-weight: 600; font-size: .9rem; letter-spacing: .04em; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value { padding: 26px; border-radius: var(--r-md); border: 1px solid var(--line-soft); background: var(--night-850); }
.value .v-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px; }
.value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .92rem; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat-band .s b { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem); display: block; line-height: 1; }
.stat-band .s span { font-size: .88rem; color: var(--muted); margin-top: 8px; display: block; }

/* ---------------------------- Contact ------------------------------ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.contact-info .info-item { display: flex; gap: 14px; margin-top: 24px; align-items: flex-start; }
.contact-info .info-item .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex: none; background: rgba(196,206,224,.1); color: var(--star); }
.contact-info .info-item .ic svg { width: 19px; height: 19px; }
.contact-info .info-item b { display: block; margin-bottom: 3px; }
.contact-info .info-item span { color: var(--muted); font-size: .94rem; line-height: 1.5; }

.form { padding: 34px; border-radius: var(--r-lg); background: var(--night-850); border: 1px solid var(--line-soft); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 8px; color: var(--text-soft); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: .96rem;
  color: var(--text); background: var(--night-800);
  border: 1px solid var(--line); border-radius: var(--r-sm); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--star); box-shadow: 0 0 0 3px rgba(196,206,224,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* ------------------------------ Footer ----------------------------- */
.footer { border-top: 1px solid var(--line-soft); padding: 64px 0 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .brand { margin-bottom: 16px; }
.footer .f-about { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--text-soft); font-size: .93rem; transition: color .2s; }
.footer ul a:hover { color: var(--star); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: var(--muted-2); font-size: .86rem; }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; border: 1px solid var(--line-soft); color: var(--muted); transition: all .25s; }
.footer-bottom .socials a:hover { color: var(--star); border-color: var(--star); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* --------------------------- Reveal anim --------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------- Page hero ---------------------------- */
.page-hero { padding: 80px 0 60px; text-align: center; position: relative; }
.page-hero h1 { margin-top: 18px; }
.page-hero .lead { margin: 20px auto 0; }

/* --------------------------- Responsive ---------------------------- */
@media (max-width: 940px) {
  .section { padding: 78px 0; }
  .hero-inner, .split, .founder, .contact { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media { order: 0; }
  .grid-3, .steps, .quotes, .tiers, .values { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .step .connector { display: none; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    gap: 0; padding: 12px 24px 20px; background: var(--night-900); border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .hero-proof { gap: 22px; }
  .tier.featured { transform: none; }
}
@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .balance { grid-template-columns: 1fr; }
  .balance .plus { margin: 0 auto; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------- Constellation wordmark ------------------------ */
.constellation {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}
.constellation svg { width: 100%; height: auto; overflow: visible; }
.const-lines {
  fill: none;
  stroke: var(--star);
  stroke-width: 1.7;
  stroke-opacity: .68;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.const-stars { filter: drop-shadow(0 0 6px rgba(255,255,255,1)) drop-shadow(0 0 22px rgba(210,220,240,.75)); }
.const-stars .cs { fill: #FFFFFF; animation: twinkle 3.6s ease-in-out infinite; }
.const-stars .cs.dim { fill: var(--star); opacity: .65; }
.const-stars .cs:nth-child(3n) { animation-duration: 4.6s; animation-delay: -1.4s; }
.const-stars .cs:nth-child(4n) { animation-duration: 2.9s; animation-delay: -.7s; }
.const-stars .cs:nth-child(5n) { animation-delay: -2.3s; }
.const-stars .cs:nth-child(7n) { animation-duration: 5.2s; animation-delay: -3.1s; }
@keyframes twinkle { 0%, 100% { opacity: .78; } 50% { opacity: 1; } }
.const-sub {
  margin-top: 14px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: .5em;
}
@media (max-width: 560px) {
  .constellation { margin-bottom: 34px; }
  .const-sub { letter-spacing: .34em; font-size: .66rem; }
}

@media (prefers-reduced-motion: reduce) {
  .const-stars .cs { animation: none; opacity: .9; }
}

/* ---------------- Aurora sweep (hero title card) -------------------- */
.aurora-sky {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 30% at 88% 92%, rgba(70,228,198,.30), transparent 68%),
    radial-gradient(40% 26% at 68% 66%, rgba(94,196,222,.20), transparent 70%),
    radial-gradient(44% 28% at 46% 44%, rgba(140,125,246,.20), transparent 70%),
    radial-gradient(38% 24% at 24% 22%, rgba(70,228,198,.14), transparent 72%),
    radial-gradient(34% 22% at 6% 4%, rgba(140,125,246,.16), transparent 74%);
  filter: blur(34px);
  animation: aurora-drift 16s ease-in-out infinite alternate;
}
.aurora-sky.layer2 {
  background:
    radial-gradient(30% 16% at 80% 80%, rgba(70,228,198,.16), transparent 70%),
    radial-gradient(28% 15% at 52% 52%, rgba(140,125,246,.13), transparent 72%),
    radial-gradient(26% 14% at 20% 16%, rgba(94,196,222,.12), transparent 74%);
  filter: blur(20px);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(-1.5%, 1.5%, 0) scale(1); opacity: .85; }
  100% { transform: translate3d(1.5%, -1.5%, 0) scale(1.06); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-sky { animation: none; }
}

/* -------------------- Founder photo & bio extras ------------------- */
.founder-photo .founder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(.78) contrast(1.05) brightness(.95) hue-rotate(-6deg);
}
.founder-photo .ring { z-index: 2; }
.founder-photo .nameplate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 52px 0 20px;
  background: linear-gradient(180deg, transparent, rgba(4,6,13,.9));
}
.method-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.method-chips span {
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: 6px 13px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--text-soft); background: rgba(255,255,255,.03);
}

/* ----------------- Mobile fold tightening (hero) ------------------- */
@media (max-width: 560px) {
  .hero { padding: 48px 0 72px; }
  .constellation { margin-bottom: 26px; }
  .hero h1 { margin-top: 12px; }
  .hero .lead { margin-top: 16px; font-size: 1.02rem; }
  .hero-actions { margin-top: 24px; }
}

/* ------------------ Hybrid card: who-does-what tags ---------------- */
.who-tag {
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.who-tag.ai { color: var(--nebula); background: rgba(140,125,246,.13); border: 1px solid rgba(140,125,246,.3); }
.who-tag.team { color: var(--star); background: rgba(196,206,224,.1); border: 1px solid rgba(196,206,224,.3); }

.privacy-link { color: var(--muted-2); transition: color .2s; }
.privacy-link:hover { color: var(--star); }

/* ===================== De-templating components ==================== */

/* Kicker: quiet small-caps section label (replaces pill on most sections) */
.kicker {
  display: flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted);
}
.kicker::before {
  content: "\2726"; color: var(--star); font-size: .85rem; letter-spacing: 0;
  text-shadow: 0 0 8px rgba(196,206,224,.7);
}

/* Editorial spread: statement left, numbered prose right, no cards */
.editorial { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 6vw, 120px); align-items: start; }
.ed-statement { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 3.1vw, 2.9rem); line-height: 1.16; letter-spacing: -.015em; }
.ed-item { display: grid; grid-template-columns: clamp(56px, 6vw, 92px) 1fr; gap: clamp(18px, 2.4vw, 30px); padding: clamp(24px, 3vw, 34px) 0; border-top: 1px solid var(--line-soft); }
.ed-item:last-child { border-bottom: 1px solid var(--line-soft); }
.ed-item .ed-num { font-family: var(--font-display); font-size: clamp(2rem, 2.8vw, 2.8rem); line-height: 1; color: var(--star); }
.ed-item h3 { font-size: 1.22rem; margin-bottom: 8px; }
.ed-item p { color: var(--muted); font-size: .98rem; }

/* Pull-quote band: one editorial breath in the founder's voice */
.pullquote { padding: clamp(90px, 10vw, 150px) 0; text-align: center; }
.pullquote blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.7rem, 3.1vw, 2.9rem); line-height: 1.3;
  max-width: 1060px; margin: 0 auto;
  background: linear-gradient(115deg, var(--star-bright) 5%, var(--nebula) 50%, var(--aurora) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pullquote cite { display: block; margin-top: 28px; font-style: normal; font-size: .88rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Featured testimonial + two supporting quotes */
.quote-feature { position: relative; padding-left: clamp(64px, 7vw, 116px); max-width: 1100px; margin-bottom: clamp(44px, 6vw, 72px); }
.quote-feature .qmark {
  position: absolute; left: 0; top: -4px;
  font-family: var(--font-display); font-size: clamp(4.6rem, 8vw, 7.6rem); line-height: 1;
  background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quote-feature .stars { margin-bottom: 18px; }
.quote-feature blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.7vw, 2.4rem); line-height: 1.32; color: var(--text); }
.quote-feature .who-line { margin-top: 22px; color: var(--muted); font-size: .95rem; }
.quote-feature .who-line b { color: var(--star); font-weight: 600; }
.quote-minor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); border-top: 1px solid var(--line-soft); padding-top: clamp(36px, 4vw, 54px); }
.quote-minor blockquote { color: var(--text-soft); font-size: 1.04rem; line-height: 1.65; margin: 14px 0 18px; }
.quote-minor .who b { display: block; font-size: .92rem; }
.quote-minor .who span { font-size: .82rem; color: var(--muted); }

/* Case-study card crosses the section seam on desktop */
@media (min-width: 941px) {
  #case-study .media-card { transform: translateY(-84px); }
  #case-study { padding-bottom: 60px; }
}

/* Constellation spine: weaves across the page, sparkle-star waypoints */
.starpath { position: absolute; top: 0; left: 0; width: 100%; z-index: 3; pointer-events: none; display: none; overflow: visible; }
@media (min-width: 1200px) { .starpath { display: block; } }
.sp-base { fill: none; stroke: url(#spFade); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 0.1 9 0.1 15 0.1 12; }
.sp-prog { fill: none; stroke: url(#spGrad); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 0.1 9 0.1 15 0.1 12; filter: drop-shadow(0 0 5px rgba(70,228,198,.45)); }
.sp-star path {
  fill: var(--star-deep); opacity: .55;
  transform-box: fill-box; transform-origin: center;
  transition: fill .5s var(--ease), opacity .5s var(--ease), filter .5s var(--ease), transform .5s var(--ease);
}
.sp-star.lit path {
  fill: #FFFFFF; opacity: 1; transform: scale(1.3);
  filter: drop-shadow(0 0 6px rgba(255,255,255,.95)) drop-shadow(0 0 16px rgba(196,206,224,.6));
  animation: sp-pulse 2.6s ease-in-out infinite;
}
@keyframes sp-pulse { 0%, 100% { transform: scale(1.3); } 50% { transform: scale(1.5); } }
.sp-comet {
  fill: #FFFFFF;
  filter: drop-shadow(0 0 5px rgba(255,255,255,1)) drop-shadow(0 0 16px rgba(70,228,198,.9)) drop-shadow(0 0 30px rgba(140,125,246,.5));
}
@media (prefers-reduced-motion: reduce) { .sp-star.lit path { animation: none; } }

@media (max-width: 940px) {
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .quote-minor-grid { grid-template-columns: 1fr; gap: 36px; }
  .quote-feature { padding-left: 52px; }
}
