:root {
  --bg: #050505;
  --ink: #f4f4f0;
  --muted: #9a9a92;
  --line: rgba(244, 244, 240, 0.1);
  --green: #70c810;
  --green-dim: #4a8a0c;
  --red: #e23b2c;
  --pad: clamp(20px, 4vw, 56px);
  --max: 1180px;
  --display: "Bricolage Grotesque", ui-rounded, system-ui, sans-serif;
  --sans: Manrope, ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, .btn { font: inherit; cursor: pointer; }
code { font-family: var(--mono); font-size: 0.86em; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 12px; background: var(--green); color: #041; padding: 8px 12px; z-index: 80; }

.kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.kicker s {
  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.12em;
  text-decoration-skip-ink: none;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
}

h1 { font-size: clamp(56px, 12vw, 128px); }
h2 { font-size: clamp(36px, 6vw, 72px); }
h3 { font-size: 1.35rem; letter-spacing: -0.03em; line-height: 1.15; }

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
}
.section-head p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 640;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--green); color: #061400; }
.btn-solid:hover { background: #7fe01a; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px #fff; }
.btn-lg { padding: 16px 26px; font-size: 1.02rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}
.brand img.wordmark {
  width: auto;
  height: 22px;
  object-fit: contain;
  border-radius: 0;
}
.links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 560;
}
.links a:hover { color: var(--ink); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav .btn-solid {
  padding: 8px 14px;
  font-size: 0.875rem;
  min-height: 36px;
  font-weight: 600;
}
.menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
}
.menu span, .menu span::before, .menu span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 13px;
}
.menu span { top: 21px; }
.menu span::before, .menu span::after { content: ""; left: 0; }
.menu span::before { top: -6px; }
.menu span::after { top: 6px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--bg);
}
.hero-art {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}
.hero-art img,
.hero-art video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.hero-art video {
  object-position: 40% center;
  background: #000;
}
.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(5,5,5,0.35) 18%, transparent 42%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px var(--pad) 96px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.hero-copy > * {
  max-width: 36rem;
  margin-right: auto;
}
.lede {
  max-width: 34rem;
  color: #d8d8d0;
  font-size: clamp(17px, 2vw, 20px);
  margin: 22px 0 28px;
}
.hero-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-copy .btn-lg,
.join-copy .btn-lg {
  padding: 13.6px 22.1px;
  font-size: 0.867rem;
}

.ca {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  box-shadow: inset 0 0 0 1px var(--line);
}
.ca button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #061400;
  padding: 8px 14px;
  font-weight: 650;
  font-size: 0.82rem;
}
.credit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 16px 0 0;
}
.credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  text-decoration: none;
  font-weight: 640;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 16px 0;
  background: #070707;
}
.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 0.95rem;
  color: var(--green);
}
.ticker-track span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wrap {
  width: 100%;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.slab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: min(78svh, 820px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.slab-copy {
  padding: 72px clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slab-copy > p,
.slab-copy .section-head p:not(.kicker) {
  color: var(--muted);
}
.slab-copy > p + p { margin-top: 14px; }
.slab-copy .section-head { margin-bottom: 28px; }
.slab-plate {
  margin: 0;
  overflow: hidden;
  background: #000;
}
.slab-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 420px;
}
#thesis .slab-plate img {
  object-position: right center;
}
#tax .slab-plate img {
  object-position: 78% center;
}
#honest .slab-plate img {
  object-position: 70% center;
}

.scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(82svh, 900px);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
}
.bleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.join .bleed-bg {
  object-fit: cover;
  object-position: 78% center;
}
.bleed-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.72) 38%, rgba(5,5,5,0.18) 68%, transparent 88%);
}
.bleed-veil-join {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.55) 42%, rgba(5,5,5,0.12) 70%),
    linear-gradient(180deg, rgba(5,5,5,0.12) 0%, rgba(5,5,5,0.55) 100%);
}
.scene .wrap {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 88px;
}
.scene-copy { max-width: 36rem; }
.scene-copy .section-head { margin-bottom: 12px; }
.join-copy p:not(.kicker) { color: #d8d8d0; }
.join .hero-row { margin-top: 24px; }

.tax-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.tax-grid li {
  padding: 20px 22px 22px;
  border-radius: 20px;
  background: #0c0c0c;
  box-shadow: inset 0 0 0 1px var(--line);
}
.tax-grid span {
  font-family: var(--mono);
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.tax-grid h3 { margin: 10px 0 8px; }
.tax-grid p { margin: 0; color: var(--muted); }
.tax-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.steps-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps-list h3 { margin-bottom: 8px; }
.steps-list p { margin: 0; color: var(--muted); }

.stats {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.stats > div {
  background: #0c0c0c;
  padding: 22px 22px;
}
.stats dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats dd {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.live article {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #10180a, #0a0a0a);
  box-shadow: inset 0 0 0 1px rgba(112, 200, 16, 0.22);
}
.live h3 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 6px;
  color: var(--green);
}
.live p { margin: 0; color: var(--muted); }

.honest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.honest-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.honest-list li:last-child { border-bottom: 1px solid var(--line); }
.honest-list strong { color: var(--ink); }

.foot {
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding: 40px var(--pad) 64px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.foot .brand { color: var(--ink); }
.foot .wordmark { height: 26px; }
.foot a { color: var(--green); }
.foot button {
  justify-self: start;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--mono);
  padding: 0;
}

body.nav-open .links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #050505;
  padding: 20px var(--pad) 28px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 860px) {
  .links { display: none; }
  .menu { display: block; }
  .nav-inner { position: relative; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-art {
    order: -1;
    min-height: min(52svh, 420px);
    height: min(52svh, 420px);
  }
  .hero-art img,
  .hero-art video {
    object-position: 82% 20%;
  }
  .hero-veil {
    background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.55) 78%, var(--bg) 100%);
  }
  .hero-copy { padding-top: 36px; padding-bottom: 48px; }

  .slab {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .slab-plate { order: -1; }
  .slab-plate img { min-height: min(52svh, 420px); height: min(52svh, 420px); }
  .slab-copy { padding: 36px var(--pad) 48px; }
  .live, .stats { grid-template-columns: 1fr; }

  .scene {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .scene .bleed-bg {
    position: relative;
    inset: auto;
    height: min(52svh, 440px);
  }
  .bleed-veil,
  .bleed-veil-join {
    background: linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.55) 28%, rgba(5,5,5,0.96) 100%);
  }
  .scene .wrap {
    margin-top: -72px;
    padding-top: 0;
    padding-bottom: 48px;
  }
  .scene-copy { max-width: none; }
  .join .bleed-bg {
    inset: auto;
    width: 100%;
    max-width: none;
    height: min(58svh, 480px);
    object-fit: cover;
    object-position: 72% center;
  }
}
