/* ============================================
   SCALEXSOLUTION
   Black / Off-white / Gold
   Every color lives in the token block below.
   Change the palette there, nowhere else.
   ============================================ */
:root{
  /* --- surfaces (70%) --- */
  --bg:         #0B0D0F;   /* page base, primary background */
  --surface:    #151719;   /* cards, alternating sections, nav */
  --surface-2:  #1B1E21;   /* nested surfaces, hover fills */

  /* --- type (20%) --- */
  --text:       #F2F2F0;   /* headlines, body, nav */
  --text-muted: #A6A6A3;   /* descriptions, captions, metadata */

  /* --- accent (10%) --- */
  --gold:       #E5A23A;   /* CTA, key numbers, icons, accents */
  --gold-lite:  #F4B85A;   /* hover states, small highlights */
  --gold-dim:   rgba(229,162,58,0.12);
  --gold-glow:  rgba(229,162,58,0.34);
  --gold-ring:  rgba(229,162,58,0.55);
  --gold-halo:  rgba(229,162,58,0.20);
  --gold-wash:  rgba(229,162,58,0.13);
  --gold-pulse: rgba(229,162,58,0.50);
  --gold-void:  rgba(229,162,58,0);
  --bg-blur:    rgba(11,13,15,0.72);
  --bg-blur-2:  rgba(11,13,15,0.94);
  --scrim:      rgba(6,7,9,0.94);
  --on-gold:    #0B0D0F;   /* text sitting on a gold fill */

  /* --- lines --- */
  --line:        #51432E;              /* decorative dividers, card outlines */
  --line-strong: #6E5A3C;              /* functional edges: inputs, tracks */
  --line-soft:   rgba(242,242,240,0.07);

  /* --- fixed, for the light Calendly card only --- */
  --ink:        #0B0D0F;
  --white:      #FFFFFF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius: 16px;
  --wrap: 1180px;

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.34,1.36,.64,1);

  /* status, functional only, kept off-brand on purpose */
  --ok:   #F4B85A;   /* healthy, reads as brand gold */
  --warn: #C9743C;   /* burnt orange, clearly a step hotter */
  --bad:  #D9604F;   /* red, the only alarm color on the site */
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; background:var(--bg); }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.08; letter-spacing:-0.01em; color:var(--text); }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }
::selection{ background:var(--gold); color:var(--on-gold); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* scroll-reveal */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* page-load sequence */
.load-in{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
}
.load-in.is-in{ opacity:1; transform:translateY(0); }
header.load-in{ transform:translateY(-12px); }
header.load-in.is-in{ transform:translateY(0); }

/* hover roll-up links */
.hover-link{ position:relative; display:inline-flex; overflow:hidden; white-space:nowrap; }
.hover-in{ position:relative; display:block; transition:transform .3s ease, color .3s ease; }
.hover-in span{ position:absolute; top:100%; left:0; }
.hover-link:hover .hover-in{ transform:translateY(-100%); color:var(--gold); }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 28px; }
.services > .wrap,
.results > .wrap,
.process > .wrap,
.about > .wrap,
.book > .wrap{ position:relative; z-index:1; }
.accent-blue{ color:var(--gold); }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:4px; }

/* ============ buttons / tags ============ */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 28px;
  border-radius:999px;
  font-family:var(--font-display); font-weight:600; font-size:15px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
  position:relative; overflow:hidden; will-change:transform;
}
.btn--primary{
  background:var(--gold);
  color:var(--on-gold);
  box-shadow:0 8px 22px -8px var(--gold-glow);
}
.btn--primary:hover{
  background:var(--gold-lite);
  transform:translateY(-2px);
  box-shadow:0 14px 30px -10px var(--gold-glow);
}
.btn--primary::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(105deg,transparent 35%,rgba(255,255,255,0.32) 50%,transparent 65%);
  transform:translateX(-130%);
  transition:transform .7s var(--ease-out);
}
.btn--primary:hover::after{ transform:translateX(130%); }
.btn--ghost{ background:transparent; color:var(--text); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--gold); color:var(--gold); }
.btn--small{ padding:10px 20px; font-size:13.5px; }
.btn:active{ transform:translateY(0) scale(.985); }

