:root {
  --g:        #06923E;
  --g-light:  #edf7f1;
  --g-mid:    #c2e0ce;
  --g-hover:  #057a34;
  --black:    #0d0b12;
  --ink:      #1c1729;
  --ink-2:    #3b3557;
  --ink-3:    #6e6a85;
  --ink-4:    #9e9ab5;
  --rule:     #e9e7f0;
  --surface:  #faf9ff;
  --white:    #ffffff;

  --font-display: 'DM Sans', sans-serif;
  --font-ui:      'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:    14px;
  --radius-sm: 8px;
  --max-w:     1160px;
  --nav-h:     68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }

h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.02em; }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo svg {
  margin-right: 8px;
}
.nav-logo svg path {
  fill: #06923E;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--g);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: var(--g); flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g); color: var(--white);
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: 2px solid var(--g);
  letter-spacing: .01em;
  transition: background .15s, transform .12s, box-shadow .15s;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(6,146,62,.22);
}
.btn-primary:hover {
  background: var(--g-hover);
  border-color: var(--g-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,146,62,.32);
}
.btn-primary.large { font-size: 16px; padding: 16px 32px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-3); font-size: 14px; font-weight: 600;
  transition: color .15s;
}
.btn-ghost:hover { color: var(--ink); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--g);
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 2px solid var(--g);
  letter-spacing: .01em;
  transition: all .15s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--g-light);
  transform: translateY(-2px);
}

#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--rule);
  transition: box-shadow .2s;
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; color: var(--ink); letter-spacing: -.01em;
  flex-shrink: 0; font-weight: 700;
}
.nav-logo span { color: var(--g); font-weight: 400; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-3);
  padding: 6px 12px; border-radius: 7px;
  transition: color .12s, background .12s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }

.nav-right {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}

.nav-badge {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--g); background: var(--g-light);
  border: 1px solid var(--g-mid);
  padding: 4px 10px; border-radius: 20px;
  white-space: nowrap;
}

.nav-cta {
  background: var(--g); color: var(--white);
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius-sm);
  border: 2px solid var(--g);
  transition: all .15s; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(6,146,62,.2);
}
.nav-cta:hover { background: var(--g-hover); border-color: var(--g-hover); transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .2s;
}

.nav-mobile {
  display: none; flex-direction: column;
  border-top: 1px solid var(--rule);
  padding: 16px 24px 20px; gap: 4px;
  background: var(--white);
}
.nav-mobile a {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  padding: 10px 12px; border-radius: var(--radius-sm);
  transition: background .12s;
}
.nav-mobile a:hover { background: var(--surface); }
.nav-mobile .mobile-cta {
  margin-top: 8px; background: var(--g); color: var(--white);
  text-align: center; border-radius: var(--radius-sm);
  padding: 12px; font-weight: 700;
}
.nav-mobile.open { display: flex; }

.hero {
  padding: 90px 40px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.hero-left { max-width: 540px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--g); margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--g); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(6,146,62,.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(6,146,62,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(6,146,62,.08); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 700;
  line-height: 1.06; letter-spacing: -.03em;
  color: var(--black); margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--g); display: block;
  font-weight: 400;
}

.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--ink-3);
  margin-bottom: 36px; max-width: 480px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px; flex-wrap: wrap;
}

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust span {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-4); letter-spacing: .04em;
}

.hero-right { position: relative; display: flex; justify-content: center; align-items: flex-start; }

