:root {
  --bg: #030503;
  --surface: #090c09;
  --surface-2: #0d110d;
  --line: rgba(97, 255, 84, 0.16);
  --green: #45e13d;
  --green-2: #85ff76;
  --red: #ff3737;
  --white: #f5f7f3;
  --muted: #929a91;
  --max: 1180px;
  --radius: 24px;
  --shadow-green: 0 0 38px rgba(69, 225, 61, 0.18);
  --shadow-red: 0 0 38px rgba(255, 55, 55, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(69, 225, 61, 0.12), transparent 34rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

button, a { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }
::selection { color: #020402; background: var(--green); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: #020402;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.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;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: .55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 225, 61, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 225, 61, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.ambient-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(69,225,61,.035), transparent 70%);
  transform: translateX(-100%);
  animation: gridScan 9s linear infinite;
}

.falling-candles {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  opacity: .28;
}

.falling-candles i {
  position: absolute;
  top: -18vh;
  width: 5px;
  height: var(--h);
  background: linear-gradient(var(--red), #8e1010);
  box-shadow: 0 0 12px rgba(255, 55, 55, .48);
  animation: candleFall var(--d) linear infinite;
  animation-delay: var(--delay);
}

.falling-candles i::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(var(--h) + 24px);
  left: 2px;
  top: -12px;
  background: rgba(255, 55, 55, .7);
}

.market-ticker {
  height: 34px;
  overflow: hidden;
  border-bottom: 1px solid rgba(69, 225, 61, .14);
  background: #020302;
  color: #aab1aa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  white-space: nowrap;
}

.market-ticker__track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  height: 100%;
  animation: ticker 30s linear infinite;
}

.market-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 28px;
}

.market-ticker span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.market-ticker b { color: var(--red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(69, 225, 61, .1);
  background: rgba(3, 5, 3, .78);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(69,225,61,.2);
}
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 13px; letter-spacing: .16em; }
.brand small { margin-top: 5px; color: var(--green); font-weight: 900; letter-spacing: .12em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: #b8bfb7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green-2); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(69,225,61,.18);
  border-radius: 12px;
  background: #080b08;
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.copy-button--small {
  padding: 10px 15px;
  border: 1px solid rgba(69,225,61,.36);
  border-radius: 10px;
  color: #061006;
  background: var(--green);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(69,225,61,.12);
}

.hero { padding-top: 40px; }

.banner-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  border: 1px solid rgba(69, 225, 61, .28);
  border-radius: 26px;
  background: #050705;
  box-shadow: var(--shadow-green), inset 0 0 0 1px rgba(255,255,255,.02);
}
.banner-frame img { width: 100%; height: 100%; object-fit: cover; }
.banner-frame__glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(0,0,0,.75);
  pointer-events: none;
}
.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: -5%;
  opacity: .36;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 16px var(--green);
  animation: scan 5s ease-in-out infinite;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 54px;
  align-items: center;
  padding: 90px 0 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.hero h1,
.section-heading h2,
.facts-panel h2,
.final-cta h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .94;
}
.hero h1 { font-size: clamp(56px, 8vw, 102px); }
.hero h1 em,
.final-cta h2 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 30px rgba(69,225,61,.22);
}
.hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #a7aea6;
  font-size: clamp(17px, 2vw, 20px);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--primary {
  border: 1px solid var(--green);
  color: #041004;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 0 25px rgba(69,225,61,.18);
}
.button--primary:hover { box-shadow: 0 0 35px rgba(69,225,61,.3); }
.button--primary span { font-weight: 750; opacity: .74; }
.button--primary strong { letter-spacing: .06em; }
.button--ghost {
  border: 1px solid rgba(255,255,255,.14);
  color: #d8ddd7;
  background: rgba(255,255,255,.025);
}
.button--ghost:hover { border-color: rgba(69,225,61,.36); background: rgba(69,225,61,.06); }

