:root {
  --bg: #07090d;
  --bg-soft: #0a0d13;
  --surface: #0e121a;
  --surface-2: #131925;
  --surface-3: #181f2d;
  --ink: #f5f7f2;
  --muted: #919aab;
  --dim: #626b7a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --acid: #c9ff4a;
  --acid-soft: rgba(201, 255, 74, 0.12);
  --cyan: #6ee7eb;
  --violet: #ad93ff;
  --orange: #ffad66;
  --danger: #ff7e79;
  --light-panel: #edf2e9;
  --light-ink: #11150f;
  --light-muted: #5f675c;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1320px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
output {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
}

::selection {
  background: var(--acid);
  color: #0a0d07;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  border-radius: 99px;
  background: #343b49;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--acid);
  color: #090b07;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.page-atmosphere {
  position: absolute;
  inset: 0 0 auto;
  height: 1180px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 45%, transparent 93%);
}

.atmosphere-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
  content: "";
}

.atmosphere-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
}

.atmosphere-glow--lime {
  top: 40px;
  left: 54%;
  width: 460px;
  height: 460px;
  background: var(--acid);
}

.atmosphere-glow--violet {
  top: 390px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: var(--violet);
  opacity: 0.12;
}

.cursor-light {
  position: absolute;
  top: var(--pointer-y, 24%);
  left: var(--pointer-x, 60%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 74, 0.08), transparent 68%);
  transform: translate(-50%, -50%);
  transition: top 0.16s linear, left 0.16s linear;
}

.section-shell,
.header-shell,
.footer-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.66);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 9, 13, 0.9);
}

.header-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 255, 74, 0.38);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(201, 255, 74, 0.15), rgba(201, 255, 74, 0.025));
  color: var(--acid);
  box-shadow: inset 0 0 20px rgba(201, 255, 74, 0.05);
}

.brand-mark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-action:hover {
  border-color: rgba(201, 255, 74, 0.45);
  background: var(--acid-soft);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(201, 255, 74, 0.08), 0 0 12px var(--acid);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.76fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-top: 70px;
  padding-bottom: 92px;
}

.hero-copy {
  padding: 30px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-index {
  color: var(--acid);
}

.eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--line-strong);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 104px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 247, 242, 0.55);
}