.tag{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--font-mono); font-size:12px; font-weight:500; letter-spacing:0.04em;
  padding:5px 12px; border-radius:999px;
  background:rgba(242,242,240,0.05);
  border:1px solid var(--line);
  color:var(--text-muted);
}
.tag::before{
  content:""; width:5px; height:5px; border-radius:50%; flex:none;
  background:var(--gold);
}
.tag--meta::before{ background:var(--gold); }
.tag--google::before{ background:var(--text-muted); }
.tag--sm{ padding:3px 9px; font-size:10.5px; gap:6px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-mono); font-size:13px; font-weight:600; color:var(--gold);
  letter-spacing:0.03em; margin-bottom:26px;
}
.eyebrow__dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 4px var(--gold-dim); }

.section-eyebrow{ font-family:var(--font-mono); font-size:13px; font-weight:600; color:var(--gold); letter-spacing:0.04em; margin-bottom:14px; }
.section-eyebrow--light{ color:var(--gold); }
.section-title{ font-size:clamp(28px, 3.4vw, 42px); max-width:640px; color:var(--text); }
.section-title--light{ color:var(--text); }

/* ============ NAV ============ */
.nav{
  position:sticky; top:0; z-index:100;
  background:var(--bg-blur);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  box-shadow:none;
  transition:box-shadow .3s var(--ease-out), background .3s var(--ease-out);
}
.nav.is-stuck{
  background:var(--bg-blur-2);
  box-shadow:0 1px 0 var(--line-soft), 0 10px 30px -18px rgba(0,0,0,0.7);
}
.nav__inner{ display:flex; align-items:center; justify-content:space-between; height:88px; transition:height .3s var(--ease-out); }
.nav.is-stuck .nav__inner{ height:70px; }
.nav__logo{ display:flex; align-items:center; line-height:0; }
.nav__links{ display:flex; gap:32px; }
.nav__links a{ font-size:14.5px; font-weight:500; color:var(--text-muted); transition:color .15s ease; }
.nav__links a:hover{ color:var(--gold); }
.nav__cta{ display:inline-flex; }
.nav__burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav__burger span{ width:22px; height:2px; background:var(--text); border-radius:2px; transition:transform .28s var(--ease-out), opacity .2s ease; }
.nav.is-open .nav__burger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ opacity:0; }
.nav.is-open .nav__burger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.nav__mobile{ display:none; flex-direction:column; gap:2px; padding:8px 28px 22px; border-top:1px solid var(--line-soft); background:var(--bg); }
.nav__mobile a{ padding:13px 4px; font-size:15px; font-weight:500; border-bottom:1px solid var(--line-soft); color:var(--text-muted); }
.nav__mobile .btn{ margin-top:14px; justify-content:center; }

@media (max-width: 940px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
  .nav.is-open .nav__mobile{ display:flex; }
}

/* ============ HERO ============ */
.hero{ position:relative; padding:132px 0 128px; overflow:hidden; text-align:left; }

/* ambient gold haze, reused across sections */
.glow{
  position:absolute; pointer-events:none; border-radius:50%;
  filter:blur(110px); z-index:0;
  background:var(--gold);
  opacity:0.09;
  width:480px; height:480px;
  will-change:transform;
}
.glow--strong{ opacity:0.15; }
.glow-a{ top:-160px; left:-80px; animation:glowDriftA 26s ease-in-out infinite alternate; }
.glow-b{ bottom:-160px; right:-100px; animation:glowDriftB 32s ease-in-out infinite alternate; animation-delay:-8s; }
.hero .glow-a{ top:-200px; left:50%; margin-left:-280px; width:560px; height:420px; }
.hero .glow-b{ bottom:-220px; right:10%; left:auto; width:420px; height:420px; }

