:root {
  --void: #070504;
  --soil: #100c0a;
  --iron: #1a1410;
  --plate: #241811;
  --rust: #8d3a1f;
  --ember: #c45428;
  --flare: #e8733a;
  --sun: #f3b27a;
  --bone: #f3ece3;
  --mist: #c8b4a4;
  --mute: #8a7466;
  --teal: #4d7c70;
  --line: rgba(232, 115, 58, 0.38);
  --glass: rgba(12, 8, 6, 0.62);
  --display: "Michroma", sans-serif;
  --ui: "Orbitron", sans-serif;
  --body: "Rajdhani", sans-serif;
  --mono: "Share Tech Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

body {
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--flare);
}

.eyebrow {
  margin: 22px 0 10px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sun);
}

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

.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
}

.section-head p:last-child {
  margin-top: 14px;
  color: var(--mist);
  font-size: 20px;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(196, 84, 40, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 40% at 80% 20%, rgba(77, 124, 112, 0.06), transparent 50%),
    linear-gradient(180deg, #090705 0%, #120c09 46%, #1a100c 100%);
}

#dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atmosphere__horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 38vh;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 84, 40, 0.28), transparent 62%),
    linear-gradient(180deg, transparent, rgba(141, 58, 31, 0.18));
  filter: blur(8px);
  animation: horizon-breathe 9s ease-in-out infinite;
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.atmosphere__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.08) 3px 4px
  );
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 58, 0.16), transparent 68%);
  transform: translate(-200px, -200px);
  transition: transform 0.12s linear;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #060403;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot.is-gone {
  opacity: 0;
  visibility: hidden;
}

.boot__ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.boot__ring::before,
.boot__ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(243, 178, 122, 0.25);
  border-radius: 50%;
  border-top-color: var(--flare);
  animation: spin 2.4s linear infinite reverse;
}

.boot__logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #0b0806, 0 0 40px rgba(232, 115, 58, 0.35);
}

.boot__label,
.boot__status {
  font-family: var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.boot__label {
  font-size: 12px;
  color: var(--sun);
}

.boot__status {
  font-size: 11px;
  color: var(--mute);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(7, 5, 4, 0.72), transparent);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}

.nav.is-stuck {
  background: rgba(8, 6, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 115, 58, 0.16);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav__brand,
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__brand img,
.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(232, 115, 58, 0.4);
}

.nav__brand strong,
.footer__brand strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__brand small,
.footer__brand small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.nav__links {
  display: flex;
  gap: 26px;
}

.nav__links a {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--flare);
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

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

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(20, 12, 8, 0.6);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn img[src*="x.svg"],
.btn img[src*="dexscreener.svg"],
.icon-btn img[src*="x.svg"],
.icon-btn img[src*="dexscreener.svg"],
.footer__links img[src*="x.svg"],
.footer__links img[src*="dexscreener.svg"],
.step__logo img[src*="dexscreener.svg"] {
  filter: brightness(0) invert(93%) sepia(12%) saturate(280%) hue-rotate(335deg);
}

.btn:hover img[src*="x.svg"],
.btn:hover img[src*="dexscreener.svg"],
.icon-btn:hover img[src*="x.svg"],
.icon-btn:hover img[src*="dexscreener.svg"],
.footer__links a:hover img[src*="x.svg"],
.footer__links a:hover img[src*="dexscreener.svg"] {
  filter: brightness(0) invert(78%) sepia(38%) saturate(900%) hue-rotate(332deg);
}

.icon-btn:hover {
  border-color: var(--flare);
  box-shadow: 0 0 18px rgba(232, 115, 58, 0.28);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  position: relative;
  border: 1px solid var(--line);
}

.nav__toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav__toggle span:first-child { top: 14px; }
.nav__toggle span:last-child { top: 22px; }

