:root {
  color-scheme: light;
  --ink: #11100e;
  --paper: #f5f0e7;
  --signal: #d81918;
  --paper-muted: #e7dfd2;
  --ink-muted: #5d5952;
  --white: #ffffff;
  --measure: 74rem;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(100%, calc(var(--measure) + 2 * var(--gutter)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  border-bottom: 1px solid rgba(17, 16, 14, .3);
}

.site-nav {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
}

.brand img { width: 2.75rem; height: 2.75rem; }

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(.9rem, 2vw, 1.75rem);
  font-size: .9rem;
  font-weight: 650;
}

.nav-links a,
.footer-links a { text-decoration: none; }
.nav-links a:hover,
.footer-links a:hover { color: var(--signal); }

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .72rem 1.15rem;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}

.button:hover { color: var(--paper); background: var(--ink); }
.button-primary { color: var(--white); background: var(--signal); border-color: var(--signal); }
.button-primary:hover { color: var(--white); background: #b71312; border-color: #b71312; }
.button-on-dark { color: var(--paper); border-color: var(--paper); }
.button-on-dark:hover { color: var(--ink); background: var(--paper); }

.hero {
  min-height: calc(100svh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, .82fr);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter);
}

.hero-copy::after,
.editorial-slash::after {
  content: "";
  position: absolute;
  width: clamp(4.5rem, 8vw, 7.5rem);
  height: 115%;
  right: 9%;
  top: -8%;
  z-index: 0;
  background: var(--signal);
  clip-path: polygon(20% 0, 92% 0, 70% 100%, 0 100%);
  transform: rotate(16deg);
}

.hero-copy > * { position: relative; z-index: 1; }

.hero h1 {
  max-width: 6ch;
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 10.75rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .76;
}

.hero-lead {
  max-width: 29rem;
  margin: 0;
  padding-top: 1.4rem;
  border-top: 2px solid var(--signal);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.34;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hero-stage {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 36rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--paper);
  background: var(--ink);
}

.hero-stage::after {
  content: "";
  position: absolute;
  width: 6rem;
  height: 80%;
  top: 10%;
  right: 15%;
  background: var(--signal);
  clip-path: polygon(18% 0, 100% 0, 73% 100%, 0 100%);
  transform: rotate(17deg);
}

.folio {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--signal);
  font-family: var(--display);
  font-size: 1.3rem;
}

.folio strong { color: var(--signal); font-size: 2.25rem; font-weight: 400; }

