:root {
  --navy-950: #03060d;
  --navy-900: #0a1224;
  --navy-800: #0f1c38;
  --navy-700: #162a52;
  --steel: #8ba4c7;
  --ice: #d4e4f7;
  --white: #f4f8ff;
  --accent: #4d7cff;
  --accent-glow: rgba(77, 124, 255, 0.45);
  --danger: #c41e3a;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 84px;
  --ticker-h: 36px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(77, 124, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(22, 42, 82, 0.5), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(15, 28, 56, 0.6), transparent),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-950) 100%);
  z-index: -3;
  pointer-events: none;
}

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

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

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

/* Overlays */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(1%, 2%); }
  50% { transform: translate(-1%, 4%); }
  70% { transform: translate(3%, -1%); }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Ticker */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ticker-h);
  background: linear-gradient(90deg, var(--danger), #8b1530);
  z-index: 1001;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.ticker-track span::after {
  content: " ◆ ";
  opacity: 0.5;
  margin-left: 3rem;
}

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

/* Header */
.site-header {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.92) 0%,
    rgba(8, 14, 28, 0.78) 100%
  );
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(77, 124, 255, 0.15);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s;
}

.site-header.scrolled {
  background: rgba(6, 10, 20, 0.97);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 48px rgba(0, 0, 0, 0.55);
}

.header-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--danger) 20%,
    var(--accent) 50%,
    var(--danger) 80%,
    transparent
  );
  opacity: 0.85;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0.65rem clamp(1rem, 3vw, 2rem);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1002;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.92;
}

.brand-logo-wrap {
  position: relative;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--danger), var(--accent));
  background-size: 200% 200%;
  animation: ring-shift 4s ease infinite;
  box-shadow: 0 0 24px var(--accent-glow);
}

@keyframes ring-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 9px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.15rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
}

.brand-symbol {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem;
  background: rgba(15, 28, 56, 0.85);
  border: 1px solid rgba(139, 164, 199, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-pills a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}

.nav-pills a:hover {
  color: var(--white);
  background: rgba(77, 124, 255, 0.12);
}

.nav-pills a.active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.35), rgba(77, 124, 255, 0.15));
  box-shadow: 0 0 20px rgba(77, 124, 255, 0.25);
}

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

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--steel);
  border: 1px solid rgba(139, 164, 199, 0.2);
  background: rgba(15, 28, 56, 0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.nav-icon:hover {
  color: var(--white);
  border-color: rgba(77, 124, 255, 0.5);
  background: rgba(77, 124, 255, 0.15);
  transform: translateY(-1px);
}

.nav-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.45rem 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #3d6ef5 0%, #2548b8 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 16px rgba(77, 124, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  line-height: 1.1;
  transition: transform 0.2s, box-shadow 0.3s;
}

.nav-buy:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(77, 124, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-buy-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.nav-buy-symbol {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: rgba(15, 28, 56, 0.9);
  border: 1px solid rgba(139, 164, 199, 0.25);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: var(--accent);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #2a4db8);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-glow {
  box-shadow: 0 0 24px var(--accent-glow);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 36px var(--accent-glow), 0 0 60px rgba(77, 124, 255, 0.2); }
}

.btn-outline {
  background: transparent;
  border-color: rgba(139, 164, 199, 0.4);
  color: var(--ice);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--ice);
}

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

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.section-head .accent {
  color: var(--accent);
}

.section-sub {
  margin-top: 0.75rem;
  color: var(--steel);
  max-width: 520px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--ticker-h) + var(--header-h) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 124, 255, 0.15), transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation: hero-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  border: 1px solid rgba(77, 124, 255, 0.4);
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fade-down 1s var(--ease-out) both;
}

.hero-logo {
  width: min(200px, 40vw);
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
}

.float {
  animation: float 5s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.25rem;
  position: relative;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
}

.glitch::before {
  color: var(--accent);
  animation: glitch-1 4s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--danger);
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
}

@keyframes glitch-2 {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(2px, 2px); }
  93% { transform: translate(-2px, -1px); }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.pulse {
  animation: symbol-pulse 2s ease-in-out infinite;
}

