/* =====================================================================
   RYZE 10X — Executive brand system
   Palette: deep navy / charcoal · warm ivory · champagne gold · platinum
   Type: Fraunces (display serif) · Hanken Grotesk (body) · IBM Plex Mono (data)
   ===================================================================== */

:root {
  /* Surfaces */
  --ivory:      #f6f2ea;
  --ivory-2:    #efe9dd;
  --paper:      #fffdf9;
  --navy:       #0c1a2b;
  --navy-2:     #0f2236;
  --navy-3:     #14304a;
  --charcoal:   #1f2a36;

  /* Ink */
  --ink:        #18222e;
  --ink-soft:   #41505e;
  --ink-faint:  #6c7a88;
  --on-navy:    #eef2f6;
  --on-navy-mut:#9fb1c4;

  /* Accents */
  --gold:       #c9a24b;
  --gold-soft:  #d8bd7e;
  --gold-deep:  #a9842f;
  --platinum:   #c7cdd4;
  --line:       #e2dccf;
  --line-navy:  rgba(255,255,255,.10);

  /* System */
  --radius:     18px;
  --radius-lg:  26px;
  --shell:      1180px;
  --shadow-sm:  0 1px 2px rgba(12,26,43,.04), 0 6px 18px rgba(12,26,43,.05);
  --shadow-md:  0 4px 10px rgba(12,26,43,.05), 0 22px 50px -22px rgba(12,26,43,.22);
  --shadow-lg:  0 30px 80px -30px rgba(12,26,43,.45);
  --ease:       cubic-bezier(.22,.61,.36,1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.shell { width: min(100% - 44px, var(--shell)); margin-inline: auto; }

/* ---------- Eyebrows / shared heads ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--gold-deep); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.section-head .lead { margin-top: 20px; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-soft); line-height: 1.65; }
.on-dark { color: var(--on-navy); }
.on-dark-muted { color: var(--on-navy-mut); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #261c05;
  box-shadow: 0 10px 26px -10px rgba(169,132,47,.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(169,132,47,.85); }

/* Highlighted primary CTA — the Career Score. Gold fill + soft breathing glow ring. */
.btn-score {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #261c05; font-weight: 700;
  box-shadow: 0 10px 26px -10px rgba(169,132,47,.7), 0 0 0 0 rgba(201,162,75,.55);
  animation: scorePulse 2.8s var(--ease) infinite;
}
.btn-score:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -10px rgba(169,132,47,.9), 0 0 0 6px rgba(201,162,75,.16);
  animation: none;
}
@keyframes scorePulse {
  0%, 100% { box-shadow: 0 10px 26px -10px rgba(169,132,47,.7), 0 0 0 0 rgba(201,162,75,.5); }
  50%      { box-shadow: 0 12px 30px -10px rgba(169,132,47,.8), 0 0 0 7px rgba(201,162,75,0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-score { animation: none; }
}
.btn-outline { border-color: rgba(255,255,255,.32); color: var(--on-navy); background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: var(--gold); color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--navy); }

/* Header CTAs — each colored so the trio reads as a set, next to each other */
.btn-navy {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: 0 10px 24px -14px rgba(12,26,43,.9);
}
.btn-navy:hover { background: var(--navy-3); border-color: var(--navy-3); transform: translateY(-2px); }
.btn-community {
  color: var(--gold-deep); background: rgba(201,162,75,.10); border-color: var(--gold-soft);
}
.btn-community:hover { color: #261c05; background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }

/* Keyboard focus — visible, on-brand, never on mouse click */
:where(a, button, .btn):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,234,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(12,26,43,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { display: block; height: 42px; width: auto; }
.brand-mark { display: inline-flex; }
.brand-name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 600; letter-spacing: -.02em; color: var(--navy); }
.brand-ten { color: var(--gold-deep); }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* Career Score — the priority destination, highlighted as a gold pill */
.nav-links a.nav-score {
  color: var(--gold-deep); font-weight: 700; padding: 6px 14px; border-radius: 999px;
  background: rgba(201,162,75,.12); border: 1px solid var(--gold-soft);
  transition: background .2s, color .2s, border-color .2s;
}
.nav-links a.nav-score::after { display: none; }
.nav-links a.nav-score:hover { color: #261c05; background: var(--gold-soft); border-color: var(--gold-soft); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
.header-cta .btn { padding: 10px 16px; font-size: .88rem; white-space: nowrap; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; padding: clamp(56px, 9vw, 120px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(201,162,75,.14), transparent 60%),
    radial-gradient(800px 460px at 8% 12%, rgba(20,48,74,.07), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

.hero-title { font-size: clamp(2.4rem, 5.2vw, 4.1rem); letter-spacing: -.025em; margin-bottom: 24px; color: var(--navy); }
.title-accent {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold) 60%, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 400;
}
.hero-sub { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink-soft); max-width: 540px; line-height: 1.62; }
.hero-offer {
  margin-top: 26px; margin-bottom: 30px; max-width: 560px;
  display: inline-block; padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(201,162,75,.26), rgba(216,189,126,.16));
  border: 1px solid rgba(201,162,75,.5);
  color: var(--navy);
  font-family: var(--font-body); font-weight: 700; letter-spacing: -.01em;
  font-size: clamp(1.06rem, 1.4vw, 1.24rem); line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-support { margin-top: 22px; font-size: .96rem; line-height: 1.6; color: var(--ink-faint); max-width: 540px; }
.final-actions { justify-content: center; margin-top: 30px; margin-bottom: 30px; }
.hero-actions.center { justify-content: center; }
.hero-note { margin-top: 20px; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--ink-faint); }

/* ---------- Hero card / gauge (shared) ---------- */
.hero-visual { position: relative; }
.dash-glow {
  position: absolute; inset: 8% -6% -10% 6%; z-index: -1; border-radius: 40px;
  background: radial-gradient(60% 60% at 60% 30%, rgba(201,162,75,.22), transparent 70%);
  filter: blur(20px);
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.dash-label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-navy-mut); margin-bottom: 12px; }

.gauge { position: relative; }
.gauge-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 1.7rem; color: #fff; font-weight: 500; }
.gauge-ring { transition: stroke-dashoffset 1.6s var(--ease); }

/* ===================================================================
   TRUST BAR
   =================================================================== */
.trustbar { background: var(--navy); padding: 22px 0; border-block: 1px solid var(--navy-3); }
.trust-track {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--on-navy-mut);
}
.trust-track .sep { color: var(--gold); }
.trust-track span:not(.sep):hover { color: var(--on-navy); }

/* ===================================================================
   SECTIONS — generic
   =================================================================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }

/* Section rhythm — hairline dividers between adjacent light surfaces so each
   band reads as its own section (dark sections supply their own contrast). */
.paths, .services, .founder { border-top: 1px solid var(--line); }

/* CARDS — urgency / pressure grid */
.card {
  position: relative; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card-index { font-family: var(--font-mono); font-size: .8rem; color: var(--gold-deep); letter-spacing: .1em; }
.card h3 { font-size: 1.3rem; margin: 16px 0 10px; color: var(--navy); }
.card p { font-size: .96rem; color: var(--ink-soft); }

/* SERVICES */
.services { background: var(--ivory); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.service-tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--ivory); }
.service-num { font-family: var(--font-mono); font-size: .82rem; color: var(--ink-faint); }
.service h3 { font-size: 1.55rem; color: var(--navy); margin-bottom: 12px; }
.service p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 22px; flex: 1; }
.link-cta { font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; align-self: flex-start; }
.link-cta span { transition: transform .3s var(--ease); color: var(--gold-deep); }
.link-cta:hover span { transform: translateX(6px); }