.stage-copy { position: relative; z-index: 1; }
.stage-copy p { margin: 0 0 .65rem; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.stage-copy strong { display: block; max-width: 7ch; font-family: var(--display); font-size: clamp(3.8rem, 7vw, 7.2rem); font-weight: 400; line-height: .83; }

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-rule { border-bottom: 1px solid rgba(17, 16, 14, .35); }

.section-head {
  display: grid;
  grid-template-columns: minmax(8rem, .35fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-index {
  color: var(--signal);
  font-family: var(--display);
  font-size: 1.4rem;
}

.section h2,
.legal-hero h1,
.join-card h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.section h2 { max-width: 13ch; font-size: clamp(3rem, 7vw, 6.5rem); }
.section-intro { max-width: 42rem; margin: 1.5rem 0 0; color: var(--ink-muted); font-size: 1.2rem; }

.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.process-list li {
  display: grid;
  grid-template-columns: 6rem minmax(12rem, .62fr) minmax(16rem, 1fr);
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 1.8rem;
  border-bottom: 1px solid rgba(17, 16, 14, .4);
}
.process-list .num { color: var(--signal); font-family: var(--display); font-size: 2rem; }
.process-list strong { font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.35rem); font-weight: 400; line-height: 1.05; }
.process-list p { margin: 0; color: var(--ink-muted); }

.verdict-band { position: relative; overflow: hidden; color: var(--paper); background: var(--ink); }
.verdict-band .shell { position: relative; z-index: 1; }
.verdict-band .section-index { color: var(--signal); }
.verdict-band h2 { color: var(--paper); max-width: 11ch; }
.verdict-band .section-intro { color: var(--paper-muted); }
.editorial-slash::after { right: 23%; top: -15%; height: 140%; }

.tally {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 48rem;
  margin-left: auto;
  border-top: 1px solid var(--signal);
  border-bottom: 1px solid var(--signal);
}
.tally div { padding: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.tally div + div { border-left: 1px solid var(--signal); }
.tally strong { display: block; font-family: var(--display); font-size: clamp(4rem, 9vw, 8rem); font-weight: 400; line-height: .9; }
.tally span { display: block; margin-top: 1rem; font-size: .88rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.principles { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.principles li { padding: 1.2rem 0; border-bottom: 1px solid rgba(17, 16, 14, .4); font-size: 1.1rem; }
.principles strong { display: block; margin-bottom: .25rem; font-family: var(--display); font-size: 1.75rem; font-weight: 400; }

.pullquote { margin: 0; padding-left: 1.5rem; border-left: .45rem solid var(--signal); }
.pullquote p { margin: 0; font-family: var(--display); font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: 1.02; }

.mode-rail { display: grid; grid-template-columns: repeat(5, minmax(10rem, 1fr)); overflow-x: auto; border: 1px solid var(--ink); }
.mode-rail article { min-height: 18rem; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.mode-rail article + article { border-left: 1px solid var(--ink); }
.mode-rail h3 { margin: 0; font-family: var(--display); font-size: 1.85rem; font-weight: 400; line-height: 1.04; }
.mode-rail p { margin: 1rem 0 0; color: var(--ink-muted); font-size: .95rem; }
.mode-rail span { color: var(--signal); font-family: var(--display); }

.data-ledger { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.data-ledger th,
.data-ledger td { padding: 1.25rem 1rem 1.25rem 0; border-bottom: 1px solid rgba(17, 16, 14, .38); vertical-align: top; text-align: left; }
.data-ledger th { width: 28%; font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.data-ledger td { color: var(--ink-muted); }

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.final-cta h2 { max-width: 12ch; margin: 0; font-family: var(--display); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400; line-height: .93; }
.final-cta p { max-width: 31rem; margin: 1.5rem 0 0; color: var(--ink-muted); }

.site-footer { color: var(--paper); background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding-block: 3rem; }
.site-footer .brand { color: var(--paper); }
.site-footer .brand img { filter: invert(1); }
.site-footer small { display: block; margin-top: 1rem; color: var(--paper-muted); }
.site-footer .footer-links { justify-content: flex-end; }

.legal-main { padding-block: clamp(3.5rem, 8vw, 7rem); }
.legal-hero { max-width: 56rem; padding-bottom: clamp(3rem, 7vw, 6rem); }
.legal-hero h1 { font-size: clamp(3.5rem, 9vw, 8rem); overflow-wrap: anywhere; }
.legal-hero .lede { max-width: 44rem; margin: 1.5rem 0 0; font-size: 1.25rem; color: var(--ink-muted); }
.updated { margin-top: 1.5rem; color: var(--signal); font-size: .82rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.legal-grid { display: grid; grid-template-columns: minmax(11rem, .35fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.legal-toc { position: sticky; top: 2rem; border-top: 1px solid var(--ink); }
.legal-toc a { display: block; padding: .72rem 0; border-bottom: 1px solid rgba(17, 16, 14, .3); font-size: .88rem; text-decoration: none; }
.legal-toc a:hover { color: var(--signal); }
.legal-copy { max-width: 50rem; }
.legal-copy section { padding: 2.2rem 0 2.8rem; border-top: 1px solid var(--ink); scroll-margin-top: 2rem; }
.legal-copy section:first-child { padding-top: 0; border-top: 0; }
.legal-copy h2 { max-width: 22ch; margin: 0 0 1rem; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; line-height: 1.04; }
.legal-copy h3 { margin: 1.6rem 0 .5rem; font-size: 1.1rem; }
.legal-copy p { margin: .7rem 0; }
.legal-copy ul,
.legal-copy ol { padding-left: 1.25rem; }
.legal-copy li + li { margin-top: .5rem; }
.legal-copy table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.legal-copy th,
.legal-copy td { padding: .9rem .75rem .9rem 0; border-bottom: 1px solid rgba(17, 16, 14, .35); vertical-align: top; text-align: left; }
.legal-copy th { font-weight: 750; }
.notice { margin: 1.5rem 0; padding: 1.25rem 1.4rem; border-left: .4rem solid var(--signal); background: var(--paper-muted); }
.notice strong { font-family: var(--display); font-size: 1.25rem; font-weight: 400; }

.join-main { min-height: calc(100svh - 5.5rem); display: grid; place-items: center; padding-block: 4rem; }
.join-card { width: min(100%, 44rem); text-align: center; }
.join-mark { width: 5.25rem; margin: 0 auto 2rem; }
.join-card h1 { font-size: clamp(3.4rem, 8vw, 6.5rem); }
.join-card > p { max-width: 37rem; margin: 1.25rem auto; color: var(--ink-muted); }
.room-code {
  margin: 2.25rem 0;
  padding-block: 1rem;
  border-block: 1px solid var(--signal);
  font-family: var(--display);
  font-size: clamp(4.4rem, 13vw, 8.5rem);
  letter-spacing: .1em;
  line-height: 1;
}
.join-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.join-note { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(17, 16, 14, .35); font-size: .93rem; }
[hidden] { display: none !important; }

@media (max-width: 820px) {
  .site-nav { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
  .nav-links { width: 100%; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 39rem; }
  .hero-stage { min-height: 33rem; }
  .section-head,
  .legal-grid,
  .split { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 3.5rem 1fr; }
  .process-list p { grid-column: 2; }
  .legal-toc { position: static; display: flex; overflow-x: auto; border-bottom: 1px solid var(--ink); }
  .legal-toc a { flex: 0 0 auto; padding-right: 1.25rem; border-bottom: 0; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer .footer-links { justify-content: flex-start; }
}

@media (max-width: 540px) {
  :root { --gutter: 1.15rem; }
  body { font-size: 1rem; }
  .brand { font-size: 1.15rem; }
  .brand img { width: 2.25rem; height: 2.25rem; }
  .nav-links { gap: .8rem 1rem; }
  .nav-links a:not(.button) { font-size: .84rem; }
  .hero-copy { min-height: 34rem; }
  .hero h1 { font-size: clamp(4.5rem, 26vw, 7.2rem); }
  .hero-copy::after { display: none; }
  .hero-stage { min-height: 29rem; }
  .section h2 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .process-list li { gap: .7rem; padding-block: 1.4rem; }
  .process-list strong { font-size: 1.6rem; }
  .tally div { padding: 1.2rem .55rem; }
  .tally span { font-size: .72rem; }
  .data-ledger,
  .data-ledger tbody,
  .data-ledger tr,
  .data-ledger th,
  .data-ledger td { display: block; width: 100%; }
  .data-ledger tr { padding-block: 1rem; border-bottom: 1px solid rgba(17, 16, 14, .38); }
  .data-ledger th,
  .data-ledger td { padding: .2rem 0; border: 0; }
  .legal-copy table { display: block; overflow-x: auto; }
  .join-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .skip-link,
  .button { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .legal-main { padding: 0; }
  .legal-grid { display: block; }
  .legal-copy { max-width: none; }
}
