/*
 * Edgeable Syncer landing — aligned with Edgeable (edgeable/content/edgeable.html) tokens:
 * bg #0d0d0f, gold #e8b84b, green #00c96b, Bebas Neue + DM Sans + DM Mono
 */

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

:root {
  --bg: #0d0d0f;
  --surface: #111116;
  --surface2: #18181f;
  --card: #18181f;
  --border: #252530;
  --border2: #30303e;
  --text: #e4e4ee;
  --text2: #b8b8c8;
  --muted: #72728a;
  --muted2: #8e8e9e;
  --green: #00c96b;
  --green-bg: rgba(0, 201, 107, 0.1);
  --green-glow: rgba(0, 201, 107, 0.22);
  --red: #ff4d5e;
  --red-bg: rgba(255, 77, 94, 0.12);
  --blue: #4d9fff;
  --blue-bg: rgba(77, 159, 255, 0.1);
  --gold: #e8b84b;
  --gold-bg: rgba(232, 184, 75, 0.1);
  --gold-glow: rgba(232, 184, 75, 0.35);
  --display: "Bebas Neue", sans-serif;
  --sans: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] {
  --bg: #f0f0f4;
  --surface: #ffffff;
  --card: #f7f7fa;
  --surface2: #f0f0f4;
  --border: #e0e0ea;
  --border2: #d0d0dc;
  --text: #14141c;
  --text2: #5c5c6e;
  --muted: #5c5c6e;
  --muted2: #6a6a7a;
  --gold: #c49a2a;
  --gold-bg: rgba(196, 154, 42, 0.12);
  --green: #00c96b;
  --green-bg: rgba(0, 201, 107, 0.1);
  --green-glow: rgba(0, 201, 107, 0.18);
  --red: #e03d4d;
  --red-bg: rgba(255, 77, 94, 0.1);
  --blue: #3d8ae6;
  --blue-bg: rgba(77, 159, 255, 0.12);
  --gold-glow: rgba(196, 154, 42, 0.3);
  --shadow-sm: 0 6px 24px rgba(0, 0, 0, 0.06);
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  min-height: 60px;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

/* Landing nav: optical center for mid links (logo left, actions right) */
.eb-landing nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 0.5rem 1rem;
}

.eb-landing .nav-logo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.eb-landing .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  max-width: min(58vw, 720px);
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.35rem;
}

.eb-landing .nav-end {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-left: auto;
}

html[data-theme="light"] nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.nav-logo-ic {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.92;
}

.nav-logo-txt span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s, opacity 0.15s;
  font-family: var(--mono);
}

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

.nav-links a .nav-ic {
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s, color 0.15s;
}

.nav-links a:hover .nav-ic {
  opacity: 1;
  color: var(--gold);
}

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

/* Right cluster: theme toggle + CTAs (no fixed overlap) */
.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Theme toggle — lives inside .nav-end (syncer-theme.js) */
.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--border2);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font: inherit;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.theme-switch:hover {
  border-color: var(--gold);
  color: var(--text);
}
.theme-switch__track {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: var(--border);
  border: 1px solid var(--border2);
  flex-shrink: 0;
}
.theme-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--text), var(--muted));
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s cubic-bezier(0.34, 1.25, 0.64, 1), background 0.2s ease;
}
.theme-switch[aria-checked="true"] .theme-switch__thumb {
  transform: translateX(18px);
  background: linear-gradient(145deg, #fff8e8, var(--gold));
  box-shadow: 0 1px 5px rgba(232, 184, 75, 0.45);
}
.theme-switch[aria-checked="true"] .theme-switch__track {
  background: rgba(232, 184, 75, 0.18);
  border-color: rgba(232, 184, 75, 0.45);
}
.theme-switch__label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-theme="light"] .theme-switch[aria-checked="true"] .theme-switch__track {
  background: rgba(196, 154, 42, 0.2);
  border-color: rgba(196, 154, 42, 0.45);
}

@media (max-width: 520px) {
  .theme-switch__label {
    display: none;
  }
  .theme-switch {
    padding: 0.28rem 0.42rem;
    gap: 0;
  }
}

.btn-ghost {
  padding: 6px 16px;
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Logout uses same .btn-ghost as Login — subtle surface so it reads as a control */
.nav-cta .btn-ghost {
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  border-color: var(--border2);
}

html[data-theme="light"] .nav-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.65);
}

