/* =========================================================================
   GROWTH LAB — Design System
   Black canvas · lime signal accent · editorial grotesk type
   ========================================================================= */

:root {
  /* Surfaces */
  --bg:        #0a0a0b;
  --bg-2:      #101013;
  --bg-3:      #16161a;
  --bg-4:      #1c1c22;

  /* Lines */
  --line:        rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text:    #f4f4f2;
  --muted:   #a3a3ac;
  --muted-2: #6d6d76;

  /* Accent — signal lime (growth / money / energy) */
  --accent:      #c6f24e;
  --accent-600:  #b4e23a;
  --accent-soft: rgba(198, 242, 78, 0.12);
  --accent-line: rgba(198, 242, 78, 0.32);
  --on-accent:   #0a0a0b;

  /* Type */
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 22px;

  /* Rhythm */
  --container: 1180px;
  --gutter: 24px;
  --section: clamp(68px, 10vw, 124px);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(198, 242, 78, 0.10), transparent 60%),
    radial-gradient(760px 600px at 8% 4%, rgba(120, 130, 255, 0.06), transparent 55%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

::selection { background: var(--accent); color: var(--on-accent); }

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 7vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent-line);
}

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }

.center { text-align: center; margin-inline: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-600); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent-line); color: var(--accent); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 30px; font-size: 16px; }

/* ----- Navigation ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 30px; height: 30px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand__word b { color: var(--accent); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 15px;
  color: var(--muted);
  transition: color .16s ease;
  position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ----- Hero ----- */
.hero { position: relative; padding-block: clamp(60px, 9vw, 116px) var(--section); }
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(680px 440px at 50% 24%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(680px 440px at 50% 24%, #000 20%, transparent 78%);
  opacity: .5;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 30px;
}
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 {
  font-size: clamp(38px, 7vw, 78px);
  max-width: 15ch;
  letter-spacing: -0.035em;
}
.hero h1 .hl { color: var(--accent); }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 60ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__proof {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  color: var(--muted-2); font-size: 14px;
}
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ----- Marquee / logos-strip substitute (credibility bar) ----- */
.credbar { border-block: 1px solid var(--line); background: var(--bg-2); }
.credbar__row {
  display: flex; flex-wrap: wrap; gap: 22px 46px;
  align-items: center; justify-content: center;
  padding-block: 26px;
}
.credbar__item {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .04em;
  color: var(--muted); display: inline-flex; align-items: center; gap: 10px;
}
.credbar__item svg { width: 17px; height: 17px; color: var(--accent); }

/* ----- Leak math callout ----- */
.leakmath {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.leakmath::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
}
.leakmath__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.leakmath__cell .k { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); color: var(--text); letter-spacing: -.03em; }
.leakmath__cell .k b { color: var(--accent); font-weight: 600; }
.leakmath__cell .l { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.leakmath__foot { margin-top: 26px; color: var(--muted); font-size: 16px; border-top: 1px solid var(--line); padding-top: 22px; }
.leakmath__foot b { color: var(--text); font-weight: 600; }

/* ----- Cards / feature grid ----- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-3);
  padding: 30px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: var(--bg-4); }
.card__ico {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  margin-bottom: 20px;
}
.card__ico svg { width: 21px; height: 21px; color: var(--accent); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* Numbered step */
.step { position: relative; }
.step__n {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--accent);
  border: 1px solid var(--accent-line); background: var(--accent-soft);
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; margin-bottom: 18px;
}

/* ----- Split feature (text + panel) ----- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__panel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-2); padding: 30px;
}

/* ----- Offer / pricing cards ----- */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.offer {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-3); padding: 36px; position: relative; display: flex; flex-direction: column;
}
.offer--feature { border-color: var(--accent-line); background: linear-gradient(180deg, rgba(198,242,78,0.06), var(--bg-3)); }
.offer__badge {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-line); border-radius: 999px; padding: 5px 12px;
}
.offer__name { font-family: var(--font-display); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.offer__price { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 46px); margin-top: 14px; letter-spacing: -.03em; }
.offer__price small { font-size: 16px; color: var(--muted-2); font-weight: 400; letter-spacing: 0; }
.offer__desc { color: var(--muted); margin-top: 12px; font-size: 15.5px; }
.offer__list { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.offer__list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--text); }
.offer__list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.offer__cta { margin-top: 30px; }

