/* ═══════════════════════════════════════════
   CLYVIA — PRECISION DARK
   Stripe clarity · Linear premium · Apple copy
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, input, button { font-family: inherit; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }

/* ─── TOKENS ─── */
:root {
  /* Background */
  --bg:        #07070d;
  --bg-2:      #0c0c14;
  --bg-3:      #111119;
  --bg-card:   #141420;

  /* Borders */
  --line:      rgba(255,255,255,.07);
  --line-2:    rgba(255,255,255,.12);

  /* Text — ALL legible */
  --t-1:  #f0eeff;       /* headlines */
  --t-2:  #c8c8dc;       /* body copy */
  --t-3:  #8888a4;       /* secondary */
  --t-4:  #555568;       /* captions */

  /* Brand */
  --gold:      #c9943a;
  --gold-lt:   #e8b86d;
  --gold-dim:  rgba(201,148,58,.15);
  --gold-glow: rgba(201,148,58,.12);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  /* Transitions */
  --t-fast:   .18s ease;
  --t-med:    .3s ease;
  --t-slow:   .5s cubic-bezier(.22,1,.36,1);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,148,58,.3); border-radius: 2px; }

/* ─── BASE ─── */
body {
  background: var(--bg);
  color: var(--t-2);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.t-display {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--t-1);
}
.t-italic { font-style: italic; color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
}

/* Actual backdrop div — no pseudo-element tricks */
.nav-bg {
  position: absolute; inset: 0;
  background: rgba(7,7,13,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
#nav.scrolled .nav-bg {
  background: rgba(7,7,13,.88);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: var(--line);
}

.nav-inner {
  position: relative; z-index: 1;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-1);
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--t-3);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--t-1); }

/* Desktop CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-cta a:first-child {
  font-size: .85rem;
  font-weight: 500;
  color: var(--t-3);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-cta a:first-child:hover { color: var(--t-1); }

/* Hamburger — mobile only */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px;
}
.hamburger .bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--t-1);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  padding: 88px 24px 40px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.mobile-drawer nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--t-1);
  transition: color var(--t-fast);
}
.mobile-drawer nav a:hover { color: var(--gold); }
.mobile-drawer nav a::after {
  content: '→';
  color: var(--t-4);
  font-size: .85rem;
  transition: transform var(--t-fast), color var(--t-fast);
}
.mobile-drawer nav a:hover::after { transform: translateX(4px); color: var(--gold); }

.mobile-drawer-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  padding: .75rem 1.6rem;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--gold);
  color: #07070d;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  box-shadow: 0 0 0 3px rgba(201,148,58,.2), 0 8px 24px rgba(201,148,58,.25);
}

.btn-secondary {
  background: var(--bg-3);
  color: var(--t-2);
  border: 1px solid var(--line-2);
}
.btn-secondary:hover {
  background: var(--bg-card);
  color: var(--t-1);
  border-color: rgba(255,255,255,.2);
}

.btn-lg {
  padding: .9rem 2rem;
  font-size: .95rem;
}

.btn-full { width: 100%; }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Radial glow — CSS only, zero perf cost */
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 140vw);
  height: min(700px, 100vw);
  background: radial-gradient(ellipse at center, rgba(201,148,58,.1) 0%, rgba(201,148,58,.04) 35%, transparent 70%);
  pointer-events: none;
}

/* Subtle grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(201,148,58,.08);
  border: 1px solid rgba(201,148,58,.25);
  border-radius: 100px;
  padding: .4rem 1rem .4rem .65rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-lt);
  margin-bottom: 2.5rem;
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(201,148,58,.6);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,148,58,.5); }
  60%  { box-shadow: 0 0 0 7px rgba(201,148,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,148,58,0); }
}

.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--t-3);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
  flex-wrap: wrap;
}
.stat-cell {
  padding: 1.4rem 2.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--t-1);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-num span { color: var(--gold); }
.stat-lbl {
  font-size: .75rem;
  color: var(--t-3);
  margin-top: .35rem;
  font-weight: 400;
  line-height: 1.45;
}

/* ─────────────────────────────────────
   MARQUEE
───────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 2rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-3);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.marquee-item:hover { color: var(--gold); }
.marquee-sep {
  width: 4px; height: 4px;
  background: var(--t-4);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────
   SECTION WRAPPER
───────────────────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header .t-display { font-size: clamp(2rem, 4.5vw, 3.6rem); }
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--t-3);
  line-height: 1.75;
}

/* ─────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────── */
#problem { background: var(--bg); }

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left {
  position: sticky;
  top: 96px;
}
.problem-left .t-display {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.problem-left p {
  font-size: 1rem;
  color: var(--t-3);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--gold-dim);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.pull-quote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--t-2);
  line-height: 1.65;
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: .6rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t-4);
  font-style: normal;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-med), background var(--t-med);
}
.problem-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card);
}
.problem-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  border: 1px solid rgba(201,148,58,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.problem-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--t-1);
  margin-bottom: .35rem;
  line-height: 1.4;
}
.problem-card p {
  font-size: .875rem;
  color: var(--t-3);
  line-height: 1.7;
}

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
#services {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-3);
  padding: 2rem;
  transition: background var(--t-med);
  position: relative;
}
.service-card:hover { background: var(--bg-card); }