.portfolio-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 55, 55, .25);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,55,55,.06), transparent 50%),
    #080a08;
  box-shadow: var(--shadow-red);
}
.portfolio-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255,55,55,.1);
  filter: blur(30px);
}
.portfolio-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ea69d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--red); }
.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 1.3s ease-in-out infinite;
}
.portfolio-card > p {
  margin: 28px 0 2px;
  color: #848c83;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.portfolio-card__value { display: block; color: var(--white); font-size: 28px; letter-spacing: -.03em; }
.portfolio-card__loss { color: var(--red); font-size: clamp(44px, 6vw, 74px); font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.crash-chart { width: 100%; margin-top: 14px; overflow: visible; }
.crash-chart__grid { fill: none; stroke: rgba(255,255,255,.055); stroke-width: 1; }
.crash-chart__fill { fill: url(#chartFill); }
.crash-chart__line {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#chartGlow);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawChart 2.1s .35s ease forwards;
}
.portfolio-card__range { display: flex; gap: 24px; color: #737a72; font-size: 11px; font-weight: 900; }
.portfolio-card__range .active { color: var(--red); }
.portfolio-card small { display: block; margin-top: 18px; color: #60675f; font-size: 10px; }

.section { padding: 100px 0; }
.section-heading { max-width: 850px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2,
.facts-panel h2 { font-size: clamp(42px, 6vw, 74px); }

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
}
.story-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(69,225,61,.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(69,225,61,.035), transparent 45%), var(--surface);
}
.story-card--large { grid-row: span 2; min-height: 558px; display: flex; flex-direction: column; justify-content: space-between; }
.story-card__number { color: var(--green); font-size: 12px; font-weight: 950; letter-spacing: .16em; }
.story-card h3 { margin: 12px 0 12px; font-size: clamp(27px, 3.2vw, 42px); letter-spacing: -.035em; line-height: 1.05; }
.story-card p { max-width: 620px; margin: 0; color: var(--muted); font-size: 16px; }
.stamp {
  width: max-content;
  max-width: 100%;
  margin-top: 30px;
  padding: 8px 11px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  transform: rotate(-3deg);
}

.mini-chart {
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, 1.2vw, 14px);
  margin-top: 44px;
  padding: 20px;
  border-top: 1px solid rgba(255,55,55,.12);
  background: linear-gradient(to top, rgba(255,55,55,.08), transparent);
}
.mini-chart i {
  position: relative;
  flex: 1;
  height: var(--bar, 60%);
  min-width: 5px;
  background: linear-gradient(var(--red), #711111);
  animation: barPulse 3s ease-in-out infinite;
}
.mini-chart i::before { content: ""; position: absolute; top: -12px; bottom: -12px; left: 50%; width: 1px; background: rgba(255,55,55,.6); }
.mini-chart i:nth-child(1) { --bar: 92%; }
.mini-chart i:nth-child(2) { --bar: 84%; animation-delay: -.2s; }
.mini-chart i:nth-child(3) { --bar: 88%; animation-delay: -.4s; }
.mini-chart i:nth-child(4) { --bar: 70%; animation-delay: -.6s; }
.mini-chart i:nth-child(5) { --bar: 76%; animation-delay: -.8s; }
.mini-chart i:nth-child(6) { --bar: 58%; animation-delay: -1s; }
.mini-chart i:nth-child(7) { --bar: 64%; animation-delay: -1.2s; }
.mini-chart i:nth-child(8) { --bar: 46%; animation-delay: -1.4s; }
.mini-chart i:nth-child(9) { --bar: 52%; animation-delay: -1.6s; }
.mini-chart i:nth-child(10) { --bar: 32%; animation-delay: -1.8s; }
.mini-chart i:nth-child(11) { --bar: 38%; animation-delay: -2s; }
.mini-chart i:nth-child(12) { --bar: 17%; animation-delay: -2.2s; }

.wallet-icon { position: absolute; right: -14px; bottom: -22px; width: 150px; height: 110px; transform: rotate(-8deg); opacity: .65; }
.wallet-icon span {
  position: absolute;
  inset: 18px 12px 7px 0;
  border: 5px solid #343a34;
  border-radius: 18px;
  background: #0c0f0c;
}
.wallet-icon b {
  position: absolute;
  right: 0;
  top: 38px;
  width: 55px;
  height: 45px;
  border: 5px solid #343a34;
  border-radius: 13px;
  background: #0c0f0c;
}
.wallet-icon b::after { content: ""; position: absolute; width: 8px; height: 8px; top: 13px; left: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.strategy {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(69,225,61,.11);
  background:
    linear-gradient(90deg, transparent, rgba(69,225,61,.03), transparent),
    #060806;
}
.strategy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(69,225,61,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(69,225,61,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, black, transparent);
}
.strategy .shell { position: relative; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
.step {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(7,10,7,.85);
  transition: transform .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(69,225,61,.3); }
.step > span { color: var(--green); font-size: 11px; font-weight: 950; letter-spacing: .16em; }
.step h3 { margin: 22px 0 10px; font-size: 28px; letter-spacing: -.04em; }
.step p { margin: 0; color: var(--muted); }
.step-arrow { align-self: center; color: var(--red); font-size: 30px; font-weight: 900; }
.step__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border: 1px solid rgba(69,225,61,.2);
  border-radius: 18px;
  color: var(--green);
  background: rgba(69,225,61,.05);
  box-shadow: inset 0 0 28px rgba(69,225,61,.04);
  font-size: 35px;
  font-weight: 950;
}
.step__icon--chart { display: flex; align-items: flex-end; justify-content: center; gap: 5px; padding: 18px; transform: rotate(180deg); }
.step__icon--chart i { flex: 1; background: var(--red); box-shadow: 0 0 8px rgba(255,55,55,.45); }
.step__icon--chart i:nth-child(1) { height: 90%; }
.step__icon--chart i:nth-child(2) { height: 70%; }
.step__icon--chart i:nth-child(3) { height: 48%; }
.step__icon--chart i:nth-child(4) { height: 22%; }
.step__icon--broke { color: var(--red); border-color: rgba(255,55,55,.24); background: rgba(255,55,55,.05); }

.facts-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid rgba(69,225,61,.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 50%, rgba(69,225,61,.12), transparent 35%),
    var(--surface);
  box-shadow: var(--shadow-green);
}
.facts-panel__logo img { width: min(100%, 460px); margin-inline: auto; filter: drop-shadow(0 0 34px rgba(69,225,61,.18)); animation: floatLogo 5.5s ease-in-out infinite; }
.facts-panel__content > p:not(.eyebrow) { color: var(--muted); margin: 24px 0 28px; }
.fact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
.fact-list div { padding: 18px 14px; border: 1px solid rgba(69,225,61,.14); border-radius: 15px; background: rgba(69,225,61,.03); }
.fact-list strong { display: block; color: var(--green); font-size: 31px; line-height: 1; }
.fact-list span { display: block; margin-top: 7px; color: #8d958c; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  place-items: center;
  margin-bottom: 100px;
  border: 1px solid rgba(255,55,55,.16);
  border-radius: 34px;
  text-align: center;
  background: radial-gradient(circle, rgba(255,55,55,.07), transparent 60%), #070907;
}
.final-cta__line { position: absolute; inset: 0; opacity: .85; }
.final-cta__line svg { width: 100%; height: 100%; overflow: visible; }
.final-cta__line path {
  fill: none;
  stroke: var(--red);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 12px rgba(255,55,55,.6));
  animation: drawChart 3s ease forwards;
}
.final-cta__content { position: relative; z-index: 1; padding: 35px; background: radial-gradient(circle, rgba(3,5,3,.96), rgba(3,5,3,.56), transparent 72%); }
.final-cta__content > p { color: var(--red); font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(49px, 8vw, 95px); }
.final-cta .button { margin-top: 28px; min-width: 170px; }

.site-footer { border-top: 1px solid rgba(69,225,61,.1); background: #020302; }
.site-footer__inner { min-height: 170px; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; }
.brand--footer img { width: 42px; height: 42px; }
.site-footer p { max-width: 680px; margin: 0; color: #6f766e; font-size: 12px; }
.site-footer__inner > span { color: #626961; font-size: 12px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  border: 1px solid rgba(69,225,61,.38);
  border-radius: 12px;
  color: #dfffdc;
  background: rgba(6,12,6,.96);
  box-shadow: var(--shadow-green);
  transform: translate(-50%, 160%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast span { color: var(--green); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes candleFall { to { transform: translate3d(-100px, 135vh, 0); } }
@keyframes scan { 0%, 100% { top: -5%; opacity: 0; } 10% { opacity: .42; } 50% { top: 100%; opacity: .28; } 60% { opacity: 0; } }
@keyframes pulse { 50% { opacity: .4; transform: scale(.75); } }
@keyframes drawChart { to { stroke-dashoffset: 0; } }
@keyframes gridScan { to { transform: translateX(100%); } }
@keyframes floatLogo { 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes barPulse { 50% { filter: brightness(1.5); transform: scaleY(.97); transform-origin: bottom; } }

@media (max-width: 920px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 6px;
    padding: 15px;
    border: 1px solid rgba(69,225,61,.2);
    border-radius: 16px;
    background: rgba(4,7,4,.97);
    box-shadow: var(--shadow-green);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .site-nav a, .copy-button--small { width: 100%; padding: 12px 13px; border-radius: 10px; text-align: left; }
  .site-nav a:hover { background: rgba(69,225,61,.05); }

  .hero__grid { grid-template-columns: 1fr; padding-top: 70px; }
  .portfolio-card { max-width: 620px; }
  .about-grid { grid-template-columns: 1fr; }
  .story-card--large { grid-row: auto; min-height: 520px; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .facts-panel { grid-template-columns: 1fr; }
  .facts-panel__logo img { width: min(72vw, 400px); }
  .site-footer__inner { grid-template-columns: 1fr; padding-block: 40px; gap: 22px; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 24px), var(--max)); }
  .market-ticker { height: 30px; }
  .site-header__inner { min-height: 66px; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 11px; }
  .brand small { font-size: 10px; }
  .site-nav { left: 12px; right: 12px; }

  .hero { padding-top: 20px; }
  .banner-frame { border-radius: 15px; }
  .hero__grid { gap: 42px; padding: 55px 0 30px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .portfolio-card { padding: 20px; border-radius: 18px; }
  .portfolio-card__loss { font-size: 54px; }

  .section { padding: 72px 0; }
  .section-heading h2, .facts-panel h2 { font-size: clamp(39px, 12vw, 56px); }
  .story-card { padding: 24px; border-radius: 18px; }
  .story-card--large { min-height: 470px; }
  .mini-chart { height: 150px; padding-inline: 0; gap: 6px; }
  .step { min-height: 290px; padding: 24px; }
  .facts-panel { padding: 24px; border-radius: 22px; }
  .fact-list { grid-template-columns: 1fr; }
  .fact-list div { display: flex; align-items: center; justify-content: space-between; }
  .fact-list span { margin: 0; }
  .final-cta { min-height: 420px; margin-bottom: 70px; border-radius: 22px; }
  .final-cta h2 { font-size: clamp(43px, 13vw, 68px); }
}

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