:root {
  --ink: #111111;
  --paper: #f3efe5;
  --paper-2: #e8e0d0;
  --muted: #6f685c;
  --line: rgba(17, 17, 17, .14);
  --red: #e63b2e;
  --red-dark: #b92e25;
  --gold: #d9b75f;
  --blue-black: #151b25;
  --white: #fffaf0;
  --radius: 2rem;
  --shadow: 0 24px 80px rgba(17,17,17,.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Archivo, ui-sans-serif, system-ui, sans-serif;
  background: radial-gradient(circle at 16% 0%, rgba(230,59,46,.16), transparent 32%), linear-gradient(180deg, var(--paper), #fbf7ee 44%, var(--paper-2));
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 49;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 9px, rgba(17,17,17,.025) 10px);
  mix-blend-mode: multiply;
}
.site-header,
main,
footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: -.04em; }
.mark-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: -.08em;
  box-shadow: 5px 5px 0 var(--red);
}
nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 800; }
nav a, footer a { text-decoration: none; transition: transform .22s ease, color .22s ease; }
nav a:hover, footer a:hover { color: var(--red); transform: translateY(-1px); }
.header-cta { text-decoration: none; background: var(--ink); color: var(--paper); padding: 12px 17px; border-radius: 999px; font-weight: 900; box-shadow: 0 12px 28px rgba(17,17,17,.18); transition: transform .28s cubic-bezier(.25,.46,.45,.94); }
.header-cta:hover { transform: translateY(-1px) scale(1.03); }
.section-pad { padding: 78px 0; }
.hero { display: grid; grid-template-columns: 1.08fr .82fr; align-items: center; gap: 44px; min-height: calc(100vh - 90px); padding-top: 44px; }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--red-dark); font-family: "IBM Plex Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; }
.kicker span { width: 36px; height: 2px; background: var(--red); display: inline-block; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0; max-width: 820px; font-size: clamp(54px, 8.8vw, 118px); line-height: .82; letter-spacing: -.085em; font-weight: 900; }
h1::after { content: "."; color: var(--red); }
h2 { margin: 0; font-size: clamp(36px, 5.3vw, 72px); line-height: .88; letter-spacing: -.065em; font-weight: 900; }
h2 em, h1 em { font-family: Fraunces, serif; font-style: italic; font-weight: 800; letter-spacing: -.05em; }
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.05; letter-spacing: -.035em; }
.lede { max-width: 650px; margin: 28px 0 0; color: #39342c; font-size: clamp(19px, 2vw, 24px); line-height: 1.35; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-weight: 900; transition: transform .32s cubic-bezier(.25,.46,.45,.94), border-color .25s ease; }
.button > span { position: absolute; inset: 0; z-index: -1; transform: translateX(-102%); transition: transform .35s cubic-bezier(.25,.46,.45,.94); }
.button:hover { transform: translateY(-1px) scale(1.03); }
.button:hover > span { transform: translateX(0); }
.primary { background: var(--red); color: white; box-shadow: 0 18px 44px rgba(230,59,46,.26); }
.primary span { background: var(--ink); }
.ghost { border: 1px solid var(--line); background: rgba(255,250,240,.5); }
.ghost span { background: var(--gold); }
.dark { background: var(--ink); color: var(--paper); }
.dark span { background: var(--red); }
.light { background: var(--paper); color: var(--ink); }
.light span { background: white; }
.micro-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 34px; max-width: 640px; }
.micro-proof p { margin: 0; border-top: 1px solid var(--line); padding-top: 12px; color: var(--muted); font-size: 14px; }
.micro-proof strong { color: var(--ink); font-size: 17px; }
.diagnostic-card { position: relative; background: rgba(17,17,17,.94); color: var(--paper); border-radius: 3rem; padding: 30px; box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.2deg); }
.diagnostic-card::before { content: ""; position: absolute; inset: -30% -20% auto auto; width: 240px; height: 240px; background: radial-gradient(circle, rgba(230,59,46,.55), transparent 65%); filter: blur(10px); }
.card-top, .card-bottom { position: relative; display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.card-top p { margin: 0; font-size: 32px; font-weight: 900; letter-spacing: -.06em; }
.card-top span, .card-bottom small { color: rgba(243,239,229,.62); font-family: "IBM Plex Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.meter { height: 16px; border: 1px solid rgba(243,239,229,.24); border-radius: 999px; padding: 3px; margin: 34px 0; }
.meter div { width: 78%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.checklist { position: relative; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 10px; align-items: center; color: rgba(243,239,229,.86); }
.checklist li span { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(230,59,46,.12); flex: 0 0 auto; }
.card-bottom { margin-top: 34px; border-top: 1px solid rgba(243,239,229,.18); padding-top: 18px; }
.card-bottom strong { font-size: 26px; letter-spacing: -.06em; }
.marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; background: var(--ink); color: var(--paper); border-block: 1px solid rgba(255,255,255,.12); }
.marquee div { display: flex; width: max-content; gap: 42px; padding: 16px 0; animation: drift 26s linear infinite; }
.marquee span { font-family: "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
@keyframes drift { from { transform: translateX(8vw); } to { transform: translateX(-50%); } }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: end; }
.split > p { margin: 0; color: #3d372f; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.26; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article, .report-grid article, .faq-list details { background: rgba(255,250,240,.62); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 18px 54px rgba(17,17,17,.06); }
.number { display: inline-block; font-family: "IBM Plex Mono", monospace; color: var(--red); font-weight: 700; margin-bottom: 42px; }
.process-grid p, .report-grid p, .section-head p, .sample-panel p, .guarantee p, .final-cta p, .faq p { color: var(--muted); margin: 0; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head p { font-size: 19px; margin-top: 14px; }
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.report-grid article { min-height: 170px; }
.sample-panel { margin: 24px 0 0; padding: 34px; display: flex; justify-content: space-between; align-items: center; gap: 28px; background: var(--blue-black); color: var(--paper); border-radius: 3rem; box-shadow: var(--shadow); }
.sample-panel p { max-width: 650px; color: rgba(243,239,229,.68); font-size: 18px; }
.sample-panel .kicker { color: var(--gold); }
.sample-panel .kicker span { background: var(--gold); }
.guarantee { margin: 22px 0; padding: 34px; display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center; border: 2px dashed rgba(185,46,37,.38); border-radius: 3rem; background: rgba(255,250,240,.5); }
.stamp { width: 112px; height: 112px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: white; font-family: Fraunces, serif; font-size: 42px; font-weight: 900; transform: rotate(-8deg); }
.final-cta { margin: 70px 0 10px; padding: clamp(34px, 6vw, 72px); background: radial-gradient(circle at 85% 12%, rgba(217,183,95,.5), transparent 28%), linear-gradient(135deg, var(--red), #151515 70%); color: var(--paper); border-radius: 3rem; text-align: center; box-shadow: var(--shadow); }
.final-cta .kicker { justify-content: center; color: var(--gold); }
.final-cta .kicker span { background: var(--gold); }
.final-cta p { margin: 18px auto 26px; color: rgba(243,239,229,.75); font-size: 19px; }
.compact { margin-bottom: 18px; }
.faq-list { display: grid; gap: 12px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; letter-spacing: -.03em; }
details p { margin-top: 12px; }
footer { padding: 34px 0 46px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); }
footer p { margin: 0; }
.reveal { animation: rise .75s cubic-bezier(.25,.46,.45,.94) both; }
.diagnostic-card.reveal { animation-delay: .12s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0) rotate(1.2deg); } }
@media (max-width: 900px) {
  .site-header, main, footer { width: min(100% - 28px, 1160px); }
  nav { display: none; }
  .header-cta { display: none; }
  .hero, .split, .process-grid, .report-grid, .guarantee { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 30px; }
  h1 { font-size: clamp(56px, 17vw, 86px); }
  .micro-proof { grid-template-columns: 1fr; }
  .diagnostic-card { transform: none; border-radius: 2rem; }
  .sample-panel { align-items: flex-start; flex-direction: column; border-radius: 2rem; }
  .guarantee { border-radius: 2rem; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
