/* ============================================================
   EYES — sky · feather · ruby
   surrealist Magritte palette · floating white cards on bright blue
   ============================================================ */

:root {
  /* sky — pulled from the eye-bg.jpg photograph */
  --sky:       #3d7ee4;    /* primary background, matches image */
  --sky-mid:   #5790ea;
  --sky-soft:  #88b1f0;
  --sky-deep:  #2e68c8;
  --sky-edge:  #1f54a8;

  /* clouds = white cards */
  --cloud:        #ffffff;
  --cloud-soft:   #f6f8fb;
  --cloud-dim:    #e5ecf3;

  /* ink — dark text on light */
  --ink:        #15161a;
  --ink-soft:   #3a3e46;
  --ink-dim:    #6b7280;
  --ink-faint:  #9aa3ad;
  --rule:       #d1d8e0;
  --rule-bright:#b9c2cc;

  /* feather / wheat */
  --wheat:       #e8d4a3;
  --wheat-deep:  #c4a86f;
  --wheat-soft:  rgba(232, 212, 163, 0.30);
  --wheat-glow:  rgba(232, 212, 163, 0.55);

  /* ruby — live / critical */
  --ruby:       #c0394a;
  --ruby-deep:  #9a2a3a;
  --ruby-soft:  rgba(192, 57, 74, 0.12);
  --ruby-glow:  rgba(192, 57, 74, 0.45);

  --gold:       #e8b340;

  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --serif:   "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

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

html, body {
  background: var(--sky);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
b { font-weight: 700; }
em { font-style: italic; }

/* atmospheric body — gentle sky gradient matching the photo */
body {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(20, 50, 120, 0.45), transparent 60%),
    linear-gradient(180deg, var(--sky-mid) 0%, var(--sky) 30%, var(--sky-deep) 100%);
  background-attachment: fixed;
}

/* subtle drifting cloud overlay (only OUTSIDE the hero — hero has its own clouds) */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(ellipse 320px 110px at 12% 50%, rgba(255,255,255,0.32), transparent 70%),
    radial-gradient(ellipse 280px 90px at 88% 78%, rgba(255,255,255,0.28), transparent 70%),
    radial-gradient(ellipse 380px 130px at 62% 92%, rgba(255,255,255,0.22), transparent 70%);
  opacity: 0.7;
}

/* ============ FIRST-VISIT INTRO MODAL ============ */
.intro-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: introFade .25s ease-out;
}
.intro-modal[hidden] { display: none; }
@keyframes introFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.intro-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 90, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.intro-card {
  position: relative;
  background: var(--cloud);
  border-radius: 22px;
  padding: 48px 52px 40px;
  max-width: 880px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow:
    0 40px 100px rgba(10, 30, 70, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: introPop .35s cubic-bezier(.2, .9, .3, 1.1);
}
@keyframes introPop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.intro-x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  color: var(--ink-dim);
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
.intro-x:hover {
  background: var(--cloud-soft);
  color: var(--ruby);
}
.intro-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 14px;
}
.intro-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 30px;
}
.intro-h-em {
  color: var(--ruby);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
}
.intro-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
}
.intro-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 12px;
}
.intro-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 0.9;
  color: var(--ruby);
  text-align: center;
  align-self: start;
}
.intro-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.intro-body p {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0;
}
.intro-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--cloud-dim);
  padding-top: 22px;
  flex-wrap: wrap;
}
.intro-cta {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: var(--ink);
  color: var(--cloud);
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.intro-cta:hover {
  transform: translateY(-1px);
  background: var(--ruby);
}
.intro-foot {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: lowercase;
}
@media (max-width: 720px) {
  .intro-card { padding: 36px 22px 28px; border-radius: 16px; }
  .intro-steps { grid-template-columns: 1fr; }
  .intro-num { font-size: 40px; }
  .intro-cta-row { justify-content: center; }
}

/* ============ RAIL ============ */
.rail {
  position: relative;
  z-index: 5;
  background: rgba(15, 40, 90, 0.55);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.85);
}
.rail-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.r-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wheat);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.r-rec {
  width: 6px; height: 6px;
  background: var(--wheat);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(232, 212, 163, 0.7);
  animation: rec 1.6s ease-in-out infinite;
}
@keyframes rec { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.r-sep { color: rgba(255,255,255,0.3); }
.r-pair { display: inline-flex; align-items: baseline; gap: 5px; }
.r-k {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  font-weight: 700;
}
.r-v {
  color: var(--cloud);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.r-streak { color: var(--wheat); }
.r-streak.blurred { color: rgba(255,255,255,0.55); }
.r-spacer { flex: 1; }
.r-demo {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  color: var(--wheat);
}
@media (max-width: 900px) {
  .r-spacer, .r-demo { display: none; }
  .rail-inner { padding: 7px 20px; gap: 8px; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 40, 90, 0.55);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cloud);
}
.brand-eye {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(15, 40, 90, 0.5));
}
.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--cloud);
  text-shadow: 0 2px 8px rgba(15, 40, 90, 0.4);
}
.nav-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 20px;
  background: var(--wheat);
  color: var(--ink);
  border-radius: 999px;
  transition: transform .15s, background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(15, 40, 90, 0.25);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--cloud); }
