:root {
  --bg: #09090b;
  --text: #f3f5ef;
  --accent: #cdf546;
  --accent-rgb: 205, 245, 70;
  --accent-2: #e2ff7d;
  --ink: #17240a;
  --muted: #8d918a;
  --faint: #62655f;
  --card: #121316;
  --card-2: #191a1e;
  --border: #262829;
  --body: #cccfc8;
  --radius: 14px;
  --max: 1120px;
  --font-head: 'Jost', 'Hanken Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  position: relative;
  background:
    radial-gradient(1100px 680px at 14% -8%, rgba(var(--accent-rgb), 0.11), transparent 55%),
    radial-gradient(900px 560px at 106% 6%, rgba(var(--accent-rgb), 0.06), transparent 50%),
    radial-gradient(1100px 820px at 50% 120%, rgba(var(--accent-rgb), 0.05), transparent 55%),
    linear-gradient(180deg, #0b0b0e 0%, var(--bg) 32%, #08080a 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain so the surface never reads as flat black */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  display: flex;
  align-items: center;
}
.logo-img { height: 26px; width: auto; display: block; }
.footer-logo-img { height: 22px; width: auto; display: block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 22px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-solid {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 6px 22px -6px rgba(var(--accent-rgb), 0.55);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -6px rgba(var(--accent-rgb), 0.7); }
.nav-btn { padding: 10px 18px; font-size: 14px; }
.btn-ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-ghost:hover { background: rgba(var(--accent-rgb), 0.08); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 17px; font-weight: 700; }

/* ---------- SECTION FRAME ---------- */
.section { padding: 100px 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.03), rgba(255, 255, 255, 0.008) 55%, transparent);
  border-top: 1px solid rgba(var(--accent-rgb), 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
h1, h2, h3, .hero-title, .foundation-title, .label,
.stat-num, .big-num, .roi-num, .out-num, .result-num, .step-num,
.metric-highlight span, .foundation-price span {
  font-family: var(--font-head);
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 38px; font-weight: 700; margin-bottom: 24px; }
.intro, .prose p { color: var(--body); font-size: 17px; }
.prose p + p { margin-top: 20px; }
.intro { margin-bottom: 8px; }

/* ---------- SECTION LAYOUTS (desktop rhythm) ---------- */
.head { max-width: 640px; }
.head-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
}
.head-row h2 { margin-bottom: 0; }
.head-row .intro { margin-bottom: 0; }
.col-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}
.col-split .head-sticky { position: sticky; top: 108px; }
.col-split .head-sticky h2 { margin-bottom: 0; }
.col-split .head-sticky .intro { margin-top: 18px; }
.col-split .steps { margin: 0; max-width: none; }
.col-split .prose p:first-child { margin-top: 0; }
.col-split .about-body { max-width: none; margin-top: 0; }
.system-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}
.system-split .pipeline { margin: 0; max-width: none; }
.system-side { display: flex; flex-direction: column; gap: 16px; }
.system-side .stat-card { text-align: left; }
.system-side .note.italic { margin: 4px 0 0; text-align: left; max-width: none; }

/* ---------- HERO ---------- */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 460px at 84% 16%, rgba(var(--accent-rgb), 0.16), transparent 62%);
  animation: heroGlow 6.5s ease-in-out infinite;
}
.hero .container { position: relative; z-index: 1; }
@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 22px;
}
@media (min-width: 901px) { .hero-title .muted-line { white-space: nowrap; } }
.hero-title .muted-line { display: block; color: var(--muted); font-weight: 700; }
.hero-sub { color: var(--muted); font-size: 18px; max-width: 560px; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 48px; margin-bottom: 34px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 34px; font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat-label { color: var(--text); font-size: 14px; margin-top: 4px; }
.fineprint { color: var(--faint); font-size: 13px; margin-top: 20px; }

.hero-visual { display: flex; justify-content: center; }
.flow-svg { width: 100%; max-width: 340px; }
.flow-svg .node rect { fill: var(--card); stroke: var(--border); stroke-width: 1.5; }
.flow-svg .node text { fill: var(--text); font-size: 13px; font-weight: 600; text-anchor: middle; }
.flow-svg .node-pipe rect { stroke: var(--accent); stroke-width: 1.5; }
.flow-svg .node-pipe text { fill: var(--accent); font-size: 13px; font-weight: 700; }
.flow-svg .conn {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-opacity: 0.55;
  stroke-dasharray: 5 6;
  animation: dash 1.6s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -22; } }

