:root {
  --paper: #eceef0;
  --surface: #ffffff;
  --ink: #0a0b0d;
  --ink-2: #54585f;
  --ink-3: #8a8e95;
  --line: rgba(10, 11, 13, 0.13);
  --line-soft: rgba(10, 11, 13, 0.07);
  --volt: #c6ff2e;
  --volt-deep: #88b500;
  --dark: #0a0b0d;
  --dark-2: #15171b;
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --sans: "Saira", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --r-lg: 22px;
  --r-md: 12px;
  --r-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --grid: linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
          linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: min(100% - 2.6rem, 1280px);
  margin-inline: auto;
}

.eyebrow,
.kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 1.3rem;
}
.eyebrow::before {
  content: "// ";
  color: var(--volt-deep);
}
.kicker.light { color: rgba(255, 255, 255, 0.5); }

.hl {
  color: var(--volt-deep);
}

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95em 1.5em;
  border-radius: var(--r-md);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--volt); color: var(--ink); border-color: var(--volt); }
.btn-primary:hover { background: #d4ff52; }

.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(236, 238, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav { display: flex; align-items: center; gap: 0.5rem; }
.primary-nav > a:not(.btn) {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
}
.primary-nav > a:not(.btn):hover { color: var(--ink); }
.nav-cta { margin-left: 0.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: clamp(56px, 8vw, 100px);
  background-image: var(--grid);
  background-size: 80px 80px;
  overflow: hidden;
}
.hero-inner { display: block; }
.hero-copy {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 9.5vw, 6.4rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.6rem;
}


.lead {
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: var(--ink-2);
  max-width: 42rem;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin: 2rem 0 0;
}

.hero-collage {
  position: relative;
  margin-top: clamp(48px, 7vw, 80px);
}
.hc-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.hc-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(10, 11, 13, 0.09);
  padding: 1.1rem;
  min-height: 150px;
  display: flex;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.hc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(10, 11, 13, 0.2);
  z-index: 20;
}

.hc-video {
  position: relative;
  overflow: hidden;
  align-items: flex-end;
  background:
    repeating-linear-gradient(-45deg, transparent 0 13px, rgba(255, 255, 255, 0.04) 13px 14px),
    linear-gradient(150deg, #16191c, #20251f);
  border-color: var(--dark);
}
.hc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--volt);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.hc-play svg { width: 26px; height: 26px; margin-left: 3px; }

.hc-media {
  position: relative;
  align-items: flex-end;
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, transparent 0 11px, rgba(10, 11, 13, 0.05) 11px 12px),
    var(--surface);
}
.hc-media img,
.hc-media video,
.hc-video video,
.essay-media video,
.essay-media img,
.feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-video { z-index: 0; }
.hc-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
}
.hc-tag.light { color: var(--volt); background: transparent; border-color: rgba(255, 255, 255, 0.2); }

.hc-stat { flex-direction: column; justify-content: center; gap: 0.9rem; }
.hc-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hc-bar { display: block; height: 14px; border-radius: 7px; }
.hc-bar-lg { width: 70%; background: var(--volt-deep); height: 30px; }
.hc-bar-sm { width: 45%; background: var(--line); }

.hc-volt {
  background: var(--volt);
  border-color: var(--volt);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.9rem;
}
.hc-volt-label {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 0.95;
  color: var(--ink);
}

.hc-ink {
  background: var(--dark);
  border-color: var(--dark);
  align-items: flex-end;
  background-image:
    repeating-linear-gradient(-45deg, transparent 0 11px, rgba(255, 255, 255, 0.05) 11px 12px),
    linear-gradient(var(--dark), var(--dark));
}

.how {
  background: var(--dark);
  color: var(--paper);
  padding-block: clamp(72px, 11vw, 140px);
  background-image: var(--grid);
  background-size: 80px 80px;
}
.how .wrap { position: relative; }
.how-head { margin-bottom: clamp(40px, 6vw, 64px); }
.how-head h2 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 900; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.steps li {
  display: flex;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--volt);
  flex: 0 0 auto;
  min-width: 2.4ch;
  display: inline-flex;
}
.step-num .d { display: inline-block; will-change: transform, opacity; }
.steps h3, .steps p { will-change: transform, opacity; }
.steps.scrubbing .step-num .d,
.steps.scrubbing .step-text h3,
.steps.scrubbing .step-text p { opacity: 0; }
.steps h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.steps p { color: rgba(255, 255, 255, 0.62); max-width: 52rem; }