@keyframes glowDriftA{
  0%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(34px,-26px) scale(1.08); }
  100%{ transform:translate(-22px,20px) scale(0.95); }
}
@keyframes glowDriftB{
  0%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(-30px,22px) scale(1.06); }
  100%{ transform:translate(26px,-18px) scale(0.94); }
}
.hero__inner{
  position:relative; z-index:1;
  max-width:var(--wrap); display:grid;
  grid-template-columns:1.05fr .95fr; gap:76px; align-items:center;
}
.hero .eyebrow{ justify-content:flex-start; }
.hero__title{ font-size:clamp(34px,4.4vw,56px); font-weight:700; line-height:1.12; }
.hero__sub{ margin-top:26px; font-size:17.5px; color:var(--text-muted); max-width:460px; }
.hero__actions{ margin-top:40px; display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-start; }
.hero__platforms{ margin-top:32px; display:flex; gap:10px; justify-content:flex-start; }
.hero__grid-lines{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(242,242,240,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,242,240,0.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image:radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
}

/* ---------- signature: calculator ---------- */
.calc{
  position:relative; z-index:2;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:34px 32px 28px;
  box-shadow:0 40px 80px -40px rgba(0,0,0,0.8);
}
.calc__head{ display:flex; align-items:center; gap:10px; margin-bottom:28px; }
.calc__dot{
  width:8px; height:8px; border-radius:50%; background:var(--gold); flex:none;
  box-shadow:0 0 0 0 var(--gold-glow);
  animation:pulse 2.6s ease-out infinite;
}
@keyframes pulse{
  0%{   box-shadow:0 0 0 0  var(--gold-pulse); }
  70%{  box-shadow:0 0 0 9px var(--gold-void); }
  100%{ box-shadow:0 0 0 0  var(--gold-void); }
}
.calc__label{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.05em;
  color:var(--text-muted); text-transform:uppercase;
}
.calc__field{ margin-bottom:24px; }
.calc__field label{
  display:flex; align-items:baseline; justify-content:space-between;
  font-size:13.5px; color:var(--text-muted); margin-bottom:9px;
}
.calc__field output{
  font-family:var(--font-mono); font-size:15px; font-weight:500; color:var(--text);
}
.calc input[type=range]{
  -webkit-appearance:none; appearance:none;
  width:100%; height:3px; border-radius:3px; background:var(--line-strong);
  outline:none; cursor:pointer;
}
.calc input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none;
  width:18px; height:18px; border-radius:50%;
  background:var(--gold); border:3px solid var(--surface);
  box-shadow:0 0 0 1px var(--gold-ring);
  transition:transform .18s var(--ease-spring), box-shadow .18s ease;
}
.calc input[type=range]::-webkit-slider-thumb:hover{ transform:scale(1.22); box-shadow:0 0 0 6px var(--gold-halo); }
.calc input[type=range]::-moz-range-thumb{
  width:15px; height:15px; border-radius:50%;
  background:var(--gold); border:3px solid var(--surface); cursor:pointer;
}
.calc input[type=range]:focus-visible{ outline:2px solid var(--gold); outline-offset:6px; }

.calc__out{
  margin-top:30px; padding-top:26px;
  border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:16px;
}
.calc__out-row{ display:flex; align-items:baseline; justify-content:space-between; }
.calc__out-row span{ font-size:13.5px; color:var(--text-muted); }
.calc__out-row strong{
  font-family:var(--font-display); font-size:26px; color:var(--text); font-weight:600;
}
.calc__out-row:last-child strong{ color:var(--gold); }

.calc__verdict{ margin-top:26px; }
.calc__verdict-bar{
  display:block; height:4px; border-radius:4px;
  background:var(--line-strong); overflow:hidden;
}
.calc__verdict-bar i{
  display:block; height:100%; width:12%; border-radius:4px;
  background:var(--ok);
  transition:width .5s var(--ease-out), background .35s ease;
}
.calc__verdict p{
  margin-top:11px; font-family:var(--font-mono); font-size:12.5px;
  letter-spacing:.02em; color:var(--ok); transition:color .35s ease;
}
.calc__verdict[data-state="warn"] .calc__verdict-bar i{ background:var(--warn); }
.calc__verdict[data-state="warn"] p{ color:var(--warn); }
.calc__verdict[data-state="bad"] .calc__verdict-bar i{ background:var(--bad); }
.calc__verdict[data-state="bad"] p{ color:var(--bad); }
.calc__foot{
  margin-top:24px; padding-top:20px;
  border-top:1px solid var(--line-soft);
  font-size:12.5px; line-height:1.5; color:var(--text-muted);
}

