:root {
  --blue-deep: #06122f;
  --blue-mid: #0b1f5c;
  --blue-core: #1a53ff;
  --blue-bright: #3d7cff;
  --blue-glow: #6ea8ff;
  --cyan: #7ec8ff;
  --ink: #eef4ff;
  --muted: #9db4e8;
  --line: rgba(126, 200, 255, 0.28);
  --glass: rgba(10, 28, 78, 0.55);
  --radius: 4px;
  --shell: min(1180px, calc(100% - 2.4rem));
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", 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-size: 1.125rem;
  line-height: 1.55;
  background: var(--blue-deep);
  overflow-x: hidden;
}

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

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

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

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

/* Atmosphere */
.fx-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.fx-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%, rgba(61, 124, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(26, 83, 255, 0.28), transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(8, 30, 90, 0.9), transparent 60%),
    linear-gradient(180deg, #071533 0%, #0a1c4a 42%, #06122f 100%);
}

.fx-hex {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(126, 200, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 200, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 85%);
  animation: grid-drift 28s linear infinite;
}

#signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.fx-beams {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 210deg at 30% 20%, transparent 0 70%, rgba(110, 168, 255, 0.08) 78%, transparent 90%),
    conic-gradient(from 40deg at 75% 70%, transparent 0 68%, rgba(26, 83, 255, 0.1) 80%, transparent 92%);
  animation: beam-spin 40s linear infinite;
}

.fx-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.fx-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(110, 168, 255, 0.12), transparent);
  animation: scan-sweep 7.5s ease-in-out infinite;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(2, 8, 24, 0.78) 100%);
}

@keyframes grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

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

@keyframes scan-sweep {
  0%, 100% { top: -20%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(6, 18, 47, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

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

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(126, 200, 255, 0.35), 0 0 24px rgba(26, 83, 255, 0.45);
}

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

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-panel a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.nav-buy {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(110, 168, 255, 0.55);
  background: linear-gradient(135deg, rgba(26, 83, 255, 0.35), rgba(61, 124, 255, 0.15));
  color: var(--ink) !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open 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.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-core), var(--blue-bright));
  box-shadow: 0 0 28px rgba(26, 83, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(61, 124, 255, 0.65);
}

.btn-ghost {
  background: rgba(10, 28, 78, 0.55);
  border: 1px solid rgba(126, 200, 255, 0.4);
}

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

.btn-line {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-line:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-video.is-ready {
  opacity: 0.42;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 18, 47, 0.88) 0%, rgba(11, 31, 92, 0.55) 48%, rgba(6, 18, 47, 0.82) 100%),
    radial-gradient(circle at 70% 45%, rgba(61, 124, 255, 0.28), transparent 42%);
}

.hero-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(126, 200, 255, 0.18);
  pointer-events: none;
}

.hero-frame .corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--blue-glow);
}

.hero-frame .tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-frame .tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.hero-frame .bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.hero-frame .br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.brand-signal {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 0 32px rgba(61, 124, 255, 0.55);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan), #fff 55%, var(--blue-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accent-shimmer 5s ease-in-out infinite;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-120%);
  animation: slash-light 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes slash-light {
  0%, 60%, 100% { transform: translateX(-120%); opacity: 0; }
  70% { opacity: 0.8; }
  85% { transform: translateX(120%); opacity: 0; }
}

