:root {
  /* light commercial theme */
  --bg: #ffffff;
  --bg-soft: #f5f7f6;
  --ink: #0a0f0d;
  --ink-dim: #58635d;
  --ink-faint: #939c96;
  --line: rgba(10, 15, 13, 0.10);
  --line-soft: rgba(10, 15, 13, 0.06);
  --accent: #059669;
  --accent-deep: #047857;
  --accent-ink: #022c1c;
  /* dark sections (hero / cta / footer) */
  --d-bg: #080a09;
  --d-bg-2: #0e1210;
  --d-ink: #f3f6f4;
  --d-dim: #9aa39e;
  --d-line: rgba(255, 255, 255, 0.10);
  --radius: 18px;
  --maxw: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer; border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(5, 150, 105, 0.28); }
.btn-primary:hover { background: #0aa877; box-shadow: 0 10px 28px rgba(5, 150, 105, 0.36); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { color: var(--ink-dim); }
.btn-ghost:hover { color: var(--ink); }
/* on-dark variants */
.on-dark .btn-outline { color: var(--d-ink); border-color: rgba(255,255,255,0.28); }
.on-dark .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.on-dark .btn-ghost { color: var(--d-dim); }
.on-dark .btn-ghost:hover { color: #fff; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,0.82); backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: #fff; }
.nav.scrolled .brand { color: var(--ink); }
.brand-logo { width: 32px; height: 32px; flex: 0 0 auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav.scrolled .nav-links a { color: var(--ink-dim); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav .nav-cta .btn-ghost { color: rgba(255,255,255,0.85); }
.nav.scrolled .nav-cta .btn-ghost { color: var(--ink-dim); }

/* ---------- Hero (dark, energetic creative wall) ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--d-bg); color: var(--d-ink); }
.hero-wall { position: absolute; inset: 0; display: flex; gap: 14px; justify-content: flex-end; padding-left: 4%; -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent); }
.hero-col { flex: 0 0 auto; width: 212px; display: flex; flex-direction: column; gap: 14px; will-change: transform; }
.hero-col.up { animation: wallUp 50s linear infinite; }
.hero-col.down { animation: wallDown 50s linear infinite; }
.hero-col.s1 { animation-duration: 44s; }
.hero-col.s2 { animation-duration: 60s; }
.hero-col.s3 { animation-duration: 52s; }
.hero-col.s4 { animation-duration: 68s; }
@keyframes wallUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes wallDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.hero-tile { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden; background: #111; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.hero-tile img, .hero-tile video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,10,9,0.97) 0%, rgba(8,10,9,0.85) 34%, rgba(8,10,9,0.4) 62%, rgba(8,10,9,0.15) 100%), linear-gradient(180deg, rgba(8,10,9,0.6), rgba(8,10,9,0) 30%); }
.hero-content { position: relative; z-index: 5; max-width: var(--maxw); width: 100%; min-width: 0; margin: 0 auto; padding: 120px 24px 60px; }
.hero-inner { max-width: 640px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; padding: 7px 14px; border: 1px solid rgba(5,150,105,0.35); border-radius: 999px; background: rgba(5,150,105,0.08); }
.eyebrow-dark { color: var(--accent-deep); border-color: rgba(11,143,104,0.28); background: rgba(5,150,105,0.06); }
.hero h1 { font-size: clamp(36px, 6.6vw, 88px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 800; }
.hero h1 .grad { background: linear-gradient(100deg, #047857, #10b981); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 24px; font-size: clamp(17px, 1.5vw, 21px); color: var(--d-dim); max-width: 52ch; line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust { margin-top: 22px; display: flex; align-items: center; gap: 10px; color: var(--ink-faint); font-size: 14px; }
.trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- Light-hero variant (all-white page) ---------- */
.light-hero .hero { background: var(--bg-soft); color: var(--ink); }
.light-hero .hero-sub { color: var(--ink-dim); }
.light-hero .trust { color: var(--ink-faint); }
.light-hero .hero-tile { border-color: var(--line); box-shadow: 0 14px 34px rgba(10,15,13,0.12); }
.light-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(245,247,246,1) 0%, rgba(245,247,246,0.99) 40%, rgba(245,247,246,0.7) 58%, rgba(245,247,246,0.15) 100%),
    linear-gradient(180deg, rgba(245,247,246,0.7), rgba(245,247,246,0) 24%),
    linear-gradient(0deg, rgba(245,247,246,0.85), rgba(245,247,246,0) 22%);
}
/* nav reads dark over the light hero from the top */
.light-hero .nav .brand { color: var(--ink); }
.light-hero .nav .nav-links a { color: var(--ink-dim); }
.light-hero .nav .nav-links a:hover { color: var(--ink); }
.light-hero .nav .nav-cta .btn-ghost { color: var(--ink-dim); }
.light-hero .nav .nav-cta .btn-ghost:hover { color: var(--ink); }
.light-hero .nav .btn-outline { color: var(--ink); border-color: var(--line); }
.light-hero .nav .btn-outline:hover { border-color: var(--ink); }

/* ---------- Section shells ---------- */
.section { padding: clamp(72px, 10vw, 130px) 24px; max-width: var(--maxw); margin: 0 auto; }
.section-wide { max-width: none; padding-left: 0; padding-right: 0; }
.band-soft { background: var(--bg-soft); }
.band-dark { background: var(--d-bg); color: var(--d-ink); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.032em; font-weight: 800; line-height: 1.04; }
.section-sub { margin-top: 18px; color: var(--ink-dim); font-size: clamp(17px, 1.4vw, 20px); }
.band-dark .section-sub { color: var(--d-dim); }

/* reveal on scroll — only hide when JS is active (progressive enhancement) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 24px; background: #fff; }
.stats-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num { font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.stat-num .em { color: var(--accent); }
.stat-label { margin-top: 8px; color: var(--ink-dim); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,15,13,0.08); border-color: rgba(5,150,105,0.4); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(5,150,105,0.12); color: var(--accent-deep); font-weight: 800; font-size: 16px; margin-bottom: 18px; }
.step h3 { font-size: 20px; letter-spacing: -0.015em; margin-bottom: 10px; }
.step p { color: var(--ink-dim); font-size: 15px; }
.workflow-note { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; text-align: center; margin-top: 34px; color: var(--ink-dim); font-size: 15px; }
.workflow-note svg { width: 17px; height: 17px; color: var(--accent); flex: 0 0 auto; }
.workflow-note a { color: var(--accent-deep); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(5,150,105,0.35); }
.workflow-note a:hover { border-color: var(--accent-deep); }

/* ---------- Work marquee ---------- */
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 44s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mtile { position: relative; flex: 0 0 auto; width: 250px; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden; background: #000; cursor: pointer; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(10,15,13,0.10); transition: transform .25s ease, box-shadow .25s ease; }
.mtile:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 22px 50px rgba(10,15,13,0.18); }
.mtile video { width: 100%; height: 100%; object-fit: cover; }
.mtile-tag { position: absolute; top: 12px; left: 12px; font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: rgba(0,0,0,0.5); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.16); }
.mtile-play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; transition: opacity .2s; }
.mtile-play span { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.9); display: grid; place-items: center; }
.mtile-play span::after { content: ""; border-left: 15px solid var(--accent-ink); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.mtile.playing .mtile-play { opacity: 0; }

/* ---------- Compare ---------- */
.compare { overflow-x: auto; max-width: var(--maxw); margin: 0 auto; }
.compare table { width: 100%; border-collapse: collapse; min-width: 660px; }
.compare th, .compare td { padding: 18px 20px; text-align: center; font-size: 15px; border-bottom: 1px solid var(--line); }
.compare th { color: var(--ink-dim); font-weight: 600; font-size: 14px; }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.compare .col-us { color: var(--accent-deep); font-weight: 700; }
.compare thead .col-us { color: #fff; background: var(--accent); border-radius: 12px 12px 0 0; }
.compare tbody .col-us { background: rgba(5,150,105,0.07); }

/* ---------- Pricing ---------- */
.toggle { display: inline-flex; gap: 4px; margin-top: 28px; padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: 999px; }
.toggle button { border: none; background: transparent; color: var(--ink-dim); padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s; font-family: var(--font); }
.toggle button.active { background: var(--accent); color: #fff; }
.toggle .save { color: var(--accent); font-size: 12px; margin-left: 4px; }
.band-soft .toggle button.active .save, .toggle button.active .save { color: rgba(255,255,255,0.9); }
.tiers { max-width: var(--maxw); margin: 56px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 34px 30px; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--accent); box-shadow: 0 24px 60px rgba(5,150,105,0.16); transform: translateY(-6px); }
.tier-badge { align-self: flex-start; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; background: var(--accent); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.tier-name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-dim); }
.tier-price { margin: 14px 0 4px; font-size: 46px; font-weight: 800; letter-spacing: -0.03em; }
.tier-price span { font-size: 17px; font-weight: 500; color: var(--ink-faint); }
.tier-tagline { color: var(--ink-dim); font-size: 15px; margin-bottom: 24px; }
.tier .btn { width: 100%; margin-bottom: 26px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.tier-features li { position: relative; padding-left: 28px; color: var(--ink-dim); font-size: 15px; }
.tier-features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.tier-features li.head { padding-left: 0; color: var(--ink); font-weight: 600; margin-top: 6px; }
.tier-features li.head::before { content: ""; }

/* ---------- CTA (light) ---------- */
.cta { padding: clamp(90px, 12vw, 140px) 24px; text-align: center; background: radial-gradient(85% 130% at 50% 0%, rgba(5,150,105,0.14) 0%, rgba(245,247,246,0) 58%), var(--bg-soft); color: var(--ink); border-top: 1px solid var(--line); }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta h2 { font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 800; }
.cta p { margin: 22px 0 34px; color: var(--ink-dim); font-size: 19px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Cross-promo (hero pill) ---------- */
.cross-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; color: var(--ink-dim); box-shadow: 0 2px 12px rgba(10,15,13,0.05); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.cross-pill:hover { transform: translateY(-1px); border-color: var(--accent); box-shadow: 0 8px 22px rgba(5,150,105,0.16); }
.cross-pill svg { width: 15px; height: 15px; color: var(--accent); flex: 0 0 auto; }
.cross-pill strong { color: var(--accent-deep); font-weight: 600; }

/* ---------- Cross-promo (card before footer) ---------- */
.crosspromo { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 7vw, 92px) 24px clamp(56px, 7vw, 92px); }
.crosspromo-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: clamp(30px, 4vw, 48px); border-radius: 26px; background: linear-gradient(120deg, #f4f7f6 0%, #ecf7f1 100%); border: 1px solid var(--line); }
.crosspromo-card::after { content: ""; position: absolute; inset: 0; border-radius: 26px; padding: 1.5px; background: linear-gradient(120deg, rgba(5,150,105,0.5), rgba(5,150,105,0) 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.crosspromo-txt { flex: 1 1 360px; }
.crosspromo-eyebrow { display: inline-flex; align-items: center; gap: 7px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; font-weight: 700; color: var(--accent-deep); margin-bottom: 12px; }
.crosspromo-eyebrow svg { width: 15px; height: 15px; }
.crosspromo-card h3 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.02em; font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
.crosspromo-card p { color: var(--ink-dim); font-size: 16px; max-width: 54ch; }
.crosspromo-card .btn { flex: 0 0 auto; }
@media (max-width: 620px) { .crosspromo-card { flex-direction: column; align-items: flex-start; } .crosspromo-card .btn { width: 100%; } }

/* ---------- Resources / blog ---------- */
.res .nav { background: rgba(255,255,255,0.85); backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--line); }
.res .nav .brand { color: var(--ink); }
.res .nav .nav-links a { color: var(--ink-dim); }
.res .nav .nav-links a:hover { color: var(--ink); }
.res .nav .nav-cta .btn-ghost { color: var(--ink-dim); }
.res .nav .btn-outline { color: var(--ink); border-color: var(--line); }
.res-shell { padding-top: 88px; }
.res-head { max-width: 780px; margin: 0 auto; padding: 44px 24px 8px; text-align: center; }
.res-head h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.03em; font-weight: 800; line-height: 1.05; }
.res-head p { margin-top: 16px; color: var(--ink-dim); font-size: 18px; }
.res-grid { max-width: var(--maxw); margin: 44px auto 0; padding: 0 24px 100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.res-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,15,13,0.08); border-color: rgba(5,150,105,0.4); }
.res-card .cat { text-transform: uppercase; font-size: 12px; letter-spacing: 0.06em; color: var(--accent-deep); font-weight: 700; }
.res-card h2 { font-size: 20px; letter-spacing: -0.015em; line-height: 1.25; margin: 12px 0 10px; }
.res-card p { color: var(--ink-dim); font-size: 15px; flex: 1; }
.res-card .meta { margin-top: 18px; color: var(--ink-faint); font-size: 13px; }

.article { max-width: 720px; margin: 0 auto; padding: 8px 24px 40px; }
.article-head { text-align: center; padding: 20px 0 6px; }
.article-head .cat { text-transform: uppercase; font-size: 12px; letter-spacing: 0.06em; color: var(--accent-deep); font-weight: 700; }
.article-head h1 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -0.03em; line-height: 1.1; margin: 14px 0 12px; }
.article-head .byline { color: var(--ink-faint); font-size: 14px; }
.prose { margin-top: 32px; }
.prose p { color: #35403b; font-size: 17px; line-height: 1.72; margin-bottom: 20px; }
.prose h2 { font-size: clamp(22px, 3vw, 28px); letter-spacing: -0.02em; margin: 42px 0 14px; color: var(--ink); }
.prose h3 { font-size: 19px; margin: 28px 0 10px; color: var(--ink); }
.prose ul, .prose ol { color: #35403b; font-size: 17px; line-height: 1.72; margin: 0 0 20px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid rgba(5,150,105,0.35); }
.prose a:hover { border-color: var(--accent-deep); }
.article-cta { margin-top: 48px; padding: 34px; border-radius: 20px; background: linear-gradient(120deg, #f4f7f6, #ecf7f1); border: 1px solid var(--line); text-align: center; }
.article-cta h3 { font-size: 24px; letter-spacing: -0.02em; font-weight: 800; margin-bottom: 8px; }
.article-cta p { color: var(--ink-dim); font-size: 16px; margin-bottom: 20px; }
.back-link { display: inline-block; margin: 20px 0 0; color: var(--ink-dim); font-size: 14px; }
.back-link:hover { color: var(--ink); }
@media (max-width: 900px) { .res-grid { grid-template-columns: 1fr; max-width: 560px; } }

/* ---------- Footer (light) ---------- */
.footer { border-top: 1px solid var(--line); padding: 60px 24px 34px; background: #fff; color: var(--ink); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand .brand { color: var(--ink); }
.footer-brand p { color: var(--ink-dim); font-size: 14px; margin-top: 12px; max-width: 32ch; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 14px; }
.footer-cols a { display: block; color: var(--ink-dim); font-size: 15px; margin-bottom: 10px; transition: color .2s; }
.footer-cols a:hover { color: var(--ink); }
.footer-legal { max-width: var(--maxw); margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { display: block; }
  .hero-wall { padding-left: 0; opacity: 0.28; justify-content: center; }
  .light-hero .hero-scrim { background: linear-gradient(180deg, rgba(245,247,246,0.82) 0%, rgba(245,247,246,0.9) 50%, rgba(245,247,246,0.97) 100%); }
  .hero-content { text-align: center; display: flex; flex-direction: column; justify-content: center; min-height: 100vh; }
  .hero-inner { max-width: 100%; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust { justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 460px; }
  .tier.featured { transform: none; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 680px) {
  .nav .nav-cta .btn-ghost, .nav .nav-cta .btn-outline { display: none; }
  .nav .nav-cta .btn-primary { padding: 8px 14px; font-size: 13px; }
  .hero h1 br { display: none; }
}
@media (max-width: 360px) {
  .nav .nav-cta .btn-primary { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .hero-content { padding-top: 104px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-col, .marquee-track { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
