:root {
  color-scheme: dark;
  --ink: #111514;
  --paper: #f4f1e9;
  --muted: #aeb7b3;
  --line: #303735;
  --accent: #d9ff64;
  --accent-ink: #17200a;
  --amber: #ffca70;
  --red: #ff7b74;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 56px 56px;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 10; background: var(--accent); color: var(--accent-ink); padding: .6rem .9rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.site-header, footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { min-height: 96px; border-bottom: 1px solid var(--line); }
.site-header.compact { min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; letter-spacing: .07em; font-size: .78rem; }
.brand strong { color: var(--accent); }
.brand-mark { width: 32px; height: 32px; border: 1px solid #55605c; display: grid; place-items: center; transform: rotate(45deg); }
.brand-mark span { width: 13px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-90deg); }
nav { display: flex; gap: 1.6rem; }
nav a, footer a { color: var(--muted); text-decoration: none; font-size: .84rem; }
nav a:hover, nav a:focus-visible, footer a:hover, footer a:focus-visible, .text-link:hover { color: var(--accent); }

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding: 90px 0 100px;
}
.eyebrow { color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; }
.eyebrow span { display: inline-block; width: 27px; height: 2px; margin: 0 .55rem .2rem 0; background: var(--accent); }
h1, h2 { margin: 0; letter-spacing: -.045em; line-height: .98; }
h1 { max-width: 760px; font-size: clamp(3.4rem, 8.2vw, 7.5rem); }
h1 em { color: var(--accent); font-style: normal; }
h2 { font-size: clamp(2.4rem, 5.6vw, 5rem); }
h3 { margin: .8rem 0 .45rem; font-size: 1.06rem; }
.lede { max-width: 680px; margin: 2rem 0 0; color: #c4ccc8; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.3rem; }
.button { display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: var(--accent-ink); padding: .85rem 1.15rem; text-decoration: none; font-weight: 850; font-size: .84rem; }
.button:hover, .button:focus-visible { background: #eeffa9; }
.text-link { color: var(--paper); text-underline-offset: .35rem; font-size: .88rem; }
.text-link span, .contact-band span { color: var(--accent); }

.verdict-card { border: 1px solid #3a423f; background: rgba(20,25,23,.82); box-shadow: 16px 16px 0 #202624; padding: clamp(1.4rem, 3vw, 2.2rem); }
.card-label { color: var(--muted); letter-spacing: .13em; font-size: .68rem; font-weight: 800; }
.verdict-row { display: grid; grid-template-columns: 78px 1fr; gap: 1rem; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); color: #ccd3d0; font-size: .83rem; }
.verdict { display: inline-flex; justify-content: center; padding: .28rem .35rem; color: #111; font-weight: 900; font-size: .7rem; letter-spacing: .08em; }
.buy { background: var(--accent); }.depends { background: var(--amber); }.skip { background: var(--red); }
.card-note { margin: .7rem 0 0; color: var(--muted); font-size: .78rem; }

.status-strip { border-block: 1px solid var(--line); padding: 1.15rem max(20px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: auto auto 1fr; gap: 1.3rem; align-items: center; background: #151a18; }
.status-strip span { color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: .65rem; }
.status-strip strong { color: var(--accent); font-size: .8rem; }.status-strip p { margin: 0; text-align: right; color: var(--muted); font-size: .78rem; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 125px 0; }
.section-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 2rem; align-items: start; margin-bottom: 4.5rem; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.method-grid article { padding: 2rem 1.5rem 2rem 0; border-right: 1px solid var(--line); }
.method-grid article:not(:first-child) { padding-left: 1.5rem; }.method-grid article:last-child { border-right: 0; }
.method-grid article > span { color: var(--accent); font: 800 .7rem ui-monospace, monospace; }
.method-grid p, .focus-list p, .about-copy p, .legal-page p { color: var(--muted); margin: 0; font-size: .91rem; }

.focus-section { border-top: 1px solid var(--line); }
.focus-list { border-top: 1px solid var(--line); }
.focus-list div { display: grid; grid-template-columns: .45fr 1.55fr; gap: 2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.focus-list span { color: var(--accent); font: 800 .74rem ui-monospace, monospace; letter-spacing: .1em; }
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.about-copy { display: grid; gap: 1.4rem; }.about-copy a, .legal-page a { color: var(--paper); text-underline-offset: .25rem; }

.contact-band { padding: 80px max(20px, calc((100vw - var(--max)) / 2)); background: var(--accent); color: var(--accent-ink); }
.contact-band p { margin: 0 0 .6rem; text-transform: uppercase; font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.contact-band a { font-size: clamp(1.5rem, 4.5vw, 4.2rem); font-weight: 850; letter-spacing: -.04em; text-decoration: none; overflow-wrap: anywhere; }
.contact-band span { color: var(--accent-ink); }
footer { min-height: 120px; color: var(--muted); font-size: .76rem; }
footer div { display: flex; gap: 1.3rem; }

.legal-page { width: min(calc(100% - 40px), 880px); margin: 0 auto; padding: 110px 0 130px; }
.legal-page h1 { max-width: 800px; font-size: clamp(3rem, 7vw, 6rem); }
.legal-intro { margin: 1.3rem 0 4rem !important; }
.legal-page section { padding: 2.3rem 0; border-top: 1px solid var(--line); }
.legal-page h2 { margin-bottom: 1rem; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-page section p + p { margin-top: 1rem; }
.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.boundary-grid > div { border: 1px solid var(--line); padding: 1.35rem; }
.boundary-grid strong { display: block; margin-bottom: .5rem; color: var(--accent); }
.boundary-grid .blocked strong { color: var(--red); }
.error-page { display: grid; min-height: 100vh; place-items: center; }.error-page main { width: min(calc(100% - 40px), 720px); }.error-page h1 { font-size: clamp(3rem, 9vw, 6rem); }.error-page p:not(.eyebrow) { color: var(--muted); margin: 1.4rem 0 2rem; }

@media (max-width: 820px) {
  .site-header { min-height: 80px; }.site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 70px 0 90px; }
  .verdict-card { max-width: 520px; }
  .status-strip { grid-template-columns: 1fr; gap: .25rem; }.status-strip p { text-align: left; }
  .section { padding: 90px 0; }.section-heading { grid-template-columns: 1fr; margin-bottom: 3rem; }
  .method-grid { grid-template-columns: 1fr 1fr; }.method-grid article:nth-child(2) { border-right: 0; }.method-grid article:nth-child(3), .method-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .about-section { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .method-grid { grid-template-columns: 1fr; }.method-grid article, .method-grid article:not(:first-child) { padding: 1.5rem 0; border-right: 0; border-top: 1px solid var(--line); }.method-grid article:first-child { border-top: 0; }
  .focus-list div { grid-template-columns: 1fr; gap: .25rem; }
  .boundary-grid { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