/* Career Sprint card — self-serve CTA (primary button + log-in link) */
.service-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.cta-sub {
  font-family: var(--font-body); font-weight: 500; font-size: .88rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-sub span { color: var(--gold-deep); transition: transform .3s var(--ease); }
.cta-sub:hover { color: var(--navy); }
.cta-sub:hover span { transform: translateX(5px); }

/* COMMUNITY — invitation band */
.community { background: linear-gradient(180deg, var(--navy-2), var(--navy)); }
.community .section-head { margin-bottom: 0; }
.community .btn { margin-top: 30px; }

/* FOUNDER */
.founder { background: var(--paper); }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.founder-mark { display: grid; place-items: center; }
.monogram {
  width: clamp(200px, 26vw, 300px); aspect-ratio: 1; border-radius: 32px;
  background: linear-gradient(165deg, var(--navy-2), var(--navy)); color: var(--gold);
  display: grid; place-items: center; position: relative; box-shadow: var(--shadow-lg);
  font-family: var(--font-display); font-size: clamp(5rem, 12vw, 8rem); font-weight: 600;
  border: 1px solid var(--line-navy);
}
.monogram span { position: absolute; bottom: 20%; right: 18%; font-family: var(--font-mono); font-size: .9rem; letter-spacing: .1em; color: var(--gold-soft); }
.monogram-logo {
  width: clamp(200px, 26vw, 300px); height: auto; aspect-ratio: 1; border-radius: 32px;
  object-fit: contain; box-shadow: var(--shadow-lg); border: 1px solid var(--line-navy);
}
.founder-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); color: var(--navy); margin-bottom: 18px; }
.founder-note {
  margin-top: 26px; padding: 22px 26px; border-left: 3px solid var(--gold);
  background: var(--paper); border-radius: 0 14px 14px 0; font-family: var(--font-display);
  font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--navy); line-height: 1.5;
}

/* FINAL CTA */
.final-cta { background: linear-gradient(165deg, var(--navy), var(--navy-2)); text-align: center; }
.final-inner { max-width: 760px; margin-inline: auto; }
.final-inner h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); color: #fff; margin-bottom: 20px; }

