:root {
  --ink: #0a0c0b;
  --ink-2: #101411;
  --ink-3: #171c18;
  --paper: #f2f2e9;
  --paper-2: #e7e8de;
  --white: #fcfcf6;
  --muted: #a7aea8;
  --muted-dark: #667069;
  --line: rgba(242, 242, 233, .14);
  --line-dark: rgba(10, 12, 11, .14);
  --acid: #d8ff4f;
  --acid-soft: #efffc1;
  --cyan: #94f2ff;
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 34px;
  --shadow: 0 30px 100px rgba(0, 0, 0, .24);
  --shell: min(1400px, calc(100vw - 64px));
  --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
::selection { color: var(--ink); background: var(--acid); }
img, svg, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(96px, 11vw, 176px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; transform: translateY(-140%); padding: 12px 16px; background: var(--acid); color: var(--ink); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: none; }

.page-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 1000; pointer-events: none; background: transparent; }
.page-progress span { display: block; width: 0; height: 100%; background: var(--acid); box-shadow: 0 0 15px var(--acid); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(10, 12, 11, .82); backdrop-filter: blur(22px) saturate(140%); border-color: rgba(255,255,255,.1); }
.site-header.hidden { transform: translateY(-100%); }
.header-inner { height: 86px; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.brand { width: 220px; color: var(--paper); position: relative; z-index: 2; }
.brand img { width: 100%; height: auto; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 32px; }
.desktop-nav a, .text-button { color: rgba(242,242,233,.76); font-size: 13px; font-weight: 650; letter-spacing: .03em; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .text-button:hover, .text-button:focus-visible { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.text-button { border: 0; padding: 12px 0; background: none; cursor: pointer; }
.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); position: relative; cursor: pointer; }
.menu-toggle span:not(.sr-only) { position: absolute; width: 18px; height: 1px; left: 13px; background: var(--paper); transition: transform .25s ease, opacity .25s ease, top .25s ease; }
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-110%) skewX(-15deg); background: rgba(255,255,255,.24); transition: transform .55s ease; }
.button:hover::before { transform: translateX(110%) skewX(-15deg); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button > * { position: relative; z-index: 1; }
.button-small { min-height: 42px; padding: 0 17px; font-size: 12px; }
.button-accent { background: var(--acid); color: var(--ink); border-color: var(--acid); box-shadow: 0 0 0 0 rgba(216,255,79,.2); }
.button-accent:hover { box-shadow: 0 12px 32px rgba(216,255,79,.18); }
.button-ghost { background: rgba(255,255,255,.04); color: var(--paper); border-color: var(--line); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: var(--paper); color: var(--ink); }
.button-note { display: block; margin-top: 16px; color: var(--muted-dark); font-size: 12px; }
.link-arrow { border: 0; background: none; padding: 0 0 5px; display: inline-flex; align-items: center; gap: 16px; font-weight: 750; font-size: 14px; border-bottom: 1px solid currentColor; cursor: pointer; transition: gap .25s ease, opacity .25s ease; }
.link-arrow:hover { gap: 23px; opacity: .75; }

.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow .muted { color: rgba(242,242,233,.48); }
.pulse-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 0 rgba(216,255,79,.55); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(216,255,79,0); } 100% { box-shadow: 0 0 0 0 rgba(216,255,79,0); } }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: .98; letter-spacing: -.055em; }
h2 { font-size: clamp(50px, 6vw, 92px); font-weight: 680; }
h3 { font-size: clamp(29px, 3vw, 48px); font-weight: 680; }
em { font-style: normal; color: var(--acid); }
.section-heading { margin-bottom: 72px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .58fr); gap: 90px; align-items: end; }
.split-heading > p { margin: 0 0 6px; font-size: 17px; line-height: 1.7; color: var(--muted-dark); }

.hero {
  min-height: 940px;
  padding: 156px 0 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 85%); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 85% 18%, rgba(216,255,79,.12), transparent 32%), linear-gradient(180deg, transparent 70%, rgba(10,12,11,.8)); }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .75; }