@media (max-width:980px){
  .hero{ text-align:center; padding:92px 0 88px; }
  .hero__inner{ grid-template-columns:1fr; gap:52px; max-width:620px; margin:0 auto; }
  .hero .eyebrow, .hero__actions, .hero__platforms{ justify-content:center; }
  .hero__sub{ margin-left:auto; margin-right:auto; }
  .calc{ text-align:left; }
}

/* ============ SERVICES ============ */
.services{ position:relative; overflow:hidden; padding:104px 0; background:var(--bg); }
.service-grid{ margin-top:44px; display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.service-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 30px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 24px 44px -28px rgba(0,0,0,0.9);
}
.service-card__icon{ width:44px; height:44px; object-fit:contain; margin-bottom:16px; border-radius:10px; }
.service-card__tag{ margin-bottom:18px; }
.service-card h3{ font-size:22px; margin-bottom:12px; color:var(--text); }
.service-card__desc{ color:var(--text-muted); font-size:15px; margin-bottom:20px; }
.service-card__list li{ position:relative; padding-left:20px; font-size:14px; color:var(--text); margin-bottom:11px; }
.service-card__list li::before{
  content:""; position:absolute; left:0; top:9px;
  width:6px; height:6px; border-radius:1px;
  background:var(--gold);
}

@media (max-width:800px){ .service-grid{ grid-template-columns:1fr; } }

