:root {
  --bg: #f7f4ec;
  --bg-cream: #fbf9f3;
  --ink: #0a0e1c;
  --ink-soft: #2c3447;
  --muted: #6b7385;
  --line: #e8e2d2;
  --line-strong: #d8d0bb;

  --brand: #1e2dbb;
  --brand-deep: #0d1875;
  --brand-light: #4a5ae8;

  --accent: #ffd24a;
  --accent-hot: #ffb800;
  --accent-soft: #fff3c4;

  --pink: #ff5e8a;
  --green: #1fb286;

  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(13,24,117,.06);
  --shadow-md: 0 14px 40px rgba(13,24,117,.10);
  --shadow-lg: 0 30px 80px rgba(13,24,117,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper-grain texture via SVG noise */
body::before {
  content: ""; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.3 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .35; pointer-events: none; z-index: 1;
}

/* Background blobs */
.bg-blob {
  position: fixed; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0; opacity: .35;
}
.bg-blob-1 { width: 500px; height: 500px; background: var(--accent); top: -150px; right: -120px; }
.bg-blob-2 { width: 400px; height: 400px; background: var(--brand-light); top: 400px; left: -150px; opacity: .18; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); line-height: .92; letter-spacing: -0.055em; font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; letter-spacing: -0.035em; font-weight: 700; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font: 500 .9em 'JetBrains Mono', ui-monospace, monospace; background: var(--accent-soft); padding: 2px 7px; border-radius: 6px; color: var(--brand-deep); }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 2; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,236,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(232,226,210,.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; display: inline-grid; place-items: center;
  background: var(--ink); color: var(--accent);
  border-radius: 10px;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-size: 21px; letter-spacing: -.025em; font-weight: 700; }
.logo-dot { color: var(--accent-hot); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { color: var(--ink-soft); font-weight: 500; font-size: 15px; }
.nav-links a:not(.btn):hover { color: var(--ink); text-decoration: none; }
.nav-links a.btn-primary { color: var(--bg-cream); }
.nav-links a.btn-primary:hover { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font: 600 15px/1 'Inter', sans-serif;
  padding: 14px 22px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .25s ease, background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg-cream); }
.btn-primary:hover { background: var(--brand-deep); text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(13,24,117,.3); }
.btn-accent { background: var(--accent); color: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn-accent:hover { text-decoration: none; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--accent-hot); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 18px 30px; font-size: 17px; }

/* HERO */
.hero { padding: 60px 0 80px; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink);
  background: var(--bg-cream); padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,178,134,.18); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

h1 { margin-bottom: 24px; }
.accent-wrap { display: inline-block; position: relative; }
.accent {
  background: linear-gradient(180deg, transparent 60%, var(--accent) 60%);
  padding: 0 8px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.lede em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; color: var(--ink); font-size: 1.12em; letter-spacing: -0.01em; }

.claim {
  background: var(--ink); color: var(--bg-cream);
  padding: 18px; border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 var(--accent);
  max-width: 560px;
  border: 2px solid var(--ink);
}
.claim-label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 10px; padding-left: 6px; letter-spacing: .08em; text-transform: uppercase; }
.claim-row { display: flex; align-items: center; gap: 8px; background: var(--bg-cream); padding: 6px; border-radius: 100px; }
.claim-row input {
  flex: 1; min-width: 0;
  font: 600 17px 'JetBrains Mono', monospace; color: var(--ink);
  padding: 10px 18px; border: none; outline: none;
  background: transparent;
}
.claim-row input::placeholder { color: var(--muted); }
.claim-suffix { color: var(--muted); font: 500 14px 'JetBrains Mono', monospace; padding-right: 4px; }
.claim-hint { margin: 14px 8px 0; font-size: 13px; color: rgba(255,255,255,.65); }
.claim-hint code { background: rgba(255,210,74,.18); color: var(--accent); }

.trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 24px; align-items: center; }
.trust-item { font-size: 14px; color: var(--ink-soft); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.check { color: var(--green); font-weight: 800; }
.trust-demo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  background: var(--accent); padding: 6px 14px; border-radius: 100px;
  border: 1.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s, box-shadow .15s;
  margin-left: 4px;
}
.trust-demo:hover { text-decoration: none; transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.trust-demo code { background: rgba(13,24,117,.1); color: var(--ink); padding: 1px 5px; font-size: 12.5px; }

/* HERO CARD */
.hero-card { position: relative; }
.floaters { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.float-chip {
  position: absolute;
  background: var(--bg-cream); border: 2px solid var(--ink); border-radius: 100px;
  padding: 8px 14px; font: 600 13px 'Inter', sans-serif;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
  animation: bob 4s ease-in-out infinite;
}
.chip-1 { top: -16px; left: -10px; background: var(--accent); animation-delay: 0s; }
.chip-2 { top: 40%; right: -24px; background: var(--pink); color: var(--bg-cream); animation-delay: 1.3s; }
.chip-3 { bottom: -16px; left: 30%; background: var(--green); color: var(--bg-cream); animation-delay: 2.5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.browser {
  background: var(--bg-cream); border-radius: 18px;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
  transform: rotate(1deg);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  background: #eee5d0; border-bottom: 2px solid var(--ink); padding: 11px 14px;
}
.dot { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--ink); }
.dot-r { background: #ff5e5e; } .dot-y { background: #ffbe2e; } .dot-g { background: #28c840; }
.browser-url {
  flex: 1; margin-left: 8px; background: var(--bg-cream); border: 1.5px solid var(--ink);
  padding: 6px 12px; border-radius: 100px;
  font: 600 13px 'JetBrains Mono', monospace; color: var(--ink);
  text-align: center;
}
.muted { color: var(--muted); font-weight: 500; }
.browser-body { padding: 22px; background: var(--bg-cream); }
.site-hero {
  padding: 24px; border-radius: 14px; background: var(--brand); color: var(--bg-cream);
  margin-bottom: 14px; border: 2px solid var(--ink);
  background-image: radial-gradient(circle at 80% 20%, var(--brand-light), var(--brand) 60%);
}
.site-eyebrow { font-size: 11px; opacity: .85; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.site-hero h3 { color: var(--bg-cream); font-size: 1.7rem; margin: 0 0 6px; font-family: 'Bricolage Grotesque', 'Inter', sans-serif; }
.site-hero p { color: rgba(255,255,255,.85); margin: 0 0 16px; font-size: 14px; }
.site-cta { display: flex; gap: 8px; }
.pill {
  padding: 8px 14px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.15); color: var(--bg-cream);
  border: 1.5px solid rgba(255,255,255,.25);
}
.pill-primary { background: var(--accent); color: var(--ink); border-color: var(--ink); }
.site-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tile {
  display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
  padding: 12px; border: 1.5px solid var(--ink); border-radius: 10px;
  background: var(--bg-cream);
}
.tile-num { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.tile-lbl { font-size: 11px; color: var(--muted); font-weight: 500; }

/* MARQUEE */
.marquee {
  background: var(--ink); color: var(--accent);
  padding: 18px 0; overflow: hidden;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  position: relative;
}
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: scroll 60s linear infinite;
  font: 600 18px 'JetBrains Mono', monospace;
  width: max-content;
}
.marquee-track span:nth-child(even) { color: var(--accent-hot); opacity: .5; }
.marquee-track .m-lbl { color: var(--bg-cream); background: var(--accent); padding: 2px 14px; border-radius: 100px; font-weight: 700; opacity: 1 !important; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* WHY */
.why { padding: 100px 0; position: relative; }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
.strike { position: relative; white-space: nowrap; }
.strike::after {
  content: ""; position: absolute; left: -3px; right: -3px; top: 50%;
  height: 3px; background: var(--pink); transform: rotate(-2deg);
}

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; }
.stat-card {
  background: var(--bg-cream); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease;
}
.stat-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.stat-card:nth-child(1) { background: var(--accent); }
.stat-card:nth-child(2) { background: var(--bg-cream); }
.stat-card:nth-child(3) { background: var(--pink); color: var(--bg-cream); }
.stat-card:nth-child(3) dt, .stat-card:nth-child(3) dd { color: var(--bg-cream); }
.stat-card:nth-child(4) { background: var(--green); color: var(--bg-cream); }
.stat-card:nth-child(4) dt, .stat-card:nth-child(4) dd { color: var(--bg-cream); }
.stats dt { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.stats dd { margin: 8px 0 0; font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* SECTION COMMON */
section { padding: 100px 0; position: relative; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
  background: var(--accent); padding: 6px 12px; border-radius: 100px;
  border: 1.5px solid var(--ink);
}
.eyebrow-light { background: var(--bg-cream); color: var(--ink); }
.section-lede { max-width: 640px; margin: 0 0 50px; font-size: 1.1rem; }
.muted-h { color: var(--muted); font-style: italic; font-weight: 400; }

/* FEATURES */
.features { background: var(--bg-cream); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.features-head { margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.feature {
  grid-column: span 2;
  background: var(--bg); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .2s ease;
}
.feature:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.feature-lg { grid-column: span 3; background: var(--accent); }
.feature-lg:nth-of-type(8) { background: var(--brand); color: var(--bg-cream); }
.feature-lg:nth-of-type(8) h3, .feature-lg:nth-of-type(8) p { color: var(--bg-cream); }
.feature-icon { font-size: 32px; margin-bottom: 14px; display: inline-block;
  background: var(--bg-cream); width: 56px; height: 56px; border-radius: 12px;
  border: 1.5px solid var(--ink); display: grid; place-items: center;
}
.feature-lg:nth-of-type(8) .feature-icon { background: var(--accent); }
.feature h3 { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 8px; }
.feature p { font-size: 14.5px; line-height: 1.5; margin: 0; }

/* HOW */
.how { background: var(--brand); color: var(--bg-cream); border-bottom: 2px solid var(--ink); }
.how h2, .how .section-eyebrow { color: var(--bg-cream); }
.how .section-eyebrow { background: var(--accent); color: var(--ink); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.step {
  background: var(--bg-cream); color: var(--ink); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--accent);
}
.step:nth-child(2) { background: var(--accent); }
.step:nth-child(4) { background: var(--pink); color: var(--bg-cream); box-shadow: 4px 4px 0 var(--accent); }
.step:nth-child(4) h3, .step:nth-child(4) p { color: var(--bg-cream); }
.step-num {
  display: inline-block;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 700; font-size: 2.5rem;
  color: var(--brand); line-height: 1;
  margin-bottom: 14px;
}
.step:nth-child(2) .step-num { color: var(--ink); }
.step:nth-child(4) .step-num { color: var(--bg-cream); }
.step h3 { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 14.5px; margin: 0; }

/* DIRECTORY */
.directory { background: var(--bg-cream); border-bottom: 2px solid var(--ink); }
.uni-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.uni-grid a {
  display: block; padding: 16px 20px;
  background: var(--bg); border: 2px solid var(--ink); border-radius: 12px;
  font: 500 15px 'JetBrains Mono', monospace; color: var(--ink-soft);
  transition: all .12s;
}
.uni-grid a span { color: var(--ink); font-weight: 600; }
.uni-grid a:hover {
  background: var(--accent); color: var(--ink); text-decoration: none;
  transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink);
}
.uni-grid a.uni-demo { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); box-shadow: 4px 4px 0 var(--accent); }
.uni-grid a.uni-demo span { color: var(--accent); }
.uni-grid a.uni-demo em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--accent); font-weight: 400; font-size: 14px; margin-left: 4px; }
.uni-grid a.uni-demo:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--accent); background: var(--brand-deep); color: var(--bg-cream); }
.uni-grid em.uni-status {
  float: right;
  font-family: 'Inter', sans-serif; font-style: normal; font-weight: 600;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--bg-cream); color: var(--green);
  padding: 3px 9px; border-radius: 100px;
  border: 1px solid var(--line);
}
.uni-grid a:hover em.uni-status { background: var(--ink); color: var(--accent); border-color: var(--ink); }
.dir-note { font-size: 14px; color: var(--ink-soft); margin-top: 24px; text-align: center; }
.dir-note a { font-weight: 600; }

