:root {
  --ink: #070a0d;
  --ink-soft: #0d1217;
  --panel: rgba(17, 23, 29, 0.76);
  --panel-solid: #10161c;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8f9;
  --muted: #a6b0ba;
  --cyan: #7dfbe8;
  --cyan-strong: #38e8d2;
  --yellow: #f9d34a;
  --red: #ff4c52;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(56, 232, 210, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(249, 211, 74, 0.08), transparent 28%),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection { background: var(--cyan); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .065;
  pointer-events: none;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .17;
}
.ambient-one { width: 420px; height: 420px; top: 24%; left: -180px; background: var(--cyan); }
.ambient-two { width: 360px; height: 360px; top: 64%; right: -160px; background: var(--yellow); opacity: .09; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px 10px 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, top .3s ease;
}
.site-header.is-scrolled {
  top: 10px;
  background: rgba(7, 10, 13, 0.82);
  border-color: var(--line);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 48px;
  height: 48px;
  padding: 3px;
  border: 1px solid rgba(125, 251, 232, .5);
  border-radius: 50%;
  background: #9cf7e8;
  box-shadow: 0 0 28px rgba(56, 232, 210, .18);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 16px; letter-spacing: .12em; }
.brand-copy small { color: var(--muted); font-size: 11px; }

.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: #cbd2d8; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--cyan); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.header-cta:hover { background: rgba(125,251,232,.09); border-color: rgba(125,251,232,.45); transform: translateY(-1px); }
.header-cta svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 138px 24px 72px;
  overflow-x: clip;
}
.hero-grid {
  width: min(100%, var(--max));
  min-width: 0;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}
.hero-copy,
.hero-visual { min-width: 0; }
.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d8dee3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.eyebrow-id { color: var(--cyan); }
.hero h1 {
  margin: 28px 0 14px;
  font-size: clamp(76px, 10.4vw, 156px);
  line-height: .73;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 span { font-weight: 950; }
.hero h1 em {
  margin-top: .17em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,248,249,.64);
  font-style: normal;
  font-weight: 850;
  letter-spacing: -.055em;
}
.hero-kicker { margin: 30px 0 10px; color: var(--yellow); font-size: clamp(20px, 2vw, 28px); font-weight: 850; letter-spacing: -.025em; }
.hero-description { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.45vw, 19px); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .015em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { background: var(--cyan); color: var(--ink); box-shadow: 0 18px 48px rgba(56,232,210,.18); }
.button-primary:hover { background: #a6fff2; box-shadow: 0 22px 58px rgba(56,232,210,.25); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.045); color: var(--text); }
.button-secondary:hover { border-color: rgba(249,211,74,.55); background: rgba(249,211,74,.08); }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 660px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div { padding-right: 20px; }
.hero-meta div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-meta strong { display: block; font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -.04em; }
.hero-meta span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 590px; isolation: isolate; perspective: 1200px; }
.visual-orbit { position: absolute; border: 1px solid rgba(125,251,232,.18); border-radius: 50%; z-index: -2; }
.orbit-one { width: 530px; height: 530px; animation: spin 22s linear infinite; }
.orbit-one::before, .orbit-one::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.orbit-one::before { top: 18%; left: 7%; }
.orbit-one::after { right: 4%; bottom: 25%; background: var(--yellow); box-shadow: 0 0 18px var(--yellow); }
.orbit-two { width: 430px; height: 430px; border-style: dashed; border-color: rgba(249,211,74,.18); animation: spinReverse 28s linear infinite; }
.ape-card {
  width: min(100%, 440px);
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
  box-shadow: var(--shadow), 0 0 0 1px rgba(125,251,232,.06) inset;
  backdrop-filter: blur(18px);
  transform: rotate(-2deg);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}
