:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: #090909;
  --panel-2: #111;
  --text: #f8f8f2;
  --muted: #a8a8a8;
  --faint: #727272;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.3);
  --red: #ff3131;
  --max: 1180px;
  --font-display: Bahnschrift, "Aptos Display", "Segoe UI", Arial, sans-serif;
  --font-body: "Aptos", "Segoe UI", Arial, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

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

h1 {
  max-width: 8ch;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 116px;
  line-height: 0.86;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
}

.brand-mark,
.nav-actions,
.nav-links,
.button-row,
.join-actions {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-actions {
  gap: 8px;
}

.nav-links a,
.nav-cta {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-cta {
  border-color: var(--line);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero,
.signal-strip,
.split-section,
.ritual-section,
.shame-section,
.scam-section,
.meme-kit,
.roadmap-section,
.faq-section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  padding: 54px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.92fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 204px);
}

.hero-art {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  overflow: hidden;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.55);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: brightness(1.18) contrast(1.08);
}

.hero-copy {
  min-width: 0;
  padding: 10px 0;
}

.eyebrow,
.receipt-label,
.signal-strip span,
.autopsy-grid span,
.ritual-grid span,
.roadmap-grid span,
.micro-disclaimer {
  font-family: var(--font-mono);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ticker {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

.hero-line {
  width: min(690px, 100%);
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

.hero-line::before {
  content: "";
  display: block;
  width: 170px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--red);
}

.hero-desc,
.section-lede,
.section-heading > p,
.section-copy > p,
.ritual-grid p,
.verdict-grid p,
.roadmap-grid p,
.faq-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-desc {
  width: min(540px, 100%);
  margin-bottom: 16px;
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: center;
  width: min(500px, 100%);
  margin: 0 0 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-note span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

.button-row {
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.quote-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.primary {
  border-color: #fff;
  background: #fff;
  color: #050505;
}

.button.ghost {
  color: var(--muted);
}

.receipt-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span,
.ritual-grid span,
.roadmap-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
  min-height: 0;
  padding: 64px 0;
}

.list-section,
.crumbs-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.section-copy,
.section-heading {
  min-width: 0;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.media-frame {
  margin: 0;
  height: 100%;
  min-height: 328px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  overflow: hidden;
}

.media-frame {
  aspect-ratio: auto;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.12) contrast(1.04);
}

.autopsy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.autopsy-grid article,
.ritual-grid article,
.verdict-grid article,
.roadmap-grid article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.autopsy-grid article {
  min-height: 104px;
  padding: 16px;
}

.autopsy-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

.autopsy-grid strong {
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.ritual-section,
.shame-section,
.scam-section,
.meme-kit,
.roadmap-section,
.faq-section {
  padding: 72px 0;
}

.ritual-grid,
.verdict-grid,
.roadmap-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}

.ritual-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ritual-grid article {
  min-height: 205px;
  padding: 18px;
}

.ritual-grid h3,
.ritual-grid p {
  margin-top: 16px;
}

.ritual-grid small {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.micro-disclaimer {
  width: min(760px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-transform: uppercase;
}

.beg-table {
  display: grid;
  gap: 8px;
  margin: 26px 0 18px;
}

.beg-table div {
  display: grid;
  grid-template-columns: 54px minmax(130px, 1fr) minmax(110px, auto);
  gap: 8px 14px;
  align-items: center;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.beg-table span {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.beg-table b {
  grid-column: 2;
  grid-row: 1;
}

.beg-table b,
.beg-table strong {
  min-width: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.beg-table strong {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  text-align: right;
}

.beg-table em {
  grid-column: 2 / -1;
  grid-row: 2;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.shame-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quote-card {
  min-height: 145px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.crumb-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 14px;
}

.crumb-flow span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.crumb-flow span::after {
  content: "->";
  margin-left: 12px;
  color: var(--red);
}

.crumb-flow span:last-child::after {
  content: "";
  margin: 0;
}

.verdict-grid {
  grid-template-columns: repeat(3, 1fr);
}

.verdict-grid article {
  min-height: 210px;
  padding: 18px;
}

.verdict-grid span {
  display: block;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 12px;
}

.verdict-grid strong {
  display: block;
  margin: 22px 0 14px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.scam-punchline {
  width: min(780px, 100%);
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.kit-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 236px);
  gap: 12px;
  min-width: 0;
}

.kit-card {
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  overflow: hidden;
}

.kit-card.tall {
  grid-row: auto;
}

.kit-card.wide {
  grid-column: auto;
}

.kit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) contrast(1.05);
  transition: transform 160ms ease;
}

.kit-card.tall img {
  object-fit: cover;
  padding: 0;
  transform: scale(1.12);
}

.kit-card.fit img {
  object-fit: contain;
  padding: 10px;
}

.kit-card:hover img {
  transform: scale(1.025);
}

.kit-card.tall:hover img {
  transform: scale(1.15);
}

.kit-card.fit:hover img {
  transform: scale(1.025);
}

.kit-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.74);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.factory-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.generated-beg {
  min-height: 128px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  font-stretch: condensed;
}

.download-list {
  display: grid;
  gap: 8px;
}

.download-list a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.download-list a::after {
  content: "DL";
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.download-list a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.roadmap-grid {
  grid-template-columns: repeat(4, 1fr);
}

.roadmap-grid article {
  min-height: 220px;
  padding: 18px;
}

.roadmap-grid h3 {
  margin-top: 16px;
}

.faq-section {
  padding-bottom: 70px;
}

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

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer strong {
  color: var(--text);
}

.site-footer span:last-child {
  text-align: right;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 50;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .topbar {
    align-items: stretch;
  }

  .nav-links {
    display: none;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-art {
    aspect-ratio: 4 / 5;
  }

  .hero-art img {
    content: url("./assets/site-mobile-cover.webp");
    object-fit: cover;
    object-position: center;
  }

  h1 {
    font-size: 86px;
  }

  h2 {
    font-size: 48px;
  }

  .ticker {
    font-size: 42px;
  }

  .hero-line {
    width: min(430px, 100%);
    font-size: 34px;
  }

  .hero-desc {
    width: min(420px, 100%);
    color: #d0d0d0;
  }

  .signal-strip,
  .split-section,
  .ritual-grid,
  .shame-wall,
  .verdict-grid,
  .factory-layout,
  .roadmap-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    min-height: auto;
    gap: 26px;
  }

  .kit-board {
    grid-template-rows: 220px 220px;
  }

  .kit-card.wide {
    grid-column: auto;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .split-section,
  .ritual-section,
  .shame-section,
  .scam-section,
  .meme-kit,
  .roadmap-section,
  .faq-section {
    padding: 58px 0;
  }

  .list-section .media-frame {
    order: 2;
  }

  .beg-table div {
    grid-template-columns: 56px 1fr;
  }

  .beg-table span {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .beg-table b {
    grid-column: 2;
    grid-row: 1;
  }

  .beg-table em,
  .beg-table strong {
    grid-column: 2;
  }

  .beg-table em {
    grid-row: 2;
  }

  .beg-table strong {
    grid-row: 3;
    justify-self: start;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer span:last-child {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .signal-strip,
  .split-section,
  .ritual-section,
  .shame-section,
  .scam-section,
  .meme-kit,
  .roadmap-section,
  .faq-section,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .topbar {
    flex-wrap: wrap;
  }

  .brand-mark {
    flex: 1 1 auto;
  }

  .brand-mark span {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .ticker {
    font-size: 32px;
  }

  .hero-line {
    font-size: 28px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-line::before {
    width: 128px;
  }

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

  .kit-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .kit-card,
  .kit-card.tall,
  .kit-card.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .kit-card.tall img {
    padding: 0;
  }

  .quote-card,
  .generated-beg {
    min-height: 118px;
  }
}
