:root {
  --bg: #050706;
  --bg-elev: #0a100c;
  --bg-panel: #0d1611;
  --cream: #f3eee3;
  --cream-dim: #c6bfb0;
  --cream-soft: rgba(243, 238, 227, 0.72);
  --emerald: #0c3d2c;
  --emerald-deep: #062117;
  --rh: #00c805;
  --rh-hot: #3dff6e;
  --rh-dim: rgba(0, 200, 5, 0.16);
  --gold: #d4af37;
  --gold-soft: #c4a05a;
  --ink: #10110e;
  --line: rgba(243, 238, 227, 0.1);
  --line-strong: rgba(243, 238, 227, 0.18);
  --header: rgba(5, 7, 6, 0.72);
  --radius: 18px;
  --header-h: 76px;
  --max: 1180px;
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--rh);
  outline-offset: 3px;
}

::selection {
  background: var(--rh);
  color: var(--bg);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  padding: 8px 14px;
  background: var(--rh);
  color: var(--bg);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.live-only {
  display: none;
}

html[data-launch="live"] .live-only {
  display: block;
}

html[data-launch="live"] .pending-only {
  display: none;
}

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

.atm-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.04) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='90' viewBox='0 0 160 90'%3E%3Ctext x='12' y='58' font-size='42' font-family='Georgia' fill='rgba(243,238,227,0.035)'%3E$%3C/text%3E%3C/svg%3E");
  background-size: 72px 72px, 72px 72px, 160px 90px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 20%, transparent 78%);
}

.atm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.atm-glow-a {
  width: 42vw;
  height: 42vw;
  left: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.16), transparent 68%);
}

.atm-glow-b {
  width: 36vw;
  height: 36vw;
  right: -6vw;
  top: 38vh;
  background: radial-gradient(circle, rgba(12, 61, 44, 0.7), transparent 70%);
}

.atm-tower {
  position: absolute;
  right: 4%;
  bottom: -8%;
  width: min(38vw, 420px);
  height: auto;
  fill: rgba(243, 238, 227, 0.028);
}

.atm-tower-left {
  left: -6%;
  right: auto;
  bottom: 18%;
  width: min(28vw, 280px);
  fill: rgba(0, 200, 5, 0.04);
  transform: scaleX(-1);
}

.atm-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12%;
  width: 100%;
  height: 220px;
  color: rgba(0, 200, 5, 0.18);
}

.atm-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-line 12s var(--ease) infinite;
}

@keyframes draw-line {
  0% { stroke-dashoffset: 1400; opacity: 0.2; }
  18% { opacity: 1; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0.15; }
}

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

/* Header */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(calc(100% - 28px), 1180px);
  margin: 14px auto 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--header);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .header-inner {
  border-color: var(--line-strong);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}

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

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-ticker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--rh);
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream-soft);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav a:hover {
  color: var(--cream);
  background: rgba(243, 238, 227, 0.05);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 50%;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s var(--ease), top 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

html[data-nav="open"] .nav-toggle-bars {
  background: transparent;
}

html[data-nav="open"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

html[data-nav="open"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary,
.btn-buy {
  background: var(--rh);
  color: #041107;
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.18);
}

.btn-buy {
  min-height: 42px;
  padding: 0 14px 0 16px;
  margin-left: 6px;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--rh);
  background: var(--rh-dim);
}

.btn-x {
  min-height: 64px;
  padding: 0 28px;
  font-size: 1.05rem;
  background: var(--cream);
  color: var(--bg);
}

.btn-x:hover {
  background: var(--rh);
  color: #041107;
}

.tba-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(4, 17, 7, 0.18);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

html[data-launch="live"] .tba-chip {
  display: none;
}

html[data-nav="open"] {
  overflow: hidden;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 12px;
  width: min(100% - 40px, var(--max));
  margin: 18px auto 0;
  min-height: calc(100vh - 120px);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.strike {
  text-decoration: line-through;
  opacity: 0.45;
}

.hero-title {
  line-height: 0.8;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: block;
  animation: rise 0.95s var(--ease) both;
}

.line-cash > span {
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 13vw, 10.4rem);
  letter-spacing: 0.02em;
  color: var(--cream);
}

.line-is > span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin: 0.15em 0 0.08em;
  color: var(--gold-soft);
  animation-delay: 0.12s;
}

