:root {
  --bg: #040816;
  --bg-2: #070d22;
  --ink: #e8f4ff;
  --muted: #8aa0c4;
  --cyan: #3de8ff;
  --cyan-hot: #7af6ff;
  --violet: #8b5cf6;
  --magenta: #d946ef;
  --blue: #3b82f6;
  --glass: rgba(12, 22, 48, 0.55);
  --glass-border: rgba(125, 211, 252, 0.22);
  --glow-cyan: 0 0 28px rgba(61, 232, 255, 0.45);
  --glow-violet: 0 0 36px rgba(139, 92, 246, 0.4);
  --font-display: "Oxanium", sans-serif;
  --font-body: "Sora", sans-serif;
  --radius: 18px;
  --wrap: min(1120px, calc(100% - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ========== WORLD / BACKGROUND ========== */
.world {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(61, 232, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 85% 20%, rgba(217, 70, 239, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(139, 92, 246, 0.14), transparent 55%),
    linear-gradient(180deg, #030712 0%, #060b1c 45%, #040816 100%);
}

#aurora-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.world-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 232, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  animation: mesh-drift 40s linear infinite;
}

@keyframes mesh-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

.world-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: orb-float 16s ease-in-out infinite;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -4%;
  background: rgba(61, 232, 255, 0.35);
}

.orb-b {
  width: 380px;
  height: 380px;
  top: 35%;
  right: -8%;
  background: rgba(217, 70, 239, 0.28);
  animation-delay: -5s;
}

.orb-c {
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: 30%;
  background: rgba(139, 92, 246, 0.32);
  animation-delay: -9s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.08); }
}

.world-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(2, 4, 12, 0.75) 100%);
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(61, 232, 255, 0.16), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

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

/* ========== HEADER ========== */
.mast {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.85rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.mast.is-scrolled {
  background: rgba(4, 8, 22, 0.72);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--glass-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(61, 232, 255, 0.55));
  animation: logo-breathe 4s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(61, 232, 255, 0.45)); }
  50% { filter: drop-shadow(0 0 20px rgba(217, 70, 239, 0.55)); }
}

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-stack strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-stack small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan-hot);
}

.nav-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.nav-x img {
  width: 15px;
  height: 15px;
  filter: invert(1);
  opacity: 0.9;
}

.nav-cta {
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  color: #041018 !important;
  font-weight: 700 !important;
  box-shadow: var(--glow-cyan);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ico {
  width: 18px;
  height: 18px;
  filter: invert(1);
  opacity: 0.95;
}

.btn-cyan {
  background: linear-gradient(125deg, var(--cyan) 0%, #5b8cff 45%, var(--violet) 100%);
  color: #031018;
  box-shadow: var(--glow-cyan);
}

.btn-cyan .btn-ico {
  filter: none;
  opacity: 0.85;
}

.btn-cyan:hover {
  box-shadow: 0 0 36px rgba(61, 232, 255, 0.55), 0 0 48px rgba(139, 92, 246, 0.3);
}

.btn-glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--ink);
}

.btn-glass:hover {
  border-color: rgba(61, 232, 255, 0.45);
  box-shadow: var(--glow-cyan);
}

.btn-mini {
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(61, 232, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan-hot);
}

.btn-mini:hover {
  background: rgba(61, 232, 255, 0.18);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-shards span {
  position: absolute;
  width: 2px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  opacity: 0.35;
  animation: shard-fall 7s linear infinite;
}

.hero-shards span:nth-child(1) { left: 12%; top: -10%; animation-delay: 0s; }
.hero-shards span:nth-child(2) { left: 28%; top: -20%; height: 100px; animation-delay: -1.5s; background: linear-gradient(to bottom, transparent, var(--magenta), transparent); }
.hero-shards span:nth-child(3) { left: 62%; top: -15%; animation-delay: -3s; }
.hero-shards span:nth-child(4) { left: 78%; top: -25%; height: 90px; animation-delay: -4.2s; background: linear-gradient(to bottom, transparent, var(--violet), transparent); }
.hero-shards span:nth-child(5) { left: 90%; top: -5%; animation-delay: -5.5s; }

@keyframes shard-fall {
  0% { transform: translateY(0) rotate(18deg); opacity: 0; }
  15% { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(18deg); opacity: 0; }
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 232, 255, 0.28);
  background: rgba(61, 232, 255, 0.06);
  color: var(--cyan-hot);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.55; }
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(115deg, #f0fbff 10%, var(--cyan-hot) 35%, #a78bfa 65%, var(--magenta) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(61, 232, 255, 0.25));
  position: relative;
  animation: brand-shimmer 6s ease-in-out infinite;
  background-size: 180% 100%;
}

@keyframes brand-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ticker-badge {
  display: inline-block;
  margin: 0.9rem 0 0;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--cyan-hot);
  border: 1px solid rgba(61, 232, 255, 0.35);
  background: linear-gradient(90deg, rgba(61, 232, 255, 0.12), rgba(217, 70, 239, 0.1));
  box-shadow: inset 0 0 20px rgba(61, 232, 255, 0.08);
}