.btn-primary {
  padding: 6px 18px;
  border: none;
  border-radius: 6px;
  background: var(--gold);
  color: #0d0d0f;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 184, 75, 0.28);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 184, 75, 0.4);
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px clamp(16px, 4vw, 48px) 64px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

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

/* Hero backdrop: soft wash only (no grid / heavy glow) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 50% -15%, rgba(232, 184, 75, 0.07), transparent 52%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 13px;
  border: 1px solid var(--border2);
  border-radius: 2px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  font-family: var(--mono);
  animation: eb-fadeUp 0.5s ease both;
}

.badge-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: eb-blink 2s ease infinite;
  flex-shrink: 0;
}

@keyframes eb-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.eb-landing .hero h1,
.eb-landing h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  animation: eb-fadeUp 0.55s 0.08s ease both;
  position: relative;
  z-index: 1;
}

.eb-landing h1 .gold {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(232, 184, 75, 0.14);
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 22px auto 0;
  line-height: 1.65;
  animation: eb-fadeUp 0.55s 0.16s ease both;
  font-family: var(--sans);
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  justify-content: center;
  flex-wrap: wrap;
  animation: eb-fadeUp 0.55s 0.24s ease both;
}

.btn-h {
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-h-solid {
  background: var(--gold);
  color: #0d0d0f;
  border: none;
  box-shadow: 0 4px 16px rgba(232, 184, 75, 0.3);
}

.btn-h-solid:hover {
  opacity: 0.92;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(232, 184, 75, 0.45);
}

.btn-h-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
}

.btn-h-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 184, 75, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
  max-width: 660px;
  width: 100%;
  animation: eb-fadeUp 0.55s 0.32s ease both;
}

.hs {
  flex: 1;
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.hs:last-child {
  border-right: none;
}

.hs-num {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: var(--text);
  font-family: var(--display);
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.2s, transform 0.2s;
}

.hs-num:hover {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(232, 184, 75, 0.35);
}

.hs-num .gold {
  color: var(--gold);
}

.hs-label {
  font-size: 0.58rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-family: var(--mono);
}

@keyframes eb-fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TICKER */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 13px 0;
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: var(--mono);
}

.ticker-track {
  display: flex;
  gap: 44px;
  align-items: center;
  white-space: nowrap;
  animation: eb-slide 28s linear infinite;
  padding: 0 22px;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.t-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted2);
  text-transform: uppercase;
  font-family: var(--mono);
  transition: color 0.15s;
}

.t-item:hover {
  color: var(--gold);
}

.t-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border2);
  flex-shrink: 0;
}

@keyframes eb-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
.eb-landing section {
  padding: 84px 0;
}

.eb-landing .container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}

.eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--mono);
  margin-bottom: 10px;
}

.stitle {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.ssub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 10px auto 0;
  max-width: 520px;
  line-height: 1.78;
  font-family: var(--mono);
}

/* MOCKUP */
.mockup {
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg);
}

.m-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.m-url {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--muted);
}

.m-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 380px;
}

.m-side {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 18px;
}

.m-brand {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.m-brand span {
  color: var(--gold);
}

.m-brand-sub {
  font-size: 0.58rem;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.m-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border-radius: 3px;
  font-size: 0.72rem;
  color: var(--muted2);
  margin-bottom: 1px;
  cursor: default;
  font-weight: 500;
  transition: all 0.15s;
}

.m-nav.on {
  background: var(--gold-bg);
  color: var(--gold);
}

.m-nav svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.8;
}

.m-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.m-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 13px;
}

.m-kpi-label {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
  margin-bottom: 4px;
}

.m-kpi-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--mono);
  letter-spacing: -0.02em;
}

.m-kpi .g {
  color: var(--green);
}
.m-kpi .r {
  color: var(--red);
}
.m-kpi .w {
  color: var(--text);
}

.m-kpi-sub {
  font-size: 0.58rem;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 2px;
}

.m-accs {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px;
}

.m-th {
  display: grid;
  grid-template-columns: 10px 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
}