.line-std > span {
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 11.5vw, 9rem);
  letter-spacing: 0.01em;
  color: var(--rh);
  animation-delay: 0.2s;
}

@keyframes rise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero-lede {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  color: var(--cream);
}

.hero-body {
  max-width: 38ch;
  margin-top: 16px;
  color: var(--cream-dim);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.chain-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rh);
  box-shadow: 0 0 10px var(--rh);
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0 -4vw -72px 0;
}

.hero-market {
  position: absolute;
  inset: 8% 2% 18%;
  color: rgba(0, 200, 5, 0.22);
  z-index: 0;
}

.hero-candles {
  width: 100%;
  height: 100%;
}

.hero-float {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  animation: bag-float 6.5s ease-in-out infinite;
}

.hero-tilt {
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  will-change: transform;
}

.hero-bag {
  width: 100%;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
}

.hero-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6%;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 200, 5, 0.28), transparent 70%);
  filter: blur(8px);
  z-index: 1;
  animation: glow-pulse 6.5s ease-in-out infinite;
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.06); }
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  border-block: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.88);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  animation: ticker 36s linear infinite;
}

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

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

/* Shared section chrome */
.section-head {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 28px;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.section-head h2,
.layer-copy h2,
.register-head h2,
.community h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.section-note {
  margin-top: 8px;
  color: var(--cream-dim);
}

/* Two standards */
.standards {
  padding: 96px 0 40px;
}

.standards-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100% - 24px, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.panel {
  position: relative;
  min-height: 460px;
  padding: 42px 40px 48px;
}

.panel h3 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.88;
  margin: 10px 0 32px;
}

.panel-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel ul {
  display: grid;
  gap: 14px;
}

.panel li {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}

.panel-stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 6px 10px;
  border: 1.5px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  transform: rotate(-8deg);
  opacity: 0.7;
}

.panel-ws {
  background:
    linear-gradient(180deg, rgba(16, 17, 14, 0.03), transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(16, 17, 14, 0.04) 28px),
    #efe6d4;
  color: var(--ink);
}

.panel-ws .panel-kicker { color: #6d6554; }

.panel-hood {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 200, 5, 0.16), transparent 42%),
    linear-gradient(180deg, #0d2418, #07140d);
  color: var(--cream);
}

.panel-hood .panel-kicker { color: var(--rh); }
.panel-stamp-live { color: var(--rh); border-color: var(--rh); }

.standards-punch {
  width: min(100% - 40px, 860px);
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}

.standards-punch span {
  display: block;
  margin-top: 8px;
  color: var(--rh);
  font-style: italic;
}

/* Cash layer */
.layer {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 92vh;
  margin-top: 40px;
  overflow: hidden;
}

.layer-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.layer-tower {
  position: absolute;
  top: -8%;
  width: min(46vw, 420px);
  height: auto;
  fill: rgba(243, 238, 227, 0.07);
  transform: translate3d(0, var(--tower-y, -8%), 0);
  will-change: transform;
}

.layer-bag {
  position: relative;
  z-index: 1;
  width: min(72vw, 560px);
  margin-top: 18vh;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  animation: bag-float 7s ease-in-out infinite;
}

.layer-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max));
  padding: 0 0 72px;
  text-align: center;
}

.layer-copy h2 span {
  display: block;
}

.layer-copy h2 span:last-child {
  color: var(--rh);
}

.layer-lede {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--cream);
}

/* Manifesto */
.manifesto {
  padding: 100px 0 40px;
}