.hero-bio {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-bio a {
  color: var(--cyan-hot);
  border-bottom: 1px solid rgba(61, 232, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-bio a:hover {
  color: #fff;
  border-bottom-color: var(--magenta);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(8, 14, 32, 0.65);
  backdrop-filter: blur(8px);
  width: fit-content;
  max-width: 100%;
}

.ca-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--violet);
}

.ca-value {
  font-size: 0.78rem;
  color: var(--muted);
  word-break: break-all;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.crystal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(61, 232, 255, 0.25);
  animation: ring-spin 18s linear infinite;
}

.ring-a {
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-color: rgba(61, 232, 255, 0.35);
  box-shadow: 0 0 40px rgba(61, 232, 255, 0.12), inset 0 0 40px rgba(61, 232, 255, 0.05);
}

.ring-b {
  width: min(78%, 350px);
  aspect-ratio: 1;
  border-color: rgba(217, 70, 239, 0.3);
  animation-direction: reverse;
  animation-duration: 24s;
}

.ring-c {
  width: min(64%, 280px);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(139, 92, 246, 0.35);
  animation-duration: 12s;
}

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

.crystal-core {
  position: relative;
  z-index: 2;
  width: min(72%, 300px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: core-float 5s ease-in-out infinite;
}

@keyframes core-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.core-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 232, 255, 0.35), rgba(217, 70, 239, 0.18) 45%, transparent 70%);
  filter: blur(18px);
  animation: glow-pulse 3.2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-video,
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22%;
}

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: drop-shadow(0 0 28px rgba(61, 232, 255, 0.45));
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video.is-ready ~ .hero-logo {
  opacity: 0;
  pointer-events: none;
}

.hero-logo {
  filter: drop-shadow(0 0 28px rgba(61, 232, 255, 0.5)) drop-shadow(0 0 48px rgba(139, 92, 246, 0.35));
  transition: opacity 0.45s ease;
}

.speed-lines {
  position: absolute;
  inset: 10% 5%;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 14px,
      rgba(61, 232, 255, 0.04) 14px 15px
    );
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 70%);
  animation: speed-sweep 4s linear infinite;
  opacity: 0.6;
}

@keyframes speed-sweep {
  from { transform: translateX(-8%); }
  to { transform: translateX(8%); }
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(61, 232, 255, 0.35);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue i {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  animation: cue-bounce 1.6s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.35; }
}

/* ========== SECTIONS ========== */
.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(61, 232, 255, 0.03), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.crest-frame {
  position: relative;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(61, 232, 255, 0.08), rgba(139, 92, 246, 0.1));
  overflow: hidden;
  box-shadow: var(--glow-violet);
}

.crest-frame img {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  filter: drop-shadow(0 0 24px rgba(61, 232, 255, 0.4));
  animation: core-float 6s ease-in-out infinite;
}

.crest-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(61, 232, 255, 0.12), transparent);
  animation: scan-move 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-move {
  0% { top: -20%; }
  100% { top: 100%; }
}

.crest-caption {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.pillar-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.pillar-list li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-list li:hover {
  border-color: rgba(61, 232, 255, 0.4);
  transform: translateX(6px);
  box-shadow: var(--glow-cyan);
}

.pillar-list strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--cyan-hot);
}

.pillar-list span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* How to buy */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.35rem 1.2rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: linear-gradient(165deg, rgba(12, 22, 48, 0.75), rgba(20, 12, 40, 0.55));
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 232, 255, 0.08), transparent 50%, rgba(217, 70, 239, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 232, 255, 0.4);
  box-shadow: var(--glow-cyan);
}

.step:hover::before {
  opacity: 1;
}

.step-num {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-body {
  position: relative;
  margin-top: 0.75rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.buy-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Chart */
.chart-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.chart-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(61, 232, 255, 0.28);
  background: rgba(4, 8, 22, 0.85);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.15), var(--glow-violet);
  min-height: 520px;
}

.chart-rim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(61, 232, 255, 0.35), transparent 30%, transparent 70%, rgba(217, 70, 239, 0.35));
  opacity: 0.35;
  mix-blend-mode: screen;
  z-index: 1;
  animation: rim-pulse 4s ease-in-out infinite;
}

@keyframes rim-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.5; }
}

.chart-frame iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  background: #0b1220;
}

/* Join us */
.joinus .section-head {
  text-align: center;
  margin-inline: auto;
}

.banner-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(61, 232, 255, 0.3);
  box-shadow: var(--glow-cyan), var(--glow-violet);
}

.banner-art {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  animation: banner-drift 18s ease-in-out infinite alternate;
}

@keyframes banner-drift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.06) translateX(-1.5%); }
}

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

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

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 232, 255, 0.45);
  box-shadow: var(--glow-cyan);
}

.social-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(61, 232, 255, 0.15), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(61, 232, 255, 0.25);
  flex-shrink: 0;
}

.social-ico img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.social-rh {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--cyan-hot);
}

.social-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.social-meta strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.social-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Footer */
.foot {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(2, 4, 12, 0.55);
}

.foot-inner {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
}

.brand-foot {
  gap: 0.55rem;
}

.brand-foot img {
  width: 36px;
  height: 36px;
}

.foot-tick {
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.foot-bio {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot-links {
  display: flex;
  gap: 0.65rem;
}

.foot-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  background: var(--glass);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.foot-links a:hover {
  border-color: rgba(61, 232, 255, 0.45);
  box-shadow: var(--glow-cyan);
}

.foot-links img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.foot-note {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: rgba(138, 160, 196, 0.65);
}

/* ========== REVEALS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--delay, 0) * 1ms);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
    min-height: 340px;
  }

  .hero-bio,
  .ca-row,
  .section-head {
    margin-inline: auto;
  }

  .hero-cta,
  .buy-bar,
  .chart-tools {
    justify-content: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 1.2rem;
    right: 1.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(6, 10, 28, 0.95);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(61, 232, 255, 0.08);
  }

  .nav-cta {
    text-align: center;
  }

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

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 420px;
  }

  .hero {
    padding-top: 4rem;
    min-height: auto;
  }
}

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

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