.m-tr {
  display: grid;
  grid-template-columns: 10px 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.m-tr:last-child {
  border-bottom: none;
}

.m-st {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.m-st.live {
  background: var(--green);
  box-shadow: 0 0 6px var(--green-glow);
}

.m-st.fol {
  background: var(--blue);
}

.m-name {
  font-size: 0.72rem;
  font-weight: 600;
}

.m-firm {
  font-size: 0.6rem;
  color: var(--muted);
  font-family: var(--mono);
}

.m-role {
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 2px;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.m-role.l {
  background: var(--gold-bg);
  color: var(--gold);
}

.m-role.f {
  background: var(--blue-bg);
  color: var(--blue);
}

.m-pnl {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--mono);
}

.m-pnl.g {
  color: var(--green);
}

.m-lat {
  font-size: 0.65rem;
  color: var(--muted);
  font-family: var(--mono);
}

.m-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px;
  position: relative;
  height: 100px;
  overflow: hidden;
}

.m-chart-label {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
}

.m-chart svg {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.surf {
  background: var(--surface);
}

/* HOW */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 44px;
}

.how-card {
  background: var(--surface);
  padding: 32px 26px;
  position: relative;
  transition: background 0.2s;
}

.how-card:hover {
  background: var(--surface2);
}

.how-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.how-card:hover::before {
  opacity: 1;
}

.how-ic {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.how-ic svg {
  width: 22px;
  height: 22px;
}

.how-n {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--border2);
  font-family: var(--mono);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.how-t {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.how-d {
  font-size: 0.78rem;
  color: var(--muted2);
  line-height: 1.78;
  font-family: var(--mono);
}

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.feat {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
  position: relative;
}

.feat:hover {
  background: var(--surface2);
}

.feat-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-t {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.feat-d {
  font-size: 0.78rem;
  color: var(--muted2);
  line-height: 1.78;
  font-family: var(--mono);
}

.feat-tag {
  display: inline-block;
  margin-top: 11px;
  padding: 2px 7px;
  border-radius: 2px;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--mono);
}

/* LATENCY */
.lat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.lat-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.78rem;
  color: var(--muted2);
  font-family: var(--mono);
  margin-top: 9px;
}

.lat-check svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.lat-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px;
  font-family: var(--mono);
}

.lat-box-title {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.lat-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.lat-row:last-of-type {
  border-bottom: none;
}

.lat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lat-src {
  font-size: 0.74rem;
  color: var(--text2);
}

.lat-val {
  font-size: 0.78rem;
  font-weight: 600;
}

.lat-val.fast {
  color: var(--green);
}

.lat-val.slow {
  color: var(--red);
}

.lat-bar-bg {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  width: 100%;
}

.lat-bar {
  height: 100%;
  border-radius: 2px;
}

.lat-bar.fast {
  background: var(--green);
}

.lat-bar.slow {
  background: var(--red);
}

.ping-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 10px 12px;
  background: var(--gold-bg);
  border: 1px solid rgba(232, 184, 75, 0.22);
  border-radius: 3px;
}

.ping-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: eb-blink 1.5s ease infinite;
  flex-shrink: 0;
}

.ping-txt {
  font-size: 0.64rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* FIRMS */
.firms-c {
  text-align: center;
}

.firms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 40px;
}

.firm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.firm:hover {
  border-color: var(--gold);
  background: var(--surface2);
}

.firm-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.firm-sub {
  font-size: 0.62rem;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 3px;
}

/* PRICING */
.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.p-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
  background: var(--bg);
  position: relative;
  transition: border-color 0.2s;
}

.p-card:hover {
  border-color: var(--border2);
}

.p-card.feat {
  border-color: var(--gold);
}

.p-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 3px 11px;
  border-radius: 0 0 3px 3px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.p-tier {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
  margin-bottom: 5px;
}

.p-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.p-amt {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--mono);
  line-height: 1;
  letter-spacing: -0.04em;
}

.p-sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
  color: var(--muted2);
}

.p-per {
  font-size: 0.66rem;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 2px;
  margin-bottom: 16px;
}

.p-line {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.p-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--muted2);
  font-family: var(--mono);
}

.p-list li svg {
  width: 11px;
  height: 11px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.p-list li.na {
  opacity: 0.35;
}

.p-list li.na svg {
  stroke: var(--muted);
}

.p-btn {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.p-btn-solid {
  background: var(--gold);
  color: #0d0d0f;
  box-shadow: 0 4px 14px rgba(232, 184, 75, 0.25);
}

.p-btn-solid:hover {
  opacity: 0.9;
}

.p-btn-out {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}

.p-btn-out:hover {
  border-color: var(--muted2);
  color: var(--text);
}

/* FAQ */
.faq-wrap {
  max-width: 700px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  stroke: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 0.78rem;
  color: var(--muted2);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
}

.faq-item.open .faq-a {
  max-height: 260px;
}

/* CTA */
.cta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 84px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.cta h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-family: var(--mono);
}

.cta-acts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.6rem;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FOOTER */
.eb-landing footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.foot-brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 0;
}

