:root {
  --bg-deep: #0c0805;
  --bg-mid: #16100a;
  --ink: #f7f0e4;
  --ink-dim: rgba(247, 240, 228, 0.68);
  --gold: #f0b429;
  --gold-hot: #ffd56a;
  --gold-deep: #c4841a;
  --ember: #e8782a;
  --dust: #a67c52;
  --earth: #3a2618;
  --line: rgba(240, 180, 41, 0.28);
  --glass: rgba(18, 12, 8, 0.62);
  --radius: 4px;
  --shell: min(1120px, calc(100% - 2.4rem));
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Chakra Petch", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

code {
  font-family: var(--font-body);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* ========== SAVANNA WORLD ========== */
.savanna {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 70% 18%, rgba(232, 120, 42, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(240, 180, 41, 0.18), transparent 50%),
    linear-gradient(180deg, #1a1008 0%, #2a160c 28%, #4a2814 52%, #1c120c 72%, #0c0805 100%);
}

.sky-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 213, 106, 0.08) 58%, transparent 72%),
    radial-gradient(circle at 78% 22%, rgba(255, 200, 80, 0.45), transparent 28%);
  animation: sky-breathe 10s ease-in-out infinite alternate;
}

.horizon-glow {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 28%;
  height: 28vh;
  background: radial-gradient(ellipse at center, rgba(240, 180, 41, 0.35), transparent 70%);
  filter: blur(8px);
  animation: horizon-pulse 6s ease-in-out infinite alternate;
}

.dust-haze {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(166, 124, 82, 0.18) 75%, rgba(12, 8, 5, 0.7) 100%);
}

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

.speed-rail {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0 40px,
      rgba(255, 213, 106, 0.03) 40px 41px,
      transparent 41px 90px
    );
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  animation: speed-drift 18s linear infinite;
}

.acacia {
  position: absolute;
  bottom: 18%;
  width: 140px;
  height: 110px;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 70% 45% at 50% 35%, #1a120c 0 55%, transparent 56%),
    linear-gradient(90deg, transparent 46%, #1a120c 46% 54%, transparent 54%);
  filter: blur(0.4px);
}

.a-left {
  left: 4%;
  transform: scale(1.1);
  animation: tree-sway 9s ease-in-out infinite alternate;
}

.a-right {
  right: 6%;
  bottom: 20%;
  animation: tree-sway-r 11s ease-in-out infinite alternate;
}

.ground-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32vh;
  background: linear-gradient(180deg, transparent, rgba(12, 8, 5, 0.92));
}

.film-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  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");
  animation: grain-shift 0.4s steps(2) infinite;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(8, 5, 3, 0.78) 100%);
}

@keyframes sky-breathe {
  from { opacity: 0.85; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}

@keyframes horizon-pulse {
  from { opacity: 0.7; transform: scaleX(1); }
  to { opacity: 1; transform: scaleX(1.08); }
}

@keyframes speed-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-90px); }
}

@keyframes tree-sway {
  from { transform: scale(1.1) translateX(0) rotate(-0.5deg); }
  to { transform: scale(1.1) translateX(6px) rotate(0.8deg); }
}

@keyframes tree-sway-r {
  from { transform: scaleX(-1) scale(0.9) translateX(0) rotate(-0.5deg); }
  to { transform: scaleX(-1) scale(0.9) translateX(6px) rotate(0.8deg); }
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 1%); }
}

/* Cursor flare */
.cursor-flare {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.22), transparent 68%);
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

.cursor-flare.is-on {
  opacity: 1;
}

/* ========== NAV ========== */
.rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.rail.is-scrolled {
  background: rgba(12, 8, 5, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(240, 180, 41, 0.55), 0 0 22px rgba(240, 180, 41, 0.35);
  animation: logo-glow 3.2s ease-in-out infinite alternate;
}

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

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.brand-text small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

@keyframes logo-glow {
  from { box-shadow: 0 0 0 2px rgba(240, 180, 41, 0.4), 0 0 14px rgba(240, 180, 41, 0.25); }
  to { box-shadow: 0 0 0 2px rgba(255, 213, 106, 0.75), 0 0 28px rgba(240, 180, 41, 0.5); }
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-hot);
}

.nav-x {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.06);
}

.nav-x img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