.hero-accent {
  padding-bottom: 0.08em;
  background: linear-gradient(105deg, var(--acid) 0%, #e4ff9f 46%, var(--cyan) 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: #aab2c0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--acid);
  color: #101408;
  box-shadow: 0 12px 40px rgba(201, 255, 74, 0.14);
}

.button--primary:hover {
  box-shadow: 0 16px 48px rgba(201, 255, 74, 0.24);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero-facts {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  overflow: hidden;
}

.hero-fact {
  min-width: 0;
  padding: 17px 18px 16px;
  background: rgba(10, 13, 19, 0.94);
}

.fact-value,
.fact-unit {
  font-family: var(--mono);
  font-weight: 500;
}

.fact-value {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.fact-unit {
  margin-left: 3px;
  color: var(--acid);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-fact small {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-console {
  position: relative;
  align-self: center;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(201, 255, 74, 0.08), transparent 42%),
    linear-gradient(155deg, rgba(18, 24, 34, 0.96), rgba(9, 12, 18, 0.98));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-console::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  pointer-events: none;
}

.console-chrome,
.console-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.console-chrome {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.console-label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.console-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  animation: pulse 2.4s ease-in-out infinite;
}

.console-code {
  color: var(--dim);
}

.capital-orbit {
  position: relative;
  width: min(78%, 350px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 22px auto 12px;
}

.orbit-rings {
  width: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.orbit-track,
.orbit-progress,
.orbit-core {
  fill: none;
  stroke-width: 1;
}

.orbit-track {
  stroke: rgba(255, 255, 255, 0.08);
}

.orbit-track--outer {
  stroke-dasharray: 2 8;
  stroke-linecap: round;
}

.orbit-progress {
  stroke-linecap: round;
  transform-origin: center;
}

.orbit-progress--outer {
  stroke: var(--acid);
  stroke-width: 2;
  stroke-dasharray: 352 704;
  filter: drop-shadow(0 0 5px rgba(201, 255, 74, 0.8));
}

.orbit-progress--inner {
  stroke: var(--violet);
  stroke-width: 1.5;
  stroke-dasharray: 408 540;
  filter: drop-shadow(0 0 5px rgba(173, 147, 255, 0.65));
}

.orbit-core {
  fill: rgba(7, 9, 13, 0.84);
  stroke: rgba(255, 255, 255, 0.1);
}

.orbit-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.orbit-value span,
.orbit-value small {
  font-family: var(--mono);
  text-transform: uppercase;
}

.orbit-value span {
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.orbit-value strong {
  margin: 8px 0 6px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.orbit-value small {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.orbit-tag {
  position: absolute;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(11, 15, 22, 0.88);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  white-space: nowrap;
}

.orbit-tag--top {
  top: 13%;
  right: -2%;
}

.orbit-tag--bottom {
  bottom: 10%;
  left: -1%;
}

.console-flow {
  position: relative;
  z-index: 1;
  padding: 0 22px 12px;
}

.flow-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.flow-id {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
}

.flow-copy {
  display: flex;
  flex-direction: column;
}

.flow-copy strong {
  font-size: 12px;
  font-weight: 600;
}

.flow-copy small {
  margin-top: 2px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.flow-status {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
}

.flow-status--accent {
  color: var(--acid);
}

.flow-status--violet {
  color: var(--violet);
}

.console-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  color: var(--dim);
}

.console-foot strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.console-foot i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.hero-scroll i {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--dim), transparent);
}

.signal-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0d12;
  overflow: hidden;
}

.signal-track {
  width: max-content;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  animation: ticker 28s linear infinite;
}

.signal-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px rgba(201, 255, 74, 0.7);
}

.architecture,
.cashflow,
.risk-section,
.contact-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 58px;
}

.section-code,
.panel-kicker {
  display: block;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-intro h2,
.calculator-copy h2,
.contact-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.12fr 1.12fr 0.86fr;
  gap: 16px;
}

.value-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--surface);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}

.value-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.value-card--accent {
  border-color: rgba(201, 255, 74, 0.32);
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 255, 74, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(201, 255, 74, 0.11), rgba(13, 18, 25, 0.98) 54%);
}

.card-noise {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.value-top {
  position: relative;
  z-index: 1;
  min-height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.value-index {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.value-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 255, 74, 0.22);
  border-radius: 12px;
  background: rgba(201, 255, 74, 0.06);
  color: var(--acid);
}

.value-icon--violet {
  border-color: rgba(173, 147, 255, 0.24);
  background: rgba(173, 147, 255, 0.07);
  color: var(--violet);
}

.value-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-pill {
  padding: 6px 9px;
  border: 1px solid rgba(201, 255, 74, 0.28);
  border-radius: 999px;
  background: rgba(201, 255, 74, 0.08);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.value-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 52px;
}

.value-main strong {
  font-size: clamp(62px, 6vw, 92px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.value-main span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.value-card > p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 34px 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.tranche-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  margin-top: auto;
}

.tranche-map i {
  height: 7px;
  border-radius: 99px;
  background: var(--acid);
  box-shadow: 0 0 10px rgba(201, 255, 74, 0.16);
  opacity: calc(0.45 + var(--i, 0) * 0.1);
}

.tranche-map i:nth-child(2) { opacity: 0.58; }
.tranche-map i:nth-child(3) { opacity: 0.66; }
.tranche-map i:nth-child(4) { opacity: 0.74; }
.tranche-map i:nth-child(5) { opacity: 0.84; }
.tranche-map i:nth-child(6) { opacity: 1; }

.return-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.return-line span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.return-line span:last-child {
  align-items: flex-end;
  color: var(--acid);
}

.return-line b {
  color: var(--ink);
  font-size: 10px;
}

.return-line i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--acid));
}