@keyframes accent-shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.hero-bio {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.ticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.ticker-pill,
.protocol-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 36px;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(126, 200, 255, 0.35);
  background: rgba(8, 24, 70, 0.55);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5dff9a;
  box-shadow: 0 0 12px #5dff9a;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.65; }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.emblem-orbit,
.emblem-orbit.delayed {
  position: absolute;
  border: 1px dashed rgba(126, 200, 255, 0.35);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.emblem-orbit {
  width: min(420px, 82vw);
  height: min(420px, 82vw);
}

.emblem-orbit.delayed {
  width: min(300px, 62vw);
  height: min(300px, 62vw);
  animation-direction: reverse;
  animation-duration: 12s;
  border-style: solid;
  border-color: rgba(61, 124, 255, 0.28);
}

.emblem-pulse {
  position: absolute;
  width: min(260px, 55vw);
  height: min(260px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 124, 255, 0.45), transparent 70%);
  animation: pulse-glow 3.2s ease-in-out infinite;
}

.emblem-logo {
  position: relative;
  z-index: 1;
  width: min(240px, 52vw);
  height: min(240px, 52vw);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 60px rgba(8, 24, 80, 0.55),
    0 0 50px rgba(26, 83, 255, 0.45);
  animation: logo-float 5.5s ease-in-out infinite, logo-glitch 7s steps(1) infinite;
}

@keyframes logo-glitch {
  0%, 92%, 100% { filter: none; }
  93% { filter: hue-rotate(18deg) saturate(1.35) contrast(1.15); }
  94% { filter: none; }
  95% { filter: brightness(1.2) contrast(1.1); }
}

.emblem-readout {
  position: absolute;
  bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
}

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

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

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

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(126, 200, 255, 0.4);
  border-radius: 20px;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  background: var(--cyan);
  border-radius: 2px;
  animation: cue-drop 1.6s ease-in-out infinite;
}

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

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

.section-head {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.about-panel {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  background: linear-gradient(160deg, rgba(14, 36, 96, 0.55), rgba(8, 20, 56, 0.35));
  border: 1px solid rgba(126, 200, 255, 0.16);
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-top: 2px solid var(--blue-glow);
  border-left: 2px solid var(--blue-glow);
  opacity: 0.8;
}

.about-panel h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
}

.about-panel:hover {
  border-color: rgba(110, 168, 255, 0.45);
  box-shadow: 0 0 30px rgba(26, 83, 255, 0.18);
  transform: translateY(-3px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* How to buy */
.buy-path {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.buy-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-left: 2px solid rgba(61, 124, 255, 0.55);
  background:
    linear-gradient(90deg, rgba(26, 83, 255, 0.16), transparent 55%),
    rgba(8, 22, 60, 0.35);
  position: relative;
}

.buy-step::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--cyan);
  transition: height 0.6s ease;
}

.buy-step.is-inview::after,
.buy-step:hover::after {
  height: 100%;
}

.step-index {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.buy-step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buy-step p {
  margin: 0;
  color: var(--muted);
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.ca-line {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-line.is-ready {
  color: var(--cyan);
}

/* Chart */
.chart-shell {
  border: 1px solid rgba(126, 200, 255, 0.22);
  background: rgba(6, 16, 42, 0.65);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(26, 83, 255, 0.15);
}

.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(126, 200, 255, 0.16);
  background: rgba(12, 32, 88, 0.55);
}

.chart-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chart-links {
  display: flex;
  gap: 1rem;
}

.chart-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.chart-links img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.chart-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background: #0a1428;
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Join Us — banner only here */
.joinus {
  position: relative;
  padding: 0;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
}

.join-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: banner-ken 18s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 47, 0.72), rgba(6, 18, 47, 0.55) 40%, rgba(6, 18, 47, 0.85)),
    radial-gradient(circle at 50% 40%, rgba(26, 83, 255, 0.2), transparent 55%);
}

@keyframes banner-ken {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-2%); }
}

.join-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.joinus .section-head {
  max-width: 36rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.85rem 1.3rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(8, 22, 64, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(61, 124, 255, 0.35);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(126, 200, 255, 0.16);
  background: rgba(4, 12, 32, 0.75);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.footer-brand img {
  border-radius: 6px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 200, 255, 0.28);
  background: rgba(12, 32, 88, 0.45);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.footer-links img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-note {
  width: var(--shell);
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

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

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

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-emblem {
    order: -1;
    min-height: 320px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(6, 18, 47, 0.96);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

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

  .nav-panel a {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero-frame {
    inset: 0.75rem;
  }

  .chart-frame {
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(1180px, calc(100% - 1.4rem));
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .hero-cta,
  .buy-actions,
  .social-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .social-btn {
    width: 100%;
  }

  .emblem-readout {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
