:root {
  --of-blue: #00aeef;
  --of-blue-deep: #0091c9;
  --of-blue-soft: rgba(0, 174, 239, 0.14);
  --ink: #12171c;
  --ink-soft: #3a4550;
  --paper: #e9eef3;
  --paper-2: #f7fafc;
  --card: rgba(255, 255, 255, 0.78);
  --yellow: #ffd84d;
  --yellow-deep: #f0c020;
  --line: rgba(18, 23, 28, 0.1);
  --shadow: 0 18px 50px rgba(18, 23, 28, 0.12);
  --radius: 22px;
  --font: "Space Grotesk", sans-serif;
  --script: "Caveat", cursive;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Background */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 174, 239, 0.18), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(255, 216, 77, 0.22), transparent 28%),
    linear-gradient(160deg, #eef4f8 0%, #e4ebf2 45%, #f4f8fb 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 23, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 28, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  animation: gridDrift 28s linear infinite;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite;
}

.bg-orb-a {
  width: 340px;
  height: 340px;
  left: -80px;
  top: 18%;
  background: rgba(0, 174, 239, 0.35);
}

.bg-orb-b {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 8%;
  background: rgba(255, 216, 77, 0.4);
  animation-delay: -4s;
}

.bg-orb-c {
  width: 420px;
  height: 420px;
  left: 35%;
  bottom: -140px;
  background: rgba(0, 145, 201, 0.18);
  animation-delay: -7s;
}

.bg-scribble {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(255, 216, 77, 0.55);
  transform: rotate(-8deg);
  opacity: 0.55;
}

.scribble-a {
  top: 120px;
  right: 12%;
  animation: scribbleSpin 18s linear infinite;
}

.scribble-b {
  bottom: 18%;
  left: 8%;
  width: 120px;
  height: 120px;
  border-style: dashed;
  animation: scribbleSpin 22s linear infinite reverse;
}

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

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(48px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -30px, 0) scale(1.08); }
}

@keyframes scribbleSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(233, 238, 243, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-lock,
.footer-brand .brand-lock {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--of-blue);
  position: relative;
  box-shadow: 0 0 0 3px #fff, 0 8px 18px rgba(0, 174, 239, 0.35);
  flex-shrink: 0;
}

.brand-lock::after,
.footer-brand .brand-lock::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid #fff;
  border-radius: 5px;
  border-top-width: 3px;
}

.brand-only,
.hero-only {
  letter-spacing: -0.03em;
}

.brand-dogs,
.hero-dogs {
  font-family: var(--script);
  color: var(--of-blue);
  font-size: 1.35em;
  margin-left: 2px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s var(--ease);
}

.nav a:hover {
  opacity: 1;
  color: var(--of-blue-deep);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease;
}

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

.icon-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 174, 239, 0.18);
  background: #fff;
  border-color: rgba(0, 174, 239, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--of-blue), var(--of-blue-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 174, 239, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 174, 239, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #fff;
}

.btn-lg {
  min-height: 52px;
  padding: 0 22px;
  font-size: 1.02rem;
}

.btn-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  place-items: center;
  gap: 6px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease);
}

.mobile-nav {
  display: none;
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(247, 250, 252, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 14px 22px 18px;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  font-weight: 600;
}

.mobile-nav[hidden] {
  display: none !important;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 22px 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100svh - var(--header-h) - 52px);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--of-blue-soft);
  color: var(--of-blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-script {
  font-family: var(--script);
  font-size: 1.45rem;
  color: var(--ink-soft);
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 8px;
}

.hero-brand {
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.hero-symbol {
  width: fit-content;
  font-size: 1rem;
  font-weight: 700;
  color: var(--of-blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 8px 20px rgba(0, 174, 239, 0.12);
  animation: pulseSoft 2.8s ease-in-out infinite;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 34ch;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.2s ease;
}

.social-chip img {
  width: 16px;
  height: 16px;
}

.social-chip:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(0, 174, 239, 0.35);
  color: var(--of-blue-deep);
}

.hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.sticker-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.55), transparent 68%);
  filter: blur(10px);
  animation: glowPulse 3.5s ease-in-out infinite;
}

.hero-media {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow), 0 0 0 6px rgba(255, 255, 255, 0.85);
  animation: stickerFloat 5.5s ease-in-out infinite;
  transform-origin: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-video,
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.fig-caption {
  margin: 14px 0 0;
  font-family: var(--script);
  font-size: 1.35rem;
  color: var(--ink-soft);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #555, #111 70%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  z-index: 2;
  animation: pinBob 2.8s ease-in-out infinite;
}

