:root {
  --cyan: #00adee;
  --cyan-2: #4cc9f5;
  --blue: #0077c8;
  --navy: #003d6b;
  --ink: #070b10;
  --ink-2: #0c131b;
  --panel: #121a22;
  --text: #e8eef3;
  --muted: #8b9bab;
  --fur: #c4a574;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(10, 16, 22, 0.62);
  --hud: "Barlow Condensed", "Oswald", sans-serif;
  --word: "Oswald", "Barlow Condensed", sans-serif;
  --body: "Barlow", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

::selection {
  background: var(--cyan);
  color: #041018;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: var(--hud);
}

.wordmark {
  font-family: var(--word);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 0.9;
}

.wordmark .gpro {
  color: var(--cyan);
}

.squares {
  display: flex;
  gap: 3px;
  height: 7px;
}

.squares span {
  width: 7px;
  height: 7px;
}

.squares span:nth-child(1) { background: var(--cyan); }
.squares span:nth-child(2) { background: var(--blue); }
.squares span:nth-child(3) { background: var(--navy); }
.squares span:nth-child(4) { background: #fff; }

.squares--lg {
  gap: 5px;
  height: 12px;
}

.squares--lg span {
  width: 12px;
  height: 12px;
}

.squares--hero {
  gap: 5px;
  height: 10px;
  margin: 14px 0 0;
}

.squares--hero span {
  width: 22px;
  height: 10px;
  animation: squarePulse 2.8s ease-in-out infinite;
}

.squares--hero span:nth-child(2) { animation-delay: 0.15s; }
.squares--hero span:nth-child(3) { animation-delay: 0.3s; }
.squares--hero span:nth-child(4) { animation-delay: 0.45s; }

@keyframes squarePulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.55; transform: scaleY(0.72); }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hud);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.kicker--light { color: #d7f4ff; }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: recBlink 1s steps(1) infinite;
}

.stamp {
  font-family: var(--hud);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.stamp--onimg {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
}

.sec-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.sec-head h2,
.about h2,
.buy h2,
.chart h2 {
  font-family: var(--word);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  margin-top: 10px;
}

.sec-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--hud);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn--rec {
  background: var(--cyan);
  color: #041018;
  box-shadow: 0 0 0 0 rgba(0, 173, 238, 0.45);
  animation: recGlow 2.4s ease-in-out infinite;
}

img[src="x.svg"],
img[src="solana.svg"],
img[src="dexscreener.svg"] {
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 173, 238, 0.28));
}

.btn--rec img[src="x.svg"] {
  filter: brightness(0);
}

.btn--rec:hover {
  transform: translateY(-2px);
  background: var(--cyan-2);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn--onimg {
  background: rgba(7, 11, 16, 0.45);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn--lg {
  min-height: 54px;
  padding: 0 26px;
  font-size: 17px;
}

@keyframes recGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 173, 238, 0.5); }
  50% { box-shadow: 0 0 24px 2px rgba(0, 173, 238, 0.35); }
}

.rec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hud);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rec i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2a2a;
  box-shadow: 0 0 8px #ff2a2a;
}

.rec--on i,
.hud .rec i {
  animation: recBlink 1s steps(1) infinite;
}

@keyframes recBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.15; }
}

/* boot */
.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #020406;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot.is-out {
  opacity: 0;
  visibility: hidden;
}

.boot__iris {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, transparent 0 18%, #000 19%);
  animation: irisOpen 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  transform: scale(8);
}

@keyframes irisOpen {
  to { transform: scale(1); opacity: 0; }
}

.boot__panel {
  position: relative;
  text-align: center;
}

.boot__word {
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 16px 0 10px;
}

.boot__fw,
.boot__status {
  font-family: var(--hud);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 13px;
}

.boot__meter {
  width: min(280px, 70vw);
  height: 3px;
  margin: 18px auto;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.boot__meter i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  animation: meter 1.5s ease forwards;
}

@keyframes meter {
  to { width: 100%; }
}

.boot__squares span {
  animation: squareOn 0.35s ease both;
}

.boot__squares span:nth-child(2) { animation-delay: 0.12s; }
.boot__squares span:nth-child(3) { animation-delay: 0.24s; }
.boot__squares span:nth-child(4) { animation-delay: 0.36s; }

@keyframes squareOn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

/* atmosphere */
.world {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.world__caustics,
.world__motes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world__glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 55%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 173, 238, 0.16), transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(0, 61, 107, 0.28), transparent 50%);
  animation: glowDrift 14s ease-in-out infinite;
}

.world__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 16, 0.2), rgba(7, 11, 16, 0.55) 40%, rgba(7, 11, 16, 0.88)),
    repeating-linear-gradient(
      180deg,
      transparent 0 3px,
      rgba(255, 255, 255, 0.012) 3px 4px
    );
}

.world__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.8s steps(2) infinite;
}

.world__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px 40px rgba(0, 0, 0, 0.55);
}

