:root {
  color-scheme: dark;
  --ink: #050505;
  --paper: #f2efe9;
  --muted: #9a9995;
  --line: rgba(255, 255, 255, 0.16);
  --acid: #d8ff36;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", "Arial Nova", Aptos, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

header,
main,
footer {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.06em;
  text-decoration: none;
}

nav { display: flex; align-items: center; gap: 30px; }

nav a,
.text-link {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:last-child { color: var(--acid); }

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(88svh - 104px);
  padding: clamp(70px, 8vw, 126px) 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero h1,
.section-title,
.final-cta h2 {
  margin: 42px 0 0;
  max-width: 1350px;
  font-size: clamp(54px, 9vw, 138px);
  font-weight: 850;
  letter-spacing: -.082em;
  line-height: .82;
  text-transform: uppercase;
}

em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: none;
}

.hero-bottom {
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: 48px;
  align-items: end;
  justify-content: space-between;
}

.lede {
  margin: 0;
  max-width: 760px;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.primary-cta {
  min-width: 238px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 22px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.primary-cta:hover { transform: translateY(-3px); background: var(--paper); }

.proof,
.outcomes,
.process,
.offer,
.faq,
.related,
.final-cta {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 3fr);
  gap: 34px;
  align-items: start;
}

.section-title {
  margin: -8px 0 0;
  font-size: clamp(42px, 6.4vw, 96px);
}

.proof-card {
  position: relative;
  display: block;
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 8.6;
  text-decoration: none;
  isolation: isolate;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 400ms ease;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.86));
}

.proof-card:hover img { transform: scale(1.025); filter: contrast(1.06); }

.proof-label {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.proof-note {
  margin: 16px 0 0;
  color: #777;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.card-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.card-grid article {
  min-height: 280px;
  padding: 26px 28px 32px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid article:not(:first-child) { padding-left: 28px; }
.card-grid article:last-child { border-right: 0; }
.card-grid article > p:first-child { color: var(--acid); }

.card-grid p,
.card-grid h3 { margin: 0; }

.card-grid h3 {
  margin-top: 72px;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.card-grid article > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.step-list,
.faq-list {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.step-list li {
  display: grid;
  grid-template-columns: 90px 1fr minmax(240px, 520px);
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.step-list span { color: var(--acid); font-size: 11px; letter-spacing: .1em; }
.step-list strong { font-size: clamp(22px, 2.2vw, 36px); letter-spacing: -.04em; text-transform: uppercase; }
.step-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.offer-panel {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border: 1px solid var(--line);
}

.offer-panel > div { padding: clamp(28px, 5vw, 70px); }
.offer-panel > div:last-child { border-left: 1px solid var(--line); }
.offer-panel h3, .offer-panel p { margin: 0; }
.offer-panel h3 { font-size: clamp(38px, 5vw, 78px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.offer-price { display: block; margin-top: 34px; color: var(--acid); font-size: clamp(38px, 4vw, 68px); letter-spacing: -.05em; }
.offer-panel p { margin-top: 20px; color: var(--muted); line-height: 1.55; }

.deliverables { margin: 0; padding: 0; list-style: none; }
.deliverables li { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.deliverables li:last-child { border-bottom: 0; }

.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 28px 0; font-size: clamp(20px, 2.2vw, 32px); font-weight: 750; letter-spacing: -.03em; }
.faq-list p { max-width: 780px; margin: 0 0 30px; color: var(--muted); line-height: 1.65; }

.related-links {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-links a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-links a:hover { border-color: var(--acid); transform: translateY(-3px); }
.related-links span { color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.related-links strong { font-size: clamp(22px, 2.6vw, 38px); letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }

.final-cta { min-height: 74svh; display: flex; flex-direction: column; justify-content: center; }
.final-cta h2 { font-size: clamp(48px, 7.4vw, 112px); }
.final-row { margin-top: 72px; display: flex; justify-content: space-between; gap: 42px; align-items: end; }
.final-row p { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }

footer {
  min-height: 220px;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: end;
  border-top: 1px solid var(--line);
}

footer p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
footer p:last-child { text-align: right; }

@media (max-width: 820px) {
  header, main, footer { width: min(100% - 28px, 1440px); }
  header { height: 84px; }
  nav a:first-child { display: none; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-bottom, .section-grid, .offer-panel { grid-template-columns: 1fr; }
  .hero-bottom { align-items: start; }
  .primary-cta { width: 100%; }
  .proof, .outcomes, .process, .offer, .faq, .related, .final-cta { padding: 88px 0; }
  .proof-card { margin-top: 54px; aspect-ratio: 4 / 5; }
  .card-grid, .related-links { grid-template-columns: 1fr; }
  .card-grid article, .card-grid article:not(:first-child) { min-height: auto; padding: 24px 0 30px; border-right: 0; }
  .card-grid h3 { margin-top: 44px; }
  .step-list li { grid-template-columns: 52px 1fr; }
  .step-list li p { grid-column: 2; }
  .offer-panel > div:last-child { border-top: 1px solid var(--line); border-left: 0; }
  .final-row { flex-direction: column; align-items: stretch; }
  footer { grid-template-columns: 1fr; min-height: 250px; align-items: start; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
