/* ============================================================
   HOOD/COMPUTER · homepage
   Brutalist terminal · Space Grotesk + JetBrains Mono · orange accent
   Standalone stylesheet — no base.css / style.css dependency.
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
img,svg { display: block; max-width: 100%; }

:root {
  --bg: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #171717;
  --line: #1e1e1e;
  --line-2: #2a2a2a;
  --line-3: #3a3a3a;
  --ink: #f4f4f0;          /* off-white, NOT pure white */
  --ink-dim: #a8a8a3;
  --ink-mute: #6a6a66;
  --ink-quiet: #4a4a46;
  --acc: #ff5c1a;          /* signal orange - NOT green */
  --acc-dim: #ff8451;
  --acc-glow: rgba(255,92,26,0.14);
  --up: #4ade80;
  --down: #f43f5e;
  --warn: #facc15;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --f-disp: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
::selection { background: var(--acc); color: #000; }

/* subtle scanline background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.008) 0 1px, transparent 1px 3px);
  z-index: 0;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; }

/* ============== TICKER ============== */
.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.ticker__inner {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ticker 55s linear infinite;
  padding-left: 24px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tk {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  flex-shrink: 0;
}
.tk b { color: var(--ink); font-weight: 500; margin-right: 4px; }
.tk em.up { color: var(--up); font-style: normal; margin-left: 4px; }
.tk em.down { color: var(--down); font-style: normal; margin-left: 4px; }
.tk__note { color: var(--ink-mute); margin-left: 6px; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 32px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__mark {
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.nav__wordmark {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav__mid {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav__mid a {
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  border-radius: 4px;
  transition: color 0.16s ease, background 0.16s ease;
}
.nav__mid a:hover { color: var(--acc); background: var(--acc-glow); }
.nav__right { display: flex; gap: 8px; align-items: center; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; gap: 12px; padding: 14px 20px; }
  .nav__mid { display: none; }
}

/* ============== BUTTON ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.06s ease;
}
.btn:hover { border-color: var(--acc); color: var(--acc); }
.btn:active { transform: translateY(1px); }
.btn--acc {
  background: var(--acc);
  color: #000;
  border-color: var(--acc);
  font-weight: 600;
}
.btn--acc:hover { background: var(--acc-dim); border-color: var(--acc-dim); color: #000; }
.btn--ghost { background: transparent; }
.btn--lg { padding: 14px 22px; font-size: 12px; }
.btn__arrow { display: inline-block; transition: transform 0.18s ease; }
.btn:hover .btn__arrow { transform: translate(2px,-2px); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 32px 32px 56px;
  border-bottom: 1px solid var(--line);
  z-index: 1;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
.hero__l, .hero__r { display: flex; flex-direction: column; gap: 6px; }
.hero__r { align-items: flex-end; text-align: right; }
.tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--acc);
  text-transform: uppercase;
}
.tag--dim { color: var(--ink-mute); }

.hero__wall {
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 8px -32px 28px;
  position: relative;
}
.hero__type {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  font-family: var(--f-disp);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-size: clamp(44px, 9.2vw, 128px);
  color: var(--ink);
  text-transform: uppercase;
}
.hero__cursor {
  position: absolute;
  right: 32px;
  bottom: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-quiet);
  letter-spacing: 0.1em;
  pointer-events: none;
}
.hero__cursor span { color: var(--acc); }
.hero__t { display: block; }
.hero__t em {
  font-style: normal;
  color: var(--acc);
}
.hero__t {
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.hero__t--3 {
  font-size: clamp(20px, 3.2vw, 44px);
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  font-weight: 500;
  padding-left: 6px;
  margin: 4px 0;
}
.mono-slash {
  color: var(--acc);
  margin: 0 4px;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding-top: 8px;
}
.hero__pitch p {
  font-family: var(--f-disp);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 24px;
  max-width: 580px;
}
.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }

.k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--acc);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero__vs .k { color: var(--acc); }

.vs {
  border: 1px solid var(--line-2);
  padding: 4px 0;
  background: var(--bg-2);
}
.vs__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 14px;
  border-bottom: 1px dashed var(--line);
  transition: background 0.14s ease;
}
.vs__row:last-child { border-bottom: none; }
.vs__row:hover { background: rgba(255,92,26,0.06); }
.vs__row:hover .vs__k { color: var(--acc); }
.vs__k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.vs__v {
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.vs__v em.up { color: var(--up); font-size: 11px; margin-left: 6px; }
.vs__v em.down { color: var(--down); font-size: 11px; margin-left: 6px; }
.vs__row--foot .vs__v { color: var(--acc); font-size: 11px; letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero__r { align-items: flex-start; text-align: left; }
  .hero__type { font-size: clamp(38px, 12vw, 72px); }
  .hero__cursor { display: none; }
}

/* ============== SECTION FRAME ============== */
.s {
  position: relative;
  padding: 72px 32px;
  border-bottom: 1px solid var(--line);
  z-index: 1;
}
.s--alt { background: var(--bg-2); }
.s__num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: 0.12em;
}
.s__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--acc);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.s__title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0 0 44px;
  max-width: 980px;
}
.s__title em {
  font-style: normal;
  color: var(--acc);
  font-weight: 700;
}
.s__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--acc);
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.16s ease;
}
.s__cta:hover { background: var(--acc-dim); }

