/* ==========================================================================
   THE AI PRESIDENT — $AITRUMP
   Cinematic Futuristic Political-AI Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --navy-950: #02060f;
  --navy-900: #030812;
  --navy-850: #06101f;
  --navy-800: #0a1830;
  --navy-700: #122744;
  --cyan: #00e8ff;
  --cyan-hot: #5af7ff;
  --cyan-dim: #00a8b8;
  --purple: #9945ff;
  --magenta: #dc1fff;
  --sol-green: #14f195;
  --red: #e10600;
  --red-hot: #ff2a2a;
  --amber: #f0a050;
  --silver: #c5ceda;
  --white: #f2f6fb;
  --white-soft: rgba(242, 246, 251, 0.78);
  --white-mute: rgba(242, 246, 251, 0.48);

  --grad-solana: linear-gradient(120deg, #14f195 0%, #03e1ff 45%, #dc1fff 100%);
  --grad-hero: linear-gradient(135deg, rgba(0, 232, 255, 0.2), rgba(153, 69, 255, 0.18), rgba(225, 6, 0, 0.12));
  --grad-panel: linear-gradient(160deg, rgba(18, 39, 68, 0.85), rgba(3, 8, 18, 0.92));
  --grad-text: linear-gradient(100deg, #5af7ff 0%, #9945ff 55%, #ff4d6d 100%);

  --font-display: "Orbitron", system-ui, sans-serif;
  --font-ui: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 7rem;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --clip-corner: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));

  --nav-h: 76px;
  --container: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.55s;

  --border: rgba(0, 232, 255, 0.22);
  --border-strong: rgba(0, 232, 255, 0.45);
  --glass: rgba(6, 16, 31, 0.62);
  --shadow-glow: 0 0 40px rgba(0, 232, 255, 0.15);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: var(--white);
  background-color: var(--navy-900);
  background-image:
    radial-gradient(1000px 520px at 85% -5%, rgba(153, 69, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at 8% 18%, rgba(0, 232, 255, 0.12), transparent 55%),
    radial-gradient(700px 380px at 50% 100%, rgba(225, 6, 0, 0.1), transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 232, 255, 0.07), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(153, 69, 255, 0.08), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.04), transparent 35%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}

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

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

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

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

ul {
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

::selection {
  background: rgba(0, 232, 255, 0.28);
  color: var(--white);
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-cyan {
  color: var(--cyan-hot);
}

/* --------------------------------------------------------------------------
   3. ANIMATED PAGE BACKGROUND UTILITIES
   -------------------------------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 232, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

main,
.nav,
.footer,
.preloader,
.news-ticker,
.side-nav,
.mobile-menu,
.modal {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   4. CURSOR GLOW
   -------------------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 232, 255, 0.12) 0%, rgba(153, 69, 255, 0.06) 35%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
  will-change: transform;
}

.cursor-glow.is-active {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   5. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 232, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

.preloader__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 0%, rgba(0, 232, 255, 0.12) 50%, transparent 100%);
  background-size: 100% 30%;
  animation: scanMove 2.2s linear infinite;
  pointer-events: none;
}

@keyframes scanMove {
  from { background-position: 0 -30%; }
  to { background-position: 0 130%; }
}

.preloader__core {
  text-align: center;
  padding: var(--space-6);
  position: relative;
  z-index: 1;
}

.preloader__seal {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-5);
  position: relative;
  display: grid;
  place-items: center;
}

.preloader__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 232, 255, 0.35);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 42%, 78% 42%, 78% 58%, 100% 58%, 100% 100%, 0 100%, 0 58%, 22% 58%, 22% 42%, 0 42%);
}

.preloader__ring--outer {
  animation: spin 8s linear infinite;
  border-color: rgba(0, 232, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 232, 255, 0.2);
}

.preloader__ring--mid {
  inset: 12px;
  border-color: rgba(153, 69, 255, 0.55);
  animation: spin 5s linear infinite reverse;
}

.preloader__ring--inner {
  inset: 26px;
  border-color: rgba(225, 6, 0, 0.45);
  animation: spin 3.5s linear infinite;
}

.preloader__pulse {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 232, 255, 0.35), transparent 70%);
  animation: pulse 1.4s ease-in-out infinite;
}

.preloader__mark {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--cyan-hot);
  text-shadow: 0 0 20px rgba(0, 232, 255, 0.6);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader__label {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.28em;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.preloader__bar {
  width: min(280px, 70vw);
  height: 3px;
  margin: 0 auto var(--space-3);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  clip-path: var(--clip-corner);
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-solana);
  transition: width 0.1s linear;
}

.preloader__pct {
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: var(--space-2);
}

.preloader__status {
  font-size: 0.7rem;
  color: var(--white-mute);
  letter-spacing: 0.16em;
}

body.is-loading {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(3, 8, 18, 0.88);
  border-bottom-color: rgba(0, 232, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__inner {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.nav__logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(0, 232, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 232, 255, 0.25);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav__brand-ticker {
  font-size: 0.68rem;
  color: var(--cyan);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-soft);
  transition: color 0.25s ease;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--grad-solana);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--border);
  clip-path: var(--clip-corner);
  background: rgba(6, 16, 31, 0.6);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(2, 6, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  padding-top: calc(var(--nav-h) + 1rem);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open[hidden] {
  pointer-events: auto;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem;
  transform: translateY(-12px);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(0, 232, 255, 0.1);
  color: var(--white-soft);
}

.mobile-menu__link:hover {
  color: var(--cyan-hot);
}

.mobile-menu__cta {
  margin-top: 1.25rem;
  justify-content: center;
}

/* Side nav */
.side-nav {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.side-nav__dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 232, 255, 0.45);
  background: transparent;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.side-nav__dot.is-active,