.service-extra-head{ margin-top:64px; }
.service-extra-title{ font-family:var(--font-display); font-size:22px; margin-top:2px; color:var(--text); }
.service-extra-grid{ margin-top:28px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.service-extra-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 20px;
  background:var(--surface);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-extra-card:hover{ transform:translateY(-3px); box-shadow:0 18px 34px -26px rgba(0,0,0,0.9); border-color:var(--gold); }
.service-extra-card__icon{ width:36px; height:36px; object-fit:contain; margin-bottom:14px; border-radius:9px; }
.service-extra-card h4{ font-family:var(--font-display); font-size:16px; margin-bottom:8px; color:var(--text); }
.service-extra-card p{ font-size:13.5px; color:var(--text-muted); }

@media (max-width:940px){ .service-extra-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .service-extra-grid{ grid-template-columns:1fr; } }

/* ============ RESULTS ============ */
.results{
  position:relative; overflow:hidden; padding:104px 0;
  background:var(--surface);
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
}
.results__lede{ margin-top:14px; color:var(--text-muted); font-size:15px; max-width:540px; }
.result-group{ margin-top:52px; }
.result-group:first-of-type{ margin-top:44px; }
.result-group__head{ margin-bottom:18px; }
.results-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.result-card{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s var(--ease-out), border-color .25s ease;
}
.result-card:hover{ transform:translateY(-4px); border-color:var(--gold); }
.result-card__body{ padding:26px 24px 24px; }
.result-card__stats{ display:flex; gap:26px; flex-wrap:wrap; margin-bottom:20px; }
.result-card__stats > div{ min-width:88px; }
.result-card__stats strong{
  display:block; font-family:var(--font-display); font-size:30px;
  color:var(--text); line-height:1.1;
}
/* headline metric per card carries the gold, the rest stay quiet */
.result-card__stats > div:first-child strong{ color:var(--gold); }
.result-card__stats span{ display:block; font-size:11.5px; color:var(--text-muted); margin-top:4px; }
.result-card__note{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.02em;
  color:var(--text-muted); margin-bottom:16px;
}
.result-card__proof{
  display:block; width:100%; padding:0; border:1px solid var(--line);
  border-radius:12px; overflow:hidden; background:var(--surface); cursor:zoom-in;
  position:relative; transition:border-color .25s ease;
}
.result-card__proof img{
  width:100%; display:block;
  opacity:.34; filter:grayscale(.55) contrast(.92);
  transition:opacity .35s var(--ease-out), filter .35s var(--ease-out), transform .5s var(--ease-out);
}
.result-card__proof:hover{ border-color:var(--gold); }
.result-card__proof:hover img{ opacity:1; filter:none; transform:scale(1.02); }
.result-card__zoom{
  position:absolute; left:14px; bottom:12px;
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.04em;
  color:var(--on-gold); background:var(--gold); padding:5px 11px; border-radius:999px;
}

@media (max-width:820px){ .results-grid{ grid-template-columns:1fr; } }

/* ============ PROCESS ============ */
.process{ position:relative; overflow:hidden; padding:104px 0; background:var(--bg); }
.process-list{ position:relative; margin-top:46px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.process-rail{
  position:absolute; top:34px; left:0; right:0; height:2px;
  background:var(--line); z-index:0;
}
.process-rail i{
  display:block; height:100%; width:0%;
  background:linear-gradient(90deg,var(--gold),var(--gold-lite));
  transition:width .9s var(--ease-out);
}
.process-step{
  position:relative; z-index:1;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 22px;
  transition:transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease;
}
.process-step:hover{
  transform:translateY(-4px); border-color:var(--gold);
  box-shadow:0 22px 42px -30px rgba(0,0,0,0.9);
}
.process-step__num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background:var(--gold); color:var(--on-gold);
  font-family:var(--font-mono); font-size:12px; font-weight:700;
  margin-bottom:16px;
}
.process-step h3{ font-size:17.5px; margin-bottom:10px; color:var(--text); }
.process-step p{ color:var(--text-muted); font-size:13.5px; }

@media (max-width:940px){ .process-list{ grid-template-columns:1fr 1fr; } .process-rail{ display:none; } }
@media (max-width:560px){ .process-list{ grid-template-columns:1fr; } }

/* ============ ABOUT / CEO ============ */
.about{
  position:relative; overflow:hidden; padding:88px 0;
  background:var(--surface);
  border-top:1px solid var(--line-soft);
}
.about__inner{ display:grid; grid-template-columns:1fr 0.5fr; gap:44px; align-items:center; }
.about__photo{
  width:100%; max-width:340px; margin-left:auto;
  border-radius:var(--radius); aspect-ratio:4/5; object-fit:cover;
  border:1px solid var(--line);
}
.about__role{ margin-top:4px; font-family:var(--font-mono); font-size:13px; color:var(--gold); }
.about__lede{ margin-top:14px; font-size:16px; color:var(--text-muted); max-width:440px; }
.about__copy .btn{ margin-top:20px; }

@media (max-width:820px){
  .about__inner{ grid-template-columns:1fr; }
  .about__photo{ max-width:260px; margin:0 auto; }
}

/* ============ BOOK ============ */
.book{ position:relative; overflow:hidden; padding:110px 0; background:var(--bg); }
.book__inner{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:start; }
.book__lede{ margin-top:18px; font-size:16px; color:var(--text-muted); max-width:420px; }
.book__contact{ margin-top:38px; display:flex; flex-direction:column; gap:16px; }
.book__contact li{ display:flex; align-items:center; gap:14px; }
.book__contact-icon{
  flex:none; width:40px; height:40px; border-radius:10px;
  background:var(--gold-dim); color:var(--gold);
  border:1px solid var(--line);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:16px;
}
.book__contact-label{ display:block; font-family:var(--font-mono); font-size:12px; color:var(--text-muted); margin-bottom:2px; }
.book__contact a{ font-size:15px; color:var(--text); font-weight:500; transition:color .15s ease; }
.book__contact a:hover{ color:var(--gold); }

.book__note{ margin-top:36px; padding-top:32px; border-top:1px solid var(--line); }
.book__note-title{ font-family:var(--font-display); font-size:19px; color:var(--text); font-weight:600; }
.book__note-sub{ margin-top:10px; font-size:14.5px; color:var(--text-muted); max-width:400px; }
.book__note-list{ margin-top:20px; display:flex; flex-direction:column; gap:12px; }
.book__note-list li{ position:relative; padding-left:22px; font-size:14px; color:var(--text); }
.book__note-list li::before{
  content:""; position:absolute; left:0; top:9px;
  width:6px; height:6px; border-radius:1px;
  background:var(--gold);
}

/* Dark until the user opens it. Calendly's own iframe is light, so the card
   flips to white only once the widget is actually live. */
.calendly-wrap{
  border-radius:var(--radius); overflow:hidden;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:0 30px 60px -24px rgba(0,0,0,0.75);
  min-height:420px; display:flex; align-items:center; justify-content:center;
  transition:background .3s var(--ease-out);
}
.calendly-wrap.is-live{ background:var(--white); }
.calendly-placeholder{ text-align:center; padding:56px 28px; }
.calendly-placeholder__title{ font-family:var(--font-display); font-size:22px; font-weight:600; color:var(--text); }
.calendly-placeholder__sub{ margin-top:8px; font-size:14.5px; color:var(--text-muted); }
.calendly-placeholder .btn{ margin-top:22px; }

@media (max-width:900px){ .book__inner{ grid-template-columns:1fr; } }

/* ============ FOOTER ============ */
.footer{ background:var(--bg); padding:52px 0 28px; border-top:1px solid var(--line-soft); }
.footer__inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; padding-bottom:28px; border-bottom:1px solid var(--line-soft); }
.footer__contact a{ font-size:14.5px; color:var(--text-muted); transition:color .15s ease; }
.footer__contact a:hover{ color:var(--gold); }
.footer__links{ display:flex; gap:24px; }
.footer__links a{ font-size:14px; color:var(--text-muted); transition:color .15s ease; }
.footer__links a:hover{ color:var(--gold); }
.footer__bottom{ padding-top:18px; }
.footer__bottom p{ font-size:13px; color:var(--text-muted); }

