﻿:root {
  --ink: #201008;
  --orange: #ff5d16;
  --sun: #ffcf3d;
  --cream: #fff1d6;
  --paper: #fff9ed;
  --line: 3px solid var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --display: "Bungee", Impact, sans-serif;
  --body: "DM Mono", monospace;
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 5px; }

/* Two identical groups keep the ticker filled for its entire animation. */
.top-ticker { height: 34px; display: flex; align-items: center; overflow: hidden; background: var(--sun); color: var(--ink); border-bottom: 2px solid var(--ink); font-size: .7rem; font-weight: 500; letter-spacing: .1em; white-space: nowrap; }
.ticker-track { display: flex; width: max-content; animation: tick 32s linear infinite; }
.ticker-group { display: flex; align-items: center; justify-content: space-around; gap: 2.5rem; min-width: 100vw; padding-right: 2.5rem; flex-shrink: 0; }
@keyframes tick { to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 10; height: var(--header-height); display: flex; align-items: center; gap: 1rem; padding: 0 var(--gutter); background: var(--ink); color: var(--cream); border-bottom: 3px solid var(--orange); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: .65rem; font-family: "Fredoka", sans-serif; font-size: 1.2rem; line-height: .88; font-weight: 700; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand em { font-style: normal; color: var(--orange); }
.main-nav { display: none; }
.main-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: .8rem; font-weight: 500; }
.main-nav a:hover { color: var(--sun); }
.menu-toggle { display: grid; align-content: center; justify-content: center; gap: 6px; margin-left: auto; min-width: 44px; min-height: 44px; border: 0; background: transparent; }
.menu-toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform .2s; }
.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); }
.main-nav.is-open { position: absolute; top: 100%; left: 0; right: 0; display: flex; flex-direction: column; gap: .5rem; padding: 1rem var(--gutter); background: var(--ink); border-bottom: 3px solid var(--orange); }

.buy-button, .social-button { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 54px; padding: .85rem 1.15rem; border: var(--line); border-radius: 8px 4px 11px 5px / 5px 12px 4px 9px; box-shadow: 5px 6px 0 var(--ink); font-family: "Fredoka", sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); transition: transform .16s, box-shadow .16s, background .16s; }
.buy-button::before, .social-button::before { content: ""; position: absolute; inset: 4px 5px 5px 4px; border: 1px solid currentColor; border-radius: 5px 8px 3px 9px / 8px 3px 10px 4px; opacity: .45; pointer-events: none; transform: rotate(-.6deg); }
.buy-button::after { content: ""; position: absolute; top: 5px; right: 9px; width: 19px; height: 6px; border-top: 2px solid rgb(255 255 255 / .8); border-radius: 50%; transform: rotate(-9deg); pointer-events: none; }
.buy-button { background: var(--sun); }
.social-button { background: var(--cream); }
.buy-button:hover, .social-button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.buy-button:active, .social-button:active { transform: translate(4px, 4px); box-shadow: 1px 1px 0 var(--ink); }
.buy-button:hover { background: #ffdf70; }
.social-button:hover { background: var(--paper); }
.header-buy { min-width: 44px; min-height: 44px; padding: .45rem; font-size: 0; box-shadow: 3px 3px 0 var(--orange); }
.icon { display: inline-block; width: 24px; height: 24px; flex-shrink: 0; background-repeat: no-repeat; background-position: center; background-size: contain; }
.icon-buy { background-image: url("assets/icon-buy-absurd.png"); }
.social-button svg, footer svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

/* One edge-to-edge illustration under the entire hero, with readable copy above it. */
.hero { position: relative; isolation: isolate; display: grid; grid-template-areas: "copy"; grid-template-columns: minmax(0, 1fr); overflow: hidden; background: var(--orange); border-bottom: var(--line); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 13rem, rgb(255 93 22 / .25) 18rem, var(--orange) 26rem); pointer-events: none; }
.hero-art-wrap { position: absolute; inset: 0; min-width: 0; overflow: hidden; }
.hero-art { position: absolute; inset: 0; width: 100%; height: min(115vw, 44rem); max-width: none; object-fit: cover; object-position: 50% 43%; }
.art-sticker { position: absolute; z-index: 1; border: var(--line); box-shadow: var(--shadow); padding: .65rem .85rem; font: 700 .85rem/1.1 "Fredoka", sans-serif; }
.sticker-a { top: 1.4rem; left: 1.4rem; background: var(--sun); transform: rotate(-7deg); }
.sticker-a span { padding-left: .5rem; }
.sticker-b { display: none; left: 2rem; bottom: 2rem; background: var(--cream); transform: rotate(5deg); }
.hero-copy { grid-area: copy; position: relative; z-index: 2; min-width: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(20rem, 90vw, 36rem) var(--gutter) 2.5rem; }
.eyebrow { margin: 0 0 1.25rem; font-size: .68rem; font-weight: 500; line-height: 1.7; letter-spacing: .12em; }
.hero-copy > .eyebrow { display: flex; align-items: center; gap: .65rem; }
.hero-copy > .eyebrow::before { content: ""; width: 8px; height: 8px; flex-shrink: 0; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 4px #20100815; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 13.4vw, 6.5rem); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; color: var(--cream); -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; text-shadow: 4px 4px 0 var(--ink); }
.hero h1 span { display: block; color: var(--sun); }
.hero h1 i { display: block; font-style: normal; }
.hero-text { max-width: 33rem; margin: 1.6rem 0 1.75rem; font-size: 1rem; line-height: 1.75; }
.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; width: 100%; max-width: 31rem; }
.hero-actions > * { min-width: 0; }
.hero-actions > a:first-child { transform: rotate(-1.2deg); }
.hero-actions > a:nth-child(2) { transform: rotate(.8deg); }
.hero-actions > a:hover { transform: translate(2px, 2px) rotate(0); }
.hero-actions .contract { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: stretch; gap: .4rem; width: 100%; padding: .8rem 1rem; text-align: left; }
.contract-label { font-size: .58rem; letter-spacing: .12em; opacity: .68; }
.contract-details { display: flex; justify-content: space-between; align-items: center; gap: .75rem; font-family: var(--body); font-size: .75rem; }
#contract-value { overflow-wrap: anywhere; }
.contract-details b { flex-shrink: 0; font-size: .68rem; font-weight: 500; text-transform: uppercase; }
.hero-scroll { display: inline-flex; align-items: center; gap: .8rem; min-height: 44px; margin-top: 1.75rem; font-size: .61rem; letter-spacing: .09em; }
.hero-scroll > span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--ink); border-radius: 50%; font-size: 1rem; transition: transform .2s; }
.hero-scroll:hover > span { transform: translateY(3px); }