.nav-cta {
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #1a1008 !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  box-shadow: 0 0 24px rgba(240, 180, 41, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(240, 180, 41, 0.5);
  color: #1a1008 !important;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  z-index: 2;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-ico {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-hot), var(--gold) 45%, var(--ember));
  color: #1a1008;
  box-shadow: 0 8px 28px rgba(232, 120, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(240, 180, 41, 0.45);
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(12, 8, 5, 0.45);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-outline .btn-ico {
  filter: invert(1);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(240, 180, 41, 0.1);
  transform: translateY(-2px);
}

.btn-copy {
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(240, 180, 41, 0.12);
  color: var(--gold-hot);
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-copy:hover {
  background: rgba(240, 180, 41, 0.22);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 7.5rem 0 5rem;
  overflow: clip;
}

.hero-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-beams span {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 130%;
  background: linear-gradient(180deg, transparent, rgba(255, 213, 106, 0.35), transparent);
  transform-origin: top center;
  animation: beam-sweep 7s ease-in-out infinite;
}

.hero-beams span:nth-child(1) { left: 12%; transform: rotate(12deg); animation-delay: 0s; }
.hero-beams span:nth-child(2) { left: 28%; transform: rotate(8deg); animation-delay: 1.2s; opacity: 0.5; }
.hero-beams span:nth-child(3) { left: 52%; transform: rotate(-4deg); animation-delay: 0.6s; }
.hero-beams span:nth-child(4) { left: 68%; transform: rotate(-10deg); animation-delay: 2s; opacity: 0.6; }
.hero-beams span:nth-child(5) { left: 84%; transform: rotate(6deg); animation-delay: 1.5s; }

@keyframes beam-sweep {
  0%, 100% { opacity: 0.15; filter: blur(0); }
  50% { opacity: 0.7; filter: blur(1px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 8, 5, 0.45);
  color: var(--ink-dim);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.6);
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(240, 180, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 180, 41, 0); }
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 40px rgba(240, 180, 41, 0.45),
    0 4px 0 rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(240, 180, 41, 0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  animation: title-shine 4s ease-in-out infinite;
}

@keyframes title-shine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.ticker-tag {
  display: inline-block;
  margin: 0.85rem 0 1.1rem;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-hot));
  color: #1a1008;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.3);
}

.hero-bio {
  margin: 0 0 1.6rem;
  max-width: 34rem;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ca-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 8, 5, 0.5);
  max-width: 100%;
}

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

.ca-value {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  color: var(--ink-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hero visual */
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.aura {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 180, 41, 0.35);
  animation: aura-spin 12s linear infinite;
}

.aura-a {
  width: 340px;
  height: 340px;
  border-style: dashed;
}

.aura-b {
  width: 400px;
  height: 400px;
  border-color: rgba(232, 120, 42, 0.25);
  animation-direction: reverse;
  animation-duration: 18s;
}

.aura-c {
  width: 460px;
  height: 460px;
  border-color: rgba(255, 213, 106, 0.15);
  animation-duration: 24s;
}

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

.charge-core {
  position: relative;
  width: min(320px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 2;
}

.core-flare {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 106, 0.45), rgba(232, 120, 42, 0.15) 45%, transparent 70%);
  animation: core-breathe 3s ease-in-out infinite alternate;
  filter: blur(6px);
}

@keyframes core-breathe {
  from { transform: scale(0.92); opacity: 0.7; }
  to { transform: scale(1.08); opacity: 1; }
}

.hero-logo,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.hero-logo {
  box-shadow:
    0 0 0 3px rgba(240, 180, 41, 0.65),
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(240, 180, 41, 0.35);
  animation: charge-bob 4s ease-in-out infinite;
}

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.65);
}

.hero-video.is-ready {
  opacity: 1;
  z-index: 2;
}

.hero-video.is-ready ~ .hero-logo {
  opacity: 0;
}

@keyframes charge-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.clock-hand {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(12, 8, 5, 0.75);
  z-index: 3;
  box-shadow: 0 0 16px rgba(240, 180, 41, 0.5);
}

.clock-hand::before,
.clock-hand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  background: var(--gold-hot);
  transform-origin: bottom center;
  border-radius: 2px;
}

.clock-hand::before {
  height: 10px;
  margin-left: -1px;
  animation: hand-hour 8s linear infinite;
}

.clock-hand::after {
  height: 13px;
  margin-left: -1px;
  animation: hand-min 2s linear infinite;
}

@keyframes hand-hour {
  to { transform: rotate(360deg); }
}

@keyframes hand-min {
  to { transform: rotate(360deg); }
}