.receive {
  background: var(--dark);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: clamp(56px, 8vw, 104px);
  background-image: var(--grid);
  background-size: 80px 80px;
  overflow: hidden;
}
.receive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.receive-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  max-width: 16ch;
}
.receive-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.receive-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.receive-arrow svg { width: 20px; height: 20px; }
.receive-arrow:hover { background: var(--volt); color: var(--ink); border-color: var(--volt); }

.receive-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-inline: calc(var(--pad-x) * -1);
  padding-inline: var(--pad-x);
  scroll-padding-left: var(--pad-x);
}
.receive-track::-webkit-scrollbar { display: none; }
.receive-card {
  flex: 0 0 clamp(260px, 78%, 420px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  min-height: 230px;
}
.receive-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--volt);
}
.receive-card p {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.essay { padding-block: clamp(72px, 11vw, 140px); }

.feature {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-block: clamp(96px, 14vh, 160px);
}
.feature-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255, 255, 255, 0.035) 16px 17px),
    linear-gradient(150deg, #101411 0%, #0a0b0d 52%, #161a10 100%);
}
.feature-bg-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(92px, 11vw, 150px);
  height: clamp(92px, 11vw, 150px);
  border-radius: 50%;
  border: 1.5px solid rgba(198, 255, 46, 0.4);
  color: rgba(198, 255, 46, 0.5);
  display: grid;
  place-items: center;
}
.feature-bg-play svg { width: 40%; height: 40%; margin-left: 6%; }
.feature-bg-tag {
  position: absolute;
  left: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 44px);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--volt);
}
.feature-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 42%, rgba(10, 11, 13, 0.35), rgba(10, 11, 13, 0.82) 78%);
}
.feature-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100% - 2.6rem, 1100px);
}
.feature-title {
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 0.94;
  max-width: 20ch;
  margin: 0;
}

.stack {
  width: 100%;
  max-width: 900px;
  margin-top: clamp(36px, 5vw, 60px);
}
.stack-cards {
  position: relative;
  min-height: 340px;
}
.stack-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(19, 21, 25, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
  will-change: transform, opacity;
}
.stack-card.is-behind {
  opacity: 0.45;
  transform: translateY(26px) scale(0.95);
}
.stack-card.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 2;
}
.stack-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.92);
}
.stack-card p {
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  margin-inline: auto;
}

.stack-ui {
  display: flex;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 420px;
  margin-inline: auto;
}
.stack-seg {
  flex: 1;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(198, 255, 46, 0.22);
  overflow: hidden;
  cursor: pointer;
}
.stack-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--volt);
  box-shadow: 0 0 12px rgba(198, 255, 46, 0.5);
}

.audience { padding-block: clamp(72px, 11vw, 140px); }
.audience-head { margin-bottom: clamp(36px, 5vw, 56px); }
.audience-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
.aud-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.aud-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 1.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 11, 13, 0.09);
  border-color: rgba(10, 11, 13, 0.2);
}
.aud-tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.aud-card p:last-child { color: var(--ink-2); margin: 0; }