.mock-panel {
  width: 320px; background: #f7f7f5;
  border: 1.5px solid #e0e0dc; border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 24px rgba(0,0,0,.08),
    0 32px 64px rgba(0,0,0,.12);
  animation: float 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.mock-head {
  background: var(--g); padding: 12px 15px;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-wordmark {
  font-family: var(--font-display);
  font-size: 15px; color: #fff; letter-spacing: -.01em; font-weight: 700;
}
.mock-wordmark span { opacity: .6; font-weight: 400; }
.mock-btns { display: flex; gap: 4px; }
.mock-btn {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); border-radius: 5px;
  padding: 2px 8px; font-size: 10px; font-family: var(--font-ui); font-weight: 600;
}
.mock-btn.close { padding: 2px 6px; }

.mock-body { padding: 13px; }

.mock-analyze {
  width: 100%; padding: 9px; background: var(--g); color: #fff;
  border: none; border-radius: 8px; font-family: var(--font-ui);
  font-size: 12px; font-weight: 700; margin-bottom: 5px; cursor: default;
  letter-spacing: .01em;
}

.mock-source {
  font-family: var(--font-mono); font-size: 9.5px;
  color: var(--ink-4); text-align: center; margin-bottom: 12px;
  letter-spacing: .04em;
}

.mock-verdict-card {
  background: #fff; border: 1px solid #e8e8e4; border-radius: 9px;
  padding: 11px 13px; margin-bottom: 9px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.mock-vrow { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.mock-verdict {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: -.03em; line-height: 1; font-weight: 700;
}
.mock-verdict.apply { color: var(--g); }
.mock-verdict.skip  { color: #b83232; }
.mock-verdict.maybe { color: #9a6c10; }

.mock-conf {
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 20px;
}
.mock-conf.strong { background: var(--g-light); color: var(--g); }

.mock-summary { font-size: 11px; line-height: 1.5; color: #555; }

.mock-bullets-card {
  background: #fff; border: 1px solid #e8e8e4; border-radius: 9px;
  overflow: hidden; margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.mock-bhead {
  padding: 7px 12px; border-bottom: 1px solid #f0f0ec;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: #aaa;
}
.mock-bdot { width: 6px; height: 6px; border-radius: 50%; }
.mock-bdot.green { background: var(--g); }
.mock-bdot.red   { background: #e74c3c; }

.mock-bbody { padding: 8px 12px; display: flex; flex-direction: column; gap: 5px; }
.mock-bullet {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 10.5px; line-height: 1.4; color: #333;
}
.mock-bar {
  width: 2px; flex-shrink: 0; margin-top: 3px;
  align-self: stretch; border-radius: 1px;
}
.mock-bar.green { background: var(--g); }
.mock-bar.red   { background: #e74c3c; }

.float-card {
  position: absolute;
  background: #fff; border-radius: 10px;
  padding: 8px 12px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  border: 1.5px solid var(--rule);
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  z-index: 3;
}
.fc-label {
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 20px;
}
.fc-label.skip  { background: #fde8e7; color: #b83232; }
.fc-label.maybe { background: #fdf3e0; color: #9a6c10; }
.fc-text { font-size: 11.5px; color: var(--ink-3); white-space: nowrap; }

.fc-skip  { top: 24px; right: -32px; animation: float2 5s 1s ease-in-out infinite; }
.fc-maybe { bottom: 32px; right: -20px; animation: float2 4.5s .4s ease-in-out infinite; }
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.ticker-wrap {
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
  background: var(--surface);
  overflow: hidden; padding: 11px 0;
}
.ticker-track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.tick {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ink-3); letter-spacing: .02em;
}
.tick b { font-weight: 600; }
.tick b.apply { color: var(--g); }
.tick b.skip  { color: #b83232; }
.tick b.maybe { color: #9a6c10; }
.tick-sep { color: var(--ink-4); padding: 0 4px; font-size: 18px; line-height: 1; }

.section { padding: 96px 40px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-header { margin-bottom: 56px; }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08; letter-spacing: -.03em;
  color: var(--black); margin-bottom: 16px;
}
.section-h2 em { font-style: normal; color: var(--g); font-weight: 400; }
.section-sub {
  font-size: 17px; color: var(--ink-3); max-width: 520px; line-height: 1.7;
}

.problem-section { background: var(--surface); border-top: 1.5px solid var(--rule); }

.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--white); border: 1.5px solid var(--rule);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pain-card:hover {
  border-color: var(--g-mid);
  box-shadow: 0 8px 32px rgba(6,146,62,.08);
  transform: translateY(-3px);
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g), transparent);
  opacity: 0; transition: opacity .2s;
}
.pain-card:hover::before { opacity: 1; }

.pain-num {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--g); letter-spacing: .1em;
  margin-bottom: 20px; display: block;
}
.pain-icon { font-size: 30px; margin-bottom: 16px; display: block; }

.pain-card h3 {
  font-family: var(--font-ui); font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.pain-card p { font-size: 14px; color: var(--ink-3); line-height: 1.7; }

.how-section { border-top: 1.5px solid var(--rule); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--rule); border-radius: var(--radius);
  overflow: hidden; border: 1.5px solid var(--rule);
}

.step {
  background: var(--white); padding: 36px 28px;
  transition: background .15s;
}
.step:hover { background: var(--surface); }

.step-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--g); letter-spacing: .1em;
  margin-bottom: 24px; display: block;
}
.step-title {
  font-family: var(--font-ui); font-size: 17px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.step-desc { font-size: 14px; color: var(--ink-3); line-height: 1.7; }

.features-section {
  background: var(--black);
  border-top: 1.5px solid var(--rule);
}
.features-section .eyebrow { color: var(--g); }
.features-section .eyebrow::before { background: var(--g); }
.features-section .section-h2 { color: #fff; }
.features-section .section-h2 em { color: var(--g); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.bento-card {
  background: rgba(6,146,62,.05);
  border: 1.5px solid rgba(6,146,62,.12);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .2s, background .2s;
}
.bento-card:hover {
  border-color: rgba(6,146,62,.28);
  background: rgba(6,146,62,.08);
}

.bento-card.large { grid-column: span 3; }
.bento-card.small { grid-column: span 2; }

.bento-icon { font-size: 28px; margin-bottom: 18px; display: block; }

.bento-card h3 {
  font-family: var(--font-ui); font-size: 19px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.bento-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

.bento-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px;
}
.bento-tags span {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--g);
  background: rgba(6,146,62,.12);
  border: 1px solid rgba(6,146,62,.22);
  padding: 3px 9px; border-radius: 20px;
}

.outreach-section { border-top: 1.5px solid var(--rule); background: var(--surface); }

.outreach-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
}

.out-tabs {
  display: flex; gap: 4px; margin-bottom: 14px; flex-wrap: wrap;
}
.out-tab {
  padding: 6px 14px; border-radius: 20px;
  font-family: var(--font-ui); font-size: 12.5px; font-weight: 600;
  border: 1.5px solid var(--rule); background: var(--white);
  color: var(--ink-3); cursor: pointer; transition: all .15s;
}
.out-tab:hover { border-color: var(--g-mid); color: var(--ink); }
.out-tab.active {
  background: var(--g); border-color: var(--g); color: #fff;
  box-shadow: 0 2px 10px rgba(6,146,62,.25);
}

.out-card {
  background: var(--white); border: 1.5px solid var(--rule);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.out-card.hidden { display: none; }

.out-card-head {
  padding: 11px 16px; border-bottom: 1.5px solid var(--rule);
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-4); background: var(--surface);
}
.out-card-body {
  padding: 20px 18px;
  font-size: 13.5px; line-height: 1.75; color: var(--ink-2);
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--font-mono);
}
.out-card-body strong { color: var(--ink); font-weight: 500; }
.out-card-foot {
  padding: 10px 16px; border-top: 1.5px solid var(--rule);
  background: var(--surface); display: flex; justify-content: flex-end;
}
.out-copy {
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  background: var(--g-light); border: 1.5px solid var(--g-mid);
  color: var(--g); padding: 6px 14px; border-radius: 7px; cursor: pointer;
  transition: all .15s; letter-spacing: .01em;
}
.out-copy:hover { background: var(--g-mid); }
.out-copy.copied { background: var(--g); color: #fff; border-color: var(--g); }

.outreach-points { display: flex; flex-direction: column; gap: 28px; }
.op { display: flex; gap: 18px; align-items: flex-start; }

.op-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--g); background: var(--g-light); border: 1.5px solid var(--g-mid);
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.op-content h4 {
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 5px;
}
.op-content p { font-size: 13.5px; color: var(--ink-3); line-height: 1.65; }

.stats-band {
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
  background: var(--white);
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 64px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1; letter-spacing: -.04em; font-weight: 700;
  color: var(--black); margin-bottom: 8px;
}
.stat-num span { color: var(--g); }
.stat-label { font-size: 13.5px; color: var(--ink-3); font-weight: 500; }

.testimonials-section { border-top: 1.5px solid var(--rule); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--surface); border: 1.5px solid var(--rule);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.tcard:hover {
  border-color: var(--g-mid);
  box-shadow: 0 6px 24px rgba(6,146,62,.08);
}

.tcard-body {
  font-family: var(--font-display);
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  font-style: normal; flex: 1;
}
.tcard-body::before {
  content: '\201C'; color: var(--g);
  font-size: 24px; line-height: 0; vertical-align: -.35em; margin-right: 3px;
}

.tcard-person { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--g-light); border: 1.5px solid var(--g-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--g);
  font-weight: 500; flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.tcard-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-4); letter-spacing: .02em; }

.cta-section {
  background: var(--g);
  padding: 100px 40px; text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-section .eyebrow { color: rgba(255,255,255,.65); justify-content: center; }
.cta-section .eyebrow::before,
.cta-section .eyebrow::after { display: none; }

.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08; letter-spacing: -.03em;
  color: #fff; margin-bottom: 16px;
}
.cta-h2 em { font-style: normal; color: rgba(255,255,255,.7); font-weight: 400; }

.cta-sub { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 40px; line-height: 1.65; }

.cta-actions {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: #fff; color: var(--g); border-color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.cta-section .btn-primary:hover { background: #f0f0ee; border-color: #f0f0ee; }

.cta-section .btn-outline {
  border-color: rgba(255,255,255,.4); color: #fff;
}
.cta-section .btn-outline:hover { background: rgba(255,255,255,.1); }

.cta-checks {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
  margin-top: 28px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.55); letter-spacing: .06em;
}

footer {
  border-top: 1.5px solid var(--rule);
  background: var(--surface);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px; color: var(--ink); letter-spacing: -.01em; font-weight: 700;
}
.footer-logo span { color: var(--ink-3); font-weight: 400; }
.footer-tagline { font-size: 13px; color: var(--ink-4); margin-top: 3px; }

.footer-links { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  padding: 5px 10px; border-radius: 6px;
  transition: color .12s, background .12s;
}
.footer-links a:hover { color: var(--g); background: var(--g-light); }

.footer-mono {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-4); letter-spacing: .08em; text-transform: uppercase;
  text-align: right;
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-badge { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 16px; }
  .bento-card.large { grid-column: span 6; }
  .bento-card.small { grid-column: span 3; }
}

@media (max-width: 840px) {
  .hero { padding: 60px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { max-width: 100%; }
  .hero-right { display: none; }
  .hero-h1 { font-size: 44px; }
  .section { padding: 64px 24px; }
  .stats-inner { padding: 48px 24px; }
  .pain-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.small { grid-column: span 3; }
  .outreach-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-mono { text-align: left; }
}

@media (max-width: 560px) {
  .hero-h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .bento-card.large,
  .bento-card.small { grid-column: span 6; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num { font-size: 40px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline { width: 100%; justify-content: center; }
  .nav-inner { padding: 0 20px; }
}