.cta-arrow { font-family: var(--mono); }

/* nav right-side cluster */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  color: var(--cloud);
  font-family: var(--mono);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.nav-ca:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}
.nav-ca-k {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wheat);
}
.nav-ca-v {
  font-size: 13px;
  color: var(--cloud);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.nav-ca-hint {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 720px) {
  .nav-ca-k, .nav-ca-hint { display: none; }
  .nav-ca { padding: 7px 12px; }
  .nav-actions { gap: 8px; }
}

/* ============ HERO — headline → eye → CA cluster, no overlap ============ */
.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 110px);
  padding: 28px 36px 48px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.big-eye { display: none; }

.hero-stack {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.claim {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--cloud);
  text-shadow: 0 6px 36px rgba(15, 40, 90, 0.5);
  width: 100%;
  text-align: center;
}
.claim-em {
  color: var(--wheat);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* eye with mouse-tracking pupil */
.hero-eye-wrap {
  position: relative;
  width: min(60vw, 560px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  animation: float 9s ease-in-out infinite;
}
.hero-eye {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(15, 40, 90, 0.45));
  pointer-events: none;
  user-select: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(-0.6deg); }
}
/* the pupil overlay — sits exactly over the painted pupil so when mouse is centered
   it merges with it; offsets up to ±6% of the wrap as the cursor moves around */
.hero-pupil {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 13%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2a2e 0%, #050507 60%, #000 100%);
  transform: translate(-50%, -50%);
  transition: transform .12s cubic-bezier(.25, .9, .3, 1);
  will-change: transform;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
}
.hero-pupil-glint {
  position: absolute;
  top: 18%;
  left: 28%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  filter: blur(0.4px);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.hb-room {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 22px 10px 16px;
  background: rgba(15, 40, 90, 0.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(15, 40, 90, 0.25);
}
.hb-room-dot {
  width: 9px; height: 9px;
  background: var(--wheat);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(232, 212, 163, 0.9);
  animation: rec 1.6s ease-in-out infinite;
  align-self: center;
}
.hb-room-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  color: var(--cloud);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hb-room-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* big buy CTA + CA under the eye */
.hero-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-buy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--wheat);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(15, 40, 90, 0.35), 0 0 0 1px rgba(255,255,255,0.25);
  transition: transform .15s, background .15s, box-shadow .15s;
}
.hero-buy:hover {
  transform: translateY(-2px);
  background: var(--cloud);
  box-shadow: 0 20px 48px rgba(15, 40, 90, 0.45);
}
.hero-buy-arrow {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--ruby);
}
.hero-ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  color: var(--cloud);
  font-family: var(--mono);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.hero-ca:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}