/* ============ UTILITIES / OVERLAYS ============ */

/* tabular figures everywhere numbers appear */
.result-card__stats strong,
.calc output,
.calc__out strong,
.process-step__num{ font-variant-numeric: tabular-nums; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--gold); color:var(--on-gold); padding:12px 20px;
  border-radius:0 0 10px 0; font-size:14px; font-weight:600;
}
.skip-link:focus{ left:0; }

.scroll-progress{
  position:fixed; top:0; left:0; right:0; height:2px; z-index:120;
  background:transparent; pointer-events:none;
}
.scroll-progress span{
  display:block; height:100%; width:0%;
  background:linear-gradient(90deg,var(--gold),var(--gold-lite));
  transition:width .08s linear;
}

/* spotlight-follow cards */
[data-spotlight]{ position:relative; }
[data-spotlight]::before{
  content:""; position:absolute; inset:0; border-radius:inherit;
  background:radial-gradient(320px circle at var(--mx,50%) var(--my,50%), var(--gold-wash), transparent 62%);
  opacity:0; transition:opacity .35s ease; pointer-events:none; z-index:0;
}
[data-spotlight]:hover::before{ opacity:1; }
.service-card > *, .service-extra-card > *, .result-card > *{ position:relative; z-index:1; }

/* lightbox */
.lightbox[hidden]{ display:none !important; }
.lightbox{
  position:fixed; inset:0; z-index:150;
  background:var(--scrim);
  backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  padding:5vh 4vw;
  opacity:0; transition:opacity .28s ease;
}
.lightbox.is-open{ opacity:1; }
.lightbox__fig{ margin:0; max-width:1100px; width:100%; }
.lightbox__fig img{
  width:100%; border-radius:12px; border:1px solid var(--line);
  transform:scale(.97); transition:transform .32s var(--ease-out);
}
.lightbox.is-open .lightbox__fig img{ transform:scale(1); }
.lightbox__fig figcaption{
  margin-top:14px; text-align:center;
  font-family:var(--font-mono); font-size:12.5px; color:var(--text-muted);
}
.lightbox__close{
  position:absolute; top:22px; right:26px;
  width:44px; height:44px; border-radius:50%;
  background:var(--surface); border:1px solid var(--line);
  color:var(--text); font-size:26px; line-height:1; cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .2s var(--ease-spring);
}
.lightbox__close:hover{ background:var(--gold); color:var(--on-gold); transform:rotate(90deg); }