.return-line i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  content: "";
  transform: translateY(-50%);
}

.residual-visual {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
}

.residual-visual i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--line-strong), var(--violet));
}

.residual-visual strong {
  color: var(--violet);
  font-weight: 500;
}

.deal-timeline {
  margin-top: 80px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.018);
}

.timeline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.timeline-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline-track::before {
  position: absolute;
  top: 18px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), rgba(201, 255, 74, 0.6) 63%, var(--line-strong));
  content: "";
}

.timeline-phase {
  position: relative;
  z-index: 1;
}

.phase-marker {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.timeline-phase--active .phase-marker {
  border-color: var(--acid);
  background: var(--acid);
  color: #0c1008;
  box-shadow: 0 0 0 7px rgba(201, 255, 74, 0.07), 0 0 28px rgba(201, 255, 74, 0.15);
}

.phase-period {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.timeline-phase h4 {
  margin: 10px 0 7px;
  font-size: 15px;
}

.timeline-phase p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.scenario-section {
  padding: 140px 0;
  border-radius: 44px 44px 0 0;
  background: var(--light-panel);
  color: var(--light-ink);
}

.section-intro--light .section-code {
  color: #4a6411;
}

.section-intro--light > p {
  color: var(--light-muted);
}

.scenario-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid rgba(17, 21, 15, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.scenario-tab {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--light-muted);
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.scenario-tab:hover {
  background: rgba(255, 255, 255, 0.55);
}

.scenario-tab[aria-selected="true"] {
  background: #11150f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(21, 26, 18, 0.16);
}

.scenario-tab-index {
  color: #899181;
  font-family: var(--mono);
  font-size: 8px;
}

.scenario-tab strong {
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
}

.scenario-tab small {
  color: inherit;
  font-family: var(--mono);
  font-size: 9px;
  opacity: 0.72;
}

.scenario-stage {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  border: 1px solid rgba(17, 21, 15, 0.14);
  border-radius: 28px;
  background: #f8fbf4;
  box-shadow: 0 28px 70px rgba(42, 50, 37, 0.1);
  overflow: hidden;
}

.scenario-summary,
.chart-panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
}

.scenario-summary {
  border-right: 1px solid rgba(17, 21, 15, 0.12);
}

.scenario-summary-head,
.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.scenario-state {
  color: #58644e;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.scenario-summary-head h3,
.panel-head h3 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.scenario-rate {
  padding: 8px 10px;
  border: 1px solid rgba(17, 21, 15, 0.14);
  border-radius: 8px;
  color: #4c5f20;
  font-family: var(--mono);
  font-size: 9px;
  white-space: nowrap;
}

.scenario-description {
  min-height: 78px;
  margin: 28px 0 0;
  color: var(--light-muted);
  font-size: 13px;
  line-height: 1.65;
}

.scenario-return {
  margin-top: 38px;
  padding: 22px 0;
  border-top: 1px solid rgba(17, 21, 15, 0.12);
  border-bottom: 1px solid rgba(17, 21, 15, 0.12);
}

.scenario-return > span {
  display: block;
  color: var(--light-muted);
  font-size: 11px;
}

.scenario-return strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.scenario-return small {
  display: inline-block;
  margin-top: 9px;
  color: #4e6718;
  font-family: var(--mono);
  font-size: 9px;
}

.scenario-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
  margin-top: 28px;
}

.scenario-metric span {
  display: block;
  color: var(--light-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.scenario-metric strong {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}

.chart-panel {
  display: flex;
  flex-direction: column;
  background: #f0f5eb;
}

.chart-panel .panel-kicker {
  color: #5b6752;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--light-muted);
  font-family: var(--mono);
  font-size: 7px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-negative {
  background: #c6725c;
}

.legend-positive {
  background: #4f701b;
}

.chart-canvas {
  min-height: 330px;
  display: grid;
  place-items: center;
  flex: 1;
  margin-top: 24px;
}

.flow-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid-line {
  stroke: rgba(17, 21, 15, 0.1);
  stroke-width: 1;
}

.chart-zero-line {
  stroke: rgba(17, 21, 15, 0.42);
  stroke-dasharray: 5 5;
  stroke-width: 1;
}

.chart-axis-label,
.chart-month-label {
  fill: #747d6d;
  font-family: var(--mono);
  font-size: 9px;
}

.chart-month-label--key {
  fill: #334510;
  font-weight: 600;
}

.chart-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 6px rgba(75, 103, 27, 0.16));
}

.chart-area {
  opacity: 0.17;
}

.chart-point {
  fill: #f0f5eb;
  stroke-width: 2;
}

.chart-milestone {
  fill: #11150f;
  font-family: var(--mono);
  font-size: 7px;
}

.chart-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 21, 15, 0.1);
  color: var(--light-muted);
  font-family: var(--mono);
  font-size: 7px;
}

.cashflow-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 16px;
}