/* ============== THESIS ============== */
.thesis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1180px;
}
.thesis__col p {
  font-family: var(--f-disp);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 18px;
}
.thesis__col p:last-child { margin-bottom: 0; }
.thesis .acc { color: var(--acc); font-weight: 600; }
.thesis .mono { font-family: var(--f-mono); color: var(--ink); font-weight: 500; font-size: 15px; padding: 2px 6px; background: var(--bg-3); border: 1px solid var(--line-2); }

@media (max-width: 800px) {
  .thesis { grid-template-columns: 1fr; gap: 24px; }
  .thesis__col p { font-size: 14px; }
}

/* ============== CHAIN SPECS ============== */
.specs {
  max-width: 1400px;
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  margin-bottom: 40px;
}
.cell {
  background: var(--bg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 96px;
}
.s--alt .cell { background: var(--bg-2); }
.cell--big {
  grid-column: span 2;
  min-height: 180px;
  justify-content: space-between;
  padding: 28px;
  background: var(--bg-3);
}
.s--alt .cell--big { background: var(--bg-3); }
.cell__k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.cell__v {
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.cell__v.mono { color: var(--acc); }
.cell__v--xl {
  font-family: var(--f-disp);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--acc);
}
.cell__v--xl span {
  font-size: 22px;
  color: var(--ink-mute);
  margin-left: 2px;
}
.cell--big { transition: background 0.18s ease; }
.cell--big:hover { background: #1c1c1c; }
.s--alt .cell--big:hover { background: #1c1c1c; }
.cell__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.cell__sub em.up { color: var(--up); font-style: normal; }
.cell__sub em.down { color: var(--down); font-style: normal; }

.endpoints {
  border: 1px solid var(--line-2);
  padding: 20px 24px;
  background: var(--bg-3);
}
.endpoints__head {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--acc);
  margin-bottom: 16px;
}
.endpoints__row {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
  font-size: 12px;
  transition: color 0.14s ease;
  cursor: pointer;
}
.endpoints__row:hover .v.mono { color: var(--ink); text-decoration: underline; text-decoration-color: var(--acc); text-underline-offset: 3px; }
.endpoints__row:last-child { border-bottom: none; }
.endpoints__row .k { font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute); letter-spacing: 0.12em; margin: 0; }
.endpoints__row .v { font-family: var(--f-mono); color: var(--ink); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.endpoints__row .v.mono { color: var(--acc); }
.endpoints__row .s { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; padding: 0; border: none; text-align: right; background: none; }
.endpoints__row .s.pos { color: var(--up); }

@media (max-width: 900px) {
  .specs__grid { grid-template-columns: repeat(2, 1fr); }
  .cell--big { grid-column: span 2; }
  .cell__v--xl { font-size: 48px; }
  .endpoints__row { grid-template-columns: 100px 1fr; }
  .endpoints__row .s { grid-column: 1 / -1; text-align: left; }
}

/* ============== MARKET STATS ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
}
.stat {
  background: var(--bg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 168px;
  position: relative;
  transition: background 0.18s ease;
  cursor: crosshair;
}
.stat:hover { background: #131313; }
.stat:hover .stat__bar i { background: var(--acc-dim); }
.stat__tt {
  position: absolute;
  right: 16px;
  top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-quiet);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.stat:hover .stat__tt { opacity: 1; transform: translateY(0); }
.stat__k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.stat__v {
  font-family: var(--f-disp);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: auto;
}
.stat__v span {
  font-size: 18px;
  color: var(--ink-mute);
  margin-left: 2px;
}
.stat__bar {
  width: 100%;
  height: 3px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.stat__bar i {
  display: block;
  height: 100%;
  background: var(--acc);
}
.stat__bar--warn i { background: var(--warn); }
.stat__d {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.stat__d.up { color: var(--up); }
.stat__d.down { color: var(--down); }

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat__v { font-size: 34px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
}

/* ============== ECOSYSTEM ============== */
.eco {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
}
.eco__c {
  background: var(--bg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.16s ease, transform 0.18s ease;
  position: relative;
  overflow: hidden;
}
.eco__c::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--acc);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.24s ease;
}
.eco__c:hover::before { transform: scaleY(1); }
.s--alt .eco__c { background: var(--bg-2); }
.eco__c:hover { background: var(--bg-3); }
.eco__i {
  width: 38px;
  height: 38px;
  border: 1px solid var(--acc);
  background: var(--acc-glow);
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  transition: background 0.18s ease;
}
.eco__c:hover .eco__i { background: var(--acc); color: #000; }
.eco__body { flex: 1; }
.eco__n {
  font-family: var(--f-disp);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.eco__d {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.eco__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-2);
}
.eco__stats .k {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.eco__stats .v {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.eco__foot {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px) { .eco { grid-template-columns: 1fr; } }

/* ============== ROADMAP ============== */
.road {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
}
.road__i {
  background: var(--bg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  position: relative;
  transition: background 0.18s ease;
}
.road__i:hover { background: #131313; }
.road__i--done {
  background: linear-gradient(180deg, rgba(255,92,26,0.05), transparent);
}
.road__i--now {
  background: linear-gradient(180deg, rgba(255,92,26,0.14), transparent);
  border: 1px solid var(--acc);
  margin: -1px;
}
.road__q {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--acc);
  text-transform: uppercase;
}
.road__t {
  font-family: var(--f-disp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.1;
}
.road__b {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.55;
  flex: 1;
}
.road__s {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.road__i--done .road__s { color: var(--up); }
.road__s--now {
  color: var(--warn) !important;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============== LIVE PULSE DOT ============== */
.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--up);
  margin-right: 6px;
  animation: livepulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  vertical-align: middle;
  translate: 0 -1px;
}
.pulse--acc { background: var(--acc); box-shadow: 0 0 0 0 rgba(255,92,26,0.7); animation-name: livepulse-acc; }
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
@keyframes livepulse-acc {
  0% { box-shadow: 0 0 0 0 rgba(255,92,26,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,92,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,92,26,0); }
}

/* number flip animation */
@keyframes flip {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(-6px); opacity: 0; }
  60% { transform: translateY(6px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.flip { animation: flip 0.36s ease; display: inline-block; }

/* mini spark bars in vs panel */
.spark {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
  margin-left: 8px;
  height: 12px;
  vertical-align: middle;
}
.spark i {
  display: block;
  width: 3px;
  background: var(--ink-mute);
  transition: background 0.18s ease;
}
.vs__row:hover .spark i { background: var(--acc); }

/* section active nav */
.nav__mid a.active {
  color: var(--acc);
  background: var(--acc-glow);
}

/* cursor readout — desktop only */
.cursor-hud {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 100;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--acc);
  letter-spacing: 0.1em;
  padding: 6px 10px;
  background: rgba(10,10,10,0.86);
  border: 1px solid var(--acc);
  transform: translate(-50%, -160%);
  opacity: 0;
  transition: opacity 0.14s ease;
  white-space: nowrap;
}
.cursor-hud.on { opacity: 1; }
@media (max-width: 900px) { .cursor-hud { display: none; } }

@media (max-width: 1100px) {
  .road { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .road { grid-template-columns: 1fr; }
}

/* ============== CTA BLOCK ============== */
.cta {
  padding: 72px 32px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.cta__hd { max-width: 1180px; margin: 0 0 40px; }
.cta__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--acc);
  margin-bottom: 24px;
}
.cta__title {
  font-family: var(--f-disp);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
}
.cta__title em { font-style: normal; color: var(--acc); }
.cta__rows { display: flex; flex-direction: column; }
.cta__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
  transition: color 0.16s ease, padding-left 0.24s ease;
  position: relative;
}
.cta__row:last-child { border-bottom: 1px solid var(--line); }
.cta__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--acc);
  transition: width 0.18s ease;
}
.cta__row:hover { color: var(--acc); padding-left: 12px; }
.cta__row:hover::before { width: 3px; }
.cta__row:hover .cta__n { color: var(--acc); border-color: var(--acc); }
.cta__row:hover .cta__r { color: var(--acc); }
.cta__row:hover .cta__r .btn__arrow { transform: translate(3px,-3px); }
.cta__l { display: flex; align-items: center; gap: 32px; }
.cta__n {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-mute);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.cta__k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--acc);
  margin-bottom: 6px;
}
.cta__v {
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cta__r {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 700px) {
  .cta__row { flex-direction: column; align-items: flex-start; padding: 24px 0; }
  .cta__l { gap: 20px; }
  .cta__n { width: 48px; height: 48px; font-size: 22px; }
  .cta__v { font-size: 18px; }
}

/* ============== FOOTER ============== */
.ft {
  padding: 72px 32px 32px;
  background: #000;
}
.ft__top {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.ft__brand { display: flex; gap: 12px; align-items: flex-start; }
.ft__mark {
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.ft__wordmark {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.ft__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.ft__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ft__col { display: flex; flex-direction: column; gap: 8px; }
.ft__col a {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-dim);
  transition: color 0.16s ease;
}
.ft__col a:hover { color: var(--acc); }
.ft__h {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--acc);
  margin-bottom: 8px;
}
.ft__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  gap: 16px;
  flex-wrap: wrap;
}
.ft__legal .up { color: var(--up); }
.ft__legal b { color: var(--acc); font-weight: 500; }

@media (max-width: 900px) {
  .ft__top { grid-template-columns: 1fr; gap: 32px; }
  .ft__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ft__cols { grid-template-columns: 1fr; }
}

/* ============== responsive tuning ============== */
@media (max-width: 768px) {
  .hero { padding: 32px 20px 48px; }
  .hero__wall { margin: 8px -20px 24px; padding: 20px 0; }
  .hero__type { padding: 0 20px; }
  .s { padding: 64px 20px; }
  .s__num { top: 20px; right: 20px; }
  .cta { padding: 64px 20px; }
  .ft { padding: 48px 20px 24px; }
  .stat__v { font-size: 44px; }
}

/* ============== CA STRIP ============== */
.cabar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  font-family: var(--f-mono);
}
.cabar__k {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  white-space: nowrap;
}
.cabar__v {
  font-size: 15px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.cabar[data-status="pending"] .cabar__v { color: var(--ink-dim); font-style: normal; }
.cabar[data-status="live"] .cabar__v { color: var(--acc); }
.cabar[data-status="live"] .cabar__k::before {
  content: "● ";
  color: var(--acc);
  animation: livepulse-acc 1.4s ease-in-out infinite;
}
.cabar__btn {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
.cabar__btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cabar__btn.is-copied { background: var(--acc); color: var(--bg); border-color: var(--acc); }
.cabar__btn--acc { background: var(--acc); color: var(--bg); border-color: var(--acc); font-weight: 700; }
.cabar__btn--acc:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cabar[data-status="pending"] #ca-copy { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 720px) {
  .cabar { grid-template-columns: 1fr auto; padding: 14px 20px; gap: 10px; }
  .cabar__k { grid-column: 1 / -1; }
  .cabar__v { grid-column: 1; font-size: 13px; }
  .cabar__btn { grid-column: 2; grid-row: 2; }
  .cabar__btn--acc { grid-column: 1 / -1; grid-row: 3; text-align: center; }
}