.hero-ca-k {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wheat);
}
.hero-ca-v {
  font-size: 13px;
  color: var(--cloud);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-ca-hint {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 720px) {
  .hero { min-height: calc(100vh - 90px); padding: 20px 22px 40px; }
  .hero-eye-wrap { width: 78vw; }
  .claim { font-size: clamp(32px, 9vw, 56px); }
  .hero-buy { padding: 14px 22px; font-size: 16px; }
  .hero-ca-k, .hero-ca-hint { display: none; }
}

/* cloud effect removed — cards stay as normal white rounded rectangles */

/* ============ EXPLAINER (plain english) ============ */
.explainer {
  position: relative;
  z-index: 2;
  padding: 60px 36px 20px;
  max-width: 1320px;
  margin: 0 auto;
}
.ex-inner {
  background: var(--cloud);
  border-radius: 20px;
  padding: 56px 60px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.18);
}
.ex-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 18px;
}
.ex-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 36px;
}
.ex-h-em {
  color: var(--ruby);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
}
.ex-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.ex-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 12px;
  transition: transform .2s, border-color .2s;
}
.ex-steps li:hover {
  transform: translateY(-2px);
  border-color: var(--wheat-deep);
}
.ex-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.9;
  color: var(--ruby);
  text-align: center;
  align-self: start;
}
.ex-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ex-body p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.ex-foot {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-soft);
  text-align: center;
  border-top: 1px solid var(--cloud-dim);
  padding-top: 24px;
}
.ex-foot em { color: var(--ruby); font-style: italic; font-weight: 600; }
@media (max-width: 720px) {
  .ex-inner { padding: 36px 24px; }
  .ex-steps { grid-template-columns: 1fr; }
  .ex-num { font-size: 48px; }
}

/* ============ STAGE SECTION (chart + CTA + bot pending) ============ */
.stage-section {
  position: relative;
  z-index: 2;
  padding: 60px 36px 60px;
  max-width: 1320px;
  margin: 0 auto;
}
.stage-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.stage-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.5;
  color: var(--cloud);
  max-width: 760px;
  text-align: center;
  text-shadow: 0 2px 14px rgba(15, 40, 90, 0.4);
}
.stage-lead b { color: var(--cloud); font-weight: 700; }
.stage-lead em { color: var(--wheat); font-style: italic; }

.chart-card, .bot-pending, .hero-actions { width: 100%; }
.hero-actions { justify-content: center; }

/* ============ BOT CARD (treasury bot · sky theme) ============ */
.bot-card {
  background: var(--cloud);
  border: 1px solid var(--cloud-dim);
  border-top: 3px solid var(--ruby);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(20, 40, 80, 0.18), 0 4px 12px rgba(20, 40, 80, 0.08);
}
.bc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  font-weight: 700;
  text-transform: lowercase;
}
.bc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--ruby-soft);
  border: 1px solid var(--ruby);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ruby);
  font-weight: 700;
  letter-spacing: 0.18em;
  width: fit-content;
}
.bc-dot {
  width: 8px; height: 8px;
  background: var(--ruby);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ruby-glow);
  animation: rec 1.6s ease-in-out infinite;
}
.bc-next { padding: 2px 0; }
.bc-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.bc-countdown {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.bc-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.bc-sub b { color: var(--ruby); font-weight: 700; }
.bc-divider { height: 1px; background: var(--cloud-dim); margin: 4px 0; }

.bc-econ { display: flex; flex-direction: column; gap: 8px; }
.bc-econ-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}
.bc-econ-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
}
.bc-econ-row > span:first-child { color: var(--ink-dim); font-size: 11px; }
.bc-econ-row > span:last-child { font-weight: 700; font-variant-numeric: tabular-nums; }
.bc-econ-pos { color: var(--wheat-deep); }
.bc-econ-neg { color: var(--ruby); }
.bc-econ-net {
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px dashed var(--cloud-dim);
}
.bc-econ-net > span:last-child { font-size: 13px; }