.hero-glow { position: absolute; width: 660px; height: 660px; right: -280px; top: -230px; border-radius: 50%; border: 1px solid rgba(216,255,79,.2); box-shadow: 0 0 140px rgba(216,255,79,.08), inset 0 0 100px rgba(216,255,79,.06); }
.hero-glow::before, .hero-glow::after { content: ""; position: absolute; border: 1px solid rgba(216,255,79,.12); border-radius: inherit; }
.hero-glow::before { inset: 80px; }
.hero-glow::after { inset: 160px; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(470px, .85fr); gap: 80px; align-items: center; min-height: 675px; }
.hero-copy { padding-bottom: 60px; }
.hero-copy h1 { max-width: 920px; font-size: clamp(68px, 7.2vw, 126px); font-weight: 650; }
.hero-copy h1 em { display: block; }
.hero-subhead { max-width: 780px; margin: 34px 0 0; color: #bec4be; font-size: clamp(18px, 1.45vw, 23px); line-height: 1.55; letter-spacing: -.018em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.hero-proof { margin: 31px 0 0; color: #8f9891; font-size: 13px; }
.hero-proof strong { color: #d9ded9; font-weight: 650; }

.hero-instrument { position: relative; align-self: center; background: rgba(17,21,18,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; box-shadow: var(--shadow); backdrop-filter: blur(18px); overflow: hidden; transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg); transform-origin: center; }
.hero-instrument::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(145deg, rgba(255,255,255,.075), transparent 30%); }
.instrument-topline { min-height: 48px; padding: 0 18px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-size: 9px; letter-spacing: .15em; color: #879087; }
.live-state { display: inline-flex; align-items: center; gap: 8px; color: var(--acid); }
.live-state i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.instrument-scene { position: relative; min-height: 390px; padding: 24px 24px 0; overflow: hidden; }
.instrument-scene::before { content: ""; position: absolute; left: -70px; right: -70px; top: 63%; height: 180px; transform: perspective(300px) rotateX(65deg); transform-origin: top; background-image: linear-gradient(rgba(216,255,79,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(216,255,79,.15) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(to bottom, #000, transparent); }
.sun-core { position: absolute; right: 60px; top: 46px; width: 110px; height: 110px; border: 1px solid rgba(216,255,79,.45); border-radius: 50%; box-shadow: 0 0 55px rgba(216,255,79,.12); animation: rotate 18s linear infinite; }
.sun-core::before, .sun-core::after { content: ""; position: absolute; border: 1px dashed rgba(216,255,79,.23); border-radius: 50%; }
.sun-core::before { inset: -22px; }
.sun-core::after { inset: 24px; }
.sun-core span { position: absolute; inset: 42%; border-radius: 50%; background: var(--acid); box-shadow: 0 0 22px var(--acid); }
@keyframes rotate { to { transform: rotate(360deg); } }
.energy-curve { position: absolute; left: 18px; right: 18px; top: 66px; width: calc(100% - 36px); height: 220px; overflow: visible; }
.grid-lines path { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 1; }
.curve-area { fill: url(#curveFill); }
.curve-line { fill: none; stroke: var(--acid); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: drawCurve 2.2s .5s cubic-bezier(.2,.8,.2,1) forwards; filter: drop-shadow(0 0 6px rgba(216,255,79,.4)); }
@keyframes drawCurve { to { stroke-dashoffset: 0; } }
.curve-points circle { fill: var(--ink); stroke: var(--acid); stroke-width: 2; }
.asset-stack { position: absolute; left: 22px; right: 22px; bottom: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.asset-stack article { min-height: 88px; padding: 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(8,10,9,.64); border-radius: 10px; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-content: center; }
.asset-stack article span { color: var(--acid); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.asset-stack article strong { font-size: 11px; line-height: 1.25; letter-spacing: -.02em; }
.asset-stack article small { grid-column: 2; color: #7c857e; font-size: 9px; margin-top: 4px; }
.instrument-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.instrument-metrics div { padding: 16px 18px; border-right: 1px solid var(--line); }
.instrument-metrics div:last-child { border-right: 0; }
.instrument-metrics span { display: block; color: #7f8981; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.instrument-metrics strong { display: block; margin-top: 5px; font-size: 20px; line-height: 1; }
.instrument-note { margin: 0; padding: 10px 18px; background: rgba(255,255,255,.025); color: #737c75; font-size: 8px; letter-spacing: .04em; }
.hero-ticker { position: relative; z-index: 3; margin-top: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.ticker-track { width: max-content; height: 76px; display: flex; align-items: center; gap: 38px; color: #758078; font-size: 11px; font-weight: 800; letter-spacing: .19em; animation: ticker 35s linear infinite; }
.ticker-track i { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

.fork-section { background: var(--paper); }
.fork-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fork-card { min-height: 675px; border-radius: var(--radius-lg); position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 28px; }
.fork-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(255,255,255,.14); border-radius: inherit; }
.offtaker-card { background: #dbeea9; color: var(--ink); }
.investor-card { background: var(--ink-2); color: var(--paper); }
.card-index { position: relative; z-index: 2; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; opacity: .55; }
.card-visual { position: relative; min-height: 270px; margin: -15px 0 18px; }
.visual-roof { perspective: 700px; display: grid; place-items: center; }
.visual-roof::before { content: ""; position: absolute; width: 73%; height: 54%; top: 28%; background: linear-gradient(135deg, #15231c, #273b2b); transform: rotateX(55deg) rotateZ(-18deg); border-radius: 3px; box-shadow: 0 35px 50px rgba(30,56,31,.22); }
.visual-roof::after { content: ""; position: absolute; width: 68%; height: 48%; top: 29%; background-image: linear-gradient(rgba(216,255,79,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(216,255,79,.35) 1px, transparent 1px); background-size: 42px 34px; transform: rotateX(55deg) rotateZ(-18deg) translateZ(5px); border: 1px solid rgba(216,255,79,.45); }
.visual-roof span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 20px rgba(216,255,79,.7); z-index: 2; }
.visual-roof span:nth-child(1) { left: 21%; top: 44%; }.visual-roof span:nth-child(2) { left: 49%; top: 33%; }.visual-roof span:nth-child(3) { right: 25%; top: 44%; }.visual-roof span:nth-child(4) { right: 42%; bottom: 27%; }
.visual-capital { display: flex; align-items: flex-end; justify-content: center; gap: 12px; padding: 32px 12%; }
.visual-capital::before { content: ""; position: absolute; inset: 10% 10% 4%; border-radius: 50%; background: radial-gradient(circle, rgba(216,255,79,.11), transparent 65%); }
.visual-capital span { width: 13%; min-width: 45px; border: 1px solid rgba(216,255,79,.35); border-radius: 8px 8px 2px 2px; background: linear-gradient(to top, rgba(216,255,79,.15), rgba(216,255,79,.02)); box-shadow: inset 0 0 20px rgba(216,255,79,.05); position: relative; }
.visual-capital span::after { content: ""; position: absolute; left: 10px; right: 10px; top: 12px; height: 2px; background: var(--acid); box-shadow: 0 18px 0 rgba(216,255,79,.45), 0 36px 0 rgba(216,255,79,.2); }
.visual-capital span:nth-child(1) { height: 32%; }.visual-capital span:nth-child(2) { height: 52%; }.visual-capital span:nth-child(3) { height: 78%; }.visual-capital span:nth-child(4) { height: 62%; }.visual-capital span:nth-child(5) { height: 91%; }
.card-content { position: relative; z-index: 2; margin-top: auto; max-width: 690px; }
.card-content .eyebrow { margin-bottom: 18px; opacity: .6; }
.card-content h3 { max-width: 630px; }
.card-content > p:not(.eyebrow) { max-width: 660px; margin: 23px 0; font-size: 16px; opacity: .72; }
.card-content small { display: block; margin-top: 16px; opacity: .5; font-size: 10px; }
.inline-proof { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 28px; list-style: none; }
.inline-proof li { padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; opacity: .6; }

.proof-section { padding: 110px 0; background: var(--ink); color: var(--paper); }
.proof-intro { display: grid; grid-template-columns: .55fr .9fr 1fr; align-items: end; gap: 45px; padding-bottom: 58px; border-bottom: 1px solid var(--line); }
.proof-intro .eyebrow { margin: 0 0 8px; color: var(--acid); }
.proof-intro h2 { font-size: clamp(46px, 5vw, 74px); }
.proof-intro > p:last-child { margin: 0; color: var(--muted); }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.metrics-grid article { min-height: 200px; padding: 40px 26px 30px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.metrics-grid article:not(:first-child) { padding-left: 26px; }
.metrics-grid article:last-child { border-right: 0; }
.metrics-grid strong { display: block; font-size: clamp(38px, 4vw, 68px); line-height: 1; letter-spacing: -.065em; font-weight: 650; }
.metrics-grid strong b { font-size: .55em; font-weight: inherit; color: var(--acid); }
.metrics-grid article > span { color: var(--muted); font-size: 12px; }
.proof-footnote { max-width: 1040px; margin: 24px 0 0; color: #6f7871; font-size: 10px; line-height: 1.6; }
.media-strip { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 35px; color: #818a83; }
.media-strip span { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.media-strip b { color: #b0b7b2; font-size: 13px; letter-spacing: -.02em; }

.offtaker-section { background: var(--acid-soft); }
.two-column-story { display: grid; grid-template-columns: minmax(0, .95fr) minmax(470px, .78fr); gap: clamp(70px, 9vw, 150px); align-items: start; }
.story-copy .eyebrow { color: var(--muted-dark); }
.story-copy h2 { margin-bottom: 40px; }
.story-copy p { color: #455049; max-width: 720px; font-size: 17px; line-height: 1.72; }
.story-copy .lead { color: var(--ink); font-size: 21px; line-height: 1.55; letter-spacing: -.02em; }
.story-copy .emphasis-line { margin: 34px 0; padding: 22px 0 22px 24px; border-left: 3px solid var(--ink); color: var(--ink); font-weight: 750; }
.benefit-stack { border-top: 1px solid var(--line-dark); }
.benefit-stack > article { padding: 31px 0; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-bottom: 1px solid var(--line-dark); }
.benefit-stack > article > span { padding-top: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; color: var(--muted-dark); }
.benefit-stack h3 { font-size: 31px; letter-spacing: -.04em; }
.benefit-stack p { margin: 13px 0 0; color: #58625b; }
.mini-dashboard { margin-top: 36px; padding: 18px; border-radius: 14px; background: var(--ink); color: var(--paper); box-shadow: 0 25px 70px rgba(29,36,26,.14); }
.mini-top { display: flex; justify-content: space-between; color: #7d877f; font-size: 9px; letter-spacing: .12em; }
.mini-dashboard svg { width: 100%; height: 160px; margin: 8px 0; overflow: visible; }
.load-fill { fill: rgba(216,255,79,.12); }
.load-line { fill: none; stroke: var(--acid); stroke-width: 2; }
.mini-bottom { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.mini-bottom > div { padding: 14px 10px 0; border-right: 1px solid var(--line); }
.mini-bottom > div:last-child { border-right: 0; }
.mini-bottom small { display: block; color: #737c75; font-size: 8px; letter-spacing: .1em; }
.mini-bottom b { display: block; margin-top: 4px; font-size: 18px; }

.process-section { background: var(--paper); }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-line { position: absolute; left: 0; right: 0; top: 22px; height: 1px; background: var(--line-dark); }
.process-line span { display: block; width: 0; height: 100%; background: var(--ink); transition: width 1.8s cubic-bezier(.2,.8,.2,1); }
.process-track.in-view .process-line span { width: 100%; }
.process-track article { position: relative; padding: 74px 35px 0 0; min-height: 300px; }
.process-track article + article { padding-left: 34px; border-left: 1px solid var(--line-dark); }
.step-number { position: absolute; top: 0; left: 0; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; background: var(--paper); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; transition: background .3s ease, color .3s ease; }
.process-track.in-view article:nth-of-type(2) .step-number { transition-delay: .25s; }.process-track.in-view article:nth-of-type(3) .step-number { transition-delay: .5s; }.process-track.in-view article:nth-of-type(4) .step-number { transition-delay: .75s; }.process-track.in-view article:nth-of-type(5) .step-number { transition-delay: 1s; }
.process-track.in-view .step-number { background: var(--ink); color: var(--acid); }
.process-track article + article .step-number { left: 34px; }
.process-track h3 { font-size: 31px; line-height: 1.05; }
.process-track p { color: var(--muted-dark); font-size: 14px; line-height: 1.7; }
.process-track small { position: absolute; bottom: 0; color: #8b938d; font-size: 9px; letter-spacing: .12em; }

.projects-section { background: #121713; color: var(--paper); overflow: hidden; }
.projects-section .split-heading > p { color: var(--muted); }
.project-rail { width: min(1800px, calc(100vw - 32px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.project-card { min-height: 535px; border-radius: 22px; overflow: hidden; position: relative; background: #080a09; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .6s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,7,6,.92) 91%); pointer-events: none; }
.project-card:hover img { transform: scale(1.04); filter: saturate(1.15); }
.project-overlay { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; }
.project-overlay > p:first-child { margin: 0 0 10px; color: #89928b; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.project-overlay h3 { font-size: clamp(34px, 3vw, 50px); }
.project-overlay div { display: flex; gap: 7px; margin-top: 15px; }
.project-overlay div span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.project-overlay > p:last-child { max-height: 0; margin: 0; opacity: 0; color: #afb7b1; font-size: 13px; overflow: hidden; transition: max-height .4s ease, opacity .4s ease, margin .4s ease; }
.project-card:hover .project-overlay > p:last-child { max-height: 100px; margin-top: 17px; opacity: 1; }
.project-footer { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-top: 28px; }
.project-footer p { max-width: 770px; margin: 0; color: #717a73; font-size: 10px; }

.investor-section { background: #090b0a; color: var(--paper); position: relative; overflow: hidden; }
.investor-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(216,255,79,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(216,255,79,.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 70% 50%, black, transparent 65%); }
.investor-section::before { content: ""; position: absolute; right: -250px; top: 6%; width: 700px; height: 700px; border: 1px solid rgba(216,255,79,.12); border-radius: 50%; box-shadow: 0 0 100px rgba(216,255,79,.05); }
.investor-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, .75fr); gap: clamp(70px, 8vw, 140px); align-items: center; }
.investor-section .story-copy p { color: #a0a8a2; }
.investor-section .story-copy .lead { color: var(--paper); }
.investor-section .button-note { color: #69726b; }
.risk-matrix { border: 1px solid var(--line); border-radius: 18px; background: rgba(16,20,17,.76); backdrop-filter: blur(18px); overflow: hidden; box-shadow: var(--shadow); }
.matrix-header { min-height: 50px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); color: #778078; font-size: 8px; letter-spacing: .13em; }
.matrix-row { padding: 24px; display: grid; grid-template-columns: 150px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.matrix-row > div { display: flex; align-items: flex-start; gap: 12px; }
.matrix-row i { width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; }
.matrix-row.take i { background: var(--acid); box-shadow: 0 0 12px rgba(216,255,79,.55); }
.matrix-row.avoid i { border: 1px solid #79837b; }
.matrix-row ul { padding: 0; margin: 0; list-style: none; color: #9fa7a1; font-size: 13px; }
.matrix-row li + li { margin-top: 7px; }
.matrix-chart { padding: 24px 24px 18px 58px; position: relative; }
.chart-field { height: 250px; position: relative; border-left: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 25% 25%; }
.axis { position: absolute; color: #687169; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.axis.y { left: 12px; top: 146px; transform: rotate(-90deg); transform-origin: center; }
.axis.x { right: 24px; bottom: 4px; }
.bubble { position: absolute; display: grid; place-items: center; border: 1px solid rgba(216,255,79,.38); border-radius: 50%; background: rgba(216,255,79,.08); color: var(--acid); font-size: 7px; letter-spacing: .08em; box-shadow: 0 0 30px rgba(216,255,79,.05); animation: floatBubble 5s ease-in-out infinite; }
.b1 { width: 72px; height: 72px; right: 14%; top: 12%; }.b2 { width: 54px; height: 54px; right: 38%; top: 32%; animation-delay: -.8s; }.b3 { width: 44px; height: 44px; right: 60%; top: 52%; animation-delay: -1.6s; }.b4 { width: 36px; height: 36px; right: 22%; top: 62%; animation-delay: -2.4s; }.b5 { width: 48px; height: 48px; right: 48%; top: 12%; animation-delay: -3.2s; }
@keyframes floatBubble { 50% { transform: translateY(-7px); } }
.matrix-note { margin: 0; padding: 13px 18px; border-top: 1px solid var(--line); color: #657067; font-size: 8px; }

.about-section { background: var(--paper); }
.about-diagram { display: grid; grid-template-columns: 1fr .48fr 1fr; gap: 34px; align-items: stretch; }
.partner-node { padding: 38px; border: 1px solid var(--line-dark); border-radius: 24px; min-height: 420px; position: relative; overflow: hidden; }
.partner-node::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; right: -100px; top: -100px; border: 1px solid var(--line-dark); }
.partner-node > span { color: var(--muted-dark); font-size: 9px; letter-spacing: .14em; }
.partner-node > strong { display: block; max-width: 430px; margin-top: 30px; font-family: var(--font-display); font-size: 43px; line-height: 1; letter-spacing: -.05em; }
.partner-node p { max-width: 510px; color: var(--muted-dark); }
.partner-node ul { padding: 0; margin: 32px 0 0; list-style: none; border-top: 1px solid var(--line-dark); }
.partner-node li { padding: 10px 0; border-bottom: 1px solid var(--line-dark); font-size: 12px; }
.partner-node small { display: block; margin-top: 20px; color: #8c948e; }
.capital-node { background: var(--ink); color: var(--paper); }
.capital-node::before { border-color: var(--line); }
.capital-node p { color: var(--muted); }
.capital-node ul { border-color: var(--line); }
.capital-node li { border-color: var(--line); }
.junction-node { display: grid; place-items: center; position: relative; min-height: 420px; }
.junction-node svg { position: absolute; width: 100%; max-width: 250px; color: #98a09a; }
.junction-node svg circle, .junction-node svg path { fill: none; stroke: currentColor; stroke-width: 1; stroke-dasharray: 4 8; }
.junction-node svg circle:first-child { animation: rotate 22s linear infinite; transform-origin: center; }
.junction-node svg circle:nth-child(2) { animation: rotate 15s linear infinite reverse; transform-origin: center; }
.junction-core { width: 155px; height: 155px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line-dark); box-shadow: 0 20px 70px rgba(0,0,0,.12); display: grid; place-items: center; text-align: center; padding: 22px; position: relative; z-index: 2; }
.junction-core img { width: 52px; }
.junction-core span { font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.about-close { margin: 80px auto 0; max-width: 950px; text-align: center; font-family: var(--font-display); font-size: clamp(38px, 4vw, 66px); line-height: 1.05; letter-spacing: -.05em; }

.faq-section { background: #e7e9df; }
.faq-layout { display: grid; grid-template-columns: .6fr 1fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { font-size: clamp(48px, 5vw, 78px); }
.faq-intro > p:not(.eyebrow) { max-width: 480px; color: var(--muted-dark); }
.faq-tabs { display: inline-flex; margin-top: 28px; padding: 4px; background: rgba(10,12,11,.07); border-radius: 999px; }
.faq-tabs button { min-height: 38px; padding: 0 15px; border: 0; border-radius: 999px; background: transparent; color: var(--muted-dark); font-size: 11px; font-weight: 700; cursor: pointer; }
.faq-tabs button.active { background: var(--ink); color: var(--paper); }
.faq-panel details { border-top: 1px solid var(--line-dark); }
.faq-panel details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-panel summary { padding: 26px 52px 26px 0; list-style: none; cursor: pointer; font-family: var(--font-display); font-size: 26px; font-weight: 650; line-height: 1.15; letter-spacing: -.035em; position: relative; }
.faq-panel summary::-webkit-details-marker { display: none; }
.faq-panel summary span, .faq-panel summary span::before { position: absolute; right: 5px; top: 50%; width: 18px; height: 1px; background: currentColor; transition: transform .25s ease; }
.faq-panel summary span::before { content: ""; right: 0; top: 0; transform: rotate(90deg); }
.faq-panel details[open] summary span::before { transform: rotate(0); }
.faq-panel details p { max-width: 720px; margin: -4px 0 28px; color: var(--muted-dark); font-size: 15px; line-height: 1.72; }

.closing-section { min-height: 760px; padding: 130px 0; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.closing-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(216,255,79,.13), transparent 46%); }
.closing-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.closing-inner { position: relative; z-index: 2; }
.closing-inner > h2 { max-width: 1100px; font-size: clamp(66px, 8vw, 125px); }
.closing-grid { margin-top: 85px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.closing-grid > div { min-height: 260px; padding: 34px 60px 0 0; }
.closing-grid > div + div { padding-left: 60px; border-left: 1px solid var(--line); }
.closing-grid span { color: var(--acid); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.closing-grid p { max-width: 590px; color: var(--muted); font-size: 15px; }
.closing-grid .button { margin-top: 22px; }

.site-footer { padding: 90px 0 26px; background: #070908; color: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 65px; padding-bottom: 70px; }
.footer-top > div:first-child img { width: 240px; }
.footer-top > div:first-child p { max-width: 360px; color: #757e77; font-size: 13px; }
.footer-top > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-top > div > span { margin-bottom: 12px; color: #697169; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.footer-top a, .footer-top p { margin: 0; color: #a7aea8; font-size: 12px; }
.footer-top a:hover { color: var(--acid); }
.disclaimer { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; color: #5f6861; font-size: 9px; line-height: 1.7; }
.disclaimer p { margin: 0; }
.disclaimer strong { color: #8a938c; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; color: #59615b; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.footer-bottom a:hover { color: var(--acid); }

.modal { width: min(760px, calc(100vw - 32px)); max-height: min(900px, calc(100vh - 28px)); padding: 0; color: var(--ink); background: transparent; border: 0; border-radius: 24px; overflow: visible; }
.modal::backdrop { background: rgba(5,7,6,.82); backdrop-filter: blur(14px); }
.modal-shell { max-height: min(900px, calc(100vh - 28px)); overflow-y: auto; padding: 46px; background: var(--paper); border-radius: 24px; box-shadow: 0 30px 120px rgba(0,0,0,.48); position: relative; }
.modal-close { position: absolute; right: 18px; top: 18px; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; font-size: 25px; line-height: 1; cursor: pointer; }
.modal-intro { padding-right: 40px; }
.modal-intro .eyebrow { color: var(--muted-dark); margin-bottom: 15px; }
.modal-intro h2 { font-size: clamp(46px, 6vw, 72px); }
.modal-intro > p:last-child { max-width: 570px; color: var(--muted-dark); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.form-grid label { display: block; }
.form-grid label > span:first-child { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; }
.form-grid .full { grid-column: 1 / -1; }
input, select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid rgba(10,12,11,.18); border-radius: 9px; color: var(--ink); background: rgba(255,255,255,.5); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10,12,11,.08); }
input[type="file"] { height: auto; padding: 13px; }
.file-field small { display: block; margin-top: 7px; color: var(--muted-dark); font-size: 9px; }
.check-field { display: grid !important; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.check-field input { width: 16px; height: 16px; margin-top: 3px; }
.check-field span { margin: 0 !important; color: var(--muted-dark); font-size: 10px !important; font-weight: 500 !important; }
.check-field a { text-decoration: underline; }
.submit-button { margin-top: 28px; }
.form-status { min-height: 20px; margin: 16px 0 0; font-size: 12px; color: var(--muted-dark); }
.form-status.success { color: #396115; font-weight: 700; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.motion-ready [data-reveal].revealed { opacity: 1; transform: none; }

.legal-page { background: var(--paper); }
.legal-page .site-header { position: relative; background: var(--ink); }
.legal-hero { padding: 110px 0 70px; background: var(--ink); color: var(--paper); }
.legal-hero h1 { max-width: 960px; font-size: clamp(65px, 8vw, 120px); }
.legal-content { padding: 90px 0 140px; }
.legal-content .shell { max-width: 900px; }
.legal-content h2 { margin-top: 55px; font-size: 38px; }
.legal-content h3 { margin-top: 40px; font-size: 26px; }
.legal-content p, .legal-content li { color: #4c554f; }
.legal-content li + li { margin-top: 8px; }
.legal-callout { padding: 22px; border-left: 3px solid var(--ink); background: rgba(10,12,11,.05); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 42px, 1180px); }
  .desktop-nav { display: none; }
  .header-actions { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 86px 0 auto; padding: 24px 21px 35px; background: rgba(10,12,11,.97); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .35s ease, opacity .35s ease, visibility .35s ease; display: grid; gap: 0; }
  .mobile-menu.open { transform: none; opacity: 1; visibility: visible; }
  .mobile-menu a, .mobile-menu button { min-height: 56px; padding: 0; display: flex; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: none; color: var(--paper); font-size: 17px; text-align: left; cursor: pointer; }
  .hero { padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; gap: 20px; padding-bottom: 70px; }
  .hero-copy { padding-bottom: 10px; }
  .hero-copy h1 { max-width: 980px; }
  .hero-subhead { max-width: 850px; }
  .hero-instrument { max-width: 760px; width: 100%; margin-left: auto; transform: none; }
  .proof-intro { grid-template-columns: 1fr 1fr; }
  .proof-intro .eyebrow { grid-column: 1 / -1; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid article:nth-child(3) { border-right: 0; }
  .metrics-grid article:nth-child(4), .metrics-grid article:nth-child(5) { border-bottom: 0; }
  .two-column-story, .investor-layout { grid-template-columns: 1fr; }
  .benefit-stack, .risk-matrix { max-width: 800px; }
  .project-rail { grid-template-columns: repeat(2, 1fr); }
  .about-diagram { grid-template-columns: 1fr 200px 1fr; gap: 20px; }
  .partner-node { padding: 28px; }
  .faq-layout { gap: 60px; }
}

@media (max-width: 900px) {
  .section { padding: 100px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .fork-grid { grid-template-columns: 1fr; }
  .fork-card { min-height: 610px; }
  .proof-intro { grid-template-columns: 1fr; gap: 22px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid article { border-bottom: 1px solid var(--line) !important; }
  .metrics-grid article:nth-child(even) { border-right: 0; }
  .metrics-grid article:nth-child(odd) { padding-left: 0; }
  .metrics-grid article:last-child { grid-column: 1 / -1; border-right: 0; }
  .media-strip { flex-wrap: wrap; justify-content: flex-start; }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 55px; }
  .process-line { display: none; }
  .process-track article, .process-track article + article { border-left: 0; padding: 68px 30px 0 0; }
  .process-track article:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--line-dark); }
  .process-track article + article .step-number { left: 0; }
  .process-track article:nth-child(even) .step-number { left: 30px; }
  .project-card { min-height: 470px; }
  .about-diagram { grid-template-columns: 1fr; }
  .junction-node { min-height: 250px; }
  .junction-node::before, .junction-node::after { content: ""; position: absolute; left: 50%; width: 1px; height: 60px; background: var(--line-dark); }
  .junction-node::before { top: 0; }.junction-node::after { bottom: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .closing-grid { grid-template-columns: 1fr; }
  .closing-grid > div { padding: 30px 0; }
  .closing-grid > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  .header-inner { height: 72px; }
  .brand { width: 190px; }
  .mobile-menu { top: 72px; }
  .hero { min-height: auto; padding-top: 115px; }
  .hero-layout { min-height: 0; }
  .hero-copy h1 { font-size: clamp(55px, 16vw, 78px); }
  .hero-subhead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; justify-content: space-between; }
  .hero-instrument { border-radius: 16px; }
  .instrument-topline { padding: 0 12px; font-size: 7px; }
  .instrument-scene { min-height: 355px; padding-inline: 10px; }
  .sun-core { right: 30px; width: 85px; height: 85px; }
  .asset-stack { left: 10px; right: 10px; grid-template-columns: 1fr; }
  .asset-stack article { min-height: 58px; }
  .asset-stack article:nth-child(n+3) { display: none; }
  .instrument-metrics div { padding: 13px 10px; }
  .instrument-metrics strong { font-size: 15px; }
  .ticker-track { height: 62px; }
  h2 { font-size: clamp(45px, 14vw, 67px); }
  .section-heading { margin-bottom: 45px; }
  .fork-card { padding: 20px; min-height: 570px; border-radius: 22px; }
  .card-visual { min-height: 230px; }
  .card-content h3 { font-size: 36px; }
  .inline-proof { display: none; }
  .proof-section { padding: 90px 0; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics-grid article, .metrics-grid article:not(:first-child) { grid-column: auto; border-right: 0; padding: 28px 0; min-height: 130px; }
  .media-strip { align-items: flex-start; flex-direction: column; }
  .two-column-story { gap: 60px; }
  .story-copy .lead { font-size: 18px; }
  .benefit-stack h3 { font-size: 26px; }
  .process-track { grid-template-columns: 1fr; row-gap: 42px; }
  .process-track article, .process-track article:nth-child(even) { padding: 65px 0 0; border-left: 0; min-height: 250px; }
  .process-track article:nth-child(even) .step-number { left: 0; }
  .project-rail { grid-template-columns: 1fr; width: calc(100vw - 20px); }
  .project-card { min-height: 440px; }
  .project-overlay > p:last-child { max-height: 100px; margin-top: 17px; opacity: 1; }
  .project-footer { align-items: flex-start; flex-direction: column; }
  .investor-layout { gap: 60px; }
  .matrix-row { grid-template-columns: 1fr; }
  .matrix-chart { padding-left: 40px; }
  .partner-node { padding: 25px; min-height: 0; }
  .partner-node > strong { font-size: 36px; }
  .faq-panel summary { font-size: 22px; }
  .closing-section { padding: 100px 0; }
  .closing-inner > h2 { font-size: clamp(54px, 16vw, 82px); }
  .closing-grid { margin-top: 55px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-top > div:first-child, .footer-top > div:last-child { grid-column: 1 / -1; }
  .disclaimer { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .modal-shell { padding: 34px 22px; }
  .modal-close { right: 10px; top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button { border: 1px solid currentColor; }
  .pulse-dot, .live-state i, .ticker-track i { forced-color-adjust: none; }
}

/* --------------------------------------------------------------------------
   Pre-launch password gate
   This is a client-side convenience gate, not server-side authentication.
   -------------------------------------------------------------------------- */
html.password-locked,
html.password-unlocking {
  overflow: hidden;
}

html.password-locked body > :not(#password-gate),
html.password-unlocking body > :not(#password-gate) {
  visibility: hidden !important;
}

#password-gate[hidden] {
  display: none !important;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  overflow: auto;
  padding: 28px;
  color: #f4f7f1;
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 255, 79, .12), transparent 27rem),
    radial-gradient(circle at 12% 88%, rgba(216, 255, 79, .07), transparent 30rem),
    #080a09;
  visibility: visible !important;
  opacity: 1;
  transition: opacity .26s ease, visibility .26s ease;
}

html.password-unlocking .password-gate {
  opacity: 0;
  visibility: hidden !important;
}

.password-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}

.password-gate-panel {
  position: relative;
  width: min(100%, 510px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(14, 17, 15, .88);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.password-gate-brand {
  display: block;
  width: min(100%, 265px);
  height: auto;
  margin-bottom: 50px;
}

.password-gate-kicker {
  margin: 0 0 12px;
  color: #d8ff4f;
  font-family: var(--mono, monospace);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.password-gate h1 {
  margin: 0;
  color: #f4f7f1;
  font-size: clamp(38px, 7vw, 60px);
  line-height: .98;
  letter-spacing: -.045em;
}

.password-gate-copy {
  max-width: 39ch;
  margin: 20px 0 30px;
  color: #a7aea8;
  font-size: 16px;
  line-height: 1.65;
}

.password-form-label {
  display: block;
  margin-bottom: 9px;
  color: #d9ddd8;
  font-size: 13px;
  font-weight: 600;
}

.password-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.password-form-row input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 10px;
  outline: none;
  color: #f4f7f1;
  background: rgba(0,0,0,.24);
  font: inherit;
  letter-spacing: .05em;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.password-form-row input:focus {
  border-color: #d8ff4f;
  box-shadow: 0 0 0 3px rgba(216,255,79,.13);
}

.password-form-row input[aria-invalid="true"] {
  border-color: #ff7b72;
}

.password-form-row button {
  min-width: 126px;
  height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #0a0c0b;
  background: #d8ff4f;
  font: inherit;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.password-form-row button:hover {
  transform: translateY(-1px);
  background: #e4ff7e;
}

.password-form-row button:focus-visible {
  outline: 3px solid rgba(216,255,79,.35);
  outline-offset: 3px;
}

.password-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #ff9c95;
  font-size: 13px;
}

.password-gate-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 28px 0 0;
  color: #747b76;
  font-family: var(--mono, monospace);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.password-gate-note::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8ff4f;
  box-shadow: 0 0 15px rgba(216,255,79,.65);
}

.password-gate-error .password-gate-panel {
  animation: password-shake .34s ease;
}

@keyframes password-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-7px); }
  55% { transform: translateX(6px); }
  78% { transform: translateX(-3px); }
}

@media (max-width: 540px) {
  .password-gate { padding: 16px; }
  .password-gate-panel { padding: 28px 22px; border-radius: 18px; }
  .password-gate-brand { margin-bottom: 38px; }
  .password-form-row { grid-template-columns: 1fr; }
  .password-form-row button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .password-gate,
  .password-form-row button { transition: none; }
  .password-gate-error .password-gate-panel { animation: none; }
}