/* PRICING */
.pricing { background: var(--bg); padding: 100px 0; border-bottom: 2px solid var(--ink); }
.price-card {
  background: var(--ink); color: var(--bg-cream);
  border: 2px solid var(--ink); border-radius: var(--radius-lg);
  padding: 60px; position: relative;
  box-shadow: 10px 10px 0 var(--accent);
  display: grid; grid-template-columns: 0.7fr 1.3fr 1fr; gap: 50px; align-items: center;
}
.price-tag { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; line-height: .9; font-weight: 800; color: var(--accent); }
.price-currency { font-size: 3rem; vertical-align: top; }
.price-amount { font-size: 9rem; letter-spacing: -0.06em; }
.price-period { display: block; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.6); font-family: 'Inter'; font-style: italic; margin-top: 8px; }
.price-copy h2 { color: var(--bg-cream); margin-bottom: 16px; }
.price-copy p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 15.5px; }
.price-copy .section-eyebrow { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.includes { list-style: none; padding: 0; margin: 0; }
.includes li { padding: 12px 0; font-size: 15px; color: rgba(255,255,255,.92); border-bottom: 1px dashed rgba(255,255,255,.15); display: flex; gap: 10px; align-items: center; }
.includes li:last-child { border-bottom: none; }
.includes .check { color: var(--accent); }
.includes code { background: rgba(255,210,74,.18); color: var(--accent); }

/* FAQ */
.faq { background: var(--bg-cream); padding: 100px 0; border-bottom: 2px solid var(--ink); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 40px; }
details {
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 20px 24px; background: var(--bg);
  box-shadow: 3px 3px 0 var(--ink);
}
details[open] { background: var(--accent); }
summary {
  cursor: pointer; font-weight: 700; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15.5px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--brand); font-size: 1.5rem; margin-left: 12px; transition: transform .2s; font-weight: 400; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 14px 0 0; font-size: 15px; color: var(--ink-soft); }