/* ----- Belief chain / ordered feature list ----- */
.chain { list-style: none; counter-reset: chain; display: grid; gap: 14px; }
.chain li {
  counter-increment: chain;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg-3); padding: 22px 24px 22px 66px; position: relative;
}
.chain li::before {
  content: counter(chain);
  position: absolute; left: 20px; top: 22px;
  font-family: var(--font-display); font-weight: 600; color: var(--accent);
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line); font-size: 14px;
}
.chain li b { font-family: var(--font-display); font-weight: 600; display: block; margin-bottom: 4px; }
.chain li span { color: var(--muted); font-size: 15px; }

/* ----- FAQ ----- */
.faq { display: grid; gap: 14px; max-width: 820px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg-3); padding: 4px 24px; transition: border-color .2s;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-display); font-size: 24px; color: var(--accent);
  transition: transform .2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding-bottom: 22px; font-size: 15.5px; max-width: 68ch; }

/* ----- Insights / listicle cards ----- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-3); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.post:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.post__cover {
  aspect-ratio: 16/9;
  background:
    radial-gradient(140px 100px at 80% 20%, var(--accent-soft), transparent 70%),
    linear-gradient(135deg, var(--bg-4), var(--bg-2));
  border-bottom: 1px solid var(--line);
  position: relative; display: grid; place-items: center;
}
.post__cover span {
  font-family: var(--font-display); font-weight: 600; font-size: 40px;
  color: rgba(255,255,255,.10); letter-spacing: -.03em;
}
.post__cover .tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: rgba(10,10,11,.6); border: 1px solid var(--accent-line);
  border-radius: 999px; padding: 5px 11px; font-family: var(--font-display);
}
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__meta { color: var(--muted-2); font-size: 13px; margin-bottom: 12px; display: flex; gap: 12px; }
.post__body h3 { font-size: 20px; line-height: 1.22; }
.post__body p { color: var(--muted); font-size: 15px; margin-top: 12px; flex: 1; }
.post__more { margin-top: 20px; color: var(--accent); font-family: var(--font-display); font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
.post__more svg { width: 15px; height: 15px; transition: transform .18s; }
.post:hover .post__more svg { transform: translateX(4px); }

/* ----- Article (listicle) prose ----- */
.article { max-width: 760px; margin-inline: auto; }
.article__head { border-bottom: 1px solid var(--line); padding-bottom: 34px; margin-bottom: 42px; }
.article__meta { display: flex; gap: 14px; color: var(--muted-2); font-size: 14px; margin-bottom: 20px; align-items: center; }
.article__meta .pill { color: var(--accent); border: 1px solid var(--accent-line); border-radius: 999px; padding: 4px 12px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-display); }
.article h1 { font-size: clamp(30px, 5vw, 50px); letter-spacing: -.03em; }
.article__lede { font-size: 20px; color: var(--muted); margin-top: 22px; }
.prose > * + * { margin-top: 24px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 32px); margin-top: 52px; letter-spacing: -.02em; }
.prose h3 { font-size: 21px; margin-top: 38px; }
.prose p { color: #d5d5d2; font-size: 17.5px; line-height: 1.75; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 4px; list-style: none; display: grid; gap: 16px; }
.prose ol { counter-reset: pr; }
.prose ol > li { counter-increment: pr; position: relative; padding-left: 52px; color: #d5d5d2; }
.prose ol > li::before {
  content: counter(pr); position: absolute; left: 0; top: -2px;
  font-family: var(--font-display); font-weight: 600; color: var(--accent);
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line); font-size: 15px;
}
.prose ul > li { position: relative; padding-left: 26px; color: #d5d5d2; }
.prose ul > li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 7px; height: 7px; background: var(--accent); border-radius: 2px; }
.prose li b, .prose li strong { color: var(--text); }
.prose blockquote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 24px;
  font-family: var(--font-display); font-size: 22px; color: var(--text); letter-spacing: -.01em; line-height: 1.4;
}
.prose hr { border: none; border-top: 1px solid var(--line); margin-block: 44px; }
.callout {
  border: 1px solid var(--accent-line); background: var(--accent-soft);
  border-radius: var(--r); padding: 24px 26px;
}
.callout p { color: var(--text); font-size: 16.5px; }