/* Gold top line on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--t-4);
  line-height: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
  transition: color var(--t-med);
}
.service-card:hover .service-num { color: var(--gold); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-1);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.service-card p {
  font-size: .875rem;
  color: var(--t-3);
  line-height: 1.72;
}
.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,148,58,.2);
  border-radius: 100px;
  padding: .25rem .75rem;
}

/* ─────────────────────────────────────
   PROCESS
───────────────────────────────────── */
#process { background: var(--bg); }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: opacity var(--t-med);
}
.step:first-child { border-top: 1px solid var(--line); }
.step-num-wrap {
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--t-4);
  transition: background var(--t-med), color var(--t-med), border-color var(--t-med);
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-1);
  margin-bottom: .45rem;
}
.step p { font-size: .875rem; color: var(--t-3); line-height: 1.7; }

/* Dashboard card */
.process-panel {
  position: sticky;
  top: 96px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pp-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pp-title { font-size: .8rem; font-weight: 500; color: var(--t-3); }
.pp-live {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: .06em;
}
.pp-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2.2s ease infinite;
}
.pp-body { padding: 2rem 1.5rem; }
.pp-main-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--t-1);
  letter-spacing: -.03em;
}
.pp-main-num span { color: var(--gold); }
.pp-main-label {
  font-size: .8rem;
  color: var(--t-3);
  margin-top: .5rem;
  font-weight: 400;
}
/* Mini chart */
.chart { display: flex; align-items: flex-end; gap: 5px; height: 72px; margin: 1.75rem 0 .75rem; }
.chart-col { flex: 1; background: var(--bg-2); border-radius: 3px; position: relative; overflow: hidden; }
.chart-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-radius: 3px;
  background: linear-gradient(to top, var(--gold), var(--gold-lt));
  transition: height 1.2s cubic-bezier(.22,1,.36,1);
  height: 0; /* animated by JS */
}
.chart-x {
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  color: var(--t-4);
}

/* Divider rows */
.pp-row {
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pp-row-label { font-size: .8rem; color: var(--t-3); }
.pp-row-val { font-size: .85rem; font-weight: 600; color: var(--t-1); }
.pp-row-val.good { color: #4ade80; }
.pp-footer {
  padding: .85rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  color: var(--t-4);
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

/* ─────────────────────────────────────
   RESULTS
───────────────────────────────────── */
#results {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.metric-card {
  background: var(--bg-3);
  padding: 2.25rem 2rem;
  transition: background var(--t-med);
  position: relative;
  overflow: hidden;
}
.metric-card:hover { background: var(--bg-card); }
.metric-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.metric-card:hover::after { transform: scaleY(1); }
.m-val {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: var(--t-1);
  line-height: 1;
  letter-spacing: -.02em;
}
.m-val span { color: var(--gold); }
.m-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--t-2);
  margin-top: .6rem;
  line-height: 1.45;
}
.m-sub {
  font-size: .75rem;
  color: var(--t-4);
  margin-top: .3rem;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

/* ─────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────── */
#testimonial { background: var(--bg); }

.testi-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.quote-block { position: relative; }
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: .6;
  color: var(--gold);
  opacity: .3;
  margin-bottom: 1rem;
  display: block;
}
blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--t-1);
  line-height: 1.55;
}
.testi-author {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.testi-name { font-size: .82rem; font-weight: 500; color: var(--t-3); }
.testi-name strong { display: block; color: var(--t-1); font-size: .9rem; margin-bottom: .15rem; }

.proof-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color var(--t-med), background var(--t-med);
}
.proof-card:hover {
  border-color: var(--line-2);
  background: var(--bg-card);
}
.proof-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--t-1);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
  min-width: 5rem;
}
.proof-val span { color: var(--gold); }
.proof-lbl {
  font-size: .88rem;
  font-weight: 500;
  color: var(--t-2);
  margin-bottom: .25rem;
}
.proof-sub { font-size: .78rem; color: var(--t-3); line-height: 1.55; }

/* ─────────────────────────────────────
   CTA
───────────────────────────────────── */
#cta {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.cta-glow {
  position: absolute;
  bottom: -60%; left: 50%; transform: translateX(-50%);
  width: min(900px, 130vw); height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,148,58,.13) 0%, transparent 65%);
  pointer-events: none;
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 100%, black 20%, transparent 80%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-title { font-size: clamp(2.4rem, 6vw, 5rem); margin: 1rem 0 1.5rem; }
.cta-sub {
  font-size: 1.05rem;
  color: var(--t-3);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.cta-note {
  font-size: .78rem;
  color: var(--t-4);
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.footer-brand {}
.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-1);
  margin-bottom: .6rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: .8rem;
  color: var(--t-4);
  max-width: 220px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .85rem;
  color: var(--t-4);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--t-1); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .78rem; color: var(--t-4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: var(--t-4); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--t-2); }

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger delays */
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

/* Hero items — separate animation class */
.hero-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.hero-reveal.go { opacity: 1; transform: none; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .problem-layout,
  .process-layout,
  .testi-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-left { position: static; }
  .process-panel { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 56px 0; }
  .section-header { margin-bottom: 48px; }

  .hero-stats { flex-direction: column; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-cell:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.4rem, 11vw, 2.8rem); }
  .metrics-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}