.source-panel,
.payout-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.panel-head {
  margin-bottom: 30px;
}

.source-panel .panel-head h3,
.payout-panel .panel-head h3 {
  font-size: 22px;
}

.sync-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(201, 255, 74, 0.18);
  border-radius: 99px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.sync-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.source-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.source-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.source-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.source-row-copy {
  min-width: 0;
}

.source-row-copy strong {
  display: block;
  font-size: 12px;
}

.source-row-copy small {
  display: block;
  margin-top: 3px;
  color: var(--dim);
  font-size: 9px;
}

.source-row-value {
  font-family: var(--mono);
  font-size: 10px;
  white-space: nowrap;
}

.source-bar {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.source-bar i {
  display: block;
  width: var(--bar-width);
  height: 100%;
  border-radius: inherit;
  background: var(--bar-color, var(--acid));
  box-shadow: 0 0 12px color-mix(in srgb, var(--bar-color, var(--acid)) 45%, transparent);
  transform-origin: left;
  animation: grow-bar 0.7s var(--ease) both;
}

.source-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.source-total span {
  color: var(--muted);
  font-size: 10px;
}

.source-total strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.table-hint {
  display: none;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.payout-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.payout-table th,
.payout-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

.payout-table th:first-child,
.payout-table td:first-child,
.payout-table th:last-child,
.payout-table td:last-child {
  text-align: left;
}

.payout-table th {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payout-table td {
  color: #b9c0cb;
  font-family: var(--mono);
}

.payout-table tbody tr {
  transition: background 0.2s ease;
}

.payout-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.payout-table .payout-value {
  color: var(--ink);
}

.payout-table .body-value {
  color: var(--acid);
}

.risk-badge {
  display: inline-flex;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
}

.risk-badge--half {
  border-color: rgba(255, 173, 102, 0.22);
  color: var(--orange);
}

.risk-badge--closed {
  border-color: rgba(201, 255, 74, 0.2);
  color: var(--acid);
}

.payout-total td {
  border-bottom: 0;
  color: var(--ink);
  font-weight: 600;
}

.calculator-section {
  padding: 20px 0 140px;
}

.calculator-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border: 1px solid rgba(173, 147, 255, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 15%, rgba(173, 147, 255, 0.12), transparent 34%),
    linear-gradient(145deg, #11131c, #0c0f16);
  overflow: hidden;
}

.calculator-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

.calculator-copy,
.calculator-output {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(30px, 5vw, 62px);
}

.calculator-copy {
  border-right: 1px solid var(--line);
}

.calculator-copy .section-code {
  color: var(--violet);
}

.calculator-copy h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}

.calculator-copy > p {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.calculator-control {
  margin-top: 48px;
}

.control-label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.control-label label {
  color: var(--muted);
  font-size: 11px;
}

.control-label output {
  color: var(--violet);
  font-family: var(--mono);
  font-size: 15px;
}

.allocation-range {
  width: 100%;
  height: 5px;
  appearance: none;
  border-radius: 99px;
  outline: none;
  background:
    linear-gradient(90deg, var(--violet) 0 var(--range-progress, 100%), rgba(255, 255, 255, 0.09) var(--range-progress, 100%));
  cursor: pointer;
}

.allocation-range::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 4px solid #141724;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px var(--violet), 0 0 20px rgba(173, 147, 255, 0.45);
}

.allocation-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 4px solid #141724;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px var(--violet), 0 0 20px rgba(173, 147, 255, 0.45);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
}

.calculator-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 30px;
}