.ape-card-top, .ape-card-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 46px; padding: 0 8px; }
.ape-card-top { color: #bec7ce; font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.live-chip { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); }
.live-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.ape-image-wrap { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: #9cf7e8; transform: translateZ(24px); }
.ape-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ape-image-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), inset 0 -50px 70px rgba(0,0,0,.08); pointer-events: none; }
.scanline { position: absolute; inset: -30% 0 auto; height: 26%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.15), transparent); mix-blend-mode: overlay; animation: scan 5.8s ease-in-out infinite; }
.ape-card-bottom { padding-top: 6px; }
.ape-card-bottom small { display: block; color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.ape-card-bottom strong { display: block; margin-top: 3px; font-size: 13px; letter-spacing: .035em; }
.verified-badge { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); }
.verified-badge svg { width: 22px; fill: currentColor; stroke: var(--ink); stroke-width: 2; }
.verified-badge svg path:last-child { fill: none; }
.floating-tag { position: absolute; z-index: 4; padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(7,10,13,.78); color: #dce2e7; font-size: 9px; font-weight: 900; letter-spacing: .16em; backdrop-filter: blur(14px); box-shadow: 0 12px 30px rgba(0,0,0,.26); }
.tag-one { top: 15%; left: 0; animation: float 4.2s ease-in-out infinite; }
.tag-two { right: -2%; bottom: 20%; animation: float 4.8s ease-in-out infinite .4s; }
.tag-three { left: 4%; bottom: 10%; color: var(--yellow); animation: float 5.2s ease-in-out infinite .8s; }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; display: inline-flex; align-items: center; gap: 9px; color: #7f8b95; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; animation: bob 1.8s ease-in-out infinite; }

.marquee { border-block: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.018); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 18px 0; animation: marquee 28s linear infinite; }
.marquee span { color: #cfd6dc; font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.marquee i { width: 7px; height: 7px; border-radius: 2px; background: var(--cyan); transform: rotate(45deg); }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 128px 0; }
.section-number { padding-bottom: 20px; border-bottom: 1px solid var(--line); color: #707d87; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.micro-label { margin: 0 0 18px; color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 9vw, 130px); padding-top: 56px; }
.section-heading h2, .collection-copy h2, .community-copy h2, .final-cta h2 { margin: 0; font-size: clamp(46px, 6.2vw, 88px); line-height: .96; letter-spacing: -.06em; }
.section-heading h2 span { color: transparent; -webkit-text-stroke: 1px rgba(247,248,249,.48); }
.about-copy > p { max-width: 680px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-copy .lead { margin-top: 0; color: #e9edf0; font-size: clamp(20px, 2.3vw, 30px); line-height: 1.42; letter-spacing: -.025em; }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.value-row article { min-height: 210px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.025); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.value-row article:hover { transform: translateY(-5px); border-color: rgba(125,251,232,.32); background: rgba(125,251,232,.04); }
.value-row article > span { color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.value-row h3 { margin: 50px 0 10px; font-size: 17px; }
.value-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.collection-panel { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; margin-top: 34px; padding: clamp(24px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(125,251,232,.055), rgba(255,255,255,.018) 45%, rgba(249,211,74,.04)); overflow: hidden; }
.collection-panel::before { content: ""; position: absolute; width: 450px; height: 450px; top: -300px; right: -120px; border-radius: 50%; background: var(--cyan); filter: blur(100px); opacity: .08; }
.collection-copy { position: relative; z-index: 1; padding-right: clamp(0px, 3vw, 34px); }
.collection-copy h2 { font-size: clamp(48px, 5.5vw, 78px); }
.collection-copy > p:not(.micro-label) { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.contract-box { max-width: 600px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; padding: 15px 16px 15px 18px; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(0,0,0,.2); }
.contract-box small { display: block; margin-bottom: 4px; color: #72808a; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.contract-box code { color: var(--cyan); font-family: "SFMono-Regular", Consolas, monospace; font-size: 15px; }
.contract-box button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.045); color: #dbe1e6; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.contract-box button:hover { background: rgba(125,251,232,.08); border-color: rgba(125,251,232,.35); }
.contract-box button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.contract-box button span { font-size: 11px; font-weight: 800; }
.collection-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; }
.collection-links a { color: #dbe2e7; font-size: 12px; font-weight: 850; }
.collection-links a span { margin-left: 5px; color: var(--yellow); }
.data-stack { position: relative; z-index: 1; display: grid; gap: 12px; align-content: center; }
.data-stack article { min-height: 135px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,10,13,.45); backdrop-filter: blur(12px); transition: border-color .25s ease, transform .25s ease; }
.data-stack article:hover { border-color: rgba(125,251,232,.28); transform: translateX(-4px); }
.data-stack span { display: block; color: #75828d; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.data-stack strong { display: block; margin-top: 14px; font-size: 24px; letter-spacing: -.03em; }
.data-stack small { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.status-text { display: flex !important; align-items: center; gap: 9px; color: var(--cyan); }
.status-text i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }

.community-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 110px); padding-top: 54px; }
.community-copy h2 { font-size: clamp(52px, 6.5vw, 90px); }
.community-copy > p:not(.micro-label) { max-width: 520px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.social-card { min-height: 170px; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.025); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.social-card:hover { transform: translateY(-5px); border-color: rgba(125,251,232,.35); background: rgba(125,251,232,.045); }
.social-card > svg { align-self: start; width: 32px; height: 32px; fill: none; stroke: var(--cyan); stroke-width: 1.5; }
.social-card:first-child > svg, .social-card:nth-child(4) > svg { fill: var(--cyan); stroke: none; }
.social-card:nth-child(3) > svg { fill: var(--cyan); stroke: none; }
.social-card:nth-child(3) .eye { fill: var(--ink); }
.social-card:nth-child(4) .play { fill: var(--ink); }
.social-card .fill-dot { fill: var(--cyan); stroke: none; }
.social-card span { display: grid; gap: 4px; }
.social-card small { color: #7c8993; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.social-card strong { font-size: 18px; }
.social-card b { color: var(--yellow); font-size: 18px; }

.final-cta { position: relative; width: min(calc(100% - 48px), var(--max)); min-height: 520px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 30px; margin: 10px auto 80px; padding: 44px clamp(30px, 6vw, 80px); border: 1px solid var(--line); border-radius: 38px; background: var(--cyan); color: var(--ink); overflow: hidden; }
.final-cta::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(7,10,13,.16) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(to right, black, transparent 70%); pointer-events: none; }
.final-cta-art { position: relative; z-index: 1; align-self: end; }
.final-cta-art img { display: block; width: min(100%, 420px); height: auto; margin-inline: auto; border-radius: 50% 50% 24px 24px; object-fit: contain; filter: drop-shadow(0 30px 32px rgba(7,10,13,.22)); }
.final-cta-copy { position: relative; z-index: 2; }
.final-cta .micro-label { color: rgba(7,10,13,.62); }
.final-cta h2 { font-size: clamp(58px, 7vw, 102px); }
.final-cta .button-primary { margin-top: 30px; background: var(--ink); color: var(--text); box-shadow: 0 18px 46px rgba(7,10,13,.22); }
.final-cta .button-primary:hover { background: #151b20; }

.site-footer { width: min(calc(100% - 48px), var(--max)); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; margin: 0 auto; padding: 38px 0 48px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; background: #9cf7e8; }
.footer-brand div { display: grid; gap: 2px; }
.footer-brand strong { color: var(--text); font-size: 14px; letter-spacing: .12em; }
.footer-brand span { font-size: 11px; }
.site-footer > p { margin: 0; font-size: 12px; }
.footer-links { display: flex; justify-content: end; gap: 20px; }
.footer-links a { font-size: 11px; font-weight: 800; }
.footer-links a:hover { color: var(--cyan); }
.site-footer > small { grid-column: 1 / -1; color: #7c8993; font-size: 10px; }

.toast { position: fixed; left: 50%; bottom: 22px; z-index: 200; padding: 12px 16px; border: 1px solid rgba(125,251,232,.35); border-radius: 12px; background: rgba(7,10,13,.9); color: var(--cyan); font-size: 12px; font-weight: 800; box-shadow: 0 18px 45px rgba(0,0,0,.34); backdrop-filter: blur(14px); opacity: 0; pointer-events: none; transform: translate(-50%, 14px); transition: opacity .22s ease, transform .22s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.22,.75,.25,1), transform .75s cubic-bezier(.22,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes scan { 0%, 16% { transform: translateY(-130%); } 45%, 100% { transform: translateY(650%); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 130px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 540px; }
  .about-grid, .community-shell { grid-template-columns: 1fr; }
  .about-copy { max-width: 850px; }
  .collection-panel { grid-template-columns: 1fr; }
  .data-stack { grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
  .data-stack article { min-height: 160px; }
  .final-cta { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 62px; padding: 8px 9px; border-radius: 16px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .header-cta { padding: 11px 12px; font-size: 0; }
  .header-cta svg { width: 18px; }
  .hero { min-height: auto; padding: 118px 20px 82px; }
  .hero h1 { font-size: clamp(62px, 22vw, 104px); }
  .hero h1 em { font-size: .62em; letter-spacing: -.035em; }
  .hero-description { font-size: 15px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta div, .hero-meta div + div { padding: 0 0 14px; border-left: 0; border-bottom: 1px solid var(--line); }
  .hero-meta div:last-child { border-bottom: 0; }
  .hero-visual { min-height: 460px; }
  .ape-card { width: min(90vw, 380px); }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 340px; height: 340px; }
  .tag-one { left: 1%; }
  .tag-two { right: 0; }
  .section { width: min(calc(100% - 32px), var(--max)); padding: 92px 0; }
  .about-grid, .community-shell { padding-top: 38px; }
  .value-row, .social-grid, .data-stack { grid-template-columns: 1fr; }
  .value-row article { min-height: 175px; }
  .value-row h3 { margin-top: 34px; }
  .collection-panel { padding: 26px 18px; border-radius: 26px; }
  .contract-box { align-items: flex-start; }
  .contract-box code { font-size: 13px; }
  .social-card { min-height: 130px; }
  .final-cta { width: min(calc(100% - 32px), var(--max)); min-height: 680px; grid-template-columns: 1fr; align-content: end; padding: 34px 24px; border-radius: 28px; }
  .final-cta-art { position: absolute; inset: 10px 0 auto; display: flex; justify-content: center; opacity: .55; }
  .final-cta-art img { width: min(82vw, 350px); max-width: calc(100% - 32px); }
  .final-cta-copy { align-self: end; padding-top: 290px; }
  .site-footer { width: min(calc(100% - 32px), var(--max)); grid-template-columns: 1fr; }
  .footer-links { justify-content: start; flex-wrap: wrap; }
  .site-footer > small { grid-column: auto; }
}

@media (max-width: 430px) {
  .eyebrow-id { display: none; }
  .hero-actions .button { width: 100%; }
  .floating-tag { display: none; }
  .hero-visual { min-height: 410px; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 290px; height: 290px; }
  .contract-box { flex-direction: column; }
  .contract-box button { width: 100%; justify-content: center; }
}

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