.manifesto-seq {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.manifesto-seq p,
.manifesto-list li {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.2;
}

.mute {
  color: var(--cream-dim);
}

.manifesto-cash {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.8;
  color: var(--rh);
  letter-spacing: 0.04em;
}

.manifesto-list {
  display: grid;
  gap: 10px;
  color: var(--gold-soft);
}

.manifesto-never {
  color: var(--cream-dim);
}

.manifesto-finale {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
}

.manifesto-finale span {
  display: block;
}

.manifesto-finale span:last-child {
  color: var(--rh);
}

/* Billboard */
.billboard {
  width: min(100% - 24px, var(--max));
  margin: 72px auto 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.billboard img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Register */
.register {
  padding: 96px 20px 40px;
}

.register-shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 32px 28px 28px;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.05), transparent 28%),
    var(--bg-panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.register-head p:last-child {
  margin-top: 8px;
  color: var(--cream-dim);
}

.register-terminal {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.reg-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.reg-row span {
  color: var(--cream-dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reg-row-ca strong {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-all;
  text-align: right;
  color: var(--gold);
}

.reg-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.reg-actions .copy-status {
  flex: 1 1 100%;
}

.copy-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.copy-status {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.copy-btn.is-copied {
  border-color: var(--rh);
  color: var(--rh);
}

/* Chart */
.chart {
  padding: 80px 0 40px;
}

.chart-frame {
  width: min(100% - 24px, var(--max));
  margin: 0 auto;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #070b08;
  overflow: hidden;
}

.chart-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 40px 20px;
  text-align: center;
}

.fake-chart {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 70px 24px 80px;
  opacity: 0.28;
}

.fake-chart span {
  width: 10px;
  border-radius: 2px;
  background: var(--rh);
  animation: candle 3.4s ease-in-out infinite;
}

.fake-chart span:nth-child(odd) { background: #1f8a48; }
.fake-chart span:nth-child(1) { height: 28%; animation-delay: 0s; }
.fake-chart span:nth-child(2) { height: 46%; animation-delay: 0.1s; }
.fake-chart span:nth-child(3) { height: 34%; animation-delay: 0.2s; }
.fake-chart span:nth-child(4) { height: 62%; animation-delay: 0.15s; }
.fake-chart span:nth-child(5) { height: 40%; animation-delay: 0.25s; }
.fake-chart span:nth-child(6) { height: 72%; animation-delay: 0.05s; }
.fake-chart span:nth-child(7) { height: 51%; animation-delay: 0.3s; }
.fake-chart span:nth-child(8) { height: 80%; animation-delay: 0.12s; }
.fake-chart span:nth-child(9) { height: 58%; animation-delay: 0.22s; }
.fake-chart span:nth-child(10) { height: 88%; animation-delay: 0.08s; }
.fake-chart span:nth-child(11) { height: 64%; animation-delay: 0.18s; }
.fake-chart span:nth-child(12) { height: 92%; animation-delay: 0.28s; }

@keyframes candle {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.86); }
}

.chart-lock {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.9;
  max-width: 14ch;
}

.chart-sub {
  position: relative;
  margin: 12px 0 22px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--cream-dim);
}

.chart-live iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

/* Community */
.community {
  padding: 100px 20px 80px;
  text-align: center;
}

.community-inner h2 span {
  display: block;
}

.community-inner h2 span:last-child {
  color: var(--rh);
}

.community-inner p {
  margin: 18px 0 28px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px 36px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-brand p:first-child {
  font-weight: 700;
}

.footer-brand p:last-child {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}

.footer-note {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  color: var(--cream-dim);
  font-family: var(--font-serif);
  font-style: italic;
}

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-title .line > span,
  .hero-float,
  .hero-shadow,
  .layer-bag,
  .ticker-track,
  .atm-line,
  .fake-chart span {
    animation: none !important;
  }

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

  .btn:hover,
  .hero-tilt {
    transform: none;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 18px;
  }

  .hero-visual {
    min-height: 0;
    margin: 12px auto -28px;
    width: min(92vw, 560px);
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .standards-split {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: 0;
  }

  .layer {
    min-height: 78vh;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid var(--line-strong);
    background: rgba(8, 12, 10, 0.96);
    backdrop-filter: blur(18px);
  }

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

  .nav a {
    padding: 14px 16px;
    font-size: 1.05rem;
  }

  .btn-buy {
    margin: 8px 4px 4px;
    justify-content: center;
  }

  .header-inner {
    border-radius: 22px;
  }

  .hero {
    width: calc(100% - 28px);
  }

  .hero-visual {
    width: min(100%, 430px);
  }

  .line-cash > span {
    font-size: clamp(4.4rem, 22vw, 6.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .panel {
    padding: 32px 24px 44px;
  }

  .register-shell {
    padding: 24px 16px;
  }

  .reg-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .reg-row-ca strong {
    text-align: left;
  }

  .community-inner .btn-x {
    width: min(100%, 360px);
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .hero-body {
    font-size: 0.98rem;
  }
}