.section-shell { padding-left: var(--gutter); padding-right: var(--gutter); }
.section-heading { max-width: 45rem; margin: 0 auto 2.75rem; text-align: center; }
.section-heading .eyebrow { margin-bottom: .8rem; }
.section-heading h2 { margin: 0; font: 400 clamp(2.25rem, 8.3vw, 5rem)/1.1 var(--display); letter-spacing: -.055em; color: var(--orange); -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; text-shadow: 3px 3px 0 var(--ink); }
.section-heading > p:last-child { max-width: 32rem; margin: 1.4rem auto 0; font-size: .9rem; line-height: 1.75; }

/* A blazing flight board carries the hero's aviation energy into the roadmap. */
.roadmap { position: relative; isolation: isolate; overflow: hidden; padding-top: 4.75rem; padding-bottom: 5rem; border-top: var(--line); border-bottom: var(--line); background-color: var(--orange); background-image: radial-gradient(circle at 6% 9%, rgb(255 207 61 / .72) 0 4.75rem, transparent 4.8rem), radial-gradient(circle at 13% 12%, rgb(255 207 61 / .48) 0 3.5rem, transparent 3.55rem), radial-gradient(rgb(255 241 214 / .22) 1px, transparent 1px); background-size: auto, auto, 22px 22px; }
.roadmap::before { content: "FLIGHT PLAN"; position: absolute; z-index: -1; top: 8rem; left: -1rem; white-space: nowrap; font: 400 clamp(6rem, 18vw, 17rem)/.8 var(--display); letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 2px rgb(255 241 214 / .14); transform: rotate(-4deg); pointer-events: none; }
.roadmap::after { content: ""; position: absolute; z-index: -1; right: -3rem; bottom: 8rem; width: min(28rem, 72vw); height: 8rem; opacity: .18; transform: rotate(-8deg); background: repeating-linear-gradient(0deg, transparent 0 1rem, var(--ink) 1rem 1.22rem, transparent 1.22rem 2.05rem); clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%); pointer-events: none; }
.roadmap-heading { position: relative; z-index: 1; max-width: 50rem; margin: 0 0 3rem; text-align: left; }
.roadmap-heading .eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; color: var(--ink); }
.roadmap-heading .eyebrow::before { content: ""; width: 8px; height: 8px; flex-shrink: 0; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgb(255 207 61 / .18); }
.roadmap-heading .eyebrow b { padding: .25rem .45rem; border: 1px solid currentColor; font-size: .58rem; font-weight: 500; transform: rotate(-2deg); }
.roadmap-heading h2 { color: var(--cream); font-size: clamp(3rem, 11vw, 6.75rem); line-height: .92; text-align: left; text-shadow: 5px 5px 0 var(--ink); }
.roadmap-heading h2 span { display: block; color: var(--sun); font-size: .54em; line-height: 1.18; letter-spacing: -.035em; }
.roadmap-heading > p:last-child { max-width: 34rem; margin: 1.35rem 0 0; color: var(--ink); font-size: .9rem; font-weight: 500; }
.roadmap-stamp { display: none; }
.roadmap-board { position: relative; z-index: 1; max-width: 90rem; margin-inline: auto; }
.roadmap-route { display: none; }
.roadmap-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.35rem; margin: 0; padding-left: 1.4rem; list-style: none; }
.roadmap-grid::before { content: ""; position: absolute; top: 2rem; bottom: 2rem; left: .28rem; border-left: 2px dashed var(--sun); opacity: .9; }
.roadmap-card { --card-tilt: -.35deg; --card-offset: 0rem; min-width: 0; min-height: 285px; display: flex; flex-direction: column; position: relative; padding: 1.35rem; border: var(--line); border-radius: 9px 3px 10px 5px / 5px 11px 4px 9px; background: var(--paper); box-shadow: 7px 7px 0 var(--ink); transform: translateY(var(--card-offset)) rotate(var(--card-tilt)); transition: transform .2s, box-shadow .2s, background .2s; }
.roadmap-card::before { content: attr(data-phase); position: absolute; right: .7rem; bottom: -.65rem; font: 400 6rem/.85 var(--display); letter-spacing: -.08em; opacity: .055; pointer-events: none; }
.roadmap-card::after { content: ""; position: absolute; top: 1.8rem; left: -2.08rem; width: .8rem; height: .8rem; border: 3px solid var(--ink); border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px var(--orange); }
.roadmap-card:nth-child(2) { --card-tilt: .45deg; background: var(--cream); }
.roadmap-card:nth-child(3) { --card-tilt: -.25deg; }
.roadmap-card:nth-child(4) { --card-tilt: .35deg; border-color: var(--ink); background: var(--ink); color: var(--cream); box-shadow: 7px 7px 0 var(--sun); }
.roadmap-card.active { background: var(--sun); }
.roadmap-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed rgb(32 16 8 / .42); }
.roadmap-card:nth-child(4) .roadmap-card-top { border-bottom-color: rgb(255 241 214 / .35); }
.phase { display: inline-flex; align-items: center; min-height: 2rem; padding: .35rem .55rem; border: 2px solid currentColor; background: var(--ink); color: var(--cream); font: 500 .63rem/1 var(--body); letter-spacing: .08em; transform: rotate(-1.5deg); }
.roadmap-card:nth-child(4) .phase { background: var(--cream); color: var(--ink); }
.card-icon { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; flex-shrink: 0; border: 2px solid var(--ink); border-radius: 50%; background: var(--orange); color: var(--cream); box-shadow: 2px 2px 0 var(--ink); font-size: 1.2rem; line-height: 1; }
.roadmap-card:nth-child(4) .card-icon { background: var(--sun); color: var(--ink); }
.roadmap-card h3 { margin: 1.55rem 0 .85rem; font: 400 clamp(1.55rem, 7vw, 2rem)/1.05 var(--display); letter-spacing: -.04em; }
.roadmap-card p { position: relative; z-index: 1; margin: 0; font-size: .88rem; line-height: 1.75; }
.roadmap-card small { display: flex; align-items: center; gap: .55rem; margin-top: auto; padding-top: 1.45rem; border-top: 1px dashed rgb(32 16 8 / .25); font-size: .62rem; line-height: 1.5; font-weight: 500; letter-spacing: .07em; }
.roadmap-card:nth-child(4) small { border-top-color: rgb(255 241 214 / .24); color: var(--sun); }
.roadmap-card small::before { content: ""; width: 7px; height: 7px; flex-shrink: 0; border: 1px solid currentColor; border-radius: 50%; }
.roadmap-card.active small::before { background: var(--ink); }
.roadmap-flight-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: .7rem 1rem; max-width: 90rem; margin: 3rem auto 0; padding: .9rem 1.1rem; overflow: hidden; border: var(--line); background: var(--sun); box-shadow: 5px 5px 0 var(--ink); font-size: .55rem; font-weight: 500; letter-spacing: .07em; text-align: center; transform: rotate(-.45deg); }
.roadmap-flight-strip i { display: none; color: var(--orange); font-style: normal; font-size: 1rem; }