/* Article end CTA */
.article-cta {
  margin-top: 60px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); padding: clamp(28px,4vw,42px); text-align: center;
}
.article-cta h3 { font-size: 26px; }
.article-cta p { color: var(--muted); margin: 14px auto 26px; max-width: 46ch; }

/* ----- Contact / form ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
.contact-side .lead { font-size: 18px; color: var(--muted); margin-top: 18px; }
.contact-methods { display: grid; gap: 14px; margin-top: 34px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-3);
  padding: 18px 20px; transition: border-color .18s, transform .18s;
}
.contact-method:hover { border-color: var(--accent-line); transform: translateX(3px); }
.contact-method__ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; flex-shrink: 0; }
.contact-method__ico svg { width: 20px; height: 20px; color: var(--accent); }
.contact-method .t { font-family: var(--font-display); font-weight: 500; font-size: 15.5px; }
.contact-method .s { color: var(--muted); font-size: 14px; }

.formcard { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-3); padding: clamp(26px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 8px; font-family: var(--font-display); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong);
  color: var(--text); border-radius: var(--r-sm); padding: 14px 16px; font-family: var(--font-body); font-size: 15.5px;
  transition: border-color .16s, box-shadow .16s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 16px; text-align: center; }
.form-status { display: none; text-align: center; padding: 34px 20px; }
.form-status.is-visible { display: block; }
.form-status__ico { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; margin: 0 auto 20px; }
.form-status__ico svg { width: 26px; height: 26px; color: var(--accent); }
.form-status h3 { font-size: 24px; }
.form-status p { color: var(--muted); margin-top: 10px; }

/* ----- CTA band ----- */
.cta-band {
  border: 1px solid var(--accent-line); border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(198,242,78,0.10), var(--bg-3) 60%);
  padding: clamp(36px, 6vw, 68px); text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(28px, 4.6vw, 46px); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: var(--muted); margin: 20px auto 32px; max-width: 52ch; font-size: 18px; }
.cta-band__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Footer ----- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 58px 34px; margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: 15px; margin-bottom: 11px; transition: color .16s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13.5px; }
.footer__bottom .socials { display: flex; gap: 10px; }
.footer__bottom .socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .18s; }
.footer__bottom .socials a:hover { color: var(--accent); border-color: var(--accent-line); }
.footer__bottom .socials svg { width: 17px; height: 17px; }

/* ----- Scroll reveal ----- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ----- Mobile drawer ----- */
.drawer {
  position: fixed; inset: 70px 0 0; z-index: 99;
  background: var(--bg); padding: 30px var(--gutter);
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.is-open { transform: none; opacity: 1; pointer-events: auto; }
.drawer a { font-family: var(--font-display); font-size: 22px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 22px; }

/* ============================ Responsive ============================ */
@media (max-width: 960px) {
  .grid--3, .grid--4, .posts { grid-template-columns: repeat(2, 1fr); }
  .offers, .split, .contact-grid, .footer__top { grid-template-columns: 1fr; }
  .split__panel { order: -1; }
  .footer__top { gap: 40px 32px; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .grid--3, .grid--4, .grid--2, .posts, .leakmath__grid, .footer__top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .leakmath__grid { gap: 18px; text-align: center; }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
