:root {
  --blue: #0b78e7;
  --blue-deep: #073f87;
  --ink: #05131d;
  --navy: #061e24;
  --navy-2: #082a2c;
  --green: #52ff9a;
  --green-2: #15e77b;
  --mint: #7fffc3;
  --cyan: #28dfe7;
  --purple: #8f39ff;
  --white: #f7fbff;
  --glass: rgba(3, 24, 33, 0.66);
  --line: rgba(97, 255, 171, 0.34);
  --shadow: 0 22px 70px rgba(0, 20, 26, 0.24);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: #061c21;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--green); color: #04120e; }

.page-shell { min-height: 100vh; }
.content-width { width: min(1400px, calc(100% - 72px)); margin: 0 auto; }
.section-anchor { scroll-margin-top: 80px; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, calc(100% - 72px));
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 950; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(0,0,0,.2); }
.brand img { width: 54px; height: 54px; object-fit: contain; transform: rotate(-38deg); filter: drop-shadow(0 8px 10px rgba(0,0,0,.22)); }
.desktop-nav { display: flex; align-items: center; gap: 44px; font-size: 14px; font-weight: 800; }
.desktop-nav a { position: relative; opacity: .96; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 12px; padding: 12px 19px; color: #062218; background: linear-gradient(135deg, #6dffb5, #55f592); border: 1px solid rgba(255,255,255,.75); border-radius: 999px; font-size: 13px; font-weight: 950; box-shadow: 0 12px 35px rgba(15, 225, 118, .25); }
.header-cta span { transition: transform .25s ease; }
.header-cta:hover span { transform: translate(3px,-3px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg, .lower-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.hero-bg { background-image: url('assets/backgrounds/hero-bg-1920x1080.jpg'); transform: scale(1.02); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(2,51,105,.5) 0%, rgba(2,83,140,.08) 43%, rgba(0,0,0,.02) 65%),
    linear-gradient(0deg, rgba(3,35,29,.30) 0%, rgba(3,35,29,0) 35%);
}
.sun-flare { position: absolute; z-index: 2; width: 260px; height: 260px; right: 5%; top: 4%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,226,.55), rgba(255,255,255,0) 66%); filter: blur(8px); animation: flare 5s ease-in-out infinite; }
@keyframes flare { 50% { transform: scale(1.13); opacity: .7; } }

.hero-inner {
  position: relative;
  z-index: 8;
  min-height: 720px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  padding-top: 94px;
}
.hero-copy { padding: 72px 0 84px; }
.eyebrow { display: flex; gap: 14px; align-items: center; margin: 0 0 4px 5px; font-size: 12px; letter-spacing: .32em; font-weight: 850; text-shadow: 0 2px 12px rgba(0,0,0,.18); }
.eyebrow i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px var(--green); }
.hero-title { width: min(620px, 100%); margin-left: -16px; margin-bottom: -18px; filter: drop-shadow(0 18px 22px rgba(0, 39, 82, .22)); }
.hero-subtitle { width: min(560px, 95%); margin: 0 0 28px; font-size: 18px; line-height: 1.42; font-weight: 650; text-shadow: 0 2px 20px rgba(0,0,0,.34); }

