/* volumen.vibot.tech — B2B landing for agencies (Light mode — Stripe-inspired) */

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Palette — Stripe light */
  --bg:        #ffffff;
  --bg2:       #f6f9fc;        /* off-white section alt (Stripe surface) */
  --surface:   #ffffff;
  --card:      #ffffff;
  --card2:     #f6f9fc;
  --line:      #e5edf5;        /* Stripe border default */
  --text:      #061b31;        /* Stripe deep navy */
  --muted:     #64748d;        /* Stripe body/description */
  --muted2:    #94a3b8;
  --gold:      #F0C429;        /* accent — button bg, dots */
  --gold-text: #9b6829;        /* Stripe lemon — readable on white (4.6:1) */
  --navy:      #1c1e54;        /* Stripe Brand Dark */
  --ring:      rgba(240,196,41,0.45);
  --success:   #15be53;
  --success-text: #108c3d;
  --warning:   #F59E0B;

  /* Typography */
  --fontHead: "Plus Jakarta Sans", system-ui, sans-serif;
  --fontBody: "Geist", system-ui, sans-serif;

  /* Shadows — Stripe blue-tinted */
  --shadow:    rgba(50,50,93,0.25) 0px 30px 45px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
  --shadow-sm: rgba(23,23,23,0.08) 0px 15px 35px 0px;

  /* Easing */
  --easeOut:    cubic-bezier(0.22, 1, 0.36, 1);
  --easeSpring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;
  --sp-4: 16px; --sp-5: 24px;  --sp-6: 32px;
  --sp-7: 48px; --sp-8: 64px;  --sp-9: 96px;

  /* Border radius — Stripe uses 4-8px conservative */
  --radius:     8px;
  --radius-sm:  6px;
  --radius-xs:  4px;
  --radius-pill: 999px;
}

/* ─── Base Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fontBody);
  overflow-x: hidden;
}

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

/* Prevent accidental horizontal overflow on mobile */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* ─── Display Typography ─────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--fontHead);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ─── Grain Texture ──────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.skip {
  position: absolute;
  left: -999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 10px 12px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
  z-index: 9999;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}
.nav.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 56px;
  padding: 0 2rem;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--fontHead); }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #061b31;
  font-weight: 900;
  box-shadow: rgba(50,50,93,0.25) 0px 6px 12px -2px, rgba(0,0,0,0.1) 0px 3px 7px -3px;
}
.brand-text {
  font-family: var(--fontHead);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-by {
  font-family: var(--fontBody);
  font-weight: 400;
  font-size: 0.78em;
  color: var(--muted);
  margin-left: 2px;
}

.nav-links {
  display: none;
  gap: 16px;
  font-size: 14px;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  letter-spacing: -0.01em;
  transition: color 150ms ease, background 150ms ease;
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Mobile menu (hamburger) */
.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: rgba(23,23,23,0.06) 0px 10px 25px -14px;
  cursor: pointer;
}
.nav-burger:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
.nav-burger-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  display: block;
}
.nav-burger-icon::before,
.nav-burger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms var(--easeOut), top 180ms var(--easeOut), opacity 180ms var(--easeOut);
}
.nav-burger-icon::before { top: -6px; }
.nav-burger-icon::after { top: 6px; }

.nav-panel {
  width: min(1200px, calc(100% - 32px));
  margin: 8px auto 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav-panel-links {
  display: grid;
  gap: 6px;
}
.nav-panel-links a {
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background 150ms ease;
}
.nav-panel-links a:hover { background: var(--bg2); }
.nav-panel-cta {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.nav-panel-cta .btn { width: 100%; }

body.nav-open .nav-burger-icon { background: transparent; }
body.nav-open .nav-burger-icon::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-burger-icon::after { top: 0; transform: rotate(-45deg); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--fontBody);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 160ms var(--easeSpring), box-shadow 160ms var(--easeOut), background 160ms, border-color 160ms;
  user-select: none;
}
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #061b31;
  font-weight: 700;
  box-shadow: rgba(50,50,93,0.25) 0px 6px 12px -2px, rgba(0,0,0,0.08) 0px 3px 7px -3px;
}
.btn-primary:hover {
  box-shadow: rgba(50,50,93,0.35) 0px 10px 20px -4px, rgba(0,0,0,0.12) 0px 4px 10px -4px;
  filter: brightness(1.04);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: var(--bg2); border-color: rgba(0,0,0,0.15); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 74px 0 30px; }
.hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.hero-copy h1 {
  margin: 14px 0 12px;
  font-family: var(--fontHead);
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
}
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg2);
  color: var(--muted);
}
.hero-bullets .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
  margin-right: 7px;
  flex-shrink: 0;
}

/* ─── Hero Visual / Dashboard Mockup ────────────────────────────────────── */
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at center, rgba(240,196,41,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow 4s infinite ease-in-out;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.hero-visual .mock {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 12px;
}
.status { color: var(--muted); font-weight: 600; font-size: 12px; }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}
.mock-card {
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 10px 12px 8px;
}
.mock-card .k { margin: 0; color: var(--muted); font-weight: 600; font-size: 12px; }
.mock-card .v { margin: 4px 0 2px; font-family: var(--fontHead); font-weight: 800; font-size: 24px; letter-spacing: -0.03em; color: var(--text); }
.mock-card .s { margin: 0; color: var(--muted2); font-weight: 500; font-size: 11px; }