.chart-section { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; gap: 2.5rem; padding-top: 4.5rem; padding-bottom: 5rem; border-top: var(--line); background: var(--ink); color: var(--cream); background-image: radial-gradient(rgb(255 207 61 / .09) 1px, transparent 1px); background-size: 22px 22px; }
.chart-copy { min-width: 0; }
.chart-copy > .eyebrow { color: var(--sun); }
.chart-copy h2 { margin: 0; font: 400 clamp(2.65rem, 7vw, 4.5rem)/1.08 var(--display); letter-spacing: -.04em; -webkit-text-stroke: 1px var(--ink); paint-order: stroke fill; text-shadow: 3px 3px 0 var(--orange); }
.chart-copy h2 span { color: var(--sun); }
.chart-copy > p:not(.eyebrow) { max-width: 30rem; margin: 1.5rem 0 1.75rem; font-size: .95rem; line-height: 1.8; }
.chart-buy { max-width: 100%; box-shadow: 5px 6px 0 var(--orange); }
.chart-doodle { display: none; color: var(--sun); }
.chart-doodle svg { display: block; width: 150px; height: 60px; }
.chart-doodle path { stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart-doodle span { font: 500 1rem "Fredoka", sans-serif; }
.chart-frame { position: relative; min-width: 0; border: 3px solid var(--ink); border-radius: 13px 7px 15px 6px / 7px 14px 7px 12px; outline: 2px solid var(--cream); box-shadow: 9px 10px 0 var(--orange); background: #16100d; overflow: hidden; }
.chart-frame-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; min-height: 66px; padding: .8rem 1rem; background: var(--sun); color: var(--ink); border-bottom: var(--line); }
.chart-pair { display: inline-flex; align-items: center; gap: .5rem; font: 600 1.05rem "Fredoka", sans-serif; }
.chart-pair img { object-fit: contain; }
.chart-pair small { font: 500 .62rem var(--body); }
.chart-frame-top > a { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; font-size: .65rem; font-weight: 500; }
.chart-frame-top > a:hover { text-decoration: underline; text-underline-offset: 4px; }
.chart-screen { position: relative; height: 420px; background-image: linear-gradient(rgb(255 241 214 / .045) 1px, transparent 1px), linear-gradient(90deg, rgb(255 241 214 / .045) 1px, transparent 1px); background-size: 40px 40px; }
.chart-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.chart-placeholder[hidden], #dex-chart[hidden] { display: none; }
.chart-placeholder > img { width: 148px; height: 148px; object-fit: contain; margin-bottom: 1rem; }
.chart-placeholder h3 { margin: 0; color: var(--sun); font: 600 clamp(1.4rem, 3vw, 2rem) "Fredoka", sans-serif; }
.chart-placeholder p { max-width: 27rem; margin: 1rem 0 0; color: #d6c8b4; font-size: .8rem; line-height: 1.75; }
#dex-chart { display: block; width: 100%; height: 100%; border: 0; background: #16100d; }
.chart-frame-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem; padding: .85rem 1rem; border-top: 1px solid #514033; font-size: .55rem; letter-spacing: .07em; }
#chart-status { display: inline-flex; align-items: center; gap: .5rem; color: var(--sun); }
#chart-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

footer { min-height: 110px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.75rem var(--gutter); border-top: 3px solid var(--orange); background: var(--ink); color: var(--cream); }
footer .brand img { width: 42px; height: 42px; }
footer p { margin: 0; font-size: .7rem; line-height: 1.7; text-align: center; }
footer > a:last-child { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--cream); border-radius: 50%; }
footer > a:last-child:hover { background: var(--sun); color: var(--ink); border-color: var(--sun); }

@media (min-width: 641px) {
  :root { --header-height: 84px; }
  .site-header { gap: 1.25rem; }
  .menu-toggle { display: none; }
  .main-nav, .main-nav.is-open { position: static; display: flex; flex-direction: row; gap: 1.2rem; margin-left: auto; padding: 0; border: 0; }
  .header-buy { padding: .65rem 1rem; font-size: .8rem; }
  .hero::before { background: linear-gradient(180deg, transparent 18rem, rgb(255 93 22 / .3) 27rem, var(--orange) 37rem); }
  .hero-copy { padding: 28rem var(--gutter) 3.5rem; }
  .hero h1 { font-size: clamp(5.5rem, 10vw, 7rem); }
  .hero h1 i { display: inline; }
  .hero-text { max-width: 38rem; }
  .art-sticker { padding: .9rem 1.1rem; font-size: 1rem; }
  .sticker-a { top: 2rem; left: 2rem; }
  .roadmap { padding-top: 6rem; padding-bottom: 6.5rem; }
  .roadmap-heading { margin-bottom: 3.5rem; }
  .roadmap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; padding-left: 0; }
  .roadmap-grid::before { display: none; }
  .roadmap-card { min-height: 315px; padding: 1.6rem; }
  .roadmap-card::after { display: none; }
  .roadmap-flight-strip { display: flex; justify-content: space-around; gap: 1rem; font-size: .6rem; letter-spacing: .08em; text-align: left; white-space: nowrap; }
  .roadmap-flight-strip i { display: inline; }
  .chart-section { padding-top: 6rem; padding-bottom: 6.5rem; }
  .chart-screen { height: 470px; }
  footer { justify-content: space-between; }
}

