:root {
  --bg: #050505;
  --bg-elev: #0c0c0c;
  --ink: #f4f4f4;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --accent: #ffffff;
  --soft: #cfcfcf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius: 2px;
  --header-h: 72px;
  --ca: "";
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(900px 600px at 10% 20%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, #080808 0%, var(--bg) 40%, #030303 100%);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.045;
  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: overlay;
}

.p-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M38 28h22c12 0 22 10 22 22s-10 22-22 22H52v28H38V28zm14 14v16h8c4.4 0 8-3.6 8-8s-3.6-8-8-8h-8z'/%3E%3Cline x1='44' y1='34' x2='58' y2='34'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  animation: field-drift 40s linear infinite;
}

.beam {
  pointer-events: none;
  position: fixed;
  inset: -20% -10%;
  z-index: 0;
  background: conic-gradient(from 180deg at 50% 30%, transparent 0deg, rgba(255, 255, 255, 0.035) 40deg, transparent 80deg);
  animation: beam-spin 28s linear infinite;
  opacity: 0.7;
}

.cursor-spot {
  pointer-events: none;
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

body.is-pointer .cursor-spot {
  opacity: 1;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.88);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand-ticker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--soft);
  position: relative;
  transition: color 0.2s ease;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.icon-link:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.icon-link img {
  filter: brightness(1.05) contrast(1.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 0.95rem;
}

.btn-solid {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-icon {
  flex-shrink: 0;
}

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

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

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

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

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 8% 20% auto;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(20px);
  animation: pulse-glow 5.5s ease-in-out infinite;
}

.hero-stage {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem 3rem;
  align-items: center;
  position: relative;
}

.hero-orbit {
  position: absolute;
  left: 8%;
  top: 50%;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.hero-orbit span:nth-child(2) {
  inset: 8%;
  border-style: dashed;
  animation-duration: 26s;
  animation-direction: reverse;
}

.hero-orbit span:nth-child(3) {
  inset: 18%;
  border-color: rgba(255, 255, 255, 0.14);
  animation-duration: 12s;
}

.hero-portrait-wrap {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
  z-index: 1;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.03),
    0 30px 80px rgba(0, 0, 0, 0.65);
  animation: portrait-float 7s ease-in-out infinite;
}

.portrait-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.7), transparent 40%, transparent) border-box;
  animation: ring-spin 8s linear infinite;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.inline-icon {
  border-radius: 50%;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.title-line {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-style: italic;
  text-transform: uppercase;
}

.title-paid {
  font-size: clamp(3.4rem, 10vw, 7rem);
  position: relative;
  display: inline-block;
  padding-bottom: 0.12em;
}

.title-paid::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.11em;
  background: linear-gradient(90deg, #fff 0%, #fff 72%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  transform-origin: left center;
  animation: slash-in 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-tagline {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: var(--soft);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.stat-chip {
  min-width: 160px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.stat-chip:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.ca-text {
  font-size: 0.92rem;
  max-width: 14ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  margin-top: auto;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

.marquee-track span::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  vertical-align: middle;
}

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

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

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

.section-head h2 {
  margin: 0.35rem 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-style: italic;
  text-transform: uppercase;
}

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

.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 30%, transparent),
    radial-gradient(700px 280px at 90% 20%, rgba(255, 255, 255, 0.05), transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-block {
  padding: 1.6rem 1.4rem 1.7rem;
  border-top: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-block::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  transition: transform 0.4s ease;
}

.about-block:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 75%);
}

.about-block:hover::before {
  transform: scale(1.35);
}

.about-index {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.about-block h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.about-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.howtobuy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.buy-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
  border-left: 1px solid var(--line);
  margin-left: 0.65rem;
}

.buy-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.35rem 0 1.35rem 1.35rem;
  position: relative;
}

.buy-step::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.7rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.22);
}

.step-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: #fff;
  border-color: #fff;
}

.trade-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.trade-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.1rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.trade-btn:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.trade-btn img {
  filter: brightness(1.05);
}

.chart-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 560px;
}

.chart-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.03);
}

.chart-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.chart-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.joinus {
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(255, 255, 255, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.banner-frame {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  position: relative;
}

.banner-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08), transparent 70%);
  transform: translateX(-120%);
  animation: banner-sheen 5.5s ease-in-out infinite;
  z-index: 1;
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s ease;
}

.banner-frame:hover .join-banner {
  transform: scale(1.03);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  background: #030303;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
}

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

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

.footer-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  padding: 0.7rem 1.1rem;
  background: #fff;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes field-drift {
  from { background-position: 0 0; }
  to { background-position: 120px 120px; }
}

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

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

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

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

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

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

@keyframes slash-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

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

@media (max-width: 960px) {
  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-orbit {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-stats,
  .join-actions {
    justify-content: center;
  }

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

  .title-paid {
    display: block;
  }

  .title-paid::after {
    left: 4%;
    width: 92%;
    transform-origin: center;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.35rem 1rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

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

  .header-actions .btn {
    display: none;
  }

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

  .buy-step {
    grid-template-columns: 52px 1fr;
    padding-left: 1rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