.mock-table {
  grid-column: 1 / -1;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.7fr;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  border-top: 1px solid var(--line);
}
.row.head {
  border-top: none;
  background: var(--bg2);
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(21,190,83,0.12);
  color: var(--success-text);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(21,190,83,0.3);
}
.ok::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.warn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245,158,11,0.12);
  color: #92600a;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(245,158,11,0.3);
}
.warn::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--warning);
  flex-shrink: 0;
}
.mini-note { margin: 10px 0 0; color: var(--muted2); font-size: 13px; }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt {
  background: var(--bg2);
  position: relative;
}
.section-alt::before,
.section-alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
}
.section-alt::before { top: 0; }
.section-alt::after  { bottom: 0; }

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
}
.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.65;
  font-size: 17px;
}

/* ─── Section separator ──────────────────────────────────────────────────── */
.section-sep {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
  margin: 0;
}

/* ─── Cómo Funciona — Steps ──────────────────────────────────────────────── */
ol.steps { counter-reset: step-ghost; }
.steps {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.step {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
  counter-increment: step-ghost;
  transition: transform 200ms ease, box-shadow 200ms ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='black' stroke-opacity='0.025' stroke-width='1'/%3E%3C/svg%3E");
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step::after {
  content: counter(step-ghost);
  position: absolute;
  top: -24px; right: 8px;
  font-family: var(--fontHead);
  font-size: 140px;
  font-weight: 800;
  color: #061b31;
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.step .n {
  margin: 0 0 12px;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #061b31;
  font-family: var(--fontHead);
  font-weight: 900;
  font-size: 15px;
}
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }

/* ─── Tiers ──────────────────────────────────────────────────────────────── */
.tiers {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.tier {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 18px 18px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.tier h3 { margin: 0 0 10px; font-size: 19px; }
.tier ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; font-size: 15px; }
.tier strong { color: var(--text); }
.tier-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-text);
  position: relative;
}
.tier-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.tier-link:hover::after { transform: scaleX(1); }

.tier-hot {
  border-top: 2px solid var(--gold);
  box-shadow: 0 0 28px rgba(240,196,41,0.12), rgba(50,50,93,0.15) 0px 18px 36px -18px;
}
.tier-hot:hover {
  box-shadow: 0 0 32px rgba(240,196,41,0.18), var(--shadow);
}
.badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #061b31;
  font-weight: 700;
  font-size: 11px;
}

/* Tiers "Sin precios" code note */
.code-note {
  display: inline-block;
  margin-top: 6px;
  font-family: 'Geist Mono', 'ui-monospace', monospace;
  font-size: 12px;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 8px;
}