/* ============ RESPONSIVE ============ */
@media (max-width:700px){
  .glow{ filter:blur(60px); width:300px; height:300px; }
}
@media (max-width:560px){
  .wrap{ padding:0 20px; }
  .hero{ padding:76px 0 68px; }
  .services, .results, .process, .about{ padding:64px 0; }
  .book{ padding-bottom:80px; }
  .hero__actions{ flex-direction:column; align-items:stretch; }
  .hero__actions .btn{ justify-content:center; }
}

@media (prefers-reduced-motion: reduce){
  .glow{ animation:none !important; }
  .calc__dot{ animation:none !important; }
  .btn--primary::after{ display:none; }
  [data-spotlight]::before{ display:none; }
}

/* ============================================================
   MOTION LAYER
   Everything here degrades to static under prefers-reduced-motion.
   ============================================================ */

/* ---------- logo sizing ---------- */
.nav__logo-img{ height:40px; width:auto; display:block; transition:height .3s var(--ease-out), opacity .2s ease; }
.nav.is-stuck .nav__logo-img{ height:33px; }
.nav__logo:hover .nav__logo-img{ opacity:.85; }
.footer__logo{ height:54px; width:auto; display:block; }
@media (max-width:560px){
  .nav__logo-img{ height:34px; }
  .nav.is-stuck .nav__logo-img{ height:30px; }
  .footer__logo{ height:44px; }
}

/* ---------- hero headline: masked line reveal ---------- */
.hero__title .line{ display:block; overflow:hidden; }
.hero__title .line > i{
  display:block; font-style:normal;
  transform:translateY(105%);
  transition:transform .95s var(--ease-out);
}
.hero__title.is-in .line > i{ transform:translateY(0); }

/* ---------- section title: gold rule draws under it ---------- */
[data-rule]{ position:relative; padding-bottom:18px; }
[data-rule]::after{
  content:""; position:absolute; left:0; bottom:0;
  height:2px; width:0; border-radius:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-void));
  transition:width 1s var(--ease-out) .12s;
}
[data-rule].is-drawn::after{ width:112px; }

/* ---------- scroll spy on the nav ---------- */
.nav__links a{ position:relative; }
.nav__links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:2px; border-radius:2px; background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease-out);
}
.nav__links a.is-active{ color:var(--text); }
.nav__links a.is-active::after{ transform:scaleX(1); }

/* ---------- 3D tilt, layered on top of the existing spotlight ---------- */
[data-spotlight]{
  transform-style:preserve-3d;
  will-change:transform;
}

/* ---------- process: steps light up as the rail passes ---------- */
.process-step{ opacity:.55; transition:opacity .5s var(--ease-out), transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease; }
.process-step.is-lit{ opacity:1; }
.process-step__num{
  transform:scale(.86); opacity:.7;
  transition:transform .45s var(--ease-spring), opacity .45s ease, box-shadow .45s ease;
}
.process-step.is-lit .process-step__num{
  transform:scale(1); opacity:1;
  box-shadow:0 0 0 6px var(--gold-dim);
}

/* ---------- hero parallax layers ---------- */
.hero__grid-lines,
.hero .glow{ will-change:transform; }

/* ---------- proof cards: gold sweep on hover ---------- */
.result-card__proof::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(115deg,transparent 40%,rgba(244,184,90,0.16) 50%,transparent 60%);
  transform:translateX(-120%);
  transition:transform .8s var(--ease-out);
}
.result-card__proof:hover::after{ transform:translateX(120%); }

/* ---------- calculator: value flashes gold when it changes ---------- */
.calc__out-row strong{ transition:color .3s ease, transform .3s var(--ease-spring); }
.calc__out-row strong.is-bumped{ transform:translateY(-2px); }

@media (prefers-reduced-motion: reduce){
  .hero__title .line > i{ transform:none !important; }
  [data-rule]::after{ width:112px !important; transition:none !important; }
  .process-step{ opacity:1 !important; }
  .process-step__num{ transform:none !important; opacity:1 !important; }
  .result-card__proof::after{ display:none; }
  [data-spotlight]{ transform:none !important; }
}
