:root {
  --ink: #11231c;
  --night: #06110d;
  --surface: #102a20;
  --surface-2: #173a2d;
  --lime: #c8ff4d;
  --mint: #61d99d;
  --paper: #f2f5f0;
  --muted: #a8b8ae;
  --line: rgba(242, 245, 240, 0.16);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--paper);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  transform: translateX(-50%);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }

.brand-mark {
  display: block;
  width: 26px;
  height: 18px;
  border: 3px solid var(--lime);
  border-radius: 7px 7px 3px 3px;
  box-shadow: 8px 5px 0 -4px var(--lime), -8px 5px 0 -4px var(--lime);
}

.brand-word,
.footer-word {
  font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav { display: flex; gap: 26px; color: #cad7cf; font-size: 14px; font-weight: 600; }
.site-nav a:hover { color: var(--lime); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.button-sm { min-height: 42px; padding: 0 15px; font-size: 14px; }
.button-primary { background: var(--lime); color: var(--ink); }
.button-primary:hover { background: #d6ff79; }
.button-ghost { border-color: rgba(242, 245, 240, 0.32); color: var(--paper); }
.button-ghost:hover { border-color: var(--lime); color: var(--lime); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(380px, 0.83fr);
  gap: clamp(48px, 7vw, 110px);
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 82px;
  background: var(--surface);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.46;
  background-image: linear-gradient(rgba(242, 245, 240, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(242, 245, 240, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-copy,
.hero-scene { position: relative; z-index: 1; }

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 { font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif; letter-spacing: 0; }

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(66px, 9vw, 126px);
  line-height: 0.87;
}

.hero-line {
  max-width: 570px;
  margin-bottom: 18px;
  font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.hero-body,
.hero-aside,
.prose,
.prose-single {
  font-size: 18px;
  line-height: 1.55;
}

.hero-body { max-width: 550px; color: #d2ded6; }
.hero-aside { max-width: 450px; margin: 20px 0 0; color: var(--mint); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-scene {
  width: min(100%, 460px);
  justify-self: end;
  transform: rotate(2deg);
}

.balance-card {
  position: relative;
  z-index: 2;
  min-height: 294px;
  padding: 29px;
  border: 1px solid rgba(242, 245, 240, 0.18);
  border-radius: 20px;
  background: #0a1a14;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
}

.balance-eyebrow { margin-bottom: 14px; color: var(--muted); font-size: 14px; font-weight: 600; }
.balance-sentence { margin-bottom: 25px; font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif; font-size: clamp(30px, 3.2vw, 42px); font-weight: 700; line-height: 1.03; }
.balance-sentence strong { display: block; margin-top: 5px; color: var(--lime); font-size: clamp(55px, 6vw, 78px); line-height: 0.9; }

.ledger { overflow: hidden; border: 1px solid rgba(97, 217, 157, 0.4); border-radius: 11px; }
.ledger-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 50px; padding: 10px 14px; font-size: 13px; }
.ledger-row + .ledger-row { border-top: 1px solid rgba(97, 217, 157, 0.24); }
.ledger-label { color: var(--muted); font-weight: 600; }
.ledger-value { color: var(--paper); font-weight: 700; }
.ledger-value em { margin-left: 4px; color: var(--muted); font-style: normal; }
.ledger-row-add { background: rgba(97, 217, 157, 0.1); }
.ledger-row-add .ledger-label, .ledger-row-add .ledger-value { color: var(--mint); }

.pay-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  justify-content: space-between;
  width: 84%;
  margin: -38px 0 0 auto;
  padding: 28px;
  border: 1px solid rgba(6, 17, 13, 0.24);
  border-radius: 18px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.pay-card-top,
.pay-card-bottom { display: flex; align-items: flex-start; justify-content: space-between; }
.chip { display: grid; width: 40px; height: 30px; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(17, 35, 28, 0.26); border-radius: 5px; background: #ecf2d6; }
.chip i { display: block; border-right: 1px solid rgba(17, 35, 28, 0.2); }
.chip i:last-child { border-right: 0; }
.pay-card-cu { font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11px; line-height: 1.25; text-align: right; }
.pay-card-word { font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif; font-size: 32px; font-weight: 800; }
.pay-card-type { padding-top: 11px; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; }

.band { padding: 112px 24px; }
.inner { width: min(100%, var(--max)); margin: 0 auto; }
.two-up { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.band-idea { background: var(--paper); color: var(--ink); }
.band-how, .band-waitlist { background: var(--night); }
.band-fi { background: #0d2119; }

h2 { margin-bottom: 0; font-size: clamp(40px, 5.4vw, 70px); line-height: 0.96; }
.prose { color: #496055; }
.prose p:last-child { margin-bottom: 0; }
.band-idea .kicker { color: #3f7459; }
.band-head { max-width: 660px; margin-bottom: 46px; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { min-height: 254px; padding: 28px 28px 0 0; border-bottom: 1px solid var(--line); }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.steps li::before { content: counter(list-item, decimal-leading-zero); color: var(--lime); font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 12px; }
.steps h3 { margin: 42px 0 10px; font-size: 28px; line-height: 1; }
.steps p { max-width: 290px; margin-bottom: 0; color: var(--muted); line-height: 1.55; }

.prose-single { max-width: 550px; margin: 24px 0 0; color: #c2d2c7; }
.prose-single + .button { margin-top: 28px; }
.fi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fi-grid li { min-height: 170px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fi-grid strong { display: block; margin-bottom: 11px; font-family: "Bricolage Grotesque", ui-sans-serif, sans-serif; font-size: 22px; line-height: 1; }
.fi-grid span { color: var(--muted); font-size: 15px; line-height: 1.42; }

.waitlist-form { display: grid; gap: 16px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #0b1a14; }
.field { display: grid; gap: 8px; }
label { color: #c6d2ca; font-size: 13px; font-weight: 700; }
input, select { width: 100%; min-height: 50px; border: 1px solid rgba(242, 245, 240, 0.2); border-radius: 5px; padding: 0 13px; background: #07120e; color: var(--paper); font: inherit; }
input:focus, select:focus, .button:focus-visible, a:focus-visible { outline: 3px solid rgba(200, 255, 77, 0.5); outline-offset: 3px; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.form-status { min-height: 20px; margin: 0; color: var(--mint); font-size: 13px; }
button:disabled { cursor: wait; opacity: 0.64; }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px max(24px, calc((100vw - var(--max)) / 2)); background: #030805; color: var(--muted); }
.site-footer p { margin: 0; font-size: 13px; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .hero, .two-up { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-scene { justify-self: center; width: min(100%, 460px); margin-top: 12px; }
  .two-up { gap: 42px; }
}

@media (max-width: 560px) {
  .site-header { top: 15px; width: calc(100% - 36px); }
  .brand-word { font-size: 18px; }
  .brand-mark { width: 23px; height: 16px; }
  .button-sm { min-height: 42px; }
  .hero { min-height: 830px; gap: 26px; padding: 108px 18px 0; }
  h1 { margin-bottom: 16px; font-size: 56px; line-height: 0.88; }
  .eyebrow, .hero-body { display: none; }
  .hero-line { max-width: 330px; margin-bottom: 0; font-size: 35px; line-height: 0.96; }
  .hero-aside { max-width: 270px; margin-top: 16px; font-size: 16px; line-height: 1.3; }
  .hero-actions { display: none; }
  .hero-scene { align-self: end; margin: 0 auto; transform: rotate(1deg); }
  .balance-card { min-height: 246px; padding: 21px; border-radius: 18px; }
  .balance-eyebrow { margin-bottom: 10px; font-size: 13px; }
  .balance-sentence { margin-bottom: 16px; font-size: 25px; }
  .balance-sentence strong { margin-top: 3px; font-size: 58px; }
  .ledger-row { min-height: 43px; padding: 8px 11px; font-size: 12px; }
  .pay-card { min-height: 170px; width: 88%; margin-top: -25px; padding: 20px; border-radius: 15px; }
  .pay-card-word { font-size: 28px; }
  .band { padding: 68px 18px; }
  h2 { font-size: 40px; }
  .prose, .prose-single { font-size: 17px; line-height: 1.48; }
  .band-head { margin-bottom: 28px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { min-height: 0; padding: 22px 0; border-left: 0; }
  .steps h3 { margin: 24px 0 8px; font-size: 26px; }
  .fi-grid { grid-template-columns: 1fr; }
  .fi-grid li { min-height: 0; padding: 20px 0; border-right: 0; }
  .fi-grid strong { font-size: 24px; }
  .waitlist-form { padding: 18px; }
  .site-footer { flex-direction: column; padding: 24px 18px; }
}