.tier-detail {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg2);
}
.tier-detail-copy h3 { margin: 0; font-size: 18px; }
.tier-detail-copy p { margin: 8px 0 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.chips { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}
.tier-detail .row {
  height: 40px;
  align-items: center;
  border-top: none;
  border-bottom: 1px solid var(--line);
}
.tier-detail .row:nth-child(even) { background: var(--bg2); }

/* Shot — tier visual card */
.shot {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.shot-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.muted { color: var(--muted); font-weight: 600; font-size: 12px; }
.shot-body { padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; position: relative; min-height: 110px; }
.shot-kpi {
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 10px;
}
.shot-kpi span { display: block; color: var(--muted); font-weight: 600; font-size: 12px; }
.shot-kpi strong { display: block; margin-top: 6px; font-family: var(--fontHead); font-weight: 800; letter-spacing: -0.03em; font-size: 20px; color: var(--text); }
.shot-line {
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg2);
  grid-column: 1 / -1;
}
.shot-pulse {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--gold);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,196,41,0.35); }
  70%  { box-shadow: 0 0 0 18px rgba(240,196,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,196,41,0); }
}
.shot-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.shot-grid div {
  height: 52px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  gap: 2px;
  overflow: hidden;
}
.shot-grid div span {
  color: var(--muted);
  font-weight: 650;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot-grid div strong {
  color: var(--text);
  font-family: var(--fontHead);
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 15px;
}

/* ─── Volume Pitch Cards ─────────────────────────────────────────────────── */
.pitch {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pitch-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-sm);
}
.pitch-card h3 {
  margin: 0 0 8px;
  font-family: var(--fontHead);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pitch-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.pitch-card:nth-child(2) p { font-style: italic; }

/* ─── Dashboard Preview ──────────────────────────────────────────────────── */
.dash {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.dash-shot {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.dash-actions { display: flex; gap: 8px; }
.mini {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #061b31;
  font-weight: 700;
  font-size: 12px;
}
.mini-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.dash-main { display: grid; grid-template-columns: 1fr; }
.dash-side {
  display: flex; gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.side-item {
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 150ms ease, color 150ms ease;
  cursor: default;
}
.side-item.active {
  border: 1px solid transparent;
  border-left: 3px solid var(--gold);
  background: rgba(240,196,41,0.06);
  color: var(--text);
  border-radius: 0 6px 6px 0;
  padding-left: 9px;
}
.dash-table .row {
  grid-template-columns: 1.2fr 1fr 0.9fr 0.7fr 0.7fr;
  height: 40px;
  align-items: center;
  border-top: none;
  border-bottom: 1px solid var(--line);
}
.dash-table .row.head {
  height: auto;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.dash-notes {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-sm);
}
.dash-notes h3 { margin: 0 0 8px; font-size: 18px; }
.dash-notes p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.dash-notes ul { margin: 12px 0 16px; padding-left: 18px; color: var(--muted); line-height: 1.7; font-size: 15px; }
.dash-notes strong { color: var(--text); }

/* ─── Stats / Social Proof ───────────────────────────────────────────────── */
.proof {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.proof-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-sm);
}
.proof-card .big {
  margin: 0;
  font-family: var(--fontHead);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--gold-text);
}
.proof-card .label {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.logos {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.logo {
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.logo:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: rgba(23,23,23,0.06) 0px 4px 12px;
}

/* ─── Final CTA ──────────────────────────────────────────────────────────── */
.section-cta {
  padding: 82px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,196,41,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cta h2 {
  font-family: var(--fontHead);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.cta p { margin: 8px 0 0; color: var(--muted); line-height: 1.65; font-size: 16px; }
.cta .btn-ghost {
  border-color: rgba(0,0,0,0.18);
  color: var(--text);
}
.cta .btn-ghost:hover {
  border-color: rgba(0,0,0,0.35);
  background: var(--bg2);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.foot-brand {
  margin: 0;
  font-family: var(--fontHead);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-size: 15px;
}
.foot-brand span { color: var(--muted); font-weight: 600; }
.foot-note { margin: 6px 0 0; color: rgba(100,116,141,0.7); line-height: 1.6; font-size: 13px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.foot-links a { color: rgba(100,116,141,0.8); font-weight: 600; font-size: 13px; transition: color 150ms; }
.foot-links a:hover { color: var(--text); }
.foot-meta { color: rgba(100,116,141,0.6); font-size: 13px; text-align: right; }

/* ─── Scroll Reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Page-load staggered fade-up ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow,
.hero .hero-copy h1,
.hero .hero-sub,
.hero .hero-actions,
.hero .hero-bullets,
.hero .hero-visual {
  animation: fadeUp 0.6s var(--easeOut) both;
}
.hero .eyebrow      { animation-delay: 0s;   }
.hero .hero-copy h1 { animation-delay: 0.1s; }
.hero .hero-sub     { animation-delay: 0.2s; }
.hero .hero-actions { animation-delay: 0.3s; }
.hero .hero-bullets { animation-delay: 0.4s; }
.hero .hero-visual  { animation-delay: 0.5s; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav-panel { display: none; }
  .hero { padding: 96px 0 64px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .tier-detail { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .pitch { grid-template-columns: repeat(3, 1fr); }
  .pitch .pitch-card:nth-child(2) { padding-top: calc(20px + 24px); }
  .dash { grid-template-columns: 1.25fr .75fr; align-items: start; }
  .dash-main { grid-template-columns: 200px 1fr; }
  .dash-side { flex-direction: column; border-bottom: none; border-right: 1px solid var(--line); min-height: 210px; }
  .proof { grid-template-columns: repeat(3, 1fr); }
  .cta { grid-template-columns: 1fr auto; align-items: center; padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1.2fr 1fr auto; align-items: center; }
  /* Hero mockup: 4-column metrics on desktop */
  .mock-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 859px) {
  .nav-inner { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

/* ─── Hero — centered layout ─────────────────────────────────────────────── */
.hero { padding: 72px 0 56px; }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.hero-copy {
  text-align: center;
  max-width: 780px;
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 14px 0 16px;
}
.hero-sub {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { justify-content: center; }
.hero-bullets  { justify-content: center; }

/* Hero visual — full width, dramatic shadow */
.hero-visual {
  width: 100%;
  max-width: 1000px;
}
.hero-visual::before {
  inset: -60px -80px;
}
.hero-visual .mock {
  border-radius: 10px;
  border: 1px solid #e5edf5;
  box-shadow:
    rgba(50,50,93,0.25) 0px 50px 100px -20px,
    rgba(0,0,0,0.18) 0px 30px 60px -30px,
    rgba(0,0,0,0.06) 0px 0px 0px 1px;
}

/* Mock window chrome dots */
.mock-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mock-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e5edf5;
}
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }

/* Mock table 5-column (hero version) */
.hero-visual .row {
  grid-template-columns: 1.2fr 1fr 0.8fr 0.6fr 0.7fr;
}
.hero-visual .mock-top {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 10px 14px;
}
.hero-visual .mock-top .status { margin-left: auto; }