.bc-runway {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 6px;
}
.bc-runway-bar {
  position: relative;
  height: 6px;
  background: var(--cloud-dim);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.bc-runway-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--wheat-deep), var(--wheat));
  transition: width 0.6s;
}
.bc-runway-fill.warn   { background: linear-gradient(90deg, #d4843a, var(--wheat)); }
.bc-runway-fill.danger { background: linear-gradient(90deg, var(--ruby), #e6837c); }
.bc-runway-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.bc-runway-label b { color: var(--ink); font-weight: 700; }

.bc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  gap: 12px;
}
.bc-row .bc-k { margin-bottom: 0; }
.bc-row .bc-v {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.bc-foot {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bc-foot-k {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}
.bc-foot code {
  background: var(--cloud-soft);
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.45;
  border: 1px solid var(--cloud-dim);
  display: block;
  white-space: pre-wrap;
  font-family: var(--mono);
}
.bc-foot-sub {
  font-style: italic;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* ----- next buy big number ----- */
.bc-bigbuy {
  margin-top: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(232, 212, 163, 0.18), rgba(232, 212, 163, 0.06));
  border: 1px solid var(--wheat);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bc-bigbuy-amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.bc-bigbuy-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.bc-bigbuy-sub b { color: var(--ruby); font-weight: 700; }

/* ----- explainer block ----- */
.bc-explain { display: flex; flex-direction: column; gap: 12px; }
.bc-explain-lead {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.bc-explain-lead b { color: var(--ruby); font-weight: 700; }

.bc-math {
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
}
.bc-math-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
}
.bc-math-row .bc-math-k {
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}
.bc-math-row .bc-math-v {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.bc-math-mult .bc-math-v { color: var(--ruby); }
.bc-math-eq {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px dashed var(--cloud-dim);
}
.bc-math-eq .bc-math-k { color: var(--ink); font-weight: 700; }
.bc-math-eq .bc-math-v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ----- multiplier table ----- */
.bc-mult-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.bc-mult-row {
  display: grid;
  grid-template-columns: 92px 1fr 68px;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  transition: background .2s, color .2s;
}
.bc-mult-row.active {
  background: var(--wheat-soft);
  color: var(--ink);
}
.bc-mult-row.active .bc-mult-range { color: var(--ink); font-weight: 700; }
.bc-mult-row.active .bc-mult-val { color: var(--ruby); }
.bc-mult-range {
  letter-spacing: 0.04em;
}
.bc-mult-bar {
  position: relative;
  display: block;
  height: 6px;
  background: var(--cloud-dim);
  border-radius: 999px;
  overflow: hidden;
}
.bc-mult-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--wheat-deep), var(--wheat));
  border-radius: 999px;
}
.bc-mult-fill.bc-mult-max {
  background: linear-gradient(90deg, var(--ruby), var(--wheat-deep));
}
.bc-mult-val {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink-dim);
}

/* ----- wallet health + ledger blocks ----- */
.bc-health, .bc-ledger { display: flex; flex-direction: column; gap: 8px; }
.bc-health .bc-row, .bc-ledger .bc-row { padding: 4px 0; }

/* compact link for tx signatures + dev wallet address */
.bc-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ruby);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px dashed transparent;
  transition: border-color .15s, color .15s, opacity .15s;
  white-space: nowrap;
}
.bc-link:hover {
  border-bottom-color: var(--ruby);
  color: var(--ruby-deep);
}
.bc-link.disabled {
  color: var(--ink-faint);
  pointer-events: none;
  font-weight: 500;
}
.bc-link::after {
  content: " ↗";
  font-size: 10px;
  opacity: 0.7;
}
.bc-link.disabled::after { content: ""; }

/* ============ STAGE: chart + bot side-by-side ============ */
.stage {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  align-items: start;   /* don't stretch cards to match heights */
}
.chart-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* ============ EXPLAIN CARD (under the chart) ============ */
.explain-card {
  background: var(--cloud);
  border: 1px solid var(--cloud-dim);
  border-top: 3px solid var(--wheat-deep);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(20, 40, 80, 0.18), 0 4px 12px rgba(20, 40, 80, 0.08);
}
.ec-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--wheat-deep);
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 18px;
}
.ec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .ec-grid { grid-template-columns: 1fr; gap: 20px; }
}
.ec-prose { display: flex; flex-direction: column; gap: 16px; }
.ec-lead {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.ec-lead b { color: var(--ink); font-weight: 700; }
.ec-lead .ec-accent { color: var(--ruby); font-weight: 700; }

.ec-math {
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
}
.ec-math-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
}
.ec-math-row .ec-math-k {
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}
.ec-math-row .ec-math-k b { color: var(--ruby); font-weight: 700; }
.ec-math-row .ec-math-v {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ec-math-mult .ec-math-v { color: var(--ruby); }
.ec-math-eq {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px dashed var(--cloud-dim);
}
.ec-math-eq .ec-math-k { color: var(--ink); font-weight: 700; }
.ec-math-eq .ec-math-v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* right column: viewers→multiplier table */
.ec-mult { display: flex; flex-direction: column; gap: 10px; }
.ec-mult-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
}
.ec-mult-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ec-mult-row {
  display: grid;
  grid-template-columns: 80px 1fr 84px;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  transition: background .2s, color .2s;
}
.ec-mult-row.active {
  background: var(--wheat-soft);
  color: var(--ink);
}
.ec-mult-row.active .ec-mult-range { color: var(--ink); font-weight: 700; }
.ec-mult-row.active .ec-mult-val { color: var(--ruby); }
.ec-mult-range { letter-spacing: 0.04em; }
.ec-mult-bar {
  position: relative;
  display: block;
  height: 6px;
  background: var(--cloud-dim);
  border-radius: 999px;
  overflow: hidden;
}
.ec-mult-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--wheat-deep), var(--wheat));
  border-radius: 999px;
}
.ec-mult-fill.ec-mult-max {
  background: linear-gradient(90deg, var(--ruby), var(--wheat-deep));
}
.ec-mult-val {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink-dim);
}
@media (max-width: 980px) {
  .stage { grid-template-columns: 1fr; }
}