.foot-brand span {
  color: var(--gold);
}

.foot-tag {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
  font-family: var(--mono);
}

.foot-ct {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: var(--mono);
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.76rem;
  transition: color 0.15s;
  font-family: var(--mono);
}

.foot-links a:hover {
  color: var(--gold);
}

.foot-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-copy {
  font-size: 0.64rem;
  color: var(--muted);
  font-family: var(--mono);
}

.foot-soc {
  display: flex;
  gap: 8px;
}

.foot-soc a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s;
}

.foot-soc a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.foot-soc svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* REVEAL */
.eb-rev {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.eb-rev.vis {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
    flex-wrap: wrap;
    row-gap: 0.65rem;
  }

  .eb-landing .nav-links {
    display: none;
    position: static;
    transform: none;
    left: auto;
    max-width: none;
  }

  .eb-landing .nav-end {
    margin-left: auto;
  }

  .eb-landing .container {
    padding: 0 20px;
  }

  .m-body {
    grid-template-columns: 1fr;
  }

  .m-side {
    display: none;
  }

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

  .how-grid {
    grid-template-columns: 1fr;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .lat-grid {
    grid-template-columns: 1fr;
  }

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

  .p-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ── Stats Bar ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  text-align: center;
}
.stat-i {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 32px;
}
.stat-n {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1;
}
.stat-l {
  font-size: .67rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Interactive Demo Window ── */
.demo-window {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
}
.demo-titlebar {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px;
  background: #060609;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
  position: relative;
}
.demo-tb-dots { display: flex; gap: 5px; flex-shrink: 0; }
.demo-tb-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.demo-tb-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: .68rem;
  color: rgba(255,255,255,.3); letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
}
.demo-tb-armed {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  color: var(--green); letter-spacing: .06em;
}
.demo-tb-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,201,107,.25);
  animation: demo-pulse 1.8s ease-in-out infinite;
}
@keyframes demo-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,201,107,.25); }
  50% { box-shadow: 0 0 0 6px rgba(0,201,107,.08); }
}
.demo-app-layout { display: flex; min-height: 320px; }
.demo-sidebar {
  width: 120px; flex-shrink: 0;
  background: #050508;
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
  display: flex; flex-direction: column;
}
.demo-sb-brand {
  font-family: 'Bebas Neue', var(--display), sans-serif;
  font-size: .95rem; letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  padding: 0 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 8px; line-height: 1;
}
.demo-sb-brand span { color: var(--gold); }
.demo-sb-nav { display: flex; flex-direction: column; }
.demo-sb-item {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  font-size: .66rem; color: rgba(255,255,255,.28);
  cursor: default; line-height: 1;
}
.demo-sb-item svg {
  width: 11px; height: 11px; stroke: currentColor;
  fill: none; stroke-width: 2; flex-shrink: 0;
}
.demo-sb-active {
  color: var(--gold);
  background: rgba(232,184,75,.08);
  border-right: 2px solid var(--gold);
  font-weight: 600;
}
.demo-content {
  flex: 1; background: #0c0c14;
  padding: 14px; display: flex;
  flex-direction: column; gap: 12px;
  overflow: hidden;
}
.demo-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.demo-stat-tile {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px; padding: 9px 10px;
}
.demo-st-label {
  font-size: .56rem; color: rgba(255,255,255,.32);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 3px;
}
.demo-st-val {
  font-family: var(--mono); font-size: .82rem;
  font-weight: 700; color: rgba(255,255,255,.65);
  transition: color .3s;
}
.demo-green { color: var(--green) !important; }
.demo-routing {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center; gap: 0; flex: 1;
}
.demo-acct-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px; padding: 11px;
  transition: border-color .25s, box-shadow .25s;
}
.demo-acct-leader { border-color: rgba(232,184,75,.35); }
.demo-acct-leader.active { box-shadow: 0 0 0 2px rgba(232,184,75,.2); }
.demo-acct-follower { margin-bottom: 6px; }
.demo-acct-follower:last-child { margin-bottom: 0; }
.demo-acct-follower.active { border-color: rgba(0,201,107,.35); box-shadow: 0 0 0 2px rgba(0,201,107,.15); }
.demo-acct-hdr {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 5px;
}
.demo-role-badge {
  font-family: var(--mono); font-size: .52rem;
  font-weight: 700; letter-spacing: .07em;
  padding: .1rem .38rem; border-radius: 4px;
}
.demo-badge-l { background: rgba(232,184,75,.15); color: var(--gold); }
.demo-badge-f { background: rgba(0,201,107,.1); color: var(--green); }
.demo-sync-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  transition: background .3s, box-shadow .3s;
}
.demo-sync-dot.active { background: var(--gold); box-shadow: 0 0 0 3px rgba(232,184,75,.2); }
.demo-dot-f.active { background: var(--green); box-shadow: 0 0 0 3px rgba(0,201,107,.2); }
.demo-acct-name {
  font-family: var(--mono); font-size: .7rem;
  font-weight: 700; color: rgba(255,255,255,.75);
}
.demo-acct-sub { font-size: .6rem; color: rgba(255,255,255,.28); margin-top: 1px; }
.demo-order-row {
  margin-top: 8px; min-height: 28px;
  background: rgba(0,0,0,.3);
  border-radius: 5px; padding: 5px 7px;
  display: flex; align-items: center;
}
.demo-no-orders { font-size: .6rem; color: rgba(255,255,255,.18); font-family: var(--mono); }
.demo-arrows {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px; padding: 0 6px;
}
.demo-arr-line {
  color: rgba(255,255,255,.12);
  transition: color .2s;
  width: 100%;
}
.demo-arr-line svg { width: 100%; height: 10px; }
.demo-arr-line.active { color: var(--gold); }
.demo-lat-pill {
  font-family: var(--mono); font-size: .56rem;
  font-weight: 700; color: var(--green);
  background: rgba(0,201,107,.12);
  border: 1px solid rgba(0,201,107,.2);
  border-radius: 100px; padding: .12rem .4rem;
  white-space: nowrap;
  opacity: 0; transform: scale(.8);
  transition: opacity .2s .1s, transform .2s .1s;
}
.demo-lat-pill.show { opacity: 1; transform: scale(1); }
.demo-followers-stack { display: flex; flex-direction: column; gap: 6px; }
.demo-action-bar {
  display: flex; justify-content: center;
  padding-top: 2px;
}
.demo-fire-btn {
  background: var(--gold); color: #07070a;
  border: none; border-radius: 8px;
  padding: 10px 24px;
  font-size: .8rem; font-weight: 700;
  cursor: pointer; font-family: var(--sans);
  transition: opacity .15s, transform .1s;
  letter-spacing: .01em;
}
.demo-fire-btn:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.demo-fire-btn:disabled { opacity: .4; cursor: default; }
.demo-chip {
  display: flex; align-items: center; gap: 5px;
  animation: demo-pop .15s ease;
  width: 100%;
}
@keyframes demo-pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.demo-chip-type  { font-family: var(--mono); font-size: .55rem; color: rgba(255,255,255,.3); }
.demo-chip-side  { font-family: var(--mono); font-size: .62rem; font-weight: 700; }
.demo-chip-side.buy  { color: var(--green); }
.demo-chip-side.sell { color: var(--red); }
.demo-chip-sym   { font-family: var(--mono); font-size: .62rem; color: rgba(255,255,255,.55); }
.demo-chip-badge {
  margin-left: auto; font-family: var(--mono);
  font-size: .52rem; padding: .1rem .3rem; border-radius: 3px;
}
.demo-chip-badge.working { background: rgba(232,184,75,.15); color: var(--gold); }
.demo-chip-badge.filled  { background: rgba(0,201,107,.12); color: var(--green); }