.side-nav__dot:hover {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 232, 255, 0.7);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border-strong);
  clip-path: var(--clip-corner);
  background: rgba(6, 16, 31, 0.75);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(0, 232, 255, 0.22), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(120deg, rgba(0, 232, 255, 0.22), rgba(153, 69, 255, 0.28));
  border-color: rgba(0, 232, 255, 0.55);
  box-shadow: 0 0 24px rgba(0, 232, 255, 0.15), inset 0 0 20px rgba(0, 232, 255, 0.05);
}

.btn--primary:hover {
  box-shadow: 0 0 32px rgba(0, 232, 255, 0.28), inset 0 0 24px rgba(153, 69, 255, 0.08);
  border-color: var(--cyan-hot);
}

.btn--accent {
  background: linear-gradient(120deg, rgba(225, 6, 0, 0.35), rgba(153, 69, 255, 0.28));
  border-color: rgba(255, 80, 80, 0.55);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(197, 206, 218, 0.28);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-hot);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
}

.btn--lg {
  padding: 1.05rem 1.75rem;
  font-size: 0.82rem;
}

.btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.btn:hover .btn__shine {
  transform: translateX(120%);
}

.magnetic {
  will-change: transform;
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 1.5rem) 0 4rem;
  overflow: hidden;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 232, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
  animation: gridDrift 22s linear infinite;
  pointer-events: none;
}

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

.hero__circuits {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 232, 255, 0.08) 50%, transparent 100%) 10% 20% / 180px 1px no-repeat,
    linear-gradient(180deg, transparent 0%, rgba(153, 69, 255, 0.12) 50%, transparent 100%) 18% 0 / 1px 220px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(225, 6, 0, 0.1) 50%, transparent 100%) 80% 70% / 200px 1px no-repeat;
  opacity: 0.7;
  animation: circuitPulse 4s ease-in-out infinite;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 3px
  );
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  will-change: transform;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.92) 0%, rgba(3, 8, 18, 0.55) 38%, rgba(3, 8, 18, 0.2) 58%, rgba(3, 8, 18, 0.75) 100%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.35) 0%, transparent 30%, rgba(3, 8, 18, 0.55) 70%, rgba(3, 8, 18, 0.95) 100%);
}

.hero__glow {
  position: absolute;
  inset: auto 20% 10% 20%;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 255, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  max-width: 720px;
  padding-bottom: 1rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(20, 241, 149, 0.4);
  background: rgba(20, 241, 149, 0.08);
  clip-path: var(--clip-corner);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--sol-green);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sol-green);
  box-shadow: 0 0 10px var(--sol-green);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero__title {
  margin-bottom: 0.75rem;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(0, 232, 255, 0.25);
}