.nav.is-open .nav__toggle span:first-child { top: 18px; transform: rotate(40deg); }
.nav.is-open .nav__toggle span:last-child { top: 18px; transform: rotate(-40deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(18, 11, 8, 0.72);
  color: var(--bone);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn--primary {
  background: linear-gradient(180deg, #d86532, #9a3a1c);
  border-color: #f0a06a;
  box-shadow: 0 0 24px rgba(232, 115, 58, 0.22);
}

.btn--compact {
  min-height: 38px;
  padding: 0 14px;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--sun);
  box-shadow: 0 8px 28px rgba(196, 84, 40, 0.28);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  animation: video-drift 28s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 5, 4, 0.55) 0%, rgba(7, 5, 4, 0.28) 36%, rgba(7, 5, 4, 0.78) 100%),
    radial-gradient(circle at 50% 40%, transparent 0 28%, rgba(7, 5, 4, 0.45) 100%);
}

.hero__orbits {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero__orbits span {
  position: absolute;
  border: 1px solid rgba(243, 178, 122, 0.12);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero__orbits span:nth-child(1) { width: min(72vw, 720px); height: min(72vw, 720px); }
.hero__orbits span:nth-child(2) { width: min(54vw, 540px); height: min(54vw, 540px); animation-duration: 18s; animation-direction: reverse; border-style: dashed; }
.hero__orbits span:nth-child(3) { width: min(36vw, 360px); height: min(36vw, 360px); animation-duration: 12s; }

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 40px));
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__badge img,
.spec-list__logo,
img[src*="solana.svg"] {
  width: auto;
  height: 13px;
  max-width: 42px;
  object-fit: contain;
}

.hero__mark {
  margin: 28px auto 8px;
  width: 148px;
}

.orbit-frame {
  position: relative;
  padding: 14px;
}

.orbit-frame::before,
.orbit-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(232, 115, 58, 0.45);
  animation: spin 14s linear infinite;
}

.orbit-frame::after {
  inset: 6px;
  border-color: rgba(243, 178, 122, 0.28);
  border-top-color: transparent;
  animation-duration: 7s;
  animation-direction: reverse;
}

.orbit-frame img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(232, 115, 58, 0.28);
}

.hero__title {
  display: grid;
  gap: 8px;
}

.hero__title span {
  font-size: clamp(42px, 9vw, 92px);
  letter-spacing: 0.18em;
  line-height: 0.95;
  text-shadow: 0 0 40px rgba(232, 115, 58, 0.28);
}

.hero__title em {
  font-style: normal;
  font-family: var(--ui);
  font-size: 16px;
  letter-spacing: 0.62em;
  color: var(--flare);
}

.hero__lead {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--mist);
  font-size: 20px;
}

.quote {
  margin: 28px auto 0;
  max-width: 620px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(10, 7, 6, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 32px rgba(232, 115, 58, 0.12);
  position: relative;
}

.quote::before,
.quote::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--flare);
}

.quote::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.quote::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.quote p {
  font-family: var(--display);
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--flare);
}

.ca-bar {
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  width: min(100%, 620px);
  border: 1px solid var(--line);
  background: rgba(8, 6, 5, 0.72);
}

.ca-bar__tag,
.ca-bar button {
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ca-bar__tag {
  background: rgba(232, 115, 58, 0.16);
  color: var(--sun);
}

.ca-bar code {
  flex: 1;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mist);
}

.ca-bar button {
  border-left: 1px solid var(--line);
  color: var(--bone);
}

.ca-bar button:hover {
  background: rgba(232, 115, 58, 0.18);
}

.hero__cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(232, 115, 58, 0.16);
  background: rgba(7, 5, 4, 0.55);
  backdrop-filter: blur(8px);
}

.hero__ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}

.about,
.howtobuy,
.chart {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.about::before,
.howtobuy::before,
.chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 115, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 115, 58, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.lede {
  font-size: 26px;
  line-height: 1.4;
  color: var(--bone);
}

.about__copy p + p {
  margin-top: 16px;
  color: var(--mist);
}

.spec-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 115, 58, 0.16);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list span { color: var(--mute); }
.spec-list strong { font-weight: 400; color: var(--bone); }

.spec-list__logo {
  width: auto;
  height: 13px;
}