@keyframes symbol-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 20px var(--accent-glow); }
  50% { opacity: 0.85; text-shadow: 0 0 40px var(--accent-glow); }
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--steel);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.contract-box {
  display: inline-block;
  text-align: left;
  padding: 1rem 1.25rem;
  background: rgba(15, 28, 56, 0.8);
  border: 1px solid rgba(139, 164, 199, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.contract-box label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contract-row code {
  font-size: 0.75rem;
  word-break: break-all;
  color: var(--ice);
  max-width: 280px;
}

.btn-copy {
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--navy-700);
  border: 1px solid rgba(139, 164, 199, 0.3);
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover {
  background: var(--accent);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Voices / X posts */
.voices {
  background: linear-gradient(180deg, rgba(15, 28, 56, 0.35) 0%, transparent 100%);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.25rem;
  background: linear-gradient(160deg, rgba(18, 32, 58, 0.95) 0%, rgba(10, 18, 36, 0.98) 100%);
  border: 1px solid rgba(139, 164, 199, 0.16);
  border-radius: 14px;
  box-shadow:
    0 4px 0 rgba(77, 124, 255, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.post-card:hover {
  border-color: rgba(77, 124, 255, 0.35);
  box-shadow:
    0 6px 0 rgba(77, 124, 255, 0.12),
    0 28px 56px rgba(0, 0, 0, 0.45);
}

/* Stacked offset — alternating columns */
.post-card:nth-child(odd) {
  transform: translateY(0);
}

.post-card:nth-child(even) {
  transform: translateY(2.5rem);
}

.post-card:hover {
  transform: translateY(-4px);
}

.post-card:nth-child(even):hover {
  transform: translateY(calc(2.5rem - 4px));
}

.post-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.post-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  background: linear-gradient(135deg, #1a1a1a, #333);
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.post-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.post-author span {
  font-size: 0.75rem;
  color: var(--steel);
}

.post-card-head time {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--danger);
  text-transform: uppercase;
  white-space: nowrap;
}

.post-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ice);
  font-style: italic;
  padding-left: 0.85rem;
  border-left: 3px solid var(--accent);
}

.post-embed {
  min-height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(139, 164, 199, 0.1);
}

.post-embed .twitter-tweet {
  margin: 0 auto !important;
}

.post-embed iframe {
  max-width: 100% !important;
  margin: 0 auto !important;
  border-radius: 8px;
}

.post-link {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s, gap 0.2s;
}

.post-link:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .post-card:nth-child(even) {
    transform: translateY(0);
  }

  .post-card:nth-child(even):hover {
    transform: translateY(-4px);
  }
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(15, 28, 56, 0.4), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-card {
  padding: 2rem;
  background: rgba(15, 28, 56, 0.6);
  border: 1px solid rgba(139, 164, 199, 0.12);
  border-radius: 8px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 124, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

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

.about-quote {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--danger);
  background: rgba(196, 30, 58, 0.08);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ice);
}

.about-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--steel);
}

/* How to buy */
.howtobuy {
  position: relative;
}

.howtobuy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(77, 124, 255, 0.02) 40px,
    rgba(77, 124, 255, 0.02) 80px
  );
  pointer-events: none;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--navy-800);
  border: 1px solid rgba(139, 164, 199, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--danger), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card:hover::after {
  transform: scaleX(1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(77, 124, 255, 0.25);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--steel);
}

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

/* Chart */
.chart-wrap {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139, 164, 199, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  background: var(--navy-900);
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.chart-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.chart-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--steel);
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: var(--navy-900);
}

.section-divider {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--danger) 0,
    var(--danger) 24px,
    var(--navy-800) 24px,
    var(--navy-800) 48px,
    var(--accent) 48px,
    var(--accent) 72px,
    var(--navy-800) 72px,
    var(--navy-800) 96px
  );
  background-size: 96px 100%;
  animation: stripe-move 12s linear infinite;
}

@keyframes stripe-move {
  from { background-position: 0 0; }
  to { background-position: 96px 0; }
}

/* Join us */
.joinus {
  padding: 0;
}

.joinus-banner-wrap {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.joinus-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.joinus-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 13, 0.92) 0%, rgba(3, 6, 13, 0.5) 45%, rgba(3, 6, 13, 0.75) 100%),
    linear-gradient(0deg, rgba(3, 6, 13, 0.9) 0%, transparent 40%);
}

.joinus-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
  max-width: 640px;
  animation: fade-up 1s var(--ease-out) both;
}

.joinus-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.joinus-content > p {
  font-size: 1.1rem;
  color: var(--ice);
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

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

.hashtags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hashtags li {
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(77, 124, 255, 0.2);
  border: 1px solid rgba(77, 124, 255, 0.4);
  border-radius: 999px;
  color: var(--ice);
  animation: tag-pop 0.6s var(--ease-out) both;
}

.hashtags li:nth-child(2) { animation-delay: 0.1s; }
.hashtags li:nth-child(3) { animation-delay: 0.2s; }

@keyframes tag-pop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(139, 164, 199, 0.12);
  background: var(--navy-950);
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  width: 64px;
  margin: 0 auto 1rem;
  border-radius: 8px;
  opacity: 0.9;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--steel);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(139, 164, 199, 0.6);
}

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

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

.reveal-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.4s var(--ease-out), transform 1s 0.4s var(--ease-out);
}

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

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    order: 2;
  }

  .site-nav {
    order: 3;
    position: fixed;
    top: calc(var(--ticker-h) + var(--header-h));
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem 1.5rem 2.5rem;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
    border-left: 1px solid rgba(77, 124, 255, 0.2);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-pills {
    flex-direction: column;
    border-radius: 16px;
    padding: 0.5rem;
    gap: 0.25rem;
  }

  .nav-pills a {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 10px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-icon {
    width: 100%;
    height: 48px;
    border-radius: 12px;
  }

  .nav-buy {
    width: 100%;
    min-height: 56px;
    padding: 0.75rem;
    border-radius: 12px;
  }

  .nav-buy-symbol {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .brand-text {
    display: none;
  }

  .joinus-content {
    text-align: center;
    margin-inline: auto;
  }

  .joinus-actions {
    justify-content: center;
  }

  .hashtags {
    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;
  }

  html {
    scroll-behavior: auto;
  }
}