.hero-actions { display: flex; gap: 12px; margin-bottom: 17px; }
.token-btn {
  height: 54px;
  min-width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  background: rgba(3,25,32,.86);
  border: 1.5px solid rgba(255,255,255,.88);
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.token-btn:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.24); background: rgba(3,32,39,.95); }
.token-btn-primary { color: #031f15; background: linear-gradient(135deg, #7affbb, #39f28b); border-color: rgba(255,255,255,.9); }
.token-btn-primary:hover { background: linear-gradient(135deg, #90ffc7, #4fff9a); }
.token-btn img { width: 34px; height: 34px; object-fit: contain; transform: rotate(-36deg); }
.token-btn b { font-size: 18px; margin-left: auto; }
.bars-icon { display: inline-flex; align-items: end; gap: 3px; height: 23px; }
.bars-icon i { width: 5px; border-radius: 2px; background: currentColor; }
.bars-icon i:nth-child(1) { height: 9px; }
.bars-icon i:nth-child(2) { height: 15px; }
.bars-icon i:nth-child(3) { height: 22px; }
.x-icon { font-size: 22px; font-weight: 500; }

.ca-box {
  position: relative;
  width: min(535px, 100%);
  height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: #eafff6;
  background: rgba(4, 35, 40, .79);
  border: 1px solid rgba(125,255,190,.28);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 10px 30px rgba(0,0,0,.13);
}
.ca-label { opacity: .72; font-weight: 900; font-size: 12px; }
.ca-box code { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #8fffc2; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; }
.copy-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: rgba(89,255,158,.18); color: #77ffb3; }
.copy-feedback { position: absolute; right: 10px; bottom: 50px; padding: 7px 10px; border-radius: 9px; background: #061f1a; color: #7bffb5; font-size: 12px; font-weight: 900; opacity: 0; transform: translateY(8px); pointer-events: none; transition: .2s ease; }
.ca-box.copied .copy-feedback { opacity: 1; transform: translateY(0); }

.hero-character-wrap { position: relative; align-self: end; min-height: 620px; display: flex; align-items: flex-end; justify-content: center; }
.hero-character { position: relative; z-index: 4; width: min(590px, 92%); max-height: 640px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 28px 34px rgba(0,23,25,.28)); animation: heroFloat 5s ease-in-out infinite; }
@keyframes heroFloat { 50% { transform: translateY(-10px) rotate(.35deg); } }
.character-glow { position: absolute; z-index: 1; width: 430px; height: 430px; bottom: 70px; border-radius: 50%; background: radial-gradient(circle, rgba(61,255,151,.28), rgba(70,232,255,.07) 48%, transparent 70%); filter: blur(12px); }
.orbit { position: absolute; z-index: 2; border: 1px solid rgba(116,255,178,.34); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 510px; height: 185px; bottom: 175px; transform: rotate(-11deg); }
.orbit-two { width: 435px; height: 135px; bottom: 150px; transform: rotate(19deg); }
.micro-card { position: absolute; z-index: 5; padding: 10px 13px; color: #072319; background: rgba(121,255,184,.86); border: 1px solid rgba(255,255,255,.85); border-radius: 14px; font-size: 10px; font-weight: 850; line-height: 1.1; box-shadow: 0 14px 30px rgba(0,0,0,.13); backdrop-filter: blur(8px); }
.micro-card strong { font-size: 13px; }
.micro-card-one { left: 6%; bottom: 270px; transform: rotate(-7deg); animation: bobOne 4s ease-in-out infinite; }
.micro-card-two { right: 2%; bottom: 370px; transform: rotate(5deg); animation: bobTwo 4.7s ease-in-out infinite; }
@keyframes bobOne { 50% { transform: translateY(-9px) rotate(-4deg); } }
@keyframes bobTwo { 50% { transform: translateY(11px) rotate(2deg); } }

.hero-sign, .hero-rock, .float-leaves { position: absolute; z-index: 6; pointer-events: none; }
.hero-sign { width: 230px; right: 1.5%; bottom: 94px; filter: drop-shadow(0 14px 18px rgba(0,0,0,.17)); transform: rotate(-2deg); }
.hero-rock { width: 250px; right: 1%; bottom: -10px; filter: drop-shadow(0 14px 18px rgba(0,0,0,.15)); transform: rotate(3deg); }
.float-leaves { width: 300px; opacity: .85; filter: drop-shadow(0 12px 12px rgba(0,0,0,.15)); }
.leaves-a { left: -70px; top: -70px; animation: leavesFloatA 10s ease-in-out infinite; }
.leaves-b { right: 11%; top: 3%; transform: rotate(85deg) scale(.7); animation: leavesFloatB 12s ease-in-out infinite; }
@keyframes leavesFloatA { 50% { transform: translate(45px, 22px) rotate(9deg); } }
@keyframes leavesFloatB { 50% { transform: translate(-34px, 52px) rotate(104deg) scale(.76); } }

.value-strip { position: relative; z-index: 14; margin-top: -1px; background: linear-gradient(90deg, rgba(8,68,54,.92), rgba(15,77,66,.80), rgba(5,42,46,.94)); border-top: 1px solid rgba(125,255,190,.54); border-bottom: 1px solid rgba(125,255,190,.26); box-shadow: 0 -12px 30px rgba(6, 37, 32, .25); backdrop-filter: blur(14px); }
.value-grid { min-height: 96px; display: grid; grid-template-columns: repeat(4, 1fr); }
.value-grid article { display: flex; align-items: center; gap: 15px; padding: 16px 26px; border-right: 1px solid rgba(255,255,255,.1); }
.value-grid article:last-child { border-right: 0; }
.value-grid img { width: 55px; height: 55px; object-fit: contain; filter: drop-shadow(0 0 17px rgba(50,255,148,.28)); }
.value-grid strong, .value-grid span { display: block; }
.value-grid strong { font-size: 13px; letter-spacing: .01em; }
.value-grid span { margin-top: 3px; font-size: 12px; opacity: .85; }

.lower-world { position: relative; isolation: isolate; overflow: hidden; padding: 36px 0 0; }
.lower-bg { z-index: -3; background-image: url('assets/backgrounds/section-bg-1920x1080.jpg'); background-attachment: fixed; }
.lower-overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(180deg, rgba(1, 31, 39, .93), rgba(2, 26, 31, .96) 52%, rgba(3, 22, 26, .985)); backdrop-filter: blur(1px); }
.lower-world::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 0; height: 55%; background: radial-gradient(circle at 74% 18%, rgba(32,255,143,.13), transparent 30%), radial-gradient(circle at 18% 24%, rgba(20,193,255,.09), transparent 25%); }
.lower-leaves { position: absolute; z-index: 0; pointer-events: none; width: 360px; opacity: .24; filter: blur(.5px); }
.lower-leaves-one { left: -80px; top: 110px; animation: lowLeaves 12s ease-in-out infinite; }
.lower-leaves-two { right: -120px; top: 340px; transform: rotate(180deg); animation: lowLeaves2 14s ease-in-out infinite; }
@keyframes lowLeaves { 50% { transform: translate(35px,50px) rotate(8deg); } }
@keyframes lowLeaves2 { 50% { transform: translate(-35px,-30px) rotate(193deg); } }

.about-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 31% 39% 30%; align-items: center; min-height: 430px; gap: 22px; padding: 15px 0 24px; }
.section-kicker { width: max-content; margin-bottom: -5px; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: 44px; line-height: 1; transform: rotate(-2deg); letter-spacing: .01em; text-shadow: 4px 4px 0 rgba(0,0,0,.24); }
.section-kicker span { color: var(--green); font-size: .75em; }
.about-copy h2 { margin: 0 0 25px; width: max-content; max-width: 100%; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: clamp(31px, 3vw, 48px); font-style: italic; color: var(--green); transform: rotate(-2deg); text-shadow: 0 5px 0 rgba(0,0,0,.2); }
.about-copy h2::after { content: ""; display: block; width: 100%; height: 8px; margin-top: -3px; background: url('assets/decor/brush-stroke.png') center/100% 100% no-repeat; }
.about-copy p { margin: 0 0 12px; max-width: 455px; color: rgba(242,250,255,.92); font-size: 14px; line-height: 1.57; }
.accent-line { display: block; color: #4bff99; font-size: 13px; margin: 16px 0 17px; }
.join-btn { display: inline-flex; align-items: center; gap: 18px; padding: 13px 22px; color: #061a13; background: linear-gradient(135deg, #6affae, #49ef8d); border-radius: 999px; font-size: 12px; font-weight: 950; border: 1px solid rgba(255,255,255,.75); box-shadow: 0 11px 26px rgba(21,240,128,.16); }
.join-btn span { font-size: 19px; }

.polaroids { position: relative; height: 365px; min-width: 0; }
.polaroid { position: absolute; width: 39%; margin: 0; padding: 9px 9px 13px; background: #f8f7f2; color: #0a1213; box-shadow: 0 20px 28px rgba(0,0,0,.24); transform-origin: 50% 90%; transition: transform .3s ease, z-index .3s; }
.polaroid:hover { z-index: 8; transform: translateY(-16px) rotate(0deg) scale(1.06); }
.photo-field { position: relative; height: 260px; overflow: hidden; background: linear-gradient(#4ca9ee, #baf7b3 74%, #7dcc58 74%); }
.photo-field::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 38%); }
.photo-field img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 14px 9px rgba(0,0,0,.14)); }
.polaroid figcaption { text-align: center; margin-top: 8px; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: 25px; font-style: italic; letter-spacing: .02em; }
.polaroid-a { left: 0; top: 25px; transform: rotate(-5deg); }
.polaroid-b { left: 30%; top: 8px; transform: rotate(2deg); }
.polaroid-c { left: 60%; top: 28px; transform: rotate(-3deg); }

.chart-panel { min-width: 0; }
.chart-title { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 15px; font-weight: 950; letter-spacing: .02em; }
.live-dot { width: 12px; height: 12px; border-radius: 50%; background: #52ff9a; box-shadow: 0 0 0 0 rgba(82,255,154,.45); animation: livePulse 2s infinite; }
@keyframes livePulse { 70% { box-shadow: 0 0 0 10px rgba(82,255,154,0); } 100% { box-shadow: 0 0 0 0 rgba(82,255,154,0); } }
.chart-frame { position: relative; height: 278px; overflow: hidden; border: 1px solid rgba(192,255,229,.58); border-radius: 6px; background: #06171e; box-shadow: inset 0 1px rgba(255,255,255,.03), 0 17px 40px rgba(0,0,0,.22); }
.chart-frame iframe, .chart-frame canvas { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.chart-frame iframe { display: none; background: #07151b; }
.chart-frame canvas { display: block; }
.chart-watermark { position: absolute; inset: auto 13px 12px auto; text-align: right; pointer-events: none; }
.chart-watermark span, .chart-watermark small { display: block; }
.chart-watermark span { color: #65ffab; font-size: 10px; font-weight: 950; letter-spacing: .11em; }
.chart-watermark small { margin-top: 3px; color: rgba(255,255,255,.55); font-size: 9px; }
.view-chart { margin-top: 8px; height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; color: #d9fff0; background: rgba(7, 48, 41, .76); border: 1px solid rgba(65,255,151,.23); border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .02em; }

.roadmap { position: relative; z-index: 2; padding: 20px 0 42px; border-top: 1px solid rgba(105,255,171,.34); }
.roadmap-heading { display: flex; align-items: end; gap: 30px; margin-bottom: 30px; }
.roadmap-heading .section-kicker { font-size: 42px; }
.roadmap-heading p { margin: 0 0 4px; opacity: .66; font-size: 12px; }
.roadmap-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.roadmap-line::before { content: ""; position: absolute; left: 6%; right: 6%; top: 18px; height: 2px; background: linear-gradient(90deg, #57ff9f, #dbff6c, #57ff9f); box-shadow: 0 0 12px rgba(83,255,156,.28); }
.roadmap-step { position: relative; padding-top: 49px; }
.step-num { position: absolute; z-index: 1; top: 0; left: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #efffe2; background: #08252c; border: 2px solid #bdff65; font-weight: 950; box-shadow: 0 0 0 5px rgba(5,36,40,.78); }
.roadmap-step h3 { margin: 0 0 10px; color: #7dffa9; font-size: 13px; }
.roadmap-step ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,.9); font-size: 12px; line-height: 1.62; }

.site-footer { position: relative; z-index: 2; min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid rgba(255,255,255,.08); color: rgba(236,255,247,.7); font-size: 11px; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; color: #dffff0; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; transform: rotate(-35deg); }
.footer-note { text-align: center; }
.site-footer > a { justify-self: end; font-weight: 850; color: #83ffb9; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal-delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .content-width, .site-header { width: min(1080px, calc(100% - 42px)); }
  .desktop-nav { gap: 25px; }
  .hero-inner { grid-template-columns: 50% 50%; }
  .hero-character { width: 100%; }
  .hero-sign { width: 180px; }
  .hero-rock { width: 185px; }
  .token-btn { min-width: 135px; padding: 0 14px; }
  .value-grid article { padding-inline: 15px; }
  .value-grid img { width: 47px; height: 47px; }
  .about-grid { grid-template-columns: 34% 66%; }
  .chart-panel { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; max-width: 700px; width: 100%; margin: 20px auto 0; }
  .chart-frame { height: 340px; }
}

@media (max-width: 820px) {
  .content-width, .site-header { width: min(100% - 30px, 720px); }
  .site-header { height: 74px; grid-template-columns: 1fr auto; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 13px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: white; background: rgba(5, 35, 42,.34); backdrop-filter: blur(8px); }
  .desktop-nav.mobile-open { position: absolute; top: 65px; left: 0; right: 0; display: grid; gap: 0; padding: 10px; background: rgba(4, 38, 45, .94); border: 1px solid rgba(117,255,181,.22); border-radius: 18px; backdrop-filter: blur(16px); }
  .desktop-nav.mobile-open a { padding: 13px 14px; }

  .hero, .hero-inner { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 74px; }
  .hero-copy { padding: 46px 0 12px; text-align: center; }
  .eyebrow { justify-content: center; font-size: 9px; letter-spacing: .23em; }
  .hero-title { margin: -12px auto -10px; width: min(620px, 96%); }
  .hero-subtitle { margin: 0 auto 24px; font-size: 15px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .token-btn { min-width: 0; flex: 1 1 130px; max-width: 190px; }
  .ca-box { margin-inline: auto; }
  .hero-character-wrap { min-height: 500px; }
  .hero-character { max-height: 520px; width: min(540px, 92vw); }
  .hero-sign { right: -24px; bottom: 70px; width: 160px; }
  .hero-rock { display: none; }
  .micro-card-one { left: 2%; }
  .micro-card-two { right: 1%; }

  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }

  .lower-bg { background-attachment: scroll; }
  .about-grid { grid-template-columns: 1fr; padding-top: 28px; }
  .about-copy { text-align: center; }
  .section-kicker, .about-copy h2 { margin-left: auto; margin-right: auto; }
  .about-copy p { margin-left: auto; margin-right: auto; }
  .polaroids { height: 365px; width: min(610px, 100%); margin: 0 auto; }
  .chart-panel { margin-top: 8px; }
  .roadmap-heading { justify-content: center; text-align: center; flex-wrap: wrap; gap: 10px; }
  .roadmap-line { grid-template-columns: 1fr 1fr; }
  .roadmap-line::before { display: none; }
  .roadmap-step { padding-top: 48px; }
  .site-footer { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; text-align: center; }
  .footer-brand, .site-footer > a { justify-self: center; }
}

@media (max-width: 540px) {
  .content-width, .site-header { width: calc(100% - 22px); }
  .hero-copy { padding-top: 30px; }
  .eyebrow { gap: 8px; flex-wrap: wrap; }
  .hero-subtitle { font-size: 14px; }
  .token-btn { height: 50px; font-size: 12px; }
  .hero-character-wrap { min-height: 420px; }
  .hero-character { max-height: 440px; }
  .orbit-one { width: 95vw; }
  .orbit-two { width: 82vw; }
  .micro-card { font-size: 8px; }
  .hero-sign { width: 120px; bottom: 30px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .value-grid article:last-child { border-bottom: 0; }
  .polaroids { height: 300px; }
  .polaroid { width: 44%; padding: 6px 6px 10px; }
  .photo-field { height: 205px; }
  .polaroid figcaption { font-size: 18px; }
  .polaroid-a { left: 0; }
  .polaroid-b { left: 28%; }
  .polaroid-c { left: 56%; }
  .chart-frame { height: 255px; }
  .roadmap-line { grid-template-columns: 1fr; }
  .section-kicker { font-size: 37px; }
}

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