@keyframes glowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 3%, 0) scale(1.08); }
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 1%); }
}

/* hud chrome */
.hud {
  position: fixed;
  inset: 14px 18px;
  z-index: 40;
  pointer-events: none;
  font-family: var(--hud);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 238, 243, 0.78);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.hud__tl,
.hud__tr,
.hud__bl,
.hud__br {
  position: absolute;
}

.hud__tl { top: 58px; left: 8px; display: flex; gap: 14px; align-items: center; }
.hud__tr { top: 58px; right: 8px; display: flex; gap: 12px; align-items: center; }
.hud__bl { bottom: 18px; left: 8px; }
.hud__br { bottom: 18px; right: 8px; }

.batt {
  width: 28px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  position: relative;
  padding: 2px;
}

.batt::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3px;
  width: 2px;
  height: 6px;
  background: rgba(255, 255, 255, 0.55);
}

.batt b {
  display: block;
  height: 100%;
  width: 86%;
  background: var(--cyan);
  transform-origin: left center;
}

.tick {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(0, 173, 238, 0.55);
}

.tick--tl { top: 50px; left: 0; border-right: 0; border-bottom: 0; }
.tick--tr { top: 50px; right: 0; border-left: 0; border-bottom: 0; }
.tick--bl { bottom: 6px; left: 0; border-right: 0; border-top: 0; }
.tick--br { bottom: 6px; right: 0; border-left: 0; border-top: 0; }

.tape {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.tape i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
}

/* nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.nav.is-on {
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__lens {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 173, 238, 0.18);
  animation: lensRing 3.2s ease-in-out infinite;
}

.nav__lens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes lensRing {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 173, 238, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(0, 173, 238, 0.08); }
}

.nav__name .wordmark {
  font-size: 22px;
}

.nav__links {
  display: flex;
  gap: 26px;
  font-family: var(--hud);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  color: var(--muted);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-hit {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.icon-hit img {
  width: 16px;
  height: 16px;
}

.icon-hit:hover {
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav__burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav__burger span:first-child { top: 15px; }
.nav__burger span:last-child { top: 23px; }

.nav.is-open .nav__burger span:first-child { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:last-child { top: 19px; transform: rotate(-45deg); }

/* hero */
main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  padding: 140px 7vw 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero__symbol {
  margin-top: 18px;
  font-family: var(--hud);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}

.wordmark--hero {
  font-size: clamp(4.2rem, 11vw, 8.4rem);
  animation: titleIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes titleIn {
  from { opacity: 0; transform: translateY(28px) skewY(2deg); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

.hero__lead {
  margin-top: 22px;
  font-family: var(--word);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  text-transform: lowercase;
}

.hero__sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.15rem;
}

.ca-slab {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  background: rgba(18, 26, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 560px;
}

.ca-slab__lbl {
  font-family: var(--hud);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-slab__val {
  flex: 1;
  font-size: 16px;
  letter-spacing: 0.08em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-slab__btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 173, 238, 0.14);
  color: var(--cyan);
  font-family: var(--hud);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-slab__btn.is-ok {
  background: rgba(0, 173, 238, 0.28);
}

.hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.hero__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hud);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__links a:hover { color: var(--text); }

.hero__links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.monitor {
  justify-self: end;
  width: min(100%, 520px);
  animation: monitorIn 1.2s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.5s ease;
}

.monitor:hover {
  transform: translateY(-8px) rotate(-0.6deg);
}

@keyframes monitorIn {
  from { opacity: 0; transform: translateY(30px) rotate(-1.5deg); }
  to { opacity: 1; transform: none; }
}

.monitor__bezel {
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #2a323a, #0b0f14 40%, #1a222a);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.monitor__glass {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  background: #c9b8a0;
}

.monitor__feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: feedFloat 8s ease-in-out infinite;
}

@keyframes feedFloat {
  0%, 100% { transform: scale(1.04) translateY(0); }
  50% { transform: scale(1.09) translateY(-1.5%); }
}

.monitor__hud {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  font-family: var(--hud);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.focus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  border: 1.5px solid rgba(0, 173, 238, 0.95);
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 0;
  animation: focusHunt 2.4s 1.1s ease forwards;
}

.focus::before,
.focus::after {
  content: "";
  position: absolute;
  background: var(--cyan);
}

.focus::before {
  width: 12px;
  height: 1.5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.focus::after {
  width: 1.5px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes focusHunt {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(1.7); }
  25% { opacity: 1; transform: translate(-62%, -42%) scale(1.15); }
  55% { transform: translate(-40%, -58%) scale(1.05); }
  100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
}

.monitor__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 5.5s 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 70% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.monitor__cap {
  margin-top: 12px;
  text-align: center;
  font-family: var(--hud);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

/* about */
.about,
.buy,
.chart {
  padding: 100px 7vw;
}

.clips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clip {
  position: relative;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, rgba(18, 26, 34, 0.9), rgba(12, 19, 27, 0.72));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.clip::before,
.clip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background:
    radial-gradient(circle at 12px 7px, var(--ink) 4px, transparent 5px) 0 0 / 24px 14px;
  opacity: 0.85;
}

.clip::before { top: 0; }
.clip::after { bottom: 0; transform: scaleY(-1); }

.clip__id {
  font-family: var(--hud);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.clip h3 {
  font-family: var(--word);
  font-size: 2rem;
  font-weight: 600;
  text-transform: lowercase;
  margin: 10px 0 8px;
}

.clip p { color: var(--muted); }

.clip--now {
  border-color: rgba(0, 173, 238, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 173, 238, 0.12), 0 20px 40px rgba(0, 0, 0, 0.25);
}

.clip--now h3 { color: var(--cyan); }

.about__story {
  max-width: 760px;
  margin-top: 40px;
  font-size: 1.2rem;
  color: #c5d0d8;
}

.about__punch {
  margin-top: 18px;
  font-family: var(--word);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  text-transform: lowercase;
  color: #fff;
}

/* howtobuy */
.takes {
  list-style: none;
  display: grid;
  gap: 14px;
}

.take {
  display: grid;
  grid-template-columns: auto 72px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(18, 26, 34, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.take:hover {
  border-color: rgba(0, 173, 238, 0.4);
  transform: translateX(6px);
}

.take__n {
  font-family: var(--hud);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.take__logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #0a1016;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.take__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.take h3 {
  font-family: var(--word);
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: lowercase;
}

.take p {
  color: var(--muted);
  margin-top: 4px;
}

.buy__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* chart */
.deck {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1016;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.deck__bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  font-family: var(--hud);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(90deg, #101820, #0c141c);
  border-bottom: 1px solid var(--line);
}

.deck iframe {
  width: 100%;
  height: min(72vh, 680px);
  border: 0;
  background: #0a1016;
}

/* join — banner only here, locked 3:1 */
.join {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 7vw 40px;
  overflow: hidden;
}

.join__banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  aspect-ratio: 3 / 1;
}

.join__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken 22s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-1%, 0.5%, 0); }
}

.join__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 14, 0.88) 0%, rgba(6, 10, 14, 0.55) 42%, rgba(6, 10, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 10, 14, 0.25), transparent 20%, rgba(6, 10, 14, 0.55));
}