.hero__ticker {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__ticker-tag {
  font-size: 0.7rem;
  color: var(--white-mute);
  letter-spacing: 0.2em;
}

.hero__ticker-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  background: var(--grad-solana);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.08em;
}

.hero__copy {
  max-width: 34rem;
  color: var(--white-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero__ca {
  max-width: 480px;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  background: rgba(3, 8, 18, 0.72);
  border: 1px solid var(--border);
  clip-path: var(--clip-corner);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ca-box__label {
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.16em;
  flex-shrink: 0;
}

.ca-box__addr {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  color: var(--silver);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-box__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(0, 232, 255, 0.3);
  color: var(--cyan-hot);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.ca-box__copy:hover,
.ca-box__copy.is-copied {
  background: rgba(0, 232, 255, 0.12);
  border-color: var(--cyan);
}

.hero__labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(0, 232, 255, 0.7);
  border: 1px solid rgba(0, 232, 255, 0.25);
  padding: 0.35rem 0.65rem;
  background: rgba(3, 8, 18, 0.45);
  animation: floatY 5s ease-in-out infinite;
}

.float-label--1 {
  top: 22%;
  right: 8%;
}

.float-label--2 {
  top: 42%;
  right: 14%;
  animation-delay: -1.5s;
  color: rgba(153, 69, 255, 0.85);
  border-color: rgba(153, 69, 255, 0.3);
}

.float-label--3 {
  top: 62%;
  right: 6%;
  animation-delay: -3s;
  color: rgba(255, 80, 80, 0.85);
  border-color: rgba(255, 80, 80, 0.3);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__solana {
  position: absolute;
  right: 6%;
  bottom: 18%;
  z-index: 3;
  opacity: 0.55;
  animation: floatY 6s ease-in-out infinite;
  pointer-events: none;
}

.solana-mark {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(3, 225, 255, 0.45));
}

/* Glitch */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.glitch.is-glitching::before {
  opacity: 0.75;
  color: var(--cyan);
  transform: translate(2px, -1px);
  clip-path: inset(0 0 55% 0);
}

.glitch.is-glitching::after {
  opacity: 0.75;
  color: var(--magenta);
  transform: translate(-2px, 1px);
  clip-path: inset(45% 0 0 0);
}

/* --------------------------------------------------------------------------
   9. NEWS TICKER
   -------------------------------------------------------------------------- */
.news-ticker {
  position: relative;
  z-index: 5;
  border-block: 1px solid rgba(0, 232, 255, 0.18);
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.18), rgba(3, 8, 18, 0.95) 25%, rgba(3, 8, 18, 0.95) 75%, rgba(153, 69, 255, 0.2));
  overflow: hidden;
  padding: 0.85rem 0;
}

.news-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.news-ticker__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: var(--white);
}

.news-ticker__sep {
  color: var(--cyan);
  opacity: 0.7;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   10. SECTIONS SHARED
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-9) 0;
  position: relative;
}

.section-head {
  margin-bottom: var(--space-7);
  max-width: 720px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--white-soft);
  font-size: 1.15rem;
  max-width: 40rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* --------------------------------------------------------------------------
   11. ABOUT
   -------------------------------------------------------------------------- */
.about__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.holo-frame {
  position: relative;
  clip-path: var(--clip-corner);
  border: 1px solid rgba(0, 232, 255, 0.35);
  background: rgba(6, 16, 31, 0.5);
  overflow: hidden;
  box-shadow: var(--shadow-glow), 0 0 0 1px rgba(153, 69, 255, 0.12);
}

.holo-frame__corners::before,
.holo-frame__corners::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  border: 2px solid var(--cyan);
  pointer-events: none;
}

.holo-frame__corners::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.holo-frame__corners::after {
  right: 10px;
  bottom: 10px;
  border-left: none;
  border-top: none;
  border-color: var(--magenta);
}

.holo-frame__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 232, 255, 0.15), transparent);
  background-size: 100% 40%;
  animation: scanMove 3.5s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.about__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.holo-frame__labels {
  position: absolute;
  inset: auto 12px 12px 12px;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sys-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.45rem;
  background: rgba(3, 8, 18, 0.7);
  border: 1px solid rgba(0, 232, 255, 0.3);
  color: var(--cyan);
}