/* ---------- CARDS ---------- */
.card {
  background: linear-gradient(158deg, var(--card-2), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 20px 44px -26px rgba(0, 0, 0, 0.85);
}
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 24px; }
.card-icon {
  color: var(--accent);
  margin-bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.09);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }
.transition { text-align: center; font-style: italic; color: var(--muted); margin-top: 44px; font-size: 17px; }

/* ---------- PREHEADER PILL (glassmorphic) + highlight ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  padding: 8px 15px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 22px;
}
.hl { color: var(--accent); }

/* ---------- SECTION BREAK MARQUEE ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(var(--accent-rgb), 0.025);
  padding: 15px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}
.marquee-track .sep { color: var(--accent); font-size: 11px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- REASONS LIST ---------- */
.reasons { margin-top: 56px; border-top: 1px solid var(--border); }
.reason {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.reason-num {
  display: block;
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.reason-head h3 { font-size: 24px; max-width: 320px; }
.reason-body p { color: var(--muted); font-size: 16px; }
.reason-body p + p { margin-top: 16px; }
.reason-body .hl { font-weight: 500; }

/* ---------- STEPS ---------- */
.steps { list-style: none; margin-top: 48px; max-width: 820px; margin-left: auto; margin-right: auto; }
.step { display: flex; gap: 26px; position: relative; padding-bottom: 34px; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 54px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  background: var(--card);
  z-index: 1;
}
.step-body { padding-top: 8px; }
.step-body h3 { font-size: 20px; margin-bottom: 8px; }
.step-body p { color: var(--muted); font-size: 15px; }
.step-body p + p { margin-top: 12px; }

/* ---------- PIPELINE ---------- */
.pipeline {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pipe-row {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pipe-row.highlight { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.15); }
.pipe-tool {
  flex-shrink: 0;
  min-width: 120px;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}
.pipe-desc { color: var(--muted); font-size: 15px; }
.pipe-arrow { color: var(--faint); font-size: 20px; line-height: 1; padding: 8px 0; }

.stat-boxes { margin-top: 40px; }
.stat-card { text-align: center; }
.big-num { display: block; font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat-card-label { display: block; color: var(--text); font-size: 15px; font-weight: 600; margin-top: 10px; }
.stat-card-sub { display: block; color: var(--faint); font-size: 13px; margin-top: 6px; }

.note { color: var(--faint); font-size: 13px; margin-top: 28px; }
.note.italic { font-style: italic; text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ---------- COMPARE TABLE ---------- */
.table-scroll { margin-top: 48px; overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--card); }
.compare-table th, .compare-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  vertical-align: top;
}
.compare-table thead th { color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.compare-table thead th.col-us { color: var(--accent); }
.compare-table td:first-child { color: var(--muted); font-weight: 500; }
.compare-table td.col-us { color: var(--text); font-weight: 600; background: rgba(var(--accent-rgb), 0.04); }
.compare-table tbody tr:last-child td { border-bottom: none; }

.callout {
  margin-top: 32px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.04);
  padding: 26px 30px;
}
.callout p { color: var(--body); font-size: 16px; }
.callout strong { color: var(--accent); }

/* ---------- PRICING ---------- */
.foundation { margin-top: 48px; border-color: var(--accent); padding: 34px; }
.foundation-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.tag { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 10px; }
.foundation-title { font-size: 26px; margin-bottom: 8px; }
.foundation-price { color: var(--muted); font-size: 15px; }
.foundation-price span { color: var(--text); font-size: 22px; font-weight: 800; }
.foundation-result { text-align: right; }
.result-num { display: block; font-size: 30px; font-weight: 800; color: var(--accent); }
.result-label { display: block; color: var(--muted); font-size: 13px; max-width: 180px; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.check-list li { color: var(--body); font-size: 15px; position: relative; padding-left: 26px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.addons { margin-top: 24px; }
.addon h3 { font-size: 20px; margin-bottom: 12px; }
.addon-price { color: var(--text); font-weight: 600; font-size: 15px; margin-bottom: 20px; }
.addon-price .muted { color: var(--muted); font-weight: 400; }
.addon .check-list { grid-template-columns: 1fr; }
.addon-add { margin-top: 20px; color: var(--accent); font-weight: 600; font-size: 14px; }

.menu { margin-top: 24px; padding: 8px 12px; }
.menu-table { width: 100%; border-collapse: collapse; }
.menu-table th, .menu-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
.menu-table thead th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.menu-table th:last-child, .menu-table td:last-child { text-align: right; color: var(--accent); font-weight: 700; }
.menu-table tbody tr:last-child td { border-bottom: none; }
.menu-table tbody tr:last-child td:last-child { font-size: 17px; }

/* ---------- PACKAGES / PLANS ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: linear-gradient(158deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px; position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 20px 44px -26px rgba(0, 0, 0, 0.85);
  transition: border-color 0.2s ease;
}
.plan:hover { border-color: rgba(var(--accent-rgb), 0.4); }
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 60px -28px rgba(var(--accent-rgb), 0.4);
}
.plan-featured:hover { border-color: var(--accent); }
.plan-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.plan-head { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
.plan h3 { font-size: 21px; margin-bottom: 10px; }
.plan-desc { color: var(--muted); font-size: 14px; }
.plan-fit { color: var(--body); font-size: 14px; margin-bottom: 22px; }
.plan-list { grid-template-columns: 1fr; gap: 11px; margin-bottom: 26px; }
.plan-list li { font-size: 14px; }
.plan-cta { display: block; text-align: center; margin-top: auto; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 2px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 2px 24px; }
.faq-answer p { color: var(--muted); font-size: 15px; }
.faq-answer p + p { margin-top: 12px; }

/* ---------- CALCULATOR ---------- */
.calc { margin-top: 48px; padding: 0; overflow: hidden; }
.calc-basis {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.calc-basis strong { color: var(--accent); font-weight: 700; }
.calc-basis-sep { color: var(--faint); margin: 0 4px; }
.calc-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1px solid var(--border); }
.pkg {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.pkg span { font-size: 13px; color: var(--faint); font-weight: 500; }
.pkg:last-child { border-right: none; }
.pkg:hover { color: var(--text); }
.pkg.active { color: var(--accent); background: rgba(var(--accent-rgb), 0.05); box-shadow: inset 0 -2px 0 var(--accent); }
.pkg.active span { color: var(--accent); }

.calc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 36px; }
.slider-row { margin-bottom: 30px; }
.slider-row label { display: block; font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 6px; }
.slider-row label .muted { color: var(--muted); font-weight: 400; }
.slider-val { color: var(--accent); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: #222;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 0 1px var(--accent);
}
input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid #0a0a0a;
}

.out-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.out-cell { background: #0e0e0e; border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.out-num { display: block; font-size: 26px; font-weight: 800; color: var(--text); }
.out-label { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }
.roi-box {
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.05);
  padding: 22px;
  text-align: center;
}
.roi-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); }
.roi-num { display: block; font-size: 46px; font-weight: 800; color: var(--accent); line-height: 1.1; margin: 4px 0; }
.roi-sub { display: flex; justify-content: center; gap: 28px; color: var(--muted); font-size: 14px; }
.roi-sub strong { color: var(--text); }

/* ---------- PROOF ---------- */
.case-client { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 14px; }
.case h3 { font-size: 22px; margin-bottom: 14px; }
.case blockquote { margin-top: 18px; padding-left: 18px; border-left: 2px solid var(--accent); color: var(--body); font-style: italic; font-size: 15px; }
.metric-highlight { margin-top: 18px; color: var(--muted); font-size: 15px; }
.metric-highlight span { color: var(--accent); font-size: 30px; font-weight: 800; display: block; }
.big-quote {
  max-width: 780px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.big-quote cite { display: block; margin-top: 18px; font-size: 15px; color: var(--muted); font-style: normal; }

/* ---------- ABOUT ---------- */
.about-body { color: var(--body); font-size: 17px; max-width: 640px; margin-top: 8px; }

/* ---------- ABOUT ME (founder) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.about-photo { position: sticky; top: 108px; }
.founder-photo {
  width: 300px;
  height: 300px;
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.9);
}
.photo-fallback {
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 68px;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--card-2);
}

/* ---------- SECTION BREAK RULE ---------- */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
}
.about-split h2 { margin-top: 12px; }
.about-bio { margin-top: 8px; }
.about-bio p { color: var(--body); font-size: 17px; }
.about-bio p + p { margin-top: 16px; }

/* ---------- CALCULATOR + QUOTE + PACKAGES AS ONE FLOW ---------- */
#calculator { padding-bottom: 40px; }
.section.testimonial-bridge { padding: 100px 0; }
#pricing { padding-top: 40px; }

/* ---------- TESTIMONIAL QUOTE CARD ---------- */
.quote-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(158deg, var(--card-2), var(--card));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 56px 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 20px 44px -26px rgba(0, 0, 0, 0.85);
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 0.5;
  color: var(--accent);
  height: 34px;
}
.quote-card blockquote {
  font-size: 26px;
  line-height: 1.42;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.quote-card figcaption { display: flex; flex-direction: column; gap: 3px; }
.quote-name { font-family: var(--font-head); font-weight: 700; color: var(--text); font-size: 16px; }
.quote-role { color: var(--accent); font-size: 13px; }

/* ---------- CASE STUDIES ---------- */
.cases { margin-top: 48px; }
.case3 { display: flex; flex-direction: column; }
.case3 .case-client {
  font-family: var(--font-head);
  color: var(--text);
  font-size: 25px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.case3 .case-logo { height: 38px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; display: block; align-self: flex-start; margin-bottom: 16px; }
.case3 .case-cat {
  color: var(--accent);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin-bottom: 18px;
}
.case3 h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.25; }
.case3 > p { color: var(--muted); font-size: 15px; }
.badges { display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.badge { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; }
.badge .big-num { font-size: 28px; }
.badge span:last-child { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- CTA ---------- */
.cta-section {
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(var(--accent-rgb), 0.09), transparent 65%),
    #0c0c0c;
}
.cta-body { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 34px; }
.cta-copy { max-width: 560px; margin: 0 auto 32px; }
.cta-copy p { color: var(--muted); font-size: 17px; }
.cta-copy p + p { margin-top: 14px; }
.cta-subline { color: var(--faint); font-size: 14px; margin-top: 16px; }
.trust { display: flex; gap: 28px; justify-content: center; margin-top: 26px; color: var(--faint); font-size: 14px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); padding: 40px 0 30px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-mark { font-weight: 800; font-size: 18px; color: #fff; }
.footer-center { color: var(--muted); font-size: 14px; }
.footer-center a:hover { color: var(--accent); }
.footer-center .sep { margin: 0 10px; color: var(--faint); }
.footer-social { color: var(--muted); transition: color 0.2s; }
.footer-social:hover { color: var(--accent); }
.footer-legal { color: var(--faint); font-size: 13px; text-align: center; margin-top: 26px; }

/* ---------- BOOKING MODAL ---------- */
.book-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.book-modal.open { display: block; }
.book-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.book-dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(680px, 94vw); height: min(780px, 92vh);
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.85);
}
.book-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(18, 18, 20, 0.7); border: 1px solid var(--border); color: var(--text);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.book-close:hover { color: var(--accent); border-color: var(--accent); }
.book-frame { width: 100%; height: 100%; border: none; background: #fff; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .flow-svg .conn { animation: none; }
  .hero::before { animation: none; opacity: 0.8; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero { padding: 52px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .flow-svg { max-width: 300px; }
  .hero-title { font-size: 40px; }
  h2 { font-size: 30px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .calc-body { grid-template-columns: 1fr; gap: 30px; }
  .check-list { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .head-row, .col-split, .system-split { grid-template-columns: 1fr; gap: 30px; }
  .reason { grid-template-columns: 1fr; gap: 18px; padding: 34px 0; }
  .reason-num { font-size: 38px; margin-bottom: 10px; }
  .quote-card { padding: 32px 26px 28px; }
  .quote-card blockquote { font-size: 21px; }
  .plans { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { position: static; }
  .founder-photo { width: 220px; height: 220px; }
  .col-split .head-sticky { position: static; }
  .col-split .head-sticky .intro { margin-top: 14px; }
  .system-side .stat-card { text-align: center; }
}

/* Package selector stacks on small screens */
@media (max-width: 680px) {
  .calc-packages { grid-template-columns: 1fr; }
  .pkg {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
    padding: 16px 20px;
  }
  .pkg:last-child { border-bottom: none; }
  .pkg.active { box-shadow: inset 3px 0 0 var(--accent); }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero-title { font-size: 32px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 28px; }
  .out-grid { grid-template-columns: 1fr; }
  .foundation-head { flex-direction: column; }
  .foundation-result { text-align: left; }
  .roi-num { font-size: 38px; }
  .nav-btn { padding: 9px 14px; font-size: 13px; }
}