/* ── Competitor Comparison ── */
.comp-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.comp-table { width: 100%; }
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-head {
  background: var(--surface);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.comp-feat-col, .comp-val-col {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  font-size: .83rem;
  color: var(--text2);
  border-right: 1px solid var(--border);
}
.comp-feat-col { font-weight: 500; }
.comp-val-col  { justify-content: center; border-right: 1px solid var(--border); }
.comp-val-col:last-child { border-right: none; }
.comp-val-col--us {
  background: rgba(232,184,75,.05);
  border-right: 1px solid rgba(232,184,75,.15);
  font-weight: 600;
  color: var(--text);
}
.comp-head .comp-val-col--us { color: var(--gold); }
.comp-star { color: var(--gold); margin-left: 4px; }
.comp-row:not(.comp-head):nth-child(odd) .comp-feat-col,
.comp-row:not(.comp-head):nth-child(odd) .comp-val-col { background: rgba(255,255,255,.014); }
.comp-row:not(.comp-head):nth-child(odd) .comp-val-col--us { background: rgba(232,184,75,.07); }
.cv { font-family: var(--mono); font-size: .8rem; font-weight: 700; }
.cv.yes  { color: var(--green); }
.cv.no   { color: var(--red); opacity: .8; }
.cv.mid  { color: var(--muted2); }

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.testi-card:hover {
  border-color: rgba(232,184,75,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .05em; }
.testi-q {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--text2);
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(232,184,75,.15);
  border: 1px solid rgba(232,184,75,.3);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--mono);
}
.testi-name { font-size: .8rem; font-weight: 700; color: var(--text); }
.testi-meta { font-size: .68rem; color: var(--muted); margin-top: 1px; }
.testi-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testi-n {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.testi-l { font-size: .7rem; color: var(--muted); }

/* ── Footer Disclaimer ── */
.foot-disclaimer {
  font-size: .68rem;
  line-height: 1.7;
  color: var(--muted2);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 28px;
}
.foot-disclaimer strong { color: var(--text2); font-weight: 600; }
.foot-disclaimer a { color: var(--muted2); text-decoration: underline; }
.foot-disclaimer a:hover { color: var(--gold); }

/* ── Changelog (landing) ── */
.changelog-landing {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}

.cl-land-block {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.cl-land-block:last-child {
  border-bottom: none;
}

.cl-land-block--latest {
  background: linear-gradient(145deg, rgba(232, 184, 75, 0.07), transparent 58%);
}

.cl-land-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cl-land-ver {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.cl-land-tag {
  font-size: 0.58rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--gold-bg);
  color: var(--gold);
  font-weight: 600;
}

.cl-land-date {
  font-size: 0.68rem;
  font-family: var(--mono);
  color: var(--muted);
  margin-left: auto;
}

.cl-land-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.82rem;
  line-height: 1.72;
  color: var(--text2);
}

.cl-land-list li {
  margin-bottom: 10px;
}

.cl-land-list li:last-child {
  margin-bottom: 0;
}

.cl-code {
  font-family: var(--mono);
  font-size: 0.78em;
  color: var(--gold);
  background: rgba(232, 184, 75, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid var(--border2);
}

@media (min-width: 520px) {
  .cl-code {
    white-space: nowrap;
  }
}

.cl-land-prior {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--muted2);
  font-family: var(--mono);
}

/* ── Competitor note ── */
.comp-note {
  font-size: .64rem; color: var(--muted);
  text-align: center; margin-top: 16px;
  font-family: var(--mono); line-height: 1.5;
}

/* ── Responsive additions ── */
@media (max-width: 1100px) {
  .nav-links {
    gap: 10px 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: min(100%, 520px);
  }

  .nav-links a {
    font-size: 0.66rem;
  }
}

@media (max-width: 900px) {
  .demo-app-layout { flex-direction: column; }
  .demo-sidebar { width: 100%; flex-direction: row; padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .demo-sb-brand { display: none; }
  .demo-sb-nav { flex-direction: row; padding: 0; width: 100%; }
  .demo-sb-item { padding: 9px 12px; font-size: .62rem; border-right: none; }
  .demo-sb-active { border-right: none; border-bottom: 2px solid var(--gold); }
  .demo-routing { grid-template-columns: 1fr 40px 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .comp-row { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .comp-feat-col { font-size: .73rem; padding: 12px 10px; }
  .comp-val-col  { padding: 12px 8px; font-size: .73rem; }
  .stat-i { padding: 6px 16px; }
  .stat-sep { display: none; }
}

@media (max-width: 640px) {
  .demo-routing { grid-template-columns: 1fr 32px 1fr; }
  .demo-stat-row { grid-template-columns: repeat(2, 1fr); }
  .comp-row { grid-template-columns: 1.6fr 1fr 0fr 0fr; }
  .comp-row > .comp-val-col:nth-child(4),
  .comp-head .comp-val-col:nth-child(4) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .eb-landing h1,
  .hero-sub,
  .hero-actions,
  .hero-stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ticker-track {
    animation: none !important;
  }

  .badge-pulse,
  .ping-dot {
    animation: none !important;
  }

  .eb-rev {
    opacity: 1;
    transform: none;
  }
}
