:root {
  --black: #171717;
  --black-2: #222222;
  --white: #f4f2ec;
  --paper: #fffaf0;
  --muted: #c9c5bb;
  --line: rgba(244, 242, 236, 0.18);
  --yellow: #ffd400;
  --red: #df2727;
  --red-dark: #b71919;
  --green: #1ecb8c;
  --violet: #9f45ff;
  --orange: #ff8a21;
  --radius: 7px;
  --max: 1180px;
  --display: "Russo One", Impact, "Arial Black", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.58;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(23, 23, 23, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--yellow);
}

.page-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 78px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 236, 0.18);
  font-family: var(--display);
  font-size: clamp(110px, 16vw, 230px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero::before {
  content: "DIRECT";
  top: 36px;
  left: 42%;
}

.hero::after {
  content: "AUDIT";
  right: -20px;
  bottom: 52px;
}

.hero-grid,
.content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: 58px;
  align-items: start;
}

.letter {
  max-width: 780px;
}

.letter.narrow {
  max-width: 860px;
}

.prehead,
.section-kicker,
.note-label {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  font-size: clamp(48px, 6vw, 92px);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(44px, 5vw, 76px);
}

h3 {
  margin-top: 34px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.letter p {
  margin-top: 24px;
}

.lead {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.22;
  font-weight: 800;
}

.map-note {
  color: var(--muted);
}

.letter p:not(.lead):not(.big-line) {
  max-width: 690px;
}

.big-line {
  display: inline;
  background: var(--yellow);
  color: var(--black);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 8px 4px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.25;
  font-weight: 950;
}

.punch-list {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.punch-list span {
  display: block;
  padding: 12px 16px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.22;
}

blockquote {
  margin: 36px 0 30px;
  padding: 24px 26px;
  color: var(--black);
  background: var(--yellow);
  border-left: 10px solid var(--red);
  border-radius: var(--radius);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 950;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero .cta-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--yellow);
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.ghost {
  color: var(--white);
  background: transparent;
}

.button.full {
  width: 100%;
}

.margin-note,
.audit-card,
.report-preview,
.price-box,
.lead-form {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--paper);
  color: var(--black);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--yellow);
}

.poster-mark {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.poster-mark img {
  width: 112px;
  height: 112px;
}

.poster-mark span {
  color: transparent;
  -webkit-text-stroke: 1px var(--black);
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.9;
  text-transform: uppercase;
}

.poster-strip {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 14px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.margin-note .note-label,
.audit-card .note-label,
.report-preview .note-label,
.price-box .note-label {
  color: var(--red);
}

.margin-note h2 {
  color: var(--black);
  font-size: 44px;
}

.margin-note ul,
.fit-list ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.margin-note li,
.fit-list li {
  position: relative;
  padding-left: 26px;
}

.margin-note li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 2px;
}

.section {
  position: relative;
  padding: 94px 0;
  border-bottom: 1px solid var(--line);
}

.founder {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 84px 84px,
    #101010;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 58px;
  align-items: center;
}

.founder-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.08;
}

.founder-lead {
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.27;
  font-weight: 850;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.founder-stats div {
  min-height: 150px;
  padding: 18px;
  background: var(--paper);
  color: var(--black);
  border: 2px solid var(--white);
  border-radius: var(--radius);
}

.founder-stats strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 47px);
  line-height: 0.98;
  text-transform: uppercase;
}

.founder-stats span {
  display: block;
  margin-top: 12px;
  color: #4c4942;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.founder-quote {
  max-width: 760px;
  margin-bottom: 0;
}

.founder-card {
  position: relative;
}

.founder-card::before {
  content: "FOUNDER";
  position: absolute;
  z-index: 0;
  top: -38px;
  right: -20px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 236, 0.22);
  font-family: var(--display);
  font-size: 76px;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
}

.founder-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--yellow);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--yellow);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,23,23,0) 42%, rgba(23,23,23,0.74) 100%),
    linear-gradient(90deg, rgba(255,212,0,0.18), rgba(223,39,39,0.12));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(0.2) contrast(1.1) saturate(0.92);
  transform: scale(1.02);
}

.founder-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: calc(100% - 28px);
  margin: -64px 0 0 14px;
  padding: 16px 18px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius);
}