.about__visual {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  background: var(--iron);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.about__visual::before,
.about__visual::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--flare);
  z-index: 2;
}

.about__visual::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.about__visual::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.about__film {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.05);
  background: #0b0806;
}

.about__visual figcaption,
.still figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
}

.pillars {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pillar {
  padding: 22px 18px 24px;
  border: 1px solid rgba(232, 115, 58, 0.18);
  background: linear-gradient(180deg, rgba(36, 22, 16, 0.72), rgba(12, 8, 6, 0.72));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--flare);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(232, 115, 58, 0.12);
}

.pillar__icon {
  width: 42px;
  height: 42px;
  color: var(--sun);
  margin-bottom: 16px;
}

.pillar h3 {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--mist);
  font-size: 16px;
}

.about__stills {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.still {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 115, 58, 0.18);
}

.still img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.still:hover img {
  transform: scale(1.06);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.step {
  position: relative;
  padding: 24px 18px 26px;
  border: 1px solid rgba(232, 115, 58, 0.2);
  background: rgba(14, 10, 8, 0.72);
  min-height: 280px;
}

.step::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -17px;
  width: 16px;
  height: 1px;
  background: var(--line);
}

.step:last-child::after { display: none; }

.step__num {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--flare);
  margin-bottom: 18px;
}

.step__logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: #100c0a;
}

.step__logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.step__logo img[src*="solana.svg"] {
  width: 40px;
  height: auto;
  max-width: 44px;
}

.step h3 {
  font-family: var(--ui);
  font-size: 14px;
  margin-bottom: 10px;
}

.step p {
  color: var(--mist);
}

.howtobuy__links {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chart__frame {
  border: 1px solid var(--line);
  background: #0b0806;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.chart__hud {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(232, 115, 58, 0.16);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.chart__hud a {
  margin-left: auto;
  color: var(--sun);
}

.chart__frame iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #0b0806;
}

.joinus {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(232, 115, 58, 0.28);
  border-bottom: 1px solid rgba(232, 115, 58, 0.28);
}

.joinus__bg,
.joinus__wash {
  position: absolute;
  inset: 0;
}

.joinus__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-drift 22s ease-in-out infinite alternate;
  transform-origin: center;
}

.joinus__wash {
  background:
    linear-gradient(90deg, rgba(7, 5, 4, 0.72) 0%, rgba(7, 5, 4, 0.38) 46%, rgba(7, 5, 4, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 5, 4, 0.2) 0%, transparent 28%, rgba(7, 5, 4, 0.55) 100%);
  pointer-events: none;
}

.joinus__intro {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 42px;
}

.joinus h2 {
  font-size: clamp(36px, 6vw, 68px);
}

.joinus__intro > p:not(.kicker) {
  margin: 16px 0 28px;
  max-width: 560px;
  color: var(--mist);
  font-size: 20px;
}

.joinus__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(232, 115, 58, 0.14);
  background: rgba(7, 5, 4, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 28px;
  align-items: center;
}

.footer__quote {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--mist);
}

.footer__quote span {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flare);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}

.footer__links img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.footer__fine {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 115, 58, 0.1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(12, 8, 6, 0.92);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 60;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

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

@keyframes horizon-breathe {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); }
}

@keyframes video-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

@keyframes banner-drift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translateY(-1%); }
}

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

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

  .step::after { display: none; }

  .nav__links {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    background: rgba(10, 7, 6, 0.94);
    border: 1px solid var(--line);
  }

  .nav.is-open .nav__links { display: flex; }
  .nav__toggle { display: block; }
  .btn--compact { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .about,
  .howtobuy,
  .chart { padding: 80px 0; }

  .joinus {
    aspect-ratio: 3 / 1;
    min-height: 420px;
  }

  .joinus__intro { padding: 36px 0 32px; }

  .about__grid,
  .pillars,
  .steps,
  .about__stills,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .chart__frame iframe { height: 520px; }
  .still img { height: 200px; }
  .hero__badge img,
  .spec-list__logo,
  img[src*="solana.svg"] {
    height: 12px;
    max-width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
