:root {
  --ink: #07110e;
  --ink-2: #15211d;
  --paper: #f4f5ed;
  --paper-2: #e8eadf;
  --white: #ffffff;
  --muted: #4f5a54;
  --line: #c8cbbf;
  --lime: #c9ff00;
  --lime-2: #e6ff75;
  --amber: #ffb23f;
  --green: #173d32;
  --green-2: #0d2a23;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 17, 14, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: "Libre Franklin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(244, 245, 237, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.nav-cta,
.button,
.eyebrow,
.section-kicker,
h1,
h2,
h3,
.panel-top,
.status-pill,
.job-card strong,
.stars,
.proof-strip strong,
.star-line,
.steps span,
.data-card span,
.deliverables div,
blockquote,
.case-points strong,
.price,
summary,
.site-footer,
.metric strong {
  font-family: "Archivo", system-ui, sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 64px);
}

.hero {
  min-height: calc(100vh - 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 800px;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 900;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
}

h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 850;
}

p {
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-subhead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
}

.wide {
  width: 100%;
}

.privacy-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 690px;
  margin-top: 24px;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.privacy-promise p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.lock {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1;
}

.hero-panel {
  padding: 18px;
  background: var(--green-2);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.status-pill {
  padding: 6px 10px;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.job-card,
.review-card,
.map-pack {
  margin-top: 14px;
  padding: 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.job-card.active {
  background: var(--lime);
}

.job-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.job-card small,
.job-label,
.map-title {
  display: block;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
}

.signal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.signal-dot {
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(201, 255, 0, 0.12);
}

.stars {
  color: var(--amber);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 10px 0 0;
  font-weight: 800;
}

.map-line {
  height: 12px;
  margin-top: 12px;
  background: #b6bcad;
}

.map-line.strong {
  background: var(--green);
}

.map-line.short {
  width: 62%;
}

.video-section,
.how-section,
.deliverables-section,
.case-study-section,
.pricing-section,
.faq-section,
.final-cta,
.case-page-hero,
.case-page-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 64px);
}

.video-section {
  border-top: 2px solid var(--ink);
}

.video-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.video-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: clamp(300px, 45vw, 520px);
  width: 100%;
  padding: clamp(24px, 5vw, 58px);
  color: var(--white);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(201, 255, 0, 0.12), transparent 38%),
    var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(201, 255, 0, 0.55);
  pointer-events: none;
}

.play-button {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  background: var(--lime);
  border-radius: 50%;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--ink);
}

.video-title {
  max-width: 620px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(30px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.video-flow {
  max-width: 520px;
  color: var(--lime-2);
  font-size: 15px;
  font-weight: 800;
}

.video-copy p,
.star-band p,
.privacy-section p,
.price-copy,
.case-page-section p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
}

.proof-strip div {
  padding: 22px clamp(18px, 4vw, 54px);
  border-right: 2px solid var(--ink);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.proof-strip span {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
}

.loss-section {
  align-items: start;
  border-bottom: 2px solid var(--ink);
}

.loss-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.loss-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.loss-card > strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.loss-bars {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 10px;
  margin: 26px 0;
}

.loss-bars div {
  padding: 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.loss-bars div:last-child {
  color: var(--ink);
  background: var(--lime);
}

.loss-bars b,
.loss-bars small {
  display: block;
}

.loss-bars b {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.9;
}

.loss-bars small {
  margin-top: 10px;
  font-weight: 850;
}

.loss-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
}

.steps article {
  min-height: 300px;
  padding: 24px;
  background: var(--white);
  border-right: 2px solid var(--ink);
}

.steps article:nth-child(even) {
  background: var(--paper-2);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.steps p {
  color: var(--muted);
  font-weight: 650;
}

.star-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 64px);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.star-copy {
  display: grid;
  gap: 18px;
}

.star-line {
  display: inline-block;
  width: fit-content;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--green-2);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.privacy-section .eyebrow,
.privacy-section p {
  color: var(--lime-2);
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.data-card {
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
}

.data-card.yes {
  background: var(--lime);
}

.data-card span {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 900;
}

.data-card ul,
.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(7, 17, 14, 0.22);
  font-weight: 800;
}

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

.deliverables div {
  min-height: 110px;
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.case-study-card,
.pricing-card {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.case-study-card {
  padding: clamp(24px, 5vw, 56px);
}

.case-badge {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.case-grid p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.testimonial-card {
  padding: 22px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.stars.dark {
  color: var(--ink);
}

blockquote {
  margin: 18px 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.case-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(28px, 5vw, 56px);
  background: var(--lime);
  border: 2px solid var(--lime);
}

.case-points div {
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
}

.case-points strong,
.case-points span {
  display: block;
}

.case-points strong {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
}

.case-points span {
  margin-top: 8px;
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.45;
}

.pricing-section {
  display: grid;
  place-items: center;
}

.pricing-card {
  width: min(100%, 620px);
  padding: clamp(26px, 5vw, 54px);
}

.price {
  margin: 24px 0 10px;
  font-size: clamp(66px, 10vw, 126px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.035em;
}

.price span {
  font-size: 22px;
  letter-spacing: 0;
}

.pricing-card .button + .button {
  margin-top: 12px;
}

.guarantee {
  margin: 18px 0 0;
  color: var(--green);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 2px solid var(--ink);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-size: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 650;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.case-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: end;
  border-bottom: 2px solid var(--ink);
}

.case-page-hero h1 {
  max-width: 940px;
}

.case-page-hero p {
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.metric-board {
  display: grid;
  gap: 12px;
}

.metric {
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: clamp(30px, 5vw, 60px);
  line-height: 0.9;
}

.metric span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.case-page-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  border-bottom: 2px solid var(--ink);
}

.case-page-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-page-section li {
  padding: 16px 0;
  border-top: 2px solid var(--ink);
  color: var(--ink-2);
  font-weight: 750;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .section-grid,
  .video-wrap,
  .star-band,
  .privacy-section,
  .case-grid,
  .case-page-hero,
  .case-page-section {
    grid-template-columns: 1fr;
  }

  .steps,
  .deliverables,
  .case-points {
    grid-template-columns: 1fr 1fr;
  }

  .steps article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .section-grid,
  .video-section,
  .how-section,
  .deliverables-section,
  .case-study-section,
  .pricing-section,
  .faq-section,
  .final-cta,
  .case-page-hero,
  .case-page-section {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip,
  .steps,
  .deliverables,
  .data-grid,
  .case-points,
  .loss-bars {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .steps article {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .proof-strip div:last-child,
  .steps article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