/* ============ CHART CARD ============ */
.chart-card {
  background: var(--cloud);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(20, 40, 80, 0.18), 0 4px 12px rgba(20, 40, 80, 0.08);
}
.cc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--cloud-dim);
  flex-wrap: wrap;
}
.cc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ruby);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cc-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.cc-change {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ruby);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cc-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
.cc-pair {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}
.cc-k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
}
.cc-v {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cc-v-acc { color: var(--ruby); }

.chart-wrap {
  position: relative;
  flex: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 212, 163, 0.18), transparent 70%),
    var(--cloud-soft);
  min-height: 320px;
}
.chart-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  text-align: center;
  padding: 24px;
}
.chart-empty[hidden] { display: none; }
.chart-empty-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  font-weight: 700;
  text-transform: lowercase;
}
.chart-empty-msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 420px;
  line-height: 1.45;
}
.chart {
  display: block;
  width: 100%;
  height: 320px;
}
.chart path.area { fill: var(--wheat-soft); }
.chart path.line { fill: none; stroke: var(--ruby); stroke-width: 2; stroke-linejoin: round; }
.chart line.grid { stroke: var(--rule); stroke-width: 0.5; stroke-dasharray: 2 4; }
.chart line.last-price { stroke: var(--ruby); stroke-width: 0.8; stroke-dasharray: 4 4; opacity: 0.5; }
.chart circle.tip { fill: var(--ruby); }
.chart text.last-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  fill: var(--ruby);
}

.chart-axis {
  display: flex;
  align-items: center;
  padding: 10px 24px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
}
.cha-spacer { flex: 1; }

/* ============ BOT PENDING ============ */
.bot-pending {
  margin-bottom: 36px;
  padding: 16px 22px;
  border: 1px dashed rgba(255,255,255,0.65);
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: var(--wheat);
  font-weight: 700;
}
.bp-line {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

/* ============ CTA ============ */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 44px;
  background: var(--wheat);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 2px solid var(--wheat-deep);
  transition: transform .15s, box-shadow .15s, background .15s;
  box-shadow: 0 10px 30px rgba(20, 40, 80, 0.25), 0 4px 8px rgba(20, 40, 80, 0.12);
  cursor: pointer;
  min-width: 260px;
}
.cta:hover {
  transform: translateY(-2px);
  background: #f1deb0;
  box-shadow: 0 14px 36px rgba(20, 40, 80, 0.3), 0 4px 8px rgba(20, 40, 80, 0.15);
}
.cta:active { transform: translateY(2px); box-shadow: 0 4px 10px rgba(20, 40, 80, 0.2); }
.cta-label { line-height: 1; }
.cta-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--ink-soft);
}
.ca-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.5);
  border: 1px dashed rgba(255,255,255,0.8);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  border-radius: 999px;
  justify-content: center;
}
.ca-btn:hover { background: var(--cloud); border-color: var(--cloud); }
.ca-k {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--ink-dim);
  font-weight: 700;
  text-transform: uppercase;
}
.ca-v { font-size: 13px; color: var(--ink); }
.ca-hint { font-size: 9px; color: var(--ink-faint); letter-spacing: 0.15em; }