.pin-tl { top: 14px; left: 16px; }
.pin-br { right: 18px; bottom: 18px; animation-delay: -1s; }

.tape {
  position: absolute;
  width: 72px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255, 216, 77, 0.95), rgba(240, 192, 32, 0.88));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.tape-tr {
  top: 18px;
  right: 28px;
  transform: rotate(18deg);
  animation: tapeWiggle 4s ease-in-out infinite;
}

.tape-tl {
  top: 18px;
  left: 24px;
  transform: rotate(-14deg);
}

.tape-br {
  right: 28px;
  bottom: 22px;
  transform: rotate(10deg);
}

.clip {
  position: absolute;
  width: 18px;
  height: 42px;
  border: 3px solid #9aa3ad;
  border-radius: 10px;
  top: 10px;
  right: 42%;
  background: linear-gradient(#dfe5ea, #c8d0d8);
  z-index: 2;
  animation: clipSway 3.6s ease-in-out infinite;
}

@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@keyframes pinBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes tapeWiggle {
  0%, 100% { transform: rotate(18deg); }
  50% { transform: rotate(22deg); }
}

@keyframes clipSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 42px;
  padding: 14px 0;
  min-width: 200%;
  animation: ticker 22s linear infinite;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--of-blue-deep);
}

.ticker-track span:nth-child(odd) {
  color: var(--ink);
}

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

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 22px;
}

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

.section-kicker {
  margin: 0 0 10px;
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--of-blue-deep);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 56ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.paper-card,
.mission-card,
.step,
.ca-panel,
.chart-frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.paper-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.paper-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(18, 23, 28, 0.035) 28px
    );
  pointer-events: none;
}

.paper-card > * {
  position: relative;
}

.paper-label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--of-blue-deep);
}

.paper-card h3,
.mission-card h3,
.step h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.paper-card p,
.mission-card p,
.step p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.paper-card p:last-child {
  margin-bottom: 0;
}

.mission-stack {
  display: grid;
  gap: 14px;
}

.mission-card {
  padding: 20px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 20px 40px rgba(0, 174, 239, 0.14);
}

.mission-index {
  display: inline-block;
  font-weight: 700;
  color: var(--of-blue);
  margin-bottom: 6px;
}

.stats-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat {
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s var(--ease);
}

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

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--of-blue-deep);
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  transition: transform 0.3s var(--ease);
}

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

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--of-blue), var(--of-blue-deep));
  box-shadow: 0 10px 20px rgba(0, 174, 239, 0.28);
}

.step-icon {
  width: 34px;
  height: 34px;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 174, 239, 0.25));
}

.ca-panel {
  margin-top: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ca-label {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

#ca-display {
  display: block;
  font-size: 0.95rem;
  word-break: break-all;
  color: var(--ink);
}

/* Chart */
.chart-frame {
  overflow: hidden;
}

.chart-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.chart-toolbar a {
  margin-left: auto;
  color: var(--of-blue-deep);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.chart-embed-wrap {
  position: relative;
  min-height: 560px;
  background: #0b1220;
}

.chart-embed-wrap iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  color: #d7e0ea;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 174, 239, 0.25), transparent 40%),
    #101826;
}

.chart-placeholder img {
  width: 54px;
  height: 54px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.chart-placeholder[hidden] {
  display: none;
}

/* Join */
.join-stage {
  display: grid;
  gap: 18px;
}

.banner-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 0 6px rgba(255, 255, 255, 0.7);
  animation: bannerDrift 7s ease-in-out infinite;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
}

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

@keyframes bannerDrift {
  0%, 100% { transform: translateY(0) rotate(-0.2deg); }
  50% { transform: translateY(-6px) rotate(0.25deg); }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 36px 22px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.footer-links img {
  width: 16px;
  height: 16px;
}

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

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
  z-index: 80;
}

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

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .btn-buy {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }

  .hero-stage {
    order: -1;
  }

  .hero-media {
    width: min(100%, 420px);
  }

  .about-grid,
  .steps,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .header-actions .icon-btn:nth-child(2),
  .header-actions .icon-btn:nth-child(3) {
    display: none;
  }

  .hero-brand {
    font-size: 3.1rem;
  }

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

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