/* ---- Strategy call form ---- */
.strategy-form { margin-top: 38px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--on-navy-mut);
}
.field .optional { color: var(--gold-soft); text-transform: none; letter-spacing: .04em; }
.strategy-form input,
.strategy-form select,
.strategy-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--on-navy);
  background: rgba(255,255,255,.05); border: 1px solid var(--line-navy);
  border-radius: 12px; padding: 13px 15px;
  transition: border-color .25s var(--ease), background .25s, box-shadow .25s var(--ease);
}
.strategy-form textarea { resize: vertical; min-height: 96px; }
.strategy-form input::placeholder,
.strategy-form textarea::placeholder { color: rgba(159,177,196,.65); }
.strategy-form select { appearance: none; cursor: pointer; }
.strategy-form select option { color: var(--navy); }
.strategy-form input:focus,
.strategy-form select:focus,
.strategy-form textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.form-status {
  margin-top: 18px; padding: 14px 16px; border-radius: 12px;
  font-size: .95rem; border: 1px solid var(--line-navy);
}
.form-status.is-success { color: #d6f5e3; border-color: rgba(120,200,150,.4); background: rgba(80,170,120,.12); }
.form-status.is-error { color: #f7d9d6; border-color: rgba(220,120,110,.4); background: rgba(190,80,70,.12); }
.strategy-form.is-sent .form-actions,
.strategy-form.is-sent .form-row,
.strategy-form.is-sent .field { display: none; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: #08131f; color: var(--on-navy-mut); padding: 64px 0 30px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line-navy); }
.footer-brand .brand-name { color: #fff; font-size: 1.6rem; }
.footer-logo { display: block; height: 52px; width: auto; }
.footer-tag { margin-top: 12px; max-width: 360px; font-style: italic; font-family: var(--font-display); color: var(--on-navy-mut); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: start; }
.footer-links a { font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; }
.footer-fine { color: var(--gold-deep); }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.services-grid .service, .pressure-grid .card, .paths-grid .path-card,
.score-tracks .track-card, .process-grid .process-step { transition-delay: var(--d, 0s); }

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

/* ===================================================================
   REPOSITIONING — three-audience components
   =================================================================== */

/* Outline button on a LIGHT surface (hero secondary CTA) */
.btn-outline-dark { border-color: var(--line); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(12,26,43,.04); transform: translateY(-2px); }

/* ---------- Hero "paths into one score" flow visual ---------- */
.flow {
  position: relative;
  background: linear-gradient(165deg, var(--navy-2), var(--navy) 72%);
  border: 1px solid var(--line-navy); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg); color: var(--on-navy);
}
.flow-head { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--on-navy-mut); padding-bottom: 18px; }
.flow-inputs { display: grid; gap: 10px; }
.flow-node {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-navy);
  border-radius: 13px; padding: 14px 16px; font-weight: 500; font-size: .96rem; color: var(--on-navy);
}
.flow-tag { font-family: var(--font-mono); font-size: .7rem; color: var(--gold-soft); border: 1px solid rgba(201,162,75,.35); border-radius: 7px; padding: 3px 7px; }
.flow-converge { height: 38px; padding: 0 10px; }
.flow-converge svg { width: 100%; height: 100%; }
.flow-score {
  display: flex; align-items: center; gap: 18px;
  background: rgba(201,162,75,.1); border: 1px solid rgba(201,162,75,.34);
  border-radius: 16px; padding: 16px 18px;
}
.flow-score .gauge { position: relative; flex: none; }
.flow-score .gauge-num { font-size: 1.4rem; }
.flow-score-meta .dash-label { margin-bottom: 4px; color: var(--gold-soft); }
.flow-score-sub { font-size: .82rem; color: var(--on-navy-mut); }
.flow-arrow { text-align: center; color: var(--gold-soft); font-size: 1.15rem; margin: 12px 0; }
.flow-next {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px dashed rgba(255,255,255,.2);
  border-radius: 13px; padding: 14px 16px; font-weight: 600; color: #fff; font-size: .98rem;
}
.flow-next .tick { width: 16px; height: 16px; border-radius: 5px; background: var(--gold); position: relative; flex: none; }
.flow-next .tick::after { content: ""; position: absolute; left: 4.5px; top: 1.5px; width: 4px; height: 8px; border: solid #261c05; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Urgency (light) ---------- */
.urgency { background: var(--paper); }
.urgency .section-head .lead + .lead { margin-top: 14px; }
.pressure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pressure-grid .card {
  display: flex; flex-direction: column; padding: 36px 28px 30px;
}
/* Gold top-rule gives each card a "pillar" head */
.pressure-grid .card::before {
  content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 0 0 3px 3px;
}
.pressure-grid .card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pressure-grid .card p { font-size: .98rem; line-height: 1.6; }

/* ---------- Three paths (light) ---------- */
.paths { background: var(--ivory); }
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.path-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 30px 34px;
  scroll-margin-top: 96px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
/* Gold top-rule — shared pillar head with the pressure + score cards */
.path-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.path-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.path-kicker { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--ivory); }
.path-num { font-family: var(--font-mono); font-size: 1.1rem; color: var(--ink-faint); }
.path-card h3 { font-size: 1.32rem; color: var(--navy); margin-bottom: 14px; line-height: 1.22; }
.path-card > p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 22px; }
.path-best { border-top: 1px solid var(--line); padding-top: 20px; margin-bottom: 24px; flex: 1; }
.path-best-label { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.path-best ul { display: grid; gap: 9px; }
.path-best li { position: relative; padding-left: 22px; font-size: .94rem; color: var(--ink-soft); }
.path-best li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.path-card .link-cta { margin-top: auto; }
/* Career path card — self-serve label + CTA pinned to the bottom */
.path-cta { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.path-card .path-cta .link-cta { margin-top: 0; }
.self-serve-label {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-deep);
}

/* ---------- Ryze10/X Score (dark) ---------- */
.score { background: linear-gradient(180deg, var(--navy), var(--navy-2)); }
.center-head { margin-inline: auto; text-align: center; }
.score-tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.track-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.035); border: 1px solid var(--line-navy); border-radius: var(--radius);
  padding: 32px 28px 30px; transition: transform .35s var(--ease), border-color .35s, background .35s;
}
/* Gold top-rule — matches the light-section pillars */
.track-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
}
.track-card:hover { transform: translateY(-5px); border-color: rgba(201,162,75,.4); background: rgba(255,255,255,.06); }
.track-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line-navy); }
.track-name { font-family: var(--font-display); font-size: 1.35rem; color: #fff; }
.track-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.16); flex: none; }
.track-card ul { display: grid; gap: 11px; align-content: start; }
.track-card li { position: relative; padding-left: 22px; font-size: .94rem; color: var(--on-navy-mut); }
.track-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); }
.score-cta { text-align: center; margin-top: 48px; }
.score-cta .hero-note { margin-top: 16px; }