.data-lines {
  position: absolute;
  right: -12%;
  top: 15%;
  bottom: 15%;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.data-lines span {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  animation: dataPulse 2.4s ease-in-out infinite;
}

.data-lines span:nth-child(2) { animation-delay: 0.3s; width: 70%; }
.data-lines span:nth-child(3) { animation-delay: 0.6s; width: 90%; }
.data-lines span:nth-child(4) { animation-delay: 0.9s; width: 55%; }

@keyframes dataPulse {
  0%, 100% { opacity: 0.25; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

.about__text {
  color: var(--white-soft);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 34rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.about__stat {
  padding: 1rem 0.85rem;
  background: var(--grad-panel);
  border: 1px solid var(--border);
  clip-path: var(--clip-corner);
}

.about__stat-key {
  display: block;
  font-size: 0.65rem;
  color: var(--white-mute);
  letter-spacing: 0.16em;
  margin-bottom: 0.4rem;
}

.about__stat-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.about__stat-unit {
  display: block;
  font-size: 0.65rem;
  color: var(--cyan);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   12. NARRATIVE STAGES
   -------------------------------------------------------------------------- */
.stages {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: var(--space-7);
}

.stage {
  position: relative;
  padding: 1.75rem 1.35rem;
  background: var(--grad-panel);
  border: 1px solid var(--border);
  clip-path: var(--clip-corner);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.3s ease;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 232, 255, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stage:hover,
.stage.is-active {
  border-color: rgba(0, 232, 255, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 232, 255, 0.1);
}

.stage:hover::before,
.stage.is-active::before {
  opacity: 1;
}

.stage__num {
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.stage__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.stage__text {
  color: var(--white-soft);
  font-size: 1.05rem;
  line-height: 1.45;
}

.stage__icon {
  width: 40px;
  height: 40px;
  margin-top: 1.25rem;
  color: var(--cyan);
  opacity: 0.7;
}

.stage-connector {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 232, 255, 0.15), var(--cyan), rgba(153, 69, 255, 0.5));
  position: relative;
  overflow: hidden;
}

.stage-connector span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translateX(-100%);
  animation: connectorSweep 2.4s ease-in-out infinite;
}

@keyframes connectorSweep {
  to { transform: translateX(100%); }
}

.narrative__finale {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(0, 232, 255, 0.15);
}

/* --------------------------------------------------------------------------
   13. BANNER SECTION
   -------------------------------------------------------------------------- */
.banner-section {
  position: relative;
  min-height: clamp(420px, 62vw, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid rgba(0, 232, 255, 0.15);
}

.banner-section__media {
  position: absolute;
  inset: -4%;
  will-change: transform;
}

.banner-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.banner-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.82) 0%, rgba(3, 8, 18, 0.35) 45%, rgba(3, 8, 18, 0.7) 100%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.25), rgba(3, 8, 18, 0.75));
}

.banner-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 720px;
}

.banner-section__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--amber);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(240, 160, 80, 0.35);
  background: rgba(240, 160, 80, 0.08);
}

.banner-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.65);
}

/* --------------------------------------------------------------------------
   14. TOKEN DASHBOARD
   -------------------------------------------------------------------------- */
.token-dash {
  background: var(--grad-panel);
  border: 1px solid var(--border);
  clip-path: var(--clip-corner);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.token-dash::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-solana);
}

.token-dash__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 232, 255, 0.1);
  border: 1px solid rgba(0, 232, 255, 0.12);
  margin-bottom: 1.5rem;
}

.token-cell {
  background: rgba(3, 8, 18, 0.85);
  padding: 1.25rem 1.1rem;
}

.token-cell--wide {
  grid-column: 1 / -1;
}

.token-cell__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--white-mute);
  margin-bottom: 0.55rem;
}

.token-cell__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.token-cell__ca {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.token-cell__ca code {
  font-size: 1rem;
  color: var(--silver);
  word-break: break-all;
}

.token-dash__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sol-green);
}