.impact-lines {
  position: absolute;
  inset: 8% -8%;
  background:
    repeating-linear-gradient(
      95deg,
      transparent 0 18px,
      rgba(255, 213, 106, 0.12) 18px 19px,
      transparent 19px 36px
    );
  mask-image: radial-gradient(circle at 50% 50%, transparent 28%, #000 55%, transparent 78%);
  animation: impact-rush 1.8s linear infinite;
  opacity: 0.55;
  z-index: 0;
}

@keyframes impact-rush {
  from { transform: translateX(0); }
  to { transform: translateX(-36px); }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-hint i {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: scroll-drop 1.6s ease-in-out infinite;
}

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

/* ========== PANELS ========== */
.panel {
  position: relative;
  padding: 6.5rem 0;
}

.panel-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.panel-head h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lead {
  margin: 0;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.about-mark {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.about-mark img {
  width: min(280px, 70vw);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.5), 0 24px 50px rgba(0, 0, 0, 0.45);
}

.mark-spin {
  position: absolute;
  width: min(340px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(240, 180, 41, 0.4);
  animation: aura-spin 20s linear infinite;
}

.mark-spin::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(232, 120, 42, 0.25);
  animation: aura-spin 14s linear infinite reverse;
}

.about-kicker {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about-copy > p {
  margin: 0 0 1.4rem;
  color: var(--ink-dim);
}

.creed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.creed li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(240, 180, 41, 0.18);
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(240, 180, 41, 0.08), rgba(12, 8, 5, 0.35));
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.creed li:hover {
  transform: translateX(6px);
  border-color: rgba(240, 180, 41, 0.45);
  background: linear-gradient(90deg, rgba(240, 180, 41, 0.14), rgba(12, 8, 5, 0.45));
}

.creed-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(12, 8, 5, 0.55);
}

.creed-ico svg {
  width: 18px;
  height: 18px;
}

.creed strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.creed span {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

/* How to buy */
.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.35rem 1.15rem 1.25rem;
  border: 1px solid rgba(240, 180, 41, 0.2);
  background:
    linear-gradient(160deg, rgba(240, 180, 41, 0.1), transparent 55%),
    rgba(12, 8, 5, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(240, 180, 41, 0.12);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(240, 180, 41, 0.4);
}

.step-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.step-body p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.buy-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Chart */
.chart-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.chart-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(240, 180, 41, 0.28);
  background: rgba(8, 5, 3, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(240, 180, 41, 0.08);
  min-height: 520px;
}

.chart-rim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 213, 106, 0.08);
  z-index: 1;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #0b0e11;
}

/* Join us — banner only here */
.banner-stage {
  position: relative;
  margin-bottom: 1.75rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(240, 180, 41, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(232, 120, 42, 0.15);
}

.banner-art {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 4s ease;
}

.banner-stage:hover .banner-art {
  transform: scale(1.06);
}

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

.banner-dust {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(12, 8, 5, 0.35));
  pointer-events: none;
}

@keyframes banner-gleam {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(240, 180, 41, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 8, 5, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.social:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, 0.55);
  background: rgba(240, 180, 41, 0.1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.social-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(240, 180, 41, 0.1);
  flex-shrink: 0;
}

.social-ico img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.social-rh {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.social-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.social-meta strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.social-meta span {
  color: var(--ink-dim);
  font-size: 0.85rem;
}

/* Footer */
.foot {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(240, 180, 41, 0.18);
  background: linear-gradient(180deg, transparent, rgba(8, 5, 3, 0.85));
}

.foot-inner {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.brand-foot {
  gap: 0.65rem;
}

.brand-foot img {
  width: 36px;
  height: 36px;
  animation: none;
}

.foot-tick {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.foot-bio {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.foot-links {
  display: flex;
  gap: 0.65rem;
}

.foot-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(240, 180, 41, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.foot-links a:hover {
  background: rgba(240, 180, 41, 0.2);
  border-color: var(--gold);
}

.foot-links img {
  width: 15px;
  height: 15px;
  filter: invert(1);
}

.foot-note {
  margin: 0.5rem 0 0;
  color: rgba(247, 240, 228, 0.4);
  font-size: 0.8rem;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--delay, 0) * 1ms);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-grid,
  .about-split {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    min-height: 340px;
  }

  .aura-a { width: 280px; height: 280px; }
  .aura-b { width: 330px; height: 330px; }
  .aura-c { width: 380px; height: 380px; }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .burger {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    padding: 5.5rem 1.4rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(12, 8, 5, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid rgba(240, 180, 41, 0.12);
  }

  .nav-x,
  .nav-cta {
    width: fit-content;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 420px;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .panel {
    padding: 4.5rem 0;
  }
}

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