/* ---------- Interactive Score diagnostic (on dark) ---------- */
.diagnostic {
  margin-top: 48px; max-width: 720px; margin-inline: auto;
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(201,162,75,.13), transparent 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(20,48,74,.55), transparent 60%),
    linear-gradient(168deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    var(--navy-2);
  border: 1px solid var(--line-navy); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: 0 30px 70px -40px rgba(0,0,0,.7);
  scroll-margin-top: 96px;
}
/* Closed by default (set by JS) so the assessment opens from a "Take the Score"
   CTA instead of sitting permanently expanded and leaving dead space. */
.diagnostic.is-collapsed { display: none; }
.diag-screen { animation: diagIn .5s var(--ease) both; }
@keyframes diagIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Questionnaire form: long, readable question labels (not the mono eyebrow style) */
.diag-intro-copy { color: var(--on-navy-mut); font-size: 1.02rem; line-height: 1.6; max-width: 56ch; margin-bottom: 4px; }
.diag-form { margin-top: 30px; }
.diag-form .diag-q label {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.4;
  letter-spacing: 0; text-transform: none; color: #fff;
}
.diag-result-sent {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em;
  color: var(--gold-soft); margin: -10px 0 22px;
}

.diag-eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px;
}
.diagnostic h3 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); color: #fff; line-height: 1.2; margin-bottom: 14px; }
.diag-intro p { color: var(--on-navy-mut); font-size: 1.02rem; line-height: 1.6; max-width: 56ch; margin-bottom: 26px; }
.diag-note { margin-top: 18px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--ink-faint); }
.diag-note a, .diag-fulllink { color: var(--gold-soft); }
.diag-note a:hover { color: #fff; }

/* Progress + step meta */
.diag-progress { height: 4px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 22px; }
.diag-progress-bar { display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft)); transition: width .45s var(--ease); }
.diag-step { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.diag-step-label { color: var(--ink-faint); }
.diag-step-sep, .diag-step [data-diag-total] { color: var(--ink-faint); }
.diag-question { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: #fff; line-height: 1.28; margin-bottom: 24px; }

/* Option buttons */
.diag-options { display: flex; flex-direction: column; gap: 12px; }
.diag-option {
  position: relative; text-align: left; width: 100%; cursor: pointer; font: inherit;
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  color: var(--on-navy); background: rgba(255,255,255,.035);
  border: 1px solid var(--line-navy); border-radius: 14px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .2s var(--ease);
}
.diag-option:hover { border-color: var(--gold-soft); background: rgba(201,162,75,.08); transform: translateY(-1px); }
.diag-option .diag-key {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .78rem; color: var(--gold-soft);
  border: 1px solid rgba(201,162,75,.35); background: rgba(201,162,75,.06);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.diag-option .diag-text { font-size: .98rem; line-height: 1.45; padding-top: 2px; }
.diag-option.is-selected { border-color: var(--gold); background: rgba(201,162,75,.14); }
.diag-option.is-selected .diag-key { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.diag-options.is-locked .diag-option:not(.is-selected) { opacity: .42; pointer-events: none; }
.diag-option-custom { border-style: dashed; }

/* Custom ("own words") panel */
.diag-custom-panel { margin-top: 12px; animation: diagIn .35s var(--ease) both; }
.diag-custom-panel textarea {
  width: 100%; box-sizing: border-box; resize: vertical; min-height: 84px;
  padding: 14px 16px; color: var(--on-navy); font: inherit; font-size: .98rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-navy); border-radius: 12px;
}
.diag-custom-panel textarea::placeholder { color: rgba(159,177,196,.6); }
.diag-custom-panel textarea:focus { outline: none; border-color: var(--gold); }
.diag-custom-actions { display: flex; gap: 12px; margin-top: 12px; }
.diag-custom-submit {
  cursor: pointer; font: inherit; font-weight: 600; font-size: .9rem; color: var(--navy);
  padding: 11px 22px; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
}
.diag-custom-submit:disabled { opacity: .5; cursor: not-allowed; }
.diag-custom-cancel { cursor: pointer; font: inherit; font-size: .88rem; color: var(--gold-soft); background: none; border: 0; padding: 11px 6px; }
.diag-custom-cancel:hover { color: #fff; }

/* Reaction line after an answer */
.diag-reaction {
  margin-top: 20px; padding: 14px 18px; border-radius: 12px;
  border: 1px solid rgba(201,162,75,.3); background: rgba(201,162,75,.07);
  color: var(--on-navy); font-size: .96rem; line-height: 1.5;
  display: flex; gap: 12px; align-items: flex-start; animation: diagIn .35s var(--ease) both;
}
.diag-reaction::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }

.diag-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 22px; min-height: 20px;
}
.diag-controls .diag-step { margin-bottom: 0; }
.diag-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.diag-back { cursor: pointer; font: inherit; font-size: .85rem; color: var(--gold-soft); background: none; border: 0; padding: 6px 0; }
.diag-back:hover { color: #fff; }

/* Result */
.diag-result { text-align: center; }
.diag-result-gauge { display: flex; align-items: center; justify-content: center; gap: 22px; margin-bottom: 26px; flex-wrap: wrap; }
.diag-result-gauge .gauge-num { font-size: 2.1rem; }
.diag-result-meta { text-align: left; }
.diag-result-band { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .08em; color: var(--gold-soft); margin-top: 2px; }
.diag-verdict { color: #fff; margin-bottom: 12px; }
.diag-result-copy { color: var(--on-navy-mut); font-size: 1.02rem; line-height: 1.6; max-width: 56ch; margin: 0 auto 26px; }
.diag-result-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .diag-result-gauge { flex-direction: column; gap: 14px; }
  .diag-result-meta { text-align: center; }
  .diag-result-cta .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .diag-screen, .diag-reaction, .diag-custom-panel { animation: none; }
  .diag-progress-bar { transition: none; }
}

/* ---------- Executive business assessment (multi-section form) ---------- */
.assess-progress { margin: 26px 0 4px; }
.assess-progress-meta {
  margin-top: 9px; font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint);
}
.assess-progress-meta [data-progress-pct] { color: var(--gold-soft); }

.assess-form { margin-top: 8px; }

/* Section blocks — reset the fieldset, add a divider + header */
.assess-section { border: 0; margin: 0; padding: 32px 0 8px; }
.assess-section + .assess-section { border-top: 1px solid var(--line-navy); }
.assess-section-head {
  display: grid; grid-template-columns: auto 1fr; align-items: baseline;
  column-gap: 14px; row-gap: 4px; padding: 0; margin-bottom: 22px; width: 100%;
}
.assess-section-num {
  grid-row: span 2; align-self: start; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em;
  color: var(--gold-soft); border: 1px solid rgba(201,162,75,.35); background: rgba(201,162,75,.06);
}
.assess-section-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: #fff; line-height: 1.2;
}
.assess-section-sub { grid-column: 2; color: var(--on-navy-mut); font-size: .92rem; line-height: 1.5; }

/* Segmentation chooser — business vs. career path */
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.seg-opt { cursor: pointer; display: block; }
.seg-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.seg-card {
  display: flex; flex-direction: column; gap: 8px; height: 100%;
  padding: 24px 22px; border: 1px solid var(--line-navy); border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.seg-opt:hover .seg-card { border-color: var(--gold-soft); background: rgba(201,162,75,.08); transform: translateY(-2px); }
.seg-card-eyebrow { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.seg-card-title { font-family: var(--font-display); font-size: 1.18rem; color: #fff; line-height: 1.22; }
.seg-card-sub { font-size: .92rem; color: var(--on-navy-mut); line-height: 1.5; }
.seg-opt input:checked + .seg-card { border-color: var(--gold); background: rgba(201,162,75,.15); box-shadow: inset 0 0 0 1px var(--gold); }
.seg-opt input:focus-visible + .seg-card { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 620px) { .seg-grid { grid-template-columns: 1fr; } }

/* Weighted answer choices (stacked cards; replaces the 1–10 rows) */
.rate { padding: 14px 0; }
.rate + .rate { border-top: 1px solid rgba(255,255,255,.05); }
.rate-label {
  display: block; color: #fff; font-size: 1rem; line-height: 1.45; margin-bottom: 12px;
}
.answer-grid { display: flex; flex-direction: column; gap: 9px; }
.answer-opt { cursor: pointer; }
.answer-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.answer-opt span {
  position: relative; display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 15px; border-radius: 10px;
  font-size: .95rem; line-height: 1.45; color: var(--on-navy);
  overflow-wrap: break-word; min-width: 0;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-navy);
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.answer-opt span::before {
  content: ""; flex: 0 0 auto; margin-top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid var(--line-navy); background: transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.answer-opt:hover span { border-color: var(--gold-soft); background: rgba(201,162,75,.08); }
.answer-opt:hover span::before { border-color: var(--gold-soft); }
.answer-opt input:checked + span {
  border-color: var(--gold); background: rgba(201,162,75,.12); color: #fff; transform: translateY(-1px);
}
.answer-opt input:checked + span::before {
  border-color: var(--gold);
  background: radial-gradient(circle, var(--gold) 0 45%, transparent 52%);
  box-shadow: 0 0 0 1px var(--gold);
}
.answer-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Custom answer field — revealed only when "Other" is selected */
.answer-custom { margin: 2px 0 4px; }
.answer-custom[hidden] { display: none; }
.answer-custom textarea { min-height: 70px; }

/* Result: band description under the fixed confirmation copy */
.diag-result-band-copy { color: var(--on-navy-mut); font-size: .96rem; }

@media (max-width: 560px) {
  /* Roomier card so answer cards never crowd the edges */
  .diagnostic { padding: 26px 18px; }

  .answer-opt span { padding: 12px 13px; font-size: .9rem; gap: 10px; }
  .assess-section-head { column-gap: 11px; }
  .assess-section-num { width: 34px; height: 34px; }

  /* Step counter on its own line; Back + Next share a full-width, tappable row */
  .diag-controls { gap: 14px; }
  .diag-controls .diag-step { flex-basis: 100%; }
  .diag-nav { width: 100%; margin-left: 0; gap: 14px; }
  .diag-nav .btn { flex: 1 1 auto; }
  .diag-back { flex: 0 0 auto; padding: 12px 4px; }

  /* Final submit spans the card for an easy tap target */
  .assess-form .form-actions { width: 100%; }
  .assess-form .form-actions .btn { width: 100%; }
}

/* ---------- Legal pages (Terms / Privacy) ---------- */
.legal { background: var(--paper); }
.legal-shell { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 12px 0 6px; }
.legal-updated { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 28px; }
.legal h2 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); margin: 30px 0 10px; }
.legal p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; max-width: 66ch; }
.legal a { color: var(--gold-deep); }
.legal a:hover { color: var(--navy); }

/* ---------- Process (light) ---------- */
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.process-step {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: 1rem; font-weight: 500; letter-spacing: .04em;
  color: var(--gold-deep); background: var(--paper); border: 1px solid var(--gold-soft);
}
.process-step h3 { font-size: 1.32rem; color: var(--navy); margin: 0 0 9px; }
.process-step p { color: var(--ink-soft); font-size: .93rem; line-height: 1.55; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .88rem; }
  .header-cta .btn-navy, .header-cta .btn-community { display: none; }
}

@media (max-width: 1024px) {
  .pressure-grid, .paths-grid, .score-tracks { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; gap: 10px 18px; }
  .nav-links { order: 3; flex-basis: 100%; flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; max-width: 520px; margin-inline: auto; width: 100%; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-mark { order: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .title-break { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-base { flex-direction: column; }
}

/* ===================================================================
   AI CONCIERGE — chat assistant widget
   Brand-aligned: navy panel, champagne-gold launcher, mono labels.
   =================================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.concierge {
  position: fixed; right: clamp(16px, 4vw, 32px); bottom: clamp(16px, 4vw, 32px);
  z-index: 200; font-family: var(--font-body);
}

/* ---- Launcher ---- */
.concierge-launch {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px 13px 17px; border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: #261c05;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 14px 34px -12px rgba(169,132,47,.75), 0 2px 6px rgba(12,26,43,.12);
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .2s var(--ease);
}
.concierge-launch:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(169,132,47,.9), 0 3px 8px rgba(12,26,43,.16); }
.concierge-launch-icon { width: 21px; height: 21px; }
/* When open, hide the launcher (panel takes its place). */
.concierge[data-state="open"] .concierge-launch { opacity: 0; pointer-events: none; transform: scale(.9); }

/* ---- Backdrop (mobile scrim + always-available tap-to-dismiss) ---- */
.concierge-backdrop {
  position: fixed; inset: 0; z-index: -1;
  background: rgba(8, 17, 30, .55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .28s var(--ease);
}
.concierge-backdrop[hidden] { display: none; }

/* Drag handle only appears on the mobile bottom sheet (see media query). */
.concierge-grab { display: none; }

/* ---- Panel ---- */
.concierge-panel {
  position: absolute; right: 0; bottom: 0;
  width: min(92vw, 384px); max-height: min(78vh, 620px);
  /* Hidden by default and shown only via the `open` state below. Visibility is
     driven entirely by `[data-state]` — never by the `hidden` attribute racing
     a `display: flex`, which is a specificity fight that silently fails when a
     later rule (e.g. the mobile sheet) restates `.concierge-panel`. With the
     panel `display: none` at rest, closing is guaranteed regardless of source
     order or media query. */
  display: none; flex-direction: column;
  background: var(--navy); color: var(--on-navy);
  border: 1px solid var(--line-navy); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.concierge[data-state="open"] .concierge-panel {
  display: flex;
  animation: concierge-in .32s var(--ease) both;
}
@keyframes concierge-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.concierge-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 20px 20px 16px; border-bottom: 1px solid var(--line-navy);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}
.concierge-eyebrow {
  display: block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.concierge-title { font-size: 1.16rem; color: var(--on-navy); line-height: 1.18; }
.concierge-close {
  flex: none; display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--line-navy); background: rgba(255,255,255,.04);
  color: var(--on-navy-mut); cursor: pointer; transition: color .2s, border-color .2s, background .2s;
}
.concierge-close:hover { color: #fff; border-color: var(--gold); background: rgba(255,255,255,.08); }

/* ---- Message log ---- */
.concierge-log {
  flex: 1 1 auto; overflow-y: auto; padding: 18px 18px 6px;
  display: flex; flex-direction: column; gap: 12px;
  scrollbar-width: thin; scrollbar-color: var(--navy-3) transparent;
}
.concierge-log::-webkit-scrollbar { width: 8px; }
.concierge-log::-webkit-scrollbar-thumb { background: var(--navy-3); border-radius: 8px; }

.concierge-msg { max-width: 86%; }
.concierge-msg p { font-size: .92rem; line-height: 1.55; padding: 11px 14px; border-radius: 14px; }
.concierge-msg + .concierge-msg { margin-top: 2px; }
.concierge-msg--bot { align-self: flex-start; }
.concierge-msg--bot p {
  background: var(--paper); color: var(--ink);
  border-bottom-left-radius: 5px;
}
.concierge-msg--user { align-self: flex-end; }
.concierge-msg--user p {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  color: var(--on-navy); border: 1px solid var(--line-navy); border-bottom-right-radius: 5px;
}
.concierge-msg--bot.is-streaming p::after {
  content: "▍"; color: var(--gold); margin-left: 1px; animation: concierge-blink 1s steps(2) infinite;
}
@keyframes concierge-blink { 50% { opacity: 0; } }

/* Typing dots while waiting for the first token */
.concierge-typing p { display: inline-flex; gap: 5px; align-items: center; }
.concierge-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-faint);
  animation: concierge-bounce 1.2s var(--ease) infinite;
}
.concierge-typing span:nth-child(2) { animation-delay: .15s; }
.concierge-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes concierge-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* ---- Suggestion chips ---- */
.concierge-suggest {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 18px 4px;
}
.concierge-chip {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.04); color: var(--on-navy-mut);
  border: 1px solid var(--line-navy); transition: color .2s, border-color .2s, background .2s;
}
.concierge-chip:hover { color: #fff; border-color: var(--gold); background: rgba(201,162,75,.12); }
.concierge-suggest[hidden] { display: none; }

/* ---- Composer ---- */
.concierge-form {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 12px 16px 6px; margin-top: 4px;
}
.concierge-input {
  flex: 1 1 auto; resize: none; max-height: 120px;
  font-family: var(--font-body); font-size: .92rem; line-height: 1.5; color: var(--on-navy);
  background: rgba(255,255,255,.05); border: 1px solid var(--line-navy); border-radius: 14px;
  padding: 11px 14px; transition: border-color .2s, background .2s;
}
.concierge-input::placeholder { color: var(--on-navy-mut); }
.concierge-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.08); }
.concierge-send {
  flex: none; display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; border: 1px solid transparent; color: #261c05; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  transition: transform .2s var(--ease), opacity .2s;
}
.concierge-send:hover { transform: translateY(-1px); }
.concierge-send:disabled { opacity: .45; cursor: default; transform: none; }

.concierge-fine {
  font-size: .72rem; color: var(--on-navy-mut); text-align: center;
  padding: 0 18px 14px; line-height: 1.4;
}
.concierge-fine a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.concierge-fine a:hover { color: #fff; }

:where(.concierge button, .concierge a, .concierge textarea):focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

@media (max-width: 560px) {
  .concierge { right: 12px; bottom: 12px; left: 12px; }
  .concierge-launch { margin-left: auto; padding: 12px 18px; font-size: .9rem; }

  /* Dim + lock the page so the sheet reads as a focused, app-like surface. */
  .concierge-backdrop { pointer-events: auto; }
  .concierge[data-state="open"] .concierge-backdrop { opacity: 1; }
  body.concierge-lock { overflow: hidden; }

  /* Full-width bottom sheet, pinned to the viewport bottom. */
  .concierge-panel {
    position: fixed; left: 0; right: 0; bottom: 0;
    width: 100%; border-radius: 20px 20px 0 0;
    /* Dynamic viewport units keep the panel — and its close button in the
       header — inside the visible area even while the mobile browser's
       toolbars are showing. `vh` measures the largest viewport, so a panel
       anchored to the bottom could push its header (the only close control)
       up behind the browser chrome, leaving no way to dismiss it. */
    max-height: 88vh;
    max-height: min(88dvh, calc(100dvh - 12px));
    padding-bottom: env(safe-area-inset-bottom);
  }
  .concierge[data-state="open"] .concierge-panel {
    animation: concierge-sheet-in .3s var(--ease) both;
  }

  /* Keep the header (and its close controls) pinned while the log scrolls. */
  .concierge-head {
    position: relative;
    padding: 14px 16px 14px;
    padding-top: max(14px, env(safe-area-inset-top));
  }
  /* Grab handle: a familiar, thumb-sized dismiss affordance at the top. */
  .concierge-grab {
    display: block; position: absolute; top: 7px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 5px; padding: 0;
    border: none; border-radius: 999px; background: var(--navy-3);
    cursor: pointer;
  }
  /* Larger, unmissable close tap target (≥44px) on touch. */
  .concierge-close { width: 44px; height: 44px; }
  .concierge-title { font-size: 1.08rem; }
}

@keyframes concierge-sheet-in {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .concierge-launch, .concierge-send, .concierge-close { transition: none; }
  .concierge[data-state="open"] .concierge-panel { animation: none; }
  .concierge-msg--bot.is-streaming p::after,
  .concierge-typing span { animation: none; }
}

/* ===================================================================
   HOMEPAGE — pain statements, front-door callout, proof, CTA emphasis
   =================================================================== */

/* Pain statements under "Why Now" (light) */
.pain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 4px; }
.pain-list li {
  position: relative; padding: 20px 22px 20px 44px;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  color: var(--navy); line-height: 1.32;
}
.pain-list li::before {
  content: "\201C"; position: absolute; left: 15px; top: 14px;
  font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--gold-deep);
}
/* Final line ("You are qualified, but invisible.") spans full width as a punch */
.pain-list li:last-child {
  grid-column: 1 / -1; padding-left: 22px; text-align: center; font-style: italic;
  background: linear-gradient(100deg, rgba(201,162,75,.16), rgba(216,189,126,.08));
  border-color: rgba(201,162,75,.5);
}
.pain-list li:last-child::before { display: none; }
.pain-punch {
  margin-top: 30px; text-align: center;
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--navy); line-height: 1.2;
}
.pain-punch span {
  display: block; margin-top: 10px;
  font-family: var(--font-body); font-size: 1.02rem; color: var(--ink-soft); line-height: 1.55;
}

/* Career Score "front door" callout (dark section) */
.score-callout-wrap { margin-top: 22px; }
.score-callout {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  background: rgba(201,162,75,.12); border: 1px solid rgba(201,162,75,.42);
  color: var(--gold-soft); font-weight: 600; font-size: 1.02rem;
}

/* "Stop applying blindly" tagline inside the Career Sprint card */
.path-punch {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px;
}

/* Proof placeholder section (light) */
.proof { background: var(--ivory); border-top: 1px solid var(--line); }
.proof .section-head { margin-bottom: 44px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px dashed var(--gold-soft); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.proof-badge {
  display: inline-block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep); padding: 5px 11px; margin-bottom: 16px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--ivory);
}
.proof-card h3 { font-size: 1.24rem; color: var(--navy); margin-bottom: 8px; }
.proof-card p { font-size: .95rem; color: var(--ink-soft); line-height: 1.55; }

/* Final CTA emphasis + secondary book-a-call framing */
.final-punch {
  margin-top: 18px; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--gold-soft);
}
.final-secondary { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-navy); }
.final-secondary-note {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em;
  color: var(--on-navy-mut); line-height: 1.5;
}

@media (max-width: 1024px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pain-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
}