/* --------------------------------------------------------------------------
   15. WHY / FEATURES
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature {
  position: relative;
  padding: 1.75rem 1.35rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10, 24, 48, 0.75), rgba(3, 8, 18, 0.9));
  clip-path: var(--clip-corner);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease;
  min-height: 240px;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 232, 255, 0.55);
}

.feature__circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent, rgba(0, 232, 255, 0.25), transparent) 0 30% / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(153, 69, 255, 0.3), transparent) 70% 0 / 1px 100% no-repeat;
}

.feature__symbol {
  width: 42px;
  height: 42px;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(0, 232, 255, 0.35));
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.feature__text {
  color: var(--white-soft);
  font-size: 1.05rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   16. GALLERY
   -------------------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  clip-path: var(--clip-corner);
  background: var(--navy-850);
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.06);
}

.gallery__item--main,
.gallery__item--logo {
  min-height: 320px;
}

.gallery__item--banner {
  grid-column: 1 / -1;
  min-height: 220px;
}

.gallery__item--banner img {
  object-position: center 28%;
}

.gallery__sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}

.gallery__item:hover .gallery__sweep {
  transform: translateX(120%);
}

.gallery__cap {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.55rem;
  background: rgba(3, 8, 18, 0.75);
  border: 1px solid rgba(0, 232, 255, 0.25);
  color: var(--cyan);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal[hidden] {
  display: grid !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal.is-open[hidden] {
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 15, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.modal__figure {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  transform: scale(0.94);
  transition: transform 0.4s var(--ease-out);
}

.modal.is-open .modal__figure {
  transform: scale(1);
}

.modal__figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border: 1px solid rgba(0, 232, 255, 0.3);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.modal__cap {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.modal__close,
.modal__nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(6, 16, 31, 0.8);
  color: var(--white);
  clip-path: var(--clip-corner);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.modal__close:hover,
.modal__nav:hover {
  border-color: var(--cyan);
  color: var(--cyan-hot);
}

.modal__close {
  top: 1.25rem;
  right: 1.25rem;
}

.modal__nav--prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.modal__nav--next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   17. TERMINAL
   -------------------------------------------------------------------------- */
.terminal {
  max-width: 820px;
  margin: 0 auto;
  background: #02060f;
  border: 1px solid rgba(0, 232, 255, 0.28);
  clip-path: var(--clip-corner);
  box-shadow: 0 0 50px rgba(0, 232, 255, 0.08), inset 0 0 40px rgba(0, 232, 255, 0.03);
  overflow: hidden;
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(10, 24, 48, 0.9);
  border-bottom: 1px solid rgba(0, 232, 255, 0.15);
}

.terminal__dots {
  display: flex;
  gap: 0.35rem;
}

.terminal__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
  display: block;
}

.terminal__dots i:nth-child(2) { background: #febc2e; }
.terminal__dots i:nth-child(3) { background: #28c840; }

.terminal__title {
  flex: 1;
  font-size: 0.72rem;
  color: var(--white-mute);
  letter-spacing: 0.08em;
}

.terminal__live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  color: var(--sol-green);
  letter-spacing: 0.12em;
}

.terminal__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sol-green);
  box-shadow: 0 0 8px var(--sol-green);
  animation: pulse 1.2s ease-in-out infinite;
}

.terminal__body {
  min-height: 220px;
  padding: 1.25rem 1.35rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--silver);
}

.terminal__line {
  margin-bottom: 0.35rem;
}

.terminal__line--cmd {
  color: var(--cyan-hot);
}

.terminal__line--res {
  color: var(--sol-green);
  padding-left: 0.5rem;
}

.terminal__input-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.35rem 1.25rem;
  color: var(--cyan);
}

.terminal__cursor {
  width: 8px;
  height: 1em;
  background: var(--cyan);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* --------------------------------------------------------------------------
   18. COMMUNITY
   -------------------------------------------------------------------------- */
.community__panel {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  border: 1px solid rgba(0, 232, 255, 0.28);
  clip-path: var(--clip-corner);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(0, 232, 255, 0.14), transparent 60%),
    radial-gradient(500px 220px at 80% 100%, rgba(153, 69, 255, 0.16), transparent 55%),
    radial-gradient(400px 200px at 10% 80%, rgba(225, 6, 0, 0.12), transparent 50%),
    rgba(6, 16, 31, 0.85);
  overflow: hidden;
}