.calculator-scenario {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 9px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.calculator-scenario:hover {
  background: rgba(255, 255, 255, 0.05);
}

.calculator-scenario.is-active {
  border-color: rgba(173, 147, 255, 0.52);
  background: rgba(173, 147, 255, 0.11);
  color: #d4c8ff;
}

.calculator-output {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.015);
}

.output-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.output-top span:last-child {
  color: var(--violet);
}

.output-main {
  margin-top: 62px;
}

.output-main > span {
  color: var(--muted);
  font-size: 11px;
}

.output-main strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.output-main small {
  display: inline-flex;
  margin-top: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(173, 147, 255, 0.22);
  border-radius: 6px;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 9px;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  overflow: hidden;
}

.output-grid > div {
  min-width: 0;
  padding: 18px;
  background: #10131b;
}

.output-grid span {
  display: block;
  color: var(--dim);
  font-size: 8px;
}

.output-grid strong {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.output-disclaimer {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--dim);
  font-size: 9px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.risk-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.risk-card > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 8px;
}

.risk-card h3 {
  margin: 50px 0 12px;
  font-size: 16px;
}

.risk-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.risk-card--warning {
  border-color: rgba(255, 126, 121, 0.22);
  background: linear-gradient(145deg, rgba(255, 126, 121, 0.065), var(--surface));
}

.risk-card--warning > span {
  border-color: rgba(255, 126, 121, 0.25);
  color: var(--danger);
}

.contact-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.contact-card {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 48px;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(201, 255, 74, 0.28);
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 255, 74, 0.16), transparent 35%),
    linear-gradient(135deg, #121821, #0c1016);
  overflow: hidden;
}

.contact-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 85% 20%, #000, transparent 62%);
  content: "";
}

.contact-orb {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 255, 74, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(201, 255, 74, 0.025),
    0 0 0 72px rgba(201, 255, 74, 0.018);
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(38px, 4.5vw, 64px);
}

.contact-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.contact-actions > span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
}

.legal {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 48px;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
}

.legal > span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.legal p {
  max-width: 920px;
  margin: 0;
  color: var(--dim);
  font-size: 10px;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-shell {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.footer-brand {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
}

.footer-shell > div {
  justify-self: end;
  display: flex;
  gap: 22px;
}

.footer-shell a {
  transition: color 0.2s ease;
}

.footer-shell a:hover {
  color: var(--acid);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease) var(--reveal-delay, 0ms),
    transform 0.75s var(--ease) var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.82); }
}

@keyframes ticker {
  to { transform: translateX(-40%); }
}

