/* Solana Season — $SOLSZN */

:root {
  --sol-green: #14f195;
  --sol-purple: #9945ff;
  --sol-cyan: #00ffa3;
  --sol-blue: #00d4ff;
  --bg-dark: #06080f;
  --bg-card: rgba(12, 16, 28, 0.75);
  --border: rgba(153, 69, 255, 0.25);
  --border-glow: rgba(20, 241, 149, 0.3);
  --text: #e8edf5;
  --text-muted: #8b95a8;
  --gradient: linear-gradient(135deg, var(--sol-cyan) 0%, var(--sol-purple) 50%, var(--sol-green) 100%);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ── Animated background layers ── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background: var(--bg-dark);
}

#bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
  transition: transform 0.4s ease-out;
}

.bg-aurora--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.35) 0%, transparent 70%);
  animation: aurora-drift-1 18s ease-in-out infinite;
}

.bg-aurora--2 {
  width: 500px;
  height: 500px;
  bottom: 5%;
  left: -12%;
  background: radial-gradient(circle, rgba(20, 241, 149, 0.22) 0%, transparent 70%);
  animation: aurora-drift-2 22s ease-in-out infinite;
}

.bg-aurora--3 {
  width: 450px;
  height: 450px;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  animation: aurora-drift-3 16s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 40px) scale(1.1); }
  66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -50px) scale(1.15); }
}

@keyframes aurora-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(-40px, 60px) scale(1.2); opacity: 1; }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 69, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 69, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-scroll 20s linear infinite;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 10%, transparent 75%);
}

@keyframes grid-scroll {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  animation: scanline-flicker 8s ease-in-out infinite;
}

@keyframes scanline-flicker {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(6, 8, 15, 0.85) 100%);
  pointer-events: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--gradient);
  color: #06080f;
  box-shadow: 0 0 24px rgba(20, 241, 149, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(20, 241, 149, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

.btn--sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn--lg { padding: 1rem 2rem; font-size: 0.9rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(6, 8, 15, 0.85);
  border-bottom: 1px solid var(--border);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

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

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

.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__link:hover { color: var(--sol-cyan); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 4vw 1.25rem;
  border-top: 1px solid var(--border);
}

.nav__mobile-link {
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

.nav__mobile.is-open { display: flex; }

.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); }

/* Hero */
.hero { padding: 4rem 0 2rem; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sol-green);
  background: rgba(20, 241, 149, 0.08);
  border: 1px solid rgba(20, 241, 149, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__title .gradient-text {
  display: block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
}

.hero__ticker {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero__tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contract {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  backdrop-filter: blur(12px);
}

.contract__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sol-purple);
}

.contract__address {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.contract__copy {
  flex-shrink: 0;
  background: rgba(153, 69, 255, 0.15);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.contract__copy:hover {
  background: rgba(153, 69, 255, 0.3);
  border-color: var(--sol-purple);
}

.contract__copy .icon-check { display: none; }

.contract__copy.is-copied {
  background: rgba(20, 241, 149, 0.15);
  border-color: var(--sol-green);
  color: var(--sol-green);
}

.contract__copy.is-copied .icon-copy { display: none; }
.contract__copy.is-copied .icon-check { display: block; }

.hero__visual { display: flex; justify-content: center; }

.hero__logo-ring {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
}

.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}

.hero__orbit--1 {
  inset: -8%;
  border-color: rgba(153, 69, 255, 0.2);
  animation: orbit-spin 12s linear infinite;
}

.hero__orbit--2 {
  inset: -16%;
  border-color: rgba(20, 241, 149, 0.12);
  animation: orbit-spin 20s linear infinite reverse;
}

.hero__orbit--1::before,
.hero__orbit--2::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero__orbit--1::before {
  background: var(--sol-purple);
  box-shadow: 0 0 12px var(--sol-purple);
}

.hero__orbit--2::before {
  background: var(--sol-green);
  box-shadow: 0 0 12px var(--sol-green);
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.4) 0%, rgba(20, 241, 149, 0.15) 50%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

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

.hero__logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 40px rgba(153, 69, 255, 0.4));
  animation: float 6s ease-in-out infinite;
}

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

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.stat-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* Sections */
.section { padding: 5rem 0; position: relative; }

.section--vision {
  background: linear-gradient(180deg, transparent 0%, rgba(153, 69, 255, 0.04) 50%, transparent 100%);
}

.section--about {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 241, 149, 0.03) 50%, transparent 100%);
}