.aud-card[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.aud-card[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.aud-card[data-reveal].is-visible:nth-child(1) { animation: aud-rise 0.6s var(--ease) 0.05s both; }
.aud-card[data-reveal].is-visible:nth-child(2) { animation: aud-rise 0.6s var(--ease) 0.13s both; }
.aud-card[data-reveal].is-visible:nth-child(3) { animation: aud-rise 0.6s var(--ease) 0.21s both; }
.aud-card[data-reveal].is-visible:nth-child(4) { animation: aud-rise 0.6s var(--ease) 0.29s both; }
.aud-card[data-reveal].is-visible:nth-child(5) { animation: aud-rise 0.6s var(--ease) 0.37s both; }
@keyframes aud-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .aud-card[data-reveal] { opacity: 1; transform: none; }
  .aud-card[data-reveal].is-visible { animation: none; }
}

.aud-feature {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.aud-feature:hover { border-color: var(--volt); }
.aud-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin: 0;
}
.aud-bolt { width: 24px; height: 24px; color: var(--volt); flex: 0 0 auto; }
.aud-feature p,
.aud-feature p:last-child { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; line-height: 1.55; margin: 0; }

.faqs { padding-block: clamp(72px, 11vw, 140px); }
.faqs-grid { display: grid; gap: clamp(32px, 5vw, 56px); }
.faqs-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
.faq-list { border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 0;
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-mark {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  background: var(--volt-deep);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq-mark::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-mark::after { top: 0; left: 10px; width: 2px; height: 22px; }
.faq[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }
.faq-body {
  padding: 0 0 1.6rem;
  max-width: 60rem;
}
.faq-body p { color: var(--ink-2); margin: 0; }

.essay-grid { display: grid; gap: clamp(30px, 5vw, 52px); }
.essay-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; max-width: 13ch; }

.essay-deck { position: relative; }
.essay-media {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255, 255, 255, 0.05) 14px 15px),
    linear-gradient(150deg, #16191c, #20251f);
}
.essay-play {
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  border-radius: 50%;
  border: 1.5px solid rgba(198, 255, 46, 0.4);
  color: rgba(198, 255, 46, 0.6);
  display: grid;
  place-items: center;
}
.essay-play svg { width: 40%; height: 40%; margin-left: 6%; }
.essay-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--volt);
}

.essay-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.essay-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(0.95rem, 1.4vw, 1.2rem);
  box-shadow: 0 14px 34px rgba(10, 11, 13, 0.08);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.essay-card.is-hot {
  background: var(--volt);
  border-color: var(--volt);
  box-shadow: 0 22px 50px rgba(198, 255, 46, 0.22);
}
.essay-card.is-hot .essay-card-tag,
.essay-card.is-hot p,
.essay-card.is-hot.lead p:first-child { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .essay-card { transform: none !important; }
}
.essay-card-tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.essay-card p { color: var(--ink-2); font-size: 0.85rem; line-height: 1.5; margin: 0 0 0.55rem; }
.essay-card p:last-child { margin-bottom: 0; }
.essay-card.lead p:first-child { color: var(--ink); font-weight: 500; font-size: 0.95rem; line-height: 1.45; }

.breather {
  position: relative;
  padding-block: clamp(72px, 10vw, 130px);
  overflow: hidden;
  color: var(--paper);
}
.breather-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.breather-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #141a14 0%, #0a0b0d 58%, #1a1d12 100%);
}
.breather-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 15px, rgba(255, 255, 255, 0.05) 15px 16px);
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 44%, transparent 42%, #000 92%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 44%, transparent 42%, #000 92%);
  opacity: 0.8;
}
.breather-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.7), rgba(10, 11, 13, 0.1));
}
.breather-copy { position: relative; }
.breather-copy h2 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  max-width: 15ch;
  margin-bottom: 1.6rem;
}
.breather-copy .hl { color: var(--volt); }
.breather-copy p { color: rgba(255, 255, 255, 0.8); max-width: 44rem; font-size: clamp(1.08rem, 1.6vw, 1.25rem); }

.contact-grid {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-intro h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.contact-intro p { color: rgba(255, 255, 255, 0.74); max-width: 32rem; }
.contact-alt { margin-top: 1.6rem; font-size: 0.96rem; }
.contact-alt a { color: var(--volt); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

.contact-form { display: grid; gap: 1.4rem; width: 100%; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-md);
  padding: 0.85rem 0.95rem;
  width: 100%;
}
.field select option { color: var(--ink); }
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.22); }
.contact-form .btn { justify-self: start; margin-top: 0.4rem; }
.form-status {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--volt);
  margin: 0;
}

.site-footer {
  background: var(--dark);
  color: var(--paper);
  padding-block: clamp(48px, 7vw, 80px) 2.4rem;
  overflow: hidden;
}
.site-footer p.footer-mark {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 2.4rem;
}
.footer-mark .hl { color: var(--volt); }
.site-footer p { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--volt); }