.community__glow {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 180deg, transparent, rgba(0, 232, 255, 0.08), transparent, rgba(153, 69, 255, 0.08), transparent);
  animation: spin 18s linear infinite;
  pointer-events: none;
}

.community__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.05em;
  margin: 0.5rem 0 1rem;
}

.community__text {
  position: relative;
  color: var(--white-soft);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.community__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   19. FINAL CONTRACT
   -------------------------------------------------------------------------- */
.final-ca__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--border-strong);
  clip-path: var(--clip-corner);
  background: linear-gradient(120deg, rgba(0, 232, 255, 0.08), rgba(153, 69, 255, 0.1), rgba(225, 6, 0, 0.06));
  box-shadow: var(--shadow-glow);
}

.final-ca__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
}

.final-ca__logo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(0, 232, 255, 0.4);
  box-shadow: 0 0 28px rgba(0, 232, 255, 0.25);
}

.final-ca__ticker {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.final-ca__addr {
  padding: 1rem 1.1rem;
  background: rgba(3, 8, 18, 0.7);
  border: 1px solid rgba(0, 232, 255, 0.18);
}

.final-ca__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.final-ca__addr code {
  font-size: 1.05rem;
  color: var(--silver);
  word-break: break-all;
}

.final-ca__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(0, 232, 255, 0.12);
  background: linear-gradient(180deg, transparent, rgba(2, 6, 15, 0.85));
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer__brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer__logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(0, 232, 255, 0.3);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer__ticker {
  font-size: 0.75rem;
  color: var(--cyan);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
}

.footer__nav a,
.footer__socials a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-mute);
  transition: color 0.25s ease;
}

.footer__nav a:hover,
.footer__socials a:hover {
  color: var(--cyan-hot);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.footer__disclaimer {
  font-size: 0.9rem;
  color: var(--white-mute);
  line-height: 1.6;
  max-width: 920px;
  margin-bottom: 1.25rem;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(197, 206, 218, 0.4);
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .stages {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .stage-connector {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }

  .stage-connector span {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 232, 255, 0.15), var(--cyan), rgba(153, 69, 255, 0.5));
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__socials {
    justify-content: flex-start;
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: grid;
  }

  .side-nav {
    display: none;
  }

  .about__layout {
    grid-template-columns: 1fr;
  }

  .data-lines {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero__bg {
    position: relative;
    min-height: 55vh;
  }

  .hero__img {
    min-height: 55vh;
  }

  .hero__vignette {
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.15) 0%, rgba(3, 8, 18, 0.45) 45%, rgba(3, 8, 18, 0.98) 100%);
  }

  .hero__content {
    margin-top: -8rem;
  }

  .float-label--1 { top: 12%; right: 4%; }
  .float-label--2 { top: 20%; right: 8%; }
  .float-label--3 { display: none; }

  .hero__solana {
    width: 48px;
    bottom: auto;
    top: 18%;
    right: 5%;
  }

  .solana-mark {
    width: 48px;
  }

  .token-dash__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--main,
  .gallery__item--logo,
  .gallery__item--banner {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .final-ca__top {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .final-ca__actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 68px;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .section {
    padding: 4.5rem 0;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .community__actions,
  .token-dash__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .community__actions .btn,
  .token-dash__actions .btn {
    width: 100%;
  }

  .ca-box {
    flex-wrap: wrap;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .modal__nav {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  /* Reduce expensive effects on mobile */
  .nav.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(3, 8, 18, 0.96);
  }

  .hero__glow,
  .community__glow {
    filter: none;
  }

  .feature,
  .stage {
    min-height: 0;
  }

  body {
    background-attachment: scroll;
  }

  body::after {
    animation: none;
    opacity: 0.6;
  }
}

/* --------------------------------------------------------------------------
   22. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .news-ticker__track {
    animation: none;
  }

  .cursor-glow,
  body::after {
    display: none;
  }
}

/* Touch devices: no custom cursor glow */
@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none !important;
  }

  .magnetic {
    transform: none !important;
  }
}
