@font-face {
  font-family: "Chirp";
  src: url("../assets/fonts/chirp-regular-web.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chirp";
  src: url("../assets/fonts/chirp-medium-web.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chirp";
  src: url("../assets/fonts/chirp-bold-web.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chirp";
  src: url("../assets/fonts/chirp-heavy-web.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-panel: #0f0f0f;
  --ink: #ffffff;
  --ink-soft: #bdbdbd;
  --ink-mute: #7a7a7a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --glow: rgba(255, 255, 255, 0.18);
  --radius: 4px;
  --nav-h: 72px;
  --font: "Chirp", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- Stage / background ---------- */

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 40% 30% at 85% 20%, rgba(255, 255, 255, 0.03), transparent 50%),
    radial-gradient(ellipse 35% 35% at 10% 70%, rgba(255, 255, 255, 0.025), transparent 55%),
    #000;
}

.fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: fog-drift 18s var(--ease) infinite alternate;
}

.fog-a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 10%;
  background: rgba(255, 255, 255, 0.06);
}

.fog-b {
  width: 36vw;
  height: 36vw;
  right: -6%;
  top: 35%;
  background: rgba(255, 255, 255, 0.04);
  animation-delay: -6s;
}

.fog-c {
  width: 50vw;
  height: 28vw;
  left: 25%;
  bottom: -10%;
  background: rgba(255, 255, 255, 0.035);
  animation-delay: -11s;
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  animation: grid-pulse 10s ease-in-out infinite;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  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");
  mix-blend-mode: overlay;
}

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

#x-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes fog-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}

/* ---------- Layout shell ---------- */

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

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

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.icon-link:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-ico {
  width: 18px;
  height: 18px;
}

.btn-solid {
  background: var(--ink);
  color: #000;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px 80px;
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
}

.hero-orbit {
  position: absolute;
  left: 8%;
  top: 50%;
  width: min(460px, 48vw);
  height: min(460px, 48vw);
  transform: translateY(-52%);
  pointer-events: none;
}

.ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: ring-spin 28s linear infinite;
}

.ring-2 {
  inset: 12%;
  border-style: dashed;
  animation-duration: 40s;
  animation-direction: reverse;
  opacity: 0.7;
}

.ring-3 {
  inset: 24%;
  animation-duration: 22s;
  opacity: 0.5;
}

.spark {
  position: absolute;
  inset: 0;
  animation: spark-spin 16s linear infinite;
}

.spark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.7);
}

.s1 { animation-duration: 16s; }
.s2 { inset: 12%; animation-duration: 22s; animation-direction: reverse; }
.s3 { inset: 24%; animation-duration: 11s; }

.hero-layout {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 48px;
  align-items: center;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.logo-halo {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(18px);
  animation: halo-breathe 4.5s ease-in-out infinite;
  z-index: -1;
}

.hero-logo {
  width: min(100%, 380px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.65);
  animation: logo-float 6s ease-in-out infinite;
}

.logo-sweep {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.logo-sweep::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 40%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  animation: sweep 5.5s ease-in-out infinite;
}

.sol-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.03);
}

.sol-chip img {
  width: 22px;
  height: 22px;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title .name {
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  background: linear-gradient(180deg, #fff 30%, #9a9a9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-sheen 7s ease-in-out infinite;
  background-size: 100% 200%;
}

.hero-title .ticker {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-soft);
}

.hero-tagline {
  margin: 18px 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-lede {
  margin: 12px 0 0;
  max-width: 36ch;
  color: var(--ink-mute);
  font-size: 1.02rem;
}

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

.ca-bar {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  max-width: 100%;
}

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

.ca-value {
  font-size: 0.82rem;
  color: var(--ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 280px);
}

.ca-copy {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  transition: opacity 0.2s;
}

.ca-copy:hover {
  opacity: 0.88;
}

.ca-copy.copied {
  background: #cfcfcf;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.cue-line {
  width: 2px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: cue-drop 1.6s var(--ease) infinite;
}

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

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

@keyframes halo-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

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

@keyframes sweep {
  0%, 55% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  60% { opacity: 1; }
  85% { transform: translateX(340%) skewX(-18deg); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes title-sheen {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

@keyframes cue-drop {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections ---------- */

.section {
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 100px 24px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px;
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.stat:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.stat-k {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

.stat-v {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.pill-link img {
  width: 14px;
  height: 14px;
}

.pill-link:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.tweet-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  overflow: hidden;
  position: relative;
}

.tweet-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.panel-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}

.tweet-frame {
  min-height: 280px;
  display: flex;
  justify-content: center;
}

.tweet-frame twitter-widget,
.tweet-frame iframe {
  margin: 0 auto !important;
}

/* How to buy */

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.step:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.step-num {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--ink-mute);
  line-height: 1;
  padding-top: 2px;
}

.step-body h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.step-body p {
  margin: 0;
  color: var(--ink-mute);
}

.trade-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.trade-card img {
  width: 42px;
  height: 42px;
}

.trade-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Chart */

.chart-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.chart-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.02);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: live-pulse 2s ease-out infinite;
}

.toolbar-link {
  margin-left: auto;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.toolbar-link:hover {
  border-color: var(--ink);
}

.chart-frame {
  position: relative;
  height: min(640px, 78vh);
  background: #0a0a0a;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--ink-mute);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.05), transparent 50%),
    #0a0a0a;
  text-align: center;
  padding: 24px;
}

.chart-placeholder img {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.chart-frame.has-embed .chart-placeholder {
  display: none;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Join us */

.joinus .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.joinus .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.banner-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 100px rgba(0, 0, 0, 0.55);
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-ken 18s ease-in-out infinite alternate;
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.08) 48%, transparent 62%);
  background-size: 220% 100%;
  animation: banner-shine 7s ease-in-out infinite;
  pointer-events: none;
}

.join-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

@keyframes banner-ken {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@keyframes banner-shine {
  0%, 40% { background-position: 120% 0; }
  100% { background-position: -40% 0; }
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 64px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.footer-tag {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.disclaimer {
  margin: 8px 0 0;
  max-width: 52ch;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero-copy .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-copy .reveal:nth-child(2) { transition-delay: 0.12s; }
.hero-copy .reveal:nth-child(3) { transition-delay: 0.18s; }
.hero-copy .reveal:nth-child(4) { transition-delay: 0.24s; }
.hero-copy .reveal:nth-child(5) { transition-delay: 0.3s; }
.hero-copy .reveal:nth-child(6) { transition-delay: 0.36s; }

.step.reveal:nth-child(1) { transition-delay: 0.05s; }
.step.reveal:nth-child(2) { transition-delay: 0.12s; }
.step.reveal:nth-child(3) { transition-delay: 0.18s; }
.step.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    left: 50%;
    top: 18%;
    transform: translate(-50%, 0);
    width: min(360px, 78vw);
    height: min(360px, 78vw);
    opacity: 0.55;
  }

  .hero-mark {
    justify-self: center;
  }

  .hero-logo {
    width: min(280px, 70vw);
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .about-links {
    justify-content: center;
  }

  .ca-bar {
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 780px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 12px;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid var(--line);
    margin: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .section {
    padding: 72px 20px;
  }

  .hero {
    padding-top: 28px;
  }
}

@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;
  }
}