.join__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.wordmark--join {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin-top: 8px;
}

.join__line {
  margin-top: 14px;
  font-family: var(--word);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 600;
  text-transform: lowercase;
}

.join__sub {
  margin-top: 10px;
  color: rgba(232, 238, 243, 0.78);
  font-size: 1.15rem;
}

.join__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* footer */
.foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 7vw 36px;
  border-top: 1px solid var(--line);
  background: rgba(7, 11, 16, 0.92);
}

.foot__brand .wordmark { font-size: 28px; }

.foot__note {
  font-family: var(--hud);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}

.foot__icons {
  display: flex;
  gap: 10px;
}

.foot__icons a,
.foot__icons span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.foot__icons img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.foot__icons a:hover { border-color: var(--cyan); }

/* reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.take.reveal:nth-child(2) { transition-delay: 0.08s; }
.take.reveal:nth-child(3) { transition-delay: 0.16s; }
.take.reveal:nth-child(4) { transition-delay: 0.24s; }
.clip.reveal:nth-child(2) { transition-delay: 0.1s; }
.clip.reveal:nth-child(3) { transition-delay: 0.2s; }

@media (max-width: 980px) {
  .hud { display: none; }
  .hero__grid,
  .clips,
  .sec-head--row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .sec-head--row { gap: 16px; }
  .monitor { justify-self: stretch; width: 100%; max-width: 440px; }
  .nav__links {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(10, 16, 22, 0.94);
    border: 1px solid var(--line);
    border-radius: 16px;
    backdrop-filter: blur(16px);
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: 14px 12px; }
  .nav__burger { display: block; }
  .nav .btn--rec { display: none; }
}

@media (max-width: 720px) {
  .hero,
  .about,
  .buy,
  .chart {
    padding-left: 20px;
    padding-right: 20px;
  }
  .take {
    grid-template-columns: auto 1fr;
  }
  .take__logo { display: none; }
  .foot {
    flex-direction: column;
    text-align: center;
  }
  .ca-slab { flex-wrap: wrap; }
  .wordmark--hero { font-size: 18vw; }
  .join {
    aspect-ratio: auto;
    padding: 0 0 48px;
  }
  .join__banner {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    inset: auto;
  }
  .join__veil {
    position: relative;
    inset: auto;
    height: 0;
    background: none;
  }
  .stamp--onimg {
    position: absolute;
    top: 14px;
    left: 20px;
    margin: 0;
    z-index: 3;
  }
  .join__content {
    padding: 28px 20px 0;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .boot { display: none; }
}