/* ============ ROOM ACTIVITY (kept structure) ============ */
.room-activity {
  position: relative;
  z-index: 2;
  padding: 70px 36px;
  background: var(--cloud);
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.15);
  margin-bottom: 60px;
}
.ra-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.ra-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  text-transform: lowercase;
  font-weight: 700;
  margin-bottom: 0;
}
.ra-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cloud-soft);
  border: 1px solid var(--ruby);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ruby);
  font-weight: 700;
}
.ra-dot {
  width: 7px; height: 7px;
  background: var(--ruby);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ruby-glow);
  animation: rec 1.4s ease-in-out infinite;
}

/* ============ MANIFESTO ============ */
.manifesto {
  position: relative;
  z-index: 2;
  padding: 140px 36px;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cloud);
  border-radius: 20px;
  padding: 60px 64px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.18);
}
.m-mark {
  font-family: var(--display);
  font-size: 56px;
  color: var(--ruby);
  margin-bottom: 28px;
  line-height: 1;
}
.m-graf {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 32px;
}
.m-graf:last-child { margin-bottom: 0; }
.m-graf em { color: var(--ruby); font-style: italic; }
.m-graf b { color: var(--ink); font-weight: 700; }
.m-cap {
  float: left;
  font-family: var(--display);
  font-weight: 800;
  font-size: 96px;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--ruby);
}
.m-final {
  display: inline-block;
  margin-top: 6px;
  font-style: italic;
  color: var(--ruby);
}
@media (max-width: 700px) {
  .manifesto-inner { padding: 40px 28px; }
}

/* ============ PULSE ============ */
.pulse {
  position: relative;
  z-index: 2;
  padding: 80px 36px;
  background: var(--cloud);
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.15);
  margin-bottom: 60px;
}
.pulse-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.p-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  text-transform: lowercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.p-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.p-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 26px;
}
.p-stats div { text-align: right; }
.p-stats dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.p-stats dd {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.p-acc { color: var(--ruby); }

.pulse-chart {
  display: block;
  width: 100%;
  height: 320px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 212, 163, 0.15), transparent 60%),
    var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 12px;
}
.pulse-chart path.area { fill: var(--wheat-soft); }
.pulse-chart path.line { fill: none; stroke: var(--wheat-deep); stroke-width: 1.5; stroke-linejoin: round; }
.pulse-chart line.grid { stroke: var(--rule); stroke-width: 0.5; stroke-dasharray: 2 4; }
.pulse-chart circle.tip { fill: var(--ruby); }
.pulse-chart path.line-price { fill: none; stroke: var(--ruby); stroke-width: 1.4; stroke-linejoin: round; }

.pulse-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 700;
}
.now-mark { color: var(--ruby); }

.pulse-legend {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
}
.pl-item { display: inline-flex; align-items: center; gap: 8px; }
.pl-swatch {
  width: 14px; height: 6px;
  border-radius: 2px;
  display: inline-block;
}
.pl-eyes { background: var(--wheat-deep); }
.pl-price { background: var(--ruby); }

