:root {
  --bg: #000814;
  --bg-2: #020b1c;
  --bg-3: #061428;
  --lime: #c6ff00;
  --lime-hot: #dcff3d;
  --lime-dim: rgba(198, 255, 0, 0.14);
  --lime-glow: rgba(198, 255, 0, 0.45);
  --ink: #e8f0ff;
  --muted: #8a9bb8;
  --line: rgba(184, 230, 0, 0.22);
  --glass: rgba(2, 12, 28, 0.72);
  --radius: 18px;
  --font-display: "Oxanium", sans-serif;
  --font-body: "Sora", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(184, 230, 0, 0.1), transparent 55%),
    radial-gradient(900px 600px at -10% 30%, rgba(0, 180, 220, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, #01060f 100%);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

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

/* Atmosphere */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

#wavefield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.aurora {
  pointer-events: none;
  position: fixed;
  inset: -20%;
  z-index: 0;
  background:
    conic-gradient(from 120deg at 50% 40%, transparent 0deg, rgba(184, 230, 0, 0.08) 60deg, transparent 120deg, rgba(0, 200, 255, 0.05) 200deg, transparent 280deg);
  animation: aurora-spin 36s linear infinite;
  filter: blur(40px);
}

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

.ripple-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  opacity: 0.25;
}

.ripple-bg span {
  position: absolute;
  width: min(70vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 230, 0, 0.18);
  border-radius: 50%;
  animation: ripple-expand 10s var(--ease) infinite;
}

.ripple-bg span:nth-child(2) { animation-delay: 2.2s; }
.ripple-bg span:nth-child(3) { animation-delay: 4.4s; }

@keyframes ripple-expand {
  0% { transform: scale(0.35); opacity: 0.55; }
  100% { transform: scale(1.55); opacity: 0; }
}

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

.topbar.is-scrolled {
  background: rgba(0, 8, 20, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(184, 230, 0, 0.12);
}

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

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(184, 230, 0, 0.35), 0 0 24px rgba(184, 230, 0, 0.25);
  animation: logo-breathe 4.5s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(184, 230, 0, 0.35), 0 0 18px rgba(184, 230, 0, 0.2); }
  50% { box-shadow: 0 0 0 1px rgba(184, 230, 0, 0.55), 0 0 32px rgba(184, 230, 0, 0.4); }
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

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

.brand__text small {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

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

.nav a {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

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

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-orb {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(184, 230, 0, 0.06);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.social-orb:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(184, 230, 0, 0.16);
  border-color: var(--lime);
}

.social-orb img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--line);
}

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

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

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

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1.25rem 4rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.1) contrast(1.05);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 8, 20, 0.55) 0%, rgba(0, 8, 20, 0.75) 45%, rgba(0, 8, 20, 0.96) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(184, 230, 0, 0.12), transparent 55%);
}

.hero__freq {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}

.hero__freq i {
  width: 3px;
  height: 20%;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--lime-hot), rgba(184, 230, 0, 0.2));
  animation: freq-bounce 1.2s ease-in-out infinite;
}

.hero__freq i:nth-child(odd) { animation-duration: 0.95s; }
.hero__freq i:nth-child(3n) { animation-duration: 1.4s; }
.hero__freq i:nth-child(1) { animation-delay: 0.05s; }
.hero__freq i:nth-child(2) { animation-delay: 0.12s; }
.hero__freq i:nth-child(3) { animation-delay: 0.2s; }
.hero__freq i:nth-child(4) { animation-delay: 0.08s; }
.hero__freq i:nth-child(5) { animation-delay: 0.28s; }
.hero__freq i:nth-child(6) { animation-delay: 0.16s; }
.hero__freq i:nth-child(7) { animation-delay: 0.22s; }
.hero__freq i:nth-child(8) { animation-delay: 0.1s; }
.hero__freq i:nth-child(9) { animation-delay: 0.3s; }
.hero__freq i:nth-child(10) { animation-delay: 0.14s; }
.hero__freq i:nth-child(11) { animation-delay: 0.24s; }
.hero__freq i:nth-child(12) { animation-delay: 0.18s; }

@keyframes freq-bounce {
  0%, 100% { height: 18%; opacity: 0.45; }
  50% { height: 100%; opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stage {
  position: relative;
  width: min(220px, 46vw);
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  display: grid;
  place-items: center;
}

.hero__logo {
  width: 72%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: logo-float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(184, 230, 0, 0.35));
}

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

.hero__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 230, 0, 0.35);
  animation: ring-pulse 4s var(--ease) infinite;
}

.hero__rings span:nth-child(2) {
  inset: -12%;
  animation-delay: 0.7s;
  border-color: rgba(184, 230, 0, 0.22);
}

.hero__rings span:nth-child(3) {
  inset: -24%;
  animation-delay: 1.4s;
  border-color: rgba(184, 230, 0, 0.12);
}

@keyframes ring-pulse {
  0% { transform: scale(0.92); opacity: 0.8; }
  70% { transform: scale(1.08); opacity: 0.15; }
  100% { transform: scale(1.12); opacity: 0; }
}