@media (min-width: 1024px) {
  .hero { min-height: max(740px, calc(100svh - 118px)); }
  .hero::before { background: linear-gradient(90deg, transparent 25%, rgb(255 93 22 / .08) 38%, rgb(255 110 25 / .88) 64%, rgb(255 110 25 / .96) 100%); }
  .hero-art { height: 100%; object-position: 50% 44%; }
  .hero-copy { width: 48%; margin-left: auto; padding: clamp(2rem, 4svh, 4rem) var(--gutter) clamp(2rem, 4svh, 4rem) 1.5rem; }
  .sticker-b { display: block; }
  .hero h1 { font-size: clamp(4.75rem, min(7.2vw, 10.5svh), 8.5rem); line-height: 1.02; }
  .hero h1 i { display: block; }
  .hero-text { font-size: clamp(.9rem, 1.05vw, 1.08rem); }
  .hero-scroll { margin-top: 2rem; }
  .chart-section { grid-template-columns: minmax(0, .8fr) minmax(0, 1.5fr); gap: 3.5rem; }
  .chart-doodle { display: block; width: fit-content; margin-top: 1.5rem; margin-left: auto; transform: rotate(-7deg); }
}

@media (min-width: 1280px) {
  .roadmap-stamp { position: absolute; z-index: 2; top: 6.5rem; right: var(--gutter); display: grid; place-items: center; min-width: 10rem; padding: .9rem 1.2rem; border: var(--line); background: var(--cream); box-shadow: 5px 5px 0 var(--ink); font-size: .56rem; letter-spacing: .08em; transform: rotate(5deg); }
  .roadmap-stamp strong { margin-top: .2rem; color: var(--orange); font: 400 1.05rem var(--display); letter-spacing: -.02em; }
  .roadmap-route { position: absolute; z-index: 0; top: .15rem; left: 2%; right: 2%; display: block; height: 5.8rem; color: var(--sun); pointer-events: none; }
  .roadmap-route svg { display: block; width: 100%; height: 100%; overflow: visible; }
  .roadmap-route path { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-dasharray: 9 10; vector-effect: non-scaling-stroke; }
  .roadmap-route > span { position: absolute; top: -.35rem; right: -.2rem; display: grid; place-items: center; width: 3rem; height: 3rem; border: 2px solid var(--ink); border-radius: 50%; background: var(--sun); box-shadow: 3px 3px 0 var(--ink); color: var(--ink); font-size: 1.25rem; transform: rotate(7deg); }
  .roadmap-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; padding-top: 5.8rem; }
  .roadmap-card { min-height: 345px; }
  .roadmap-card::after { display: block; top: -2.42rem; left: calc(50% - .55rem); width: .85rem; height: .85rem; }
  .roadmap-card:nth-child(1) { --card-offset: .7rem; --card-tilt: -1deg; }
  .roadmap-card:nth-child(2) { --card-offset: 2.15rem; --card-tilt: .8deg; }
  .roadmap-card:nth-child(3) { --card-offset: 0rem; --card-tilt: -.55deg; }
  .roadmap-card:nth-child(4) { --card-offset: 1.45rem; --card-tilt: .75deg; }
  .roadmap-flight-strip { margin-top: 5.25rem; }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .roadmap-card:hover { transform: translateY(calc(var(--card-offset) - .45rem)) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

[hidden]{display:none!important}
