:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-soft: #121212;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --dim: #5c5c5c;
  --white: #ffffff;
  --gray-1: #e8e8e8;
  --gray-2: #b8b8b8;
  --radius: 2px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Background layers */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  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;
}

.p-rain {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
}

.p-rain::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='20' y='70' fill='%23ffffff' fill-opacity='0.045' font-family='Arial Black, Arial, sans-serif' font-size='42' font-weight='900'%3EP%3C/text%3E%3C/svg%3E");
  background-size: 120px 120px;
  transform: rotate(-28deg);
  animation: rain-drift 28s linear infinite;
}

.p-symbol {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.04em;
  user-select: none;
  will-change: transform, opacity;
  text-shadow: 8px 0 0 rgba(255, 255, 255, 0.03), 16px 0 0 rgba(255, 255, 255, 0.015);
  animation: symbol-fall linear infinite;
}

@keyframes rain-drift {
  from { transform: rotate(-28deg) translate3d(0, 0, 0); }
  to { transform: rotate(-28deg) translate3d(-120px, 120px, 0); }
}

@keyframes symbol-fall {
  0% { transform: translate3d(0, -10vh, 0) rotate(-28deg); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translate3d(-18vw, 110vh, 0) rotate(-28deg); opacity: 0; }
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  animation: brand-pulse 3.2s ease-in-out infinite;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 2;
}

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

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

.icon-btn:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
}

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

.menu-toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-orbit,
.hero-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  border-radius: 50%;
  border: 1px solid var(--line);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-orbit {
  width: min(72vw, 620px);
  height: min(72vw, 620px);
  animation: orbit-pulse 6s ease-in-out infinite;
}

.hero-ring {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  animation: ring-spin 40s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.sol-icon {
  width: 16px;
  height: 16px;
}

.hero-logo-wrap {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 1.5rem;
}

.logo-halo {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
  animation: halo-breathe 3.6s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04), 0 20px 60px rgba(0, 0, 0, 0.55);
  animation: logo-float 5s ease-in-out infinite;
}

.hero-title {
  margin-bottom: 0.35rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 14vw, 8.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 20%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  animation: wordmark-in 1.1s var(--ease-out) both;
}

.paid-p {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 20%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.paid-p::before,
.paid-p::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 0.07em;
  background: #f0f0f0;
  border-radius: 1px;
  pointer-events: none;
}

.paid-p::before {
  top: 0.28em;
}

.paid-p::after {
  top: 0.48em;
}

.wordmark-rest {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: 0.28em;
  color: var(--gray-2);
  margin-bottom: 1.1rem;
}

.hero-tagline {
  max-width: 540px;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
}

.btn-primary img {
  filter: invert(1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.5rem;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.hero-socials a img {
  width: 14px;
  height: 14px;
}

.hero-socials a:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.ca-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  flex-shrink: 0;
}

.ca-value {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gray-1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(52vw, 360px);
}

.ca-copy {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.ca-copy:hover,
.ca-copy.copied {
  background: var(--white);
  color: #0a0a0a;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.scroll-hint span {
  display: block;
  width: 3px;
  height: 7px;
  margin: 6px auto 0;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: #080808;
  overflow: hidden;
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: var(--dim);
  white-space: nowrap;
}

.ticker-track span:nth-child(odd) {
  color: var(--gray-2);
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: calc(var(--max) + 5rem);
  margin: 0 auto;
}

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

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-card {
  padding: 0.5rem 0 1.5rem;
  border-top: 1px solid var(--line-strong);
  background: transparent;
  transition: transform 0.4s var(--ease-out);
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}

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

.about-icon.sol img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-icon svg {
  width: 100%;
  height: 100%;
}

.about-icon.mark svg {
  width: 28px;
  height: 28px;
}

.p-path {
  fill: var(--white);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.about-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-statement {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  border-left: 2px solid var(--white);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}

.about-statement p {
  max-width: 720px;
  color: var(--gray-2);
  font-size: 1.08rem;
}

/* How to buy */
.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.step:hover {
  border-color: var(--line-strong);
  transform: translateX(6px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--dim);
  line-height: 1;
  min-width: 3.2rem;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.step-body p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 520px;
}

.step-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.step-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.step-links a img {
  width: 18px;
  height: 18px;
}

.step-links a:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Chart */
.chart .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.chart-ext {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line-strong);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}

.chart-ext img {
  width: 18px;
  height: 18px;
}

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

.chart-frame {
  position: relative;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1;
}

.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

/* Join Us */
.joinus {
  padding-bottom: 5rem;
}

.join-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  margin-bottom: 1.5rem;
  background: #000;
  isolation: isolate;
}

.join-banner img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}

.join-banner:hover img {
  transform: scale(1.06);
}

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

.socials-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}

.social-pill img {
  width: 28px;
  height: 28px;
}

.social-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.social-pill span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.social-pill:hover {
  transform: translateY(-4px);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.join-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}

.join-card img {
  width: 28px;
  height: 28px;
}

.join-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.join-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.join-arrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.25s ease;
}

.join-card:hover {
  transform: translateY(-4px);
  border-color: var(--white);
  background: #101010;
}

.join-card:hover .join-arrow {
  color: var(--white);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  text-align: center;
  background: #030303;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.footer-brand .wordmark {
  font-size: 1.8rem;
  background: none;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.site-footer > p {
  color: var(--dim);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer-links a img {
  width: 16px;
  height: 16px;
}

.footer-links a:hover {
  border-color: var(--white);
  transform: translateY(-3px);
}

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

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

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

@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08); }
}

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

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

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

@keyframes banner-shine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes wordmark-in {
  from { opacity: 0; letter-spacing: 0.28em; transform: translateY(18px); }
  to { opacity: 1; letter-spacing: 0.04em; transform: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: auto 1fr;
  }

  .step-links {
    grid-column: 1 / -1;
  }

  .socials-row,
  .join-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.96);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  .hero-logo-wrap {
    width: 132px;
    height: 132px;
  }

  .chart-frame iframe {
    height: 480px;
  }

  .ca-box {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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