:root {
    --paper:    #f4ebd9;
    --paper-2:  #ece1cb;
    --ink:      #0e0f0d;
    --red:      #ff3b1f;
    --blue:     #1f4dff;
    --yellow:   #ffd400;
    --green:    #2ec27e;
    --pink:     #ff8fb1;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
  body {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.45;
    overflow-x: hidden;
  }
  .display { font-family: "Archivo Black", "Helvetica Neue", sans-serif; line-height: 0.88; letter-spacing: -0.02em; text-transform: uppercase; }
  .mono { font-family: "Space Mono", ui-monospace, monospace; }

  /* Page noise/texture via subtle dots */
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    opacity: 0.45;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
  }
  .nav-inner {
    display: flex; align-items: center; gap: 32px;
    padding: 14px 0;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: "Archivo Black", sans-serif;
    font-size: 22px; letter-spacing: -0.02em;
    text-decoration: none; color: var(--ink);
  }
  .logo-mark {
    width: 36px; height: 36px;
    background: var(--red);
    border: 2.5px solid var(--ink);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--paper);
    font-size: 22px;
    transform: rotate(-6deg);
    box-shadow: 3px 3px 0 var(--ink);
  }
  .nav-links { display: flex; gap: 28px; margin-left: 24px; }
  .nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; }
  .nav-links a:hover { color: var(--red); }
  .nav-cta { margin-left: auto; display: flex; gap: 12px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2.5px solid var(--ink);
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 20px;
    font-family: "Archivo Black", sans-serif;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 999px;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.08s ease, box-shadow 0.08s ease;
  }
  .btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
  .btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
  .btn--red { background: var(--red); color: var(--paper); }
  .btn--blue { background: var(--blue); color: var(--paper); }
  .btn--paper { background: var(--paper); }
  .btn--xl { padding: 22px 36px; font-size: 22px; border-width: 3px; box-shadow: 6px 6px 0 var(--ink); }
  .btn--xl:hover { box-shadow: 9px 9px 0 var(--ink); }
  .btn--ghost { background: transparent; box-shadow: none; }
  .btn--ghost:hover { background: var(--ink); color: var(--paper); transform: none; box-shadow: none; }

  /* ---------- HERO ---------- */
  .hero { padding: 60px 0 40px; position: relative; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--paper);
    padding: 8px 14px; border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 13px; letter-spacing: 0.02em;
  }
  .hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 1.6s ease-in-out infinite; }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  .hero h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(64px, 11vw, 180px);
    line-height: 0.86;
    letter-spacing: -0.035em;
    margin: 22px 0 24px;
    text-transform: uppercase;
  }
  .hero h1 .ink-red { color: var(--red); }
  .hero h1 .ink-blue { color: var(--blue); }
  .hero h1 .stamped {
    display: inline-block;
    background: var(--yellow);
    padding: 0 14px 6px;
    transform: rotate(-2deg);
    border: 4px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
  }
  .hero p.lede {
    font-size: 22px; line-height: 1.35;
    max-width: 540px;
    margin: 0 0 28px;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
  .hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
  .stars { display: inline-flex; gap: 2px; }
  .stars svg { width: 22px; height: 22px; fill: var(--ink); }
  .hero-trust .mono { font-size: 14px; }

  /* Hero card */
  .paper-mock {
    background: #fffdf6;
    border: 3px solid var(--ink);
    border-radius: 10px;
    padding: 28px 30px 30px;
    box-shadow: 10px 10px 0 var(--ink);
    transform: rotate(2.5deg);
    position: relative;
  }
  .paper-mock::before {
    content: ""; position: absolute; top: 14px; right: 18px;
    width: 70px; height: 70px;
    border: 2.5px solid var(--red);
    border-radius: 50%;
    background: rgba(255,59,31,0.12);
    transform: rotate(-12deg);
  }
  .paper-mock::after {
    content: "A+";
    position: absolute; top: 28px; right: 32px;
    font-family: "Archivo Black", sans-serif;
    font-size: 32px; color: var(--red);
    transform: rotate(-12deg);
  }
  .paper-mock .doc-meta { font-family: "Space Mono", monospace; font-size: 12px; color: #6b6755; margin-bottom: 14px; letter-spacing: 0.02em; }
  .paper-mock .doc-title { font-family: "Archivo Black", sans-serif; font-size: 22px; line-height: 1.1; max-width: 80%; margin-bottom: 16px; }
  .doc-line { height: 9px; background: #e6dec8; border-radius: 6px; margin: 7px 0; }
  .doc-line.s { width: 70%; }
  .doc-line.m { width: 90%; }
  .doc-line.l { width: 96%; }
  .doc-line.xs { width: 45%; }
  .doc-highlight { background: rgba(255,212,0,0.55); }

  .floaty {
    position: absolute;
    background: var(--blue); color: var(--paper);
    border: 2.5px solid var(--ink);
    padding: 8px 12px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .floaty-1 { top: -18px; left: -22px; transform: rotate(-8deg); background: var(--red); color: var(--paper); }
  .floaty-2 { bottom: -22px; right: -10px; transform: rotate(6deg); background: var(--green); }

  .hero-card-wrap { position: relative; }

  /* ---------- MARQUEE ---------- */
  .marquee {
    background: var(--ink); color: var(--yellow);
    border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
    overflow: hidden;
    padding: 22px 0;
  }
  .marquee-track {
    display: flex; gap: 64px;
    white-space: nowrap;
    animation: scroll 28s linear infinite;
    font-family: "Archivo Black", sans-serif;
    font-size: 36px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
  .marquee-track .star { color: var(--red); }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ---------- SECTION TITLES ---------- */
  section { padding: 100px 0; position: relative; z-index: 2; }
  .kicker {
    display: inline-block;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-radius: 999px;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin: 0 0 18px;
  }
  .section-sub { font-size: 22px; max-width: 640px; margin: 0 0 56px; }

  /* ---------- STEPS ---------- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .step {
    background: #fffdf6;
    border: 3px solid var(--ink);
    border-radius: 14px;
    padding: 26px 24px 28px;
    box-shadow: 6px 6px 0 var(--ink);
    position: relative;
    transition: transform 0.15s;
  }
  .step:hover { transform: translateY(-4px) rotate(-1deg); }
  .step-num {
    width: 56px; height: 56px;
    background: var(--red); color: var(--paper);
    border: 2.5px solid var(--ink); border-radius: 50%;
    display: grid; place-items: center;
    font-family: "Archivo Black", sans-serif; font-size: 28px;
    margin-bottom: 16px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .step:nth-child(2) .step-num { background: var(--blue); }
  .step:nth-child(3) .step-num { background: var(--yellow); color: var(--ink); }
  .step:nth-child(4) .step-num { background: var(--green); }
  .step h3 { font-family: "Archivo Black", sans-serif; font-size: 22px; text-transform: uppercase; margin: 0 0 8px; letter-spacing: -0.01em; }
  .step p { margin: 0; font-size: 16px; color: #2a2a26; }

  /* ---------- CALCULATOR ---------- */
  .calc-wrap { background: var(--blue); color: var(--paper); border-radius: 24px; border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); overflow: hidden; }
  .calc-grid { display: grid; grid-template-columns: 1.4fr 1fr; }
  .calc-form { padding: 48px 48px 40px; }
  .calc-form .kicker { background: var(--paper); color: var(--ink); border-color: var(--ink); }
  .calc-form h2 { font-family: "Archivo Black", sans-serif; font-size: 56px; line-height: 0.92; margin: 16px 0 28px; text-transform: uppercase; }
  .calc-row { display: grid; gap: 14px; margin-bottom: 22px; }
  .calc-row label { font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
  .pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .pill {
    border: 2.5px solid var(--paper);
    background: transparent;
    color: var(--paper);
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.1s;
  }
  .pill:hover { background: rgba(255,255,255,0.12); }
  .pill.active { background: var(--yellow); color: var(--ink); border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
  .stepper { display: inline-flex; align-items: stretch; border: 2.5px solid var(--paper); border-radius: 999px; overflow: hidden; }
  .stepper button {
    width: 48px; height: 48px;
    background: transparent; color: var(--paper);
    border: none; cursor: pointer;
    font-family: "Archivo Black", sans-serif;
    font-size: 22px;
  }
  .stepper button:hover { background: rgba(255,255,255,0.12); }
  .stepper .val { display: grid; place-items: center; min-width: 80px; padding: 0 16px; font-family: "Archivo Black", sans-serif; font-size: 22px; }
  .calc-pricetag {
    background: var(--yellow); color: var(--ink);
    padding: 48px 40px;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    border-left: 3px solid var(--ink);
  }
  .price-label { font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
  .price-num { font-family: "Archivo Black", sans-serif; font-size: 110px; line-height: 1; margin: 6px 0 2px; letter-spacing: -0.04em; }
  .price-sub { font-size: 16px; margin-bottom: 30px; }
  .price-breakdown { font-family: "Space Mono", monospace; font-size: 13px; margin-bottom: 28px; }
  .price-breakdown div { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(0,0,0,0.25); }
  .price-breakdown div:last-child { border: none; font-weight: 700; }

  /* ---------- SUBJECTS ---------- */
  .subjects { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1080px; }
  .subj {
    background: #fffdf6; color: var(--ink);
    border: 2.5px solid var(--ink); border-radius: 999px;
    padding: 10px 18px;
    font-family: "Space Grotesk", sans-serif; font-weight: 500;
    font-size: 16px;
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.1s;
    cursor: default;
  }
  .subj:hover { transform: translateY(-3px) rotate(-2deg); }
  .subj.red { background: var(--red); color: var(--paper); }
  .subj.blue { background: var(--blue); color: var(--paper); }
  .subj.yellow { background: var(--yellow); }
  .subj.green { background: var(--green); color: var(--paper); }
  .subj.pink { background: var(--pink); }

  /* ---------- WRITERS ---------- */
  .writers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .writer {
    background: #fffdf6;
    border: 3px solid var(--ink); border-radius: 14px;
    padding: 18px;
    box-shadow: 6px 6px 0 var(--ink);
    transition: transform 0.15s;
  }
  .writer:nth-child(odd) { transform: rotate(-1.5deg); }
  .writer:nth-child(even) { transform: rotate(1.5deg); }
  .writer:hover { transform: rotate(0) translateY(-4px); }
  .writer-photo {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 2.5px solid var(--ink);
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
  }
  .writer-photo svg { width: 100%; height: 100%; display: block; }
  .writer h4 { font-family: "Archivo Black", sans-serif; font-size: 20px; margin: 4px 0; text-transform: uppercase; }
  .writer .subj-tag { font-family: "Space Mono", monospace; font-size: 12px; color: #5b5644; letter-spacing: 0.05em; text-transform: uppercase; }
  .writer .stats { display: flex; gap: 10px; margin-top: 12px; font-family: "Space Mono", monospace; font-size: 12px; }
  .writer .stats span { background: var(--paper); padding: 4px 8px; border-radius: 6px; border: 1.5px solid var(--ink); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
  .note {
    padding: 28px 26px 22px;
    border-radius: 4px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.18);
    position: relative;
    color: var(--ink);
  }
  .note.yellow { background: var(--yellow); transform: rotate(-2deg); }
  .note.pink { background: var(--pink); transform: rotate(1.5deg); margin-top: 28px; }
  .note.blue { background: #b5cdff; transform: rotate(-0.5deg); }
  .note p { font-size: 19px; line-height: 1.4; margin: 0 0 18px; }
  .note .by { font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.04em; }
  .note::before {
    content: "★";
    position: absolute; top: -14px; left: 24px;
    color: var(--red);
    font-size: 32px;
    text-shadow: 2px 2px 0 var(--ink);
  }

  /* ---------- GUARANTEES ---------- */
  .guarantees { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .grnt {
    text-align: center;
    padding: 28px 18px;
    border: 3px solid var(--ink); border-radius: 14px;
    background: var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
  }
  .grnt-icon { width: 64px; height: 64px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; border: 2.5px solid var(--ink); }
  .grnt h4 { font-family: "Archivo Black", sans-serif; font-size: 18px; text-transform: uppercase; margin: 0 0 6px; }
  .grnt p { margin: 0; font-size: 14px; color: #2a2a26; }

  /* ---------- FAQ ---------- */
  .faq { max-width: 880px; margin: 0 auto; }
  .faq-item {
    border-top: 2.5px solid var(--ink);
    padding: 22px 0;
  }
  .faq-item:last-child { border-bottom: 2.5px solid var(--ink); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    font-family: "Archivo Black", sans-serif; font-size: 22px;
    text-transform: uppercase; cursor: pointer;
    letter-spacing: -0.01em;
  }
  .faq-q .plus {
    width: 32px; height: 32px;
    background: var(--red); color: var(--paper);
    border: 2px solid var(--ink); border-radius: 50%;
    display: grid; place-items: center;
    transition: transform 0.2s;
  }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-item.open .faq-a { max-height: 320px; }
  .faq-a p { margin: 14px 0 0; font-size: 17px; }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    background: var(--red);
    color: var(--paper);
    padding: 120px 0 140px;
    text-align: center;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    position: relative;
    overflow: hidden;
  }
  .final-cta h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(70px, 14vw, 220px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
    text-transform: uppercase;
  }
  .final-cta .underline { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 12px; text-underline-offset: 14px; }
  .final-cta p { font-size: 24px; max-width: 620px; margin: 0 auto 40px; }
  .final-cta .btn--xl { background: var(--paper); color: var(--ink); }

  .scatter-stars { position: absolute; inset: 0; pointer-events: none; }
  .scatter-stars span { position: absolute; font-family: "Archivo Black", sans-serif; color: var(--yellow); }

  /* ---------- FOOTER ---------- */
  footer { background: var(--ink); color: var(--paper); padding: 60px 0 32px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .foot-grid h5 { font-family: "Archivo Black", sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; color: var(--yellow); }
  .foot-grid a { color: var(--paper); text-decoration: none; display: block; font-size: 15px; opacity: 0.85; padding: 4px 0; }
  .foot-grid a:hover { opacity: 1; color: var(--yellow); }
  .foot-grid p { font-size: 15px; opacity: 0.7; margin: 0 0 16px; max-width: 320px; }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: "Space Mono", monospace; font-size: 12px;
    opacity: 0.6;
  }
  .foot-logo { display: flex; align-items: center; gap: 10px; font-family: "Archivo Black", sans-serif; font-size: 28px; margin-bottom: 16px; color: var(--paper); }

  @media (max-width: 900px) {
    .hero-grid, .calc-grid, .foot-grid { grid-template-columns: 1fr; }
    .steps, .writers, .guarantees, .testimonials { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }

/* ============ SUBPAGE EXTRAS ============ */
.page-hero {
  padding: 80px 0 60px;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.page-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.page-hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 18px 0 22px;
}
.page-hero h1 .stamped {
  background: var(--yellow);
  padding: 0 12px 4px;
  display: inline-block;
  transform: rotate(-2deg);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.page-hero h1 .ink-red { color: var(--red); }
.page-hero h1 .ink-blue { color: var(--blue); }
.page-hero .lede { font-size: 22px; max-width: 560px; line-height: 1.4; margin: 0; }
.page-hero-art {
  background: #fffdf6;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
}

.breadcrumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: var(--ink); color: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
}
.breadcrumbs a { color: var(--yellow); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { opacity: 0.5; }

.prose { font-size: 18px; line-height: 1.65; max-width: 720px; }
.prose h2 { font-family: "Archivo Black", sans-serif; font-size: 36px; text-transform: uppercase; line-height: 1; margin: 56px 0 18px; letter-spacing: -0.02em; }
.prose h3 { font-family: "Archivo Black", sans-serif; font-size: 22px; text-transform: uppercase; margin: 36px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { background: var(--yellow); padding: 0 4px; }
.prose a { color: var(--red); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 6px solid var(--red);
  background: #fffdf6;
  margin: 28px 0;
  padding: 18px 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
}

.tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 40px;
  padding-bottom: 0;
}
.tab {
  border: 3px solid var(--ink); border-bottom: none;
  background: #fffdf6;
  padding: 12px 20px;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: -3px;
  border-radius: 12px 12px 0 0;
  color: var(--ink);
  text-decoration: none;
}
.tab:hover { background: var(--yellow); }
.tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0; }
.stat {
  border: 3px solid var(--ink); border-radius: 14px;
  padding: 28px 24px; background: #fffdf6;
  box-shadow: 5px 5px 0 var(--ink);
}
.stat:nth-child(1) { background: var(--yellow); }
.stat:nth-child(2) { background: var(--red); color: var(--paper); }
.stat:nth-child(3) { background: var(--blue); color: var(--paper); }
.stat:nth-child(4) { background: var(--green); color: var(--paper); }
.stat .n { font-family: "Archivo Black", sans-serif; font-size: 56px; line-height: 1; letter-spacing: -0.03em; }
.stat .l { font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

.form-grid { display: grid; gap: 18px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  border: 3px solid var(--ink);
  background: #fffdf6;
  padding: 14px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--yellow);
}
.field textarea { resize: vertical; min-height: 140px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter {
  border: 2.5px solid var(--ink);
  background: #fffdf6; color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}
.filter:hover { background: var(--yellow); }
.filter.active { background: var(--ink); color: var(--paper); }

.sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sample {
  background: #fffdf6;
  border: 3px solid var(--ink); border-radius: 14px;
  padding: 24px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  transition: transform 0.15s;
}
.sample:nth-child(odd) { transform: rotate(-1deg); }
.sample:nth-child(even) { transform: rotate(1deg); }
.sample:hover { transform: rotate(0) translateY(-4px); }
.sample .tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.sample .stag { font-family: "Space Mono", monospace; font-size: 11px; background: var(--yellow); padding: 3px 8px; border-radius: 4px; border: 1.5px solid var(--ink); }
.sample h3 { font-family: "Archivo Black", sans-serif; font-size: 22px; margin: 0 0 10px; text-transform: uppercase; line-height: 1.05; }
.sample p { font-size: 14px; color: #2a2a26; margin: 0 0 16px; }
.sample .meta { display: flex; justify-content: space-between; font-family: "Space Mono", monospace; font-size: 12px; padding-top: 12px; border-top: 1.5px solid var(--ink); }

.policy-page { background: var(--paper); padding: 80px 0 100px; }
.policy-grid { display: grid; grid-template-columns: 240px 1fr; gap: 60px; }
.policy-nav { position: sticky; top: 110px; align-self: start; display: grid; gap: 8px; }
.policy-nav a { display: block; padding: 10px 14px; background: #fffdf6; border: 2.5px solid var(--ink); border-radius: 10px; text-decoration: none; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 14px; box-shadow: 3px 3px 0 var(--ink); }
.policy-nav a:hover { background: var(--yellow); }
.policy-nav a.active { background: var(--ink); color: var(--paper); }

@media (max-width: 900px) {
  .page-hero-grid, .policy-grid { grid-template-columns: 1fr; }
  .stat-grid, .sample-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
}