.legal { padding-top: clamp(110px, 14vh, 150px); padding-bottom: clamp(64px, 9vw, 110px); }
.legal-wrap { max-width: 820px; }
.legal-head { margin-bottom: clamp(36px, 5vw, 56px); }
.legal-back {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
}
.legal-back:hover { color: var(--ink); }
.legal-head h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  margin-top: 1.1rem;
}
.legal-block { margin-top: clamp(28px, 4vw, 44px); }
.legal-block h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.legal-block p { color: var(--ink-2); margin-bottom: 1rem; max-width: 70ch; }
.legal-block ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-2);
  max-width: 70ch;
}
.legal-block li { margin-bottom: 0.5rem; line-height: 1.55; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.reveal-words .rw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: var(--rw-delay, 0s);
}
.reveal-words.words-in .rw { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-words .rw { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 760px) {
  .essay-grid { grid-template-columns: 0.62fr 1.38fr; align-items: start; gap: clamp(36px, 4vw, 64px); }
  .essay-head { position: sticky; top: 104px; }
  .essay-deck { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
  .essay-media {
    order: 2;
    position: relative;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    min-height: 100%;
    z-index: 1;
  }
  .essay-cards {
    order: 1;
    width: auto;
    margin-top: 0;
    gap: 16px;
  }
  .receive-card { flex-basis: clamp(360px, 40%, 480px); }
  .aud-grid { grid-template-columns: repeat(3, 1fr); }
  .aud-feature { grid-column: 3; grid-row: 1 / span 2; }
  .faqs-grid { grid-template-columns: 0.7fr 1.3fr; align-items: start; }
  .faqs-head { position: sticky; top: 104px; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

@media (min-width: 860px) {
  .breather-copy {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: end;
  }
  .breather-copy h2 { margin-bottom: 0; }
  .breather-copy p { margin-bottom: 0.4rem; }
}

@media (min-width: 1080px) {
  .steps li { gap: 2.4rem; }
}

@media (min-width: 920px) {
  .hero-collage { margin-top: clamp(40px, 5vw, 68px); }
  .hc-stage {
    display: block;
    position: relative;
    height: 470px;
    max-width: 1040px;
    margin-inline: auto;
  }
  .hc-card {
    position: absolute;
    margin: 0;
    transform: translateY(var(--py, 0px));
  }
  .hc-card:hover { transform: translateY(calc(var(--py, 0px) - 10px)); }

  .hc-center {
    width: 500px; height: 300px;
    left: calc(50% - 250px); top: 78px;
    z-index: 10;
    box-shadow: 0 30px 66px rgba(10, 11, 13, 0.22);
  }
  .hc-l1 { width: 214px; height: 176px; left: calc(50% - 428px); top: 34px;  z-index: 3; box-shadow: 0 16px 36px rgba(10, 11, 13, 0.12); }
  .hc-l2 { width: 196px; height: 248px; left: calc(50% - 410px); top: 192px; z-index: 2; }
  .hc-r1 { width: 214px; height: 96px; left: calc(50% + 214px); top: 60px;  z-index: 11; box-shadow: 0 16px 36px rgba(10, 11, 13, 0.12); }
  .hc-r2 { width: 196px; height: 240px; left: calc(50% + 214px); top: 196px; z-index: 2; }
}

@media (max-width: 759px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 70px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.3rem 1.4rem;
    transform: translateY(-130%);
    transition: transform 0.32s var(--ease);
    box-shadow: 0 18px 40px rgba(10, 11, 13, 0.1);
  }
  body.nav-open .primary-nav { transform: translateY(0); }
  .primary-nav > a:not(.btn) { padding: 0.9rem 0.4rem; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin: 1rem 0 0; text-align: center; }
  body.nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .slide { transition: opacity 0.3s ease; transform: none; }
  .btn:hover { transform: none; }
}

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: clamp(14px, 3vw, 28px);
  transform: translate(-50%, 140%);
  z-index: 80;
  width: min(100% - 2rem, 640px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  box-shadow: 0 18px 50px rgba(10, 11, 13, 0.4);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.cookie-bar.in { transform: translate(-50%, 0); opacity: 1; }
.cookie-text {
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.cookie-text code {
  font-family: var(--mono);
  font-size: 0.8em;
  color: var(--volt);
}
.cookie-actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.cookie-btn { padding: 0.6em 1.1em; }
.cookie-bar .btn-line { color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.cookie-bar .btn-line:hover { border-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .cookie-bar { transition: opacity 0.3s ease; transform: translate(-50%, 0); }
}