.section--token {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
}

.section--roadmap {
  background: linear-gradient(180deg, transparent 0%, rgba(153, 69, 255, 0.05) 50%, transparent 100%);
}

.section__header { margin-bottom: 2.5rem; }
.section__header--center { text-align: center; }

.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sol-cyan);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__desc--wide {
  max-width: 680px;
  margin-inline: auto;
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(153, 69, 255, 0.12);
}

.pillar-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(153, 69, 255, 0.4));
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.pillar-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Chart */
.chart-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(153, 69, 255, 0.08);
}

.chart-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #0a0a0a;
}

.chart-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 1;
  transition: opacity 0.3s;
}

.chart-fallback:hover { color: var(--sol-cyan); }

.chart-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

.chart-frame.is-loaded .chart-fallback {
  opacity: 0;
  pointer-events: none;
}

.chart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sol-cyan);
  transition: gap 0.2s;
}

.chart-link:hover { gap: 0.65rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__banner-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__banner {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.about__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(153, 69, 255, 0.15) 0%, rgba(20, 241, 149, 0.1) 100%);
  pointer-events: none;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(153, 69, 255, 0.1);
}

.feature-list__icon {
  color: var(--sol-green);
  font-size: 0.85rem;
}

/* Token info */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
}

.token-card:hover { border-color: var(--border-glow); }

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

.token-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.token-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.token-card__address {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--sol-cyan);
  word-break: break-all;
}

/* Roadmap */
.roadmap {
  position: relative;
  display: grid;
  gap: 2rem;
  max-width: 720px;
  margin-inline: auto;
}

.roadmap__line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sol-purple), var(--sol-green));
  opacity: 0.4;
}

.roadmap-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.roadmap-item__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--sol-purple);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sol-cyan);
  box-shadow: 0 0 20px rgba(153, 69, 255, 0.3);
  position: relative;
  z-index: 1;
}

.roadmap-item__body {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}

.roadmap-item:hover .roadmap-item__body {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.roadmap-item__phase {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sol-purple);
  margin-bottom: 0.35rem;
}

.roadmap-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.roadmap-item__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* How to buy */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

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

.step-card__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(153, 69, 255, 0.15);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--sol-cyan);
  margin-bottom: 1rem;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

/* CTA banner */
.section--cta { padding-bottom: 3rem; }

.cta-banner {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cta-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(153, 69, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.cta-banner__logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 24px rgba(153, 69, 255, 0.5));
  position: relative;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* Link cards */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.link-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(153, 69, 255, 0.15);
}

.link-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.link-card__icon--x { background: rgba(255, 255, 255, 0.08); color: #fff; }
.link-card__icon--tg { background: rgba(0, 136, 204, 0.2); color: #29b6f6; }
.link-card__icon--dex { background: rgba(20, 241, 149, 0.12); color: var(--sol-green); }
.link-card__icon--pump { background: rgba(153, 69, 255, 0.15); color: var(--sol-purple); }

.link-card__body { flex: 1; min-width: 0; }

.link-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.link-card__handle {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.link-card__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.link-card:hover .link-card__arrow {
  color: var(--sol-cyan);
  transform: translate(2px, -2px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer__disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 560px;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--sol-cyan); }

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

  .hero__content { order: 2; }
  .hero__visual { order: 1; }

  .hero__logo-ring {
    width: min(320px, 80vw);
    margin-inline: auto;
  }

  .hero__tagline { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .contract { justify-content: center; }

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

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .chart-frame { height: 420px; }
}

@media (max-width: 600px) {
  .pillars-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; }
  .chart-frame { height: 360px; }
  .cta-banner__actions .btn { width: 100%; }
}

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