.hero__kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.brand-glow {
  background: linear-gradient(120deg, #f4ffc2 0%, var(--lime) 40%, #9ad400 70%, #eaff8a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
  filter: drop-shadow(0 0 24px rgba(184, 230, 0, 0.25));
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero__ticker {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.35em;
  color: var(--lime-hot);
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.hero__links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-chip {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 12, 28, 0.55);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

.icon-chip:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: rgba(184, 230, 0, 0.12);
}

.icon-chip img[src*="x.svg"],
.icon-chip img[src*="robinhood.svg"],
.icon-chip img[src*="coin.svg"] {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(184, 230, 0, 0.35);
  border-radius: 99px;
  z-index: 2;
}

.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 99px;
  background: var(--lime);
  animation: scroll-dot 1.6s var(--ease) infinite;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn--lime {
  background: linear-gradient(135deg, var(--lime-hot), var(--lime));
  color: #061000;
  box-shadow: 0 0 0 1px rgba(214, 255, 51, 0.35), 0 10px 30px rgba(184, 230, 0, 0.25);
}

.btn--lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(214, 255, 51, 0.5), 0 14px 40px rgba(184, 230, 0, 0.4);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(184, 230, 0, 0.05);
  color: var(--ink);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  background: rgba(184, 230, 0, 0.12);
}

.btn--sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.btn img {
  filter: brightness(0);
}

.btn--ghost img {
  filter: brightness(0) invert(1);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1.1rem, 4vw, 2.5rem);
  max-width: 1120px;
  margin: 0 auto;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.7rem;
}

.section__head h2,
.joinus__content h2 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.section__sub {
  color: var(--muted);
  font-size: 1.02rem;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.feature {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 230, 0, 0.14);
  background:
    linear-gradient(160deg, rgba(184, 230, 0, 0.08), transparent 45%),
    rgba(2, 14, 32, 0.65);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 230, 0, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(184, 230, 0, 0.08);
}

.feature__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--lime);
  border-radius: 14px;
  background: rgba(184, 230, 0, 0.08);
  border: 1px solid rgba(184, 230, 0, 0.18);
}

.feature__icon svg {
  width: 28px;
  height: 28px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

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

.ca-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 230, 0, 0.25);
  background:
    linear-gradient(90deg, rgba(184, 230, 0, 0.1), transparent 40%),
    rgba(1, 10, 22, 0.8);
  box-shadow: inset 0 0 40px rgba(184, 230, 0, 0.04);
}

.ca-panel__meta p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.ca-row code {
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  letter-spacing: 0.02em;
  color: var(--lime-hot);
  word-break: break-all;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(184, 230, 0, 0.18);
}

/* How to buy */
.howtobuy {
  max-width: 900px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 230, 0, 0.12);
  background: rgba(2, 12, 28, 0.55);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--lime-hot), transparent);
  opacity: 0.7;
}

.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lime);
  line-height: 1;
  min-width: 2.4rem;
}

.step__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

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

/* Chart */
.chart__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.chart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(184, 230, 0, 0.05);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.chart-link:hover {
  transform: translateY(-2px);
  background: rgba(184, 230, 0, 0.14);
  border-color: var(--lime);
}

.chart-link img[src*="robinhood.svg"],
.chart-link img[src*="coin.svg"] {
  filter: brightness(0) invert(1);
}

.chart__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(184, 230, 0, 0.22);
  background: #0a1220;
  box-shadow: 0 0 0 1px rgba(184, 230, 0, 0.05), 0 25px 60px rgba(0, 0, 0, 0.45);
  min-height: 520px;
}

.chart__frame::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(184, 230, 0, 0.05);
}

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

/* Join Us — banner only here */
.joinus {
  max-width: 1080px;
  display: grid;
  gap: 1.75rem;
}

.joinus__banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(184, 230, 0, 0.25);
  min-height: 240px;
  background:
    radial-gradient(circle at 70% 40%, rgba(184, 230, 0, 0.18), transparent 45%),
    linear-gradient(135deg, #03101f, #000814 60%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.joinus__banner-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  animation: banner-ken 18s ease-in-out infinite alternate;
}

@keyframes banner-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.joinus__banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, rgba(0, 8, 20, 0.45));
  pointer-events: none;
}

.joinus__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.joinus__content p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.joinus__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid rgba(184, 230, 0, 0.1);
  background: rgba(0, 4, 12, 0.65);
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand--footer span {
  font-family: var(--font-display);
  font-weight: 700;
}

.brand--footer img {
  border-radius: 50%;
}

.footer__note {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background 0.25s, transform 0.25s;
}

.footer__social a:hover {
  background: rgba(184, 230, 0, 0.12);
  transform: translateY(-2px);
}

.footer__social img[src*="x.svg"] {
  filter: brightness(0) invert(1);
}

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

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

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

  .burger {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.5rem 2rem;
    background: rgba(0, 8, 20, 0.96);
    border-left: 1px solid rgba(184, 230, 0, 0.15);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    gap: 1.25rem;
  }

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

  .chart__frame iframe {
    height: 480px;
  }

  .ca-panel {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 6rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

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