/* ============ FEED ============ */
.feed-section {
  position: relative;
  z-index: 2;
  padding: 80px 36px;
  background: var(--cloud);
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.15);
  margin-bottom: 60px;
}
.feed-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.f-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  text-transform: lowercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.f-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.f-h em { color: var(--ruby); font-style: italic; font-weight: 500; font-family: var(--serif); }
.f-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cloud-soft);
  border: 1px solid var(--ruby);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ruby);
  font-weight: 700;
  text-transform: uppercase;
}
.f-dot {
  width: 7px; height: 7px;
  background: var(--ruby);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ruby-glow);
  animation: rec 1.4s ease-in-out infinite;
}
.f-sub {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 720px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.f-sub b { color: var(--ink); }

.feed { display: flex; flex-direction: column; gap: 8px; }
.feed-row {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 16px 22px;
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-dim);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  transition: border-color .2s, transform .2s, background .4s;
}
.feed-row:hover { border-color: var(--wheat-deep); transform: translateX(4px); background: var(--cloud); }
.fr-time { color: var(--ink-faint); font-size: 12px; }
.fr-wallet { color: var(--ink); }
.fr-amt {
  color: var(--ink);
  font-weight: 800;
  background: var(--wheat-soft);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}
.fr-eyes {
  color: var(--ink);
  font-weight: 700;
}
.fr-press {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}
.fr-press.pump { color: var(--ruby); }
.fr-press.idle { color: var(--ink-faint); }
@media (max-width: 820px) {
  .feed-row { grid-template-columns: 60px 1fr auto auto; gap: 12px; padding: 12px 16px; }
  .feed-row .fr-press { display: none; }
}

/* ============ STREAK ============ */
.streak-section {
  position: relative;
  z-index: 2;
  padding: 80px 36px;
  background: var(--cloud);
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.15);
  margin-bottom: 60px;
}
.ss-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ss-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: lowercase;
}
.ss-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--ink);
}
.ss-prose {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 480px;
}
.ss-prose b { color: var(--ink); }

.ss-right { display: flex; flex-direction: column; gap: 14px; }
.ss-block {
  padding: 24px 26px;
  background: var(--cloud-soft);
  border: 1px solid var(--ruby);
  border-radius: 12px;
}
.ss-block-small { border-color: var(--cloud-dim); }
.ss-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ss-v {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.ss-v-now { color: var(--ruby); }
.ss-v-now.blurred { color: var(--ink-faint); }
.ss-block-small .ss-v { font-size: clamp(36px, 5vw, 52px); color: var(--ink); }
.ss-state {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ruby);
  letter-spacing: 0.04em;
  font-weight: 700;
}
.ss-state.blurred { color: var(--ink-faint); }
.ss-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .ss-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ FAQ ============ */
.qa {
  position: relative;
  z-index: 2;
  padding: 80px 36px;
  background: var(--cloud);
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 40, 80, 0.15);
  margin-bottom: 60px;
}
.qa-head { margin-bottom: 32px; }
.qa-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ruby);
  text-transform: lowercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.qa-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.qa-list { max-width: 880px; border-top: 1px solid var(--cloud-dim); }
.qa-list details {
  border-bottom: 1px solid var(--cloud-dim);
  padding: 22px 0;
}
.qa-list summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .15s;
}
.qa-list summary:hover { color: var(--ruby); }
.qa-list summary::-webkit-details-marker { display: none; }
.qa-list summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 26px;
  color: var(--ink-faint);
  transition: color .15s;
}
.qa-list details[open] summary::after { content: "−"; color: var(--ruby); }
.qa-list p {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.65;
}
.qa-list em { color: var(--ruby); }
.qa-list code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--cloud-soft);
  padding: 1px 6px;
  border-radius: 2px;
  border: 1px solid var(--cloud-dim);
  color: var(--ink);
}

/* ============ END CARD ============ */
.end {
  position: relative;
  z-index: 2;
  padding: 100px 36px 60px;
  text-align: center;
}
.end-eye {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(20, 40, 80, 0.35));
}
.end-text { max-width: 540px; margin: 0 auto; }
.end-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  color: var(--cloud);
  text-shadow: 0 4px 24px rgba(20, 40, 80, 0.4);
}
.end-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.end-sub b { color: var(--wheat); font-weight: 800; }
.cta-end { margin: 0 auto; }

/* ============ FOOTER ============ */
.foot {
  position: relative;
  z-index: 2;
  padding: 50px 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto;
}
.foot-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--cloud);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-brand img { width: 28px; height: 28px; object-fit: contain; }
.foot-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