/* CTA */
.cta {
  background: var(--accent);
  border-bottom: 2px solid var(--ink);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "✡"; position: absolute; font-size: 12rem; color: var(--ink); opacity: .07;
}
.cta::before { top: -20px; left: 5%; transform: rotate(-15deg); }
.cta::after { bottom: -40px; right: 5%; transform: rotate(15deg); }
.cta h2 { color: var(--ink); margin-bottom: 16px; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta p { color: var(--ink-soft); margin-bottom: 36px; font-size: 1.15rem; }
.cta .btn-accent { background: var(--ink); color: var(--accent); box-shadow: 6px 6px 0 var(--brand); }
.cta .btn-accent:hover { background: var(--brand-deep); transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--brand); }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 80px 0 30px; position: relative; z-index: 2; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo-text { color: var(--bg-cream); }
.footer .logo-mark { background: var(--accent); color: var(--ink); }
.footer-tag { color: rgba(255,255,255,.55); font-size: 14.5px; max-width: 340px; margin-top: 16px; line-height: 1.5; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { color: var(--accent); font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-cols a { display: block; color: rgba(255,255,255,.65); padding: 6px 0; font-size: 14.5px; }
.footer-cols a:hover { color: var(--bg-cream); text-decoration: none; }
.footer-base { padding-top: 28px; color: rgba(255,255,255,.4); font-size: 13px; text-align: center; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero { padding: 40px 0 30px; }
  .hero-inner, .why-grid, .footer-inner { grid-template-columns: 1fr; gap: 50px; }
  .price-card { grid-template-columns: 1fr; gap: 30px; padding: 40px; }
  .price-amount { font-size: 7rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature-lg { grid-column: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .uni-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 70px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .claim-row { flex-wrap: wrap; padding: 12px; border-radius: 18px; }
  .claim-row input { width: 100%; padding: 6px 10px; }
  .claim-row .btn { width: 100%; }
  .claim-suffix { font-size: 13px; padding-left: 6px; }
  .feature-grid, .steps, .uni-grid, .footer-cols { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .browser { transform: none; box-shadow: 6px 6px 0 var(--ink); }
  .price-card { padding: 30px 24px; box-shadow: 6px 6px 0 var(--accent); }
  .price-amount { font-size: 5rem; }
  .float-chip { display: none; }
}