.founder-caption span {
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.founder-caption strong {
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.paper-band {
  background: var(--paper);
  color: var(--black);
}

.paper-band .section-kicker,
.paper-band .note-label {
  color: var(--red);
}

.compare-row,
.report-line {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.18);
}

.compare-row:first-of-type,
.report-line:first-of-type {
  margin-top: 18px;
}

.compare-row span,
.report-line span {
  color: #625e56;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-row strong,
.report-line strong {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.compare-row.danger strong,
.report-line.decision strong {
  color: var(--red);
}

.leak-table {
  margin-top: 44px;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--yellow);
  overflow: hidden;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.25fr;
}

.table-head span,
.table-row span {
  padding: 18px 20px;
  border-right: 1px solid rgba(23, 23, 23, 0.18);
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
}

.table-head span:last-child,
.table-row span:last-child {
  border-right: 0;
}

.table-head {
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table-row span:first-child {
  color: var(--red);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.proof-section {
  background: var(--black-2);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.outcomes article {
  min-height: 275px;
  padding: 22px;
  background: var(--paper);
  color: var(--black);
  border: 2px solid var(--white);
  border-radius: var(--radius);
}

.outcomes span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.outcomes h3 {
  margin-top: 0;
  color: var(--black);
  font-size: 28px;
}

.outcomes p {
  margin-top: 16px;
  color: #4c4942;
  font-size: 16px;
}

.audit-parts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--white);
  border-radius: var(--radius);
}

.mini-cta strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
}

.mini-cta .button:hover {
  box-shadow: 6px 6px 0 var(--black);
}

.offer {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 86px 86px,
    #101010;
}

.offer .letter p {
  color: var(--muted);
}

.offer blockquote {
  color: var(--black);
}

.price-box {
  color: var(--black);
}

.price {
  margin: 12px 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.95;
  text-transform: uppercase;
}

.price-box small {
  display: block;
  margin-top: 14px;
  color: #625e56;
  font-size: 13px;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fit-list {
  padding: 30px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
}

.fit-list h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.fit-list.negative {
  background: var(--white);
  color: var(--black);
}

.fit-list.negative li::before {
  background: var(--red);
}

.quote-section {
  padding: 76px 0;
  background: var(--black-2);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-grid article {
  display: grid;
  gap: 18px;
}

.quote-grid p {
  margin: 0;
  padding: 24px;
  color: var(--black);
  background: var(--paper);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--yellow);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 950;
}

.steps {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 76px 0.8fr 1.2fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
}

.steps strong {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.steps span {
  color: var(--muted);
}

.final {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--black);
}

.lead-form {
  display: grid;
  gap: 15px;
  position: static;
}

.lead-form h3 {
  margin-top: 0;
  color: var(--black);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: #fffef9;
  color: var(--black);
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 39, 39, 0.16);
}

.form-note,
.form-toast {
  margin: 0;
  color: #625e56;
  font-size: 13px;
  line-height: 1.4;
}

.form-toast {
  padding: 12px 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

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

.faq-list article {
  padding: 24px;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius);
}

.faq-list h3 {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.08;
}

.faq-list p {
  margin-top: 14px;
  color: #4c4942;
  font-size: 17px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .content-grid,
  .founder-grid,
  .faq-grid,
  .quote-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .founder-card {
    max-width: 460px;
  }

  .margin-note,
  .audit-card,
  .report-preview,
  .price-box {
    position: static;
  }

  .outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-head,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .table-row {
    border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  }

  .table-row span {
    border-right: 0;
  }

  .steps li {
    grid-template-columns: 70px 1fr;
  }

  .steps span {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .topbar {
    min-height: 66px;
  }

  .page-shell {
    width: 330px;
    max-width: calc(100vw - 30px);
    margin-left: 15px;
    margin-right: 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 58px;
  }

  .hero::before,
  .hero::after {
    font-size: 84px;
  }

  .section {
    padding: 62px 0;
  }

  .prehead,
  .section-kicker,
  .note-label {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 330px;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  .lead {
    max-width: 330px;
    font-size: 19px;
    line-height: 1.28;
  }

  blockquote {
    padding: 20px;
    font-size: 20px;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 56px;
    padding: 13px 14px;
    font-size: 12px;
  }

  .margin-note,
  .audit-card,
  .report-preview,
  .price-box,
  .lead-form,
  .founder-photo-frame,
  .leak-table {
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .founder-copy h2 {
    font-size: 36px;
  }

  .founder-lead {
    font-size: 20px;
  }

  .founder-stats {
    grid-template-columns: 1fr;
  }

  .founder-stats div {
    min-height: auto;
  }

  .founder-card::before {
    top: -26px;
    right: -8px;
    font-size: 50px;
  }

  .founder-caption span {
    font-size: 25px;
  }

  .poster-mark img {
    width: 86px;
    height: 86px;
  }

  .poster-mark span {
    font-size: 42px;
  }

  .outcomes {
    grid-template-columns: 1fr;
  }

  .audit-parts {
    grid-template-columns: 1fr;
  }

  .outcomes article {
    min-height: auto;
  }

  .mini-cta {
    align-items: stretch;
  }

  .mini-cta .button {
    width: 100%;
  }

  .quote-grid p {
    padding: 19px;
    box-shadow: 6px 6px 0 var(--yellow);
    font-size: 22px;
  }

  .faq-list article {
    padding: 20px;
  }

  .faq-list h3 {
    font-size: 24px;
  }

  .outcomes span {
    margin-bottom: 20px;
  }

  .steps li {
    grid-template-columns: 54px 1fr;
  }

  .steps li::before {
    font-size: 38px;
  }

  .steps strong {
    font-size: 24px;
  }

  .price {
    font-size: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