@keyframes grow-bar {
  from { transform: scaleX(0); }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(52px, 6.5vw, 82px);
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .cashflow-grid {
    grid-template-columns: 1fr;
  }

  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .section-shell,
  .header-shell,
  .footer-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 79px;
    right: 0;
    left: 0;
    height: calc(100svh - 79px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px 20px;
    border-top: 1px solid var(--line);
    background: rgba(7, 9, 13, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025em;
  }

  .mobile-nav a:last-child {
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    background: var(--acid);
    color: #0d1009;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 78px;
    padding-bottom: 100px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(58px, 10vw, 90px);
  }

  .hero-lead {
    max-width: 760px;
  }

  .hero-console {
    width: min(100%, 570px);
    justify-self: center;
  }

  .hero-scroll {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-intro > p {
    max-width: 720px;
  }

  .scenario-stage,
  .calculator-card {
    grid-template-columns: 1fr;
  }

  .scenario-summary,
  .calculator-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 21, 15, 0.12);
  }

  .calculator-copy {
    border-bottom-color: var(--line);
  }

  .scenario-description {
    min-height: auto;
  }

  .chart-canvas {
    min-height: 290px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .contact-actions {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .header-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-shell {
    min-height: 70px;
  }

  .mobile-nav {
    top: 71px;
    height: calc(100svh - 71px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    gap: 46px;
    padding-top: 60px;
    padding-bottom: 76px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 8px;
  }

  .eyebrow-line {
    width: 20px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.4vw, 76px);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-fact {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: baseline;
    gap: 5px;
  }

  .hero-fact small {
    margin: 0 0 0 auto;
    text-align: right;
  }

  .capital-orbit {
    width: min(78%, 300px);
  }

  .signal-track {
    min-height: 48px;
  }

  .architecture,
  .cashflow,
  .risk-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro h2,
  .calculator-copy h2,
  .contact-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .section-intro > p {
    font-size: 14px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:last-child {
    min-height: 350px;
    grid-column: auto;
  }

  .value-main {
    margin-top: 40px;
  }

  .value-main strong {
    font-size: 68px;
  }

  .deal-timeline {
    margin-top: 50px;
    padding: 26px 22px;
  }

  .timeline-heading {
    display: block;
    margin-bottom: 36px;
  }

  .timeline-heading h3 {
    margin-top: 10px;
  }

  .timeline-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-track::before {
    top: 14px;
    bottom: 36px;
    left: 15px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--line-strong), var(--acid) 63%, var(--line-strong));
  }

  .timeline-phase {
    min-height: 132px;
    padding-left: 52px;
  }

  .phase-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    margin: 0;
  }

  .scenario-section {
    padding: 92px 0;
    border-radius: 28px 28px 0 0;
  }

  .scenario-switcher {
    grid-template-columns: 1fr;
  }

  .scenario-tab {
    min-height: 50px;
  }

  .scenario-summary,
  .chart-panel,
  .calculator-copy,
  .calculator-output {
    padding: 26px 20px;
  }

  .scenario-summary-head {
    flex-direction: column;
    gap: 14px;
  }

  .scenario-return strong {
    font-size: 43px;
  }

  .chart-panel .panel-head {
    flex-direction: column;
  }

  .chart-legend {
    flex-direction: row;
  }

  .chart-canvas {
    min-height: 245px;
    margin-top: 14px;
  }

  .chart-note span:nth-child(2) {
    display: none;
  }

  .source-panel,
  .payout-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .table-hint {
    display: block;
  }

  .calculator-section {
    padding-bottom: 92px;
  }

  .calculator-card {
    border-radius: 24px;
  }

  .calculator-scenarios {
    grid-template-columns: 1fr;
  }

  .calculator-scenario {
    min-height: 44px;
  }

  .output-main {
    margin-top: 42px;
  }

  .output-main strong {
    font-size: clamp(36px, 11vw, 52px);
    overflow-wrap: anywhere;
  }

  .output-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .output-disclaimer {
    margin-top: 30px;
  }

  .risk-grid {
    grid-template-columns: 1fr;
  }

  .risk-card {
    min-height: 220px;
  }

  .contact-section {
    padding-bottom: 56px;
  }

  .contact-card {
    min-height: 500px;
    padding: 34px 22px;
    border-radius: 26px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .legal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-shell {
    min-height: 124px;
    grid-template-columns: 1fr auto;
  }

  .footer-shell > span {
    display: none;
  }

  .footer-shell > div {
    gap: 14px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 46px;
  }

  .eyebrow > span:last-child {
    display: none;
  }

  .hero-fact {
    grid-template-columns: auto auto;
  }

  .hero-fact small {
    grid-column: 1 / -1;
    margin-left: 0;
    text-align: left;
  }

  .console-chrome,
  .console-flow,
  .console-foot {
    padding-right: 16px;
    padding-left: 16px;
  }

  .console-code {
    display: none;
  }

  .scenario-metrics {
    grid-template-columns: 1fr;
  }

  .source-row-head,
  .source-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-total strong {
    text-align: left;
  }

  .footer-shell > div a:first-child {
    display: none;
  }
}

@media (hover: none) {
  .cursor-light {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
