/* ═══════════════════════════════════════════════════════════
   ETH Core AI — Public Website Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* Fonts moved out of CSS @import (which is render-blocking and serial)
   into <link> tags in pub_base.html so they download in parallel with
   this stylesheet and don't block first paint. */

:root {
  --bg:       #03040a;
  --bg2:      #060810;
  --bg3:      #0a0c14;
  --surface:  rgba(255,255,255,0.03);
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --green:    #00ff88;
  --red:      #ff2d6b;
  --orange:   #f5b731;
  --blue:     #00d4ff;
  --purple:   #a855f7;
  --text-hi:  #ffffff;
  --text:     #c8d0e0;
  --text-muted: #616c80;
  --mono:     'JetBrains Mono', monospace;
  --sans:     'Inter', system-ui, sans-serif;
  --radius:   12px;
  --radius-lg:20px;
  --glow-g:   rgba(0,255,136,0.15);
  --glow-o:   rgba(245,183,49,0.15);
  --glow-r:   rgba(255,45,107,0.12);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body.pub-body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Animated bg ─────────────────────────────────────────── */
body.pub-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 10% 20%, rgba(0,255,136,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 90% 80%, rgba(255,45,107,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 50% 50%, rgba(245,183,49,0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* grid overlay */
body.pub-body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,183,49,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,183,49,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ─────────────────────────────────────────────────── */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,4,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.pub-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.pub-nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 1.5px solid rgba(245,183,49,0.4);
  filter: drop-shadow(0 0 6px rgba(245,183,49,0.3));
}
.pub-nav-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-hi);
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}
.brand-eth { color: var(--green); }
.pub-nav-brand small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.pub-nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.pub-nav-links a:hover { color: var(--text-hi); background: rgba(255,255,255,0.05); }
.pub-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pub-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.pub-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.pub-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(3,4,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 9999;
  backdrop-filter: blur(20px);
}
.pub-mobile-menu.open { display: flex; }
.pub-mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.pub-mobile-menu a:last-child { border-bottom: none; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--orange);
  color: #03040a;
}
.btn-primary:hover {
  background: #ffd060;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,183,49,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-hi);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: #03040a;
}
.btn-green:hover {
  background: #00ffaa;
  box-shadow: 0 4px 20px rgba(0,255,136,0.35);
  transform: translateY(-1px);
}
.btn-sm { font-size: 0.78rem; padding: 7px 14px; }
.btn-lg { font-size: 0.95rem; padding: 14px 28px; border-radius: 10px; }

/* ── Layout ──────────────────────────────────────────────── */
.pub-main { position: relative; z-index: 1; }
.pub-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pub-section-sm { padding: 60px 24px; max-width: 1100px; margin: 0 auto; }
.pub-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.full-width { max-width: none; }

/* ── Typography ──────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-hi);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-eyebrow::before { display: none; }
.text-center .section-sub { margin: 0 auto; }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }

/* ── Cards ───────────────────────────────────────────────── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s;
}
.glass-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.card-icon-green { background: rgba(0,255,136,0.1); color: var(--green); border: 1px solid rgba(0,255,136,0.2); }
.card-icon-orange { background: rgba(245,183,49,0.1); color: var(--orange); border: 1px solid rgba(245,183,49,0.2); }
.card-icon-red { background: rgba(255,45,107,0.08); color: var(--red); border: 1px solid rgba(255,45,107,0.15); }
.card-icon-blue { background: rgba(0,212,255,0.08); color: var(--blue); border: 1px solid rgba(0,212,255,0.15); }
.card-icon-purple { background: rgba(168,85,247,0.08); color: var(--purple); border: 1px solid rgba(168,85,247,0.15); }
.card-title { font-size: 0.95rem; font-weight: 700; color: var(--text-hi); margin-bottom: 8px; }
.card-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── Grids ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

/* ── Hero ────────────────────────────────────────────────── */
.pub-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.pub-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,183,49,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,183,49,0.08);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--text-hi);
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero-tagline {
  font-family: var(--mono);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}
.hero-tagline .slash { color: var(--text-muted); margin: 0 6px; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.hero-trust {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Mock signal card */
.hero-signal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 0 40px rgba(0,255,136,0.08), inset 0 0 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.hero-signal-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scanline 3s ease-in-out infinite;
}
@keyframes scanline {
  0%,100% { opacity: 0.3; transform: scaleX(0.5); }
  50%      { opacity: 1; transform: scaleX(1); }
}
.signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.signal-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.signal-badge-exec {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(0,255,136,0.12);
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: exec-glow 2s ease-in-out infinite;
}
@keyframes exec-glow {
  0%,100% { box-shadow: 0 0 6px rgba(0,255,136,0.2); }
  50%      { box-shadow: 0 0 16px rgba(0,255,136,0.5); }
}
.signal-decision-big {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0,255,136,0.4);
}
.signal-levels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sig-level {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 10px;
}
.sig-level-label { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.sig-level-val { font-family: var(--mono); font-size: 0.85rem; font-weight: 700; color: var(--text-hi); }
.sig-rr { color: var(--orange); }
.signal-conf {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.conf-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.conf-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #00ffaa);
  border-radius: 2px;
}
.demo-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px 7px;
  margin-top: 12px;
}

/* ── Problem section ─────────────────────────────────────── */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.problem-card {
  background: rgba(255,45,107,0.04);
  border: 1px solid rgba(255,45,107,0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.problem-card-icon { font-size: 1.2rem; flex-shrink: 0; }
.problem-card-text { font-size: 0.82rem; color: var(--text); font-weight: 500; }

/* ── Feature grid ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: rgba(245,183,49,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.feature-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.feature-card-title { font-size: 0.95rem; font-weight: 700; color: var(--text-hi); margin-bottom: 8px; }
.feature-card-body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── How it works steps ──────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(245,183,49,0.3), transparent);
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,183,49,0.1);
  border: 1px solid rgba(245,183,49,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
}
.step-content { padding-top: 8px; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-hi); margin-bottom: 6px; }
.step-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── Live signal preview ─────────────────────────────────── */
.pub-live-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.pub-live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.pub-live-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.pub-live-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.pub-live-stat-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 6px; }
.pub-live-stat-val { font-family: var(--mono); font-size: 1.2rem; font-weight: 800; color: var(--text-hi); }
.blurred { filter: blur(6px); user-select: none; pointer-events: none; }
.pub-live-blur-cta {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Performance stats ───────────────────────────────────── */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.perf-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.perf-stat-val {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-hi);
  line-height: 1;
  margin-bottom: 6px;
}
.perf-stat-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); }
.perf-warning {
  background: rgba(245,183,49,0.06);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.83rem;
  color: var(--orange);
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ── About / founder ─────────────────────────────────────── */
.founder-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.founder-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(245,183,49,0.4);
  filter: drop-shadow(0 0 16px rgba(245,183,49,0.35));
  flex-shrink: 0;
}
.founder-name { font-size: 1.2rem; font-weight: 800; color: var(--text-hi); margin-bottom: 4px; }
.founder-role { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.founder-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Guidelines ──────────────────────────────────────────── */
.guidelines-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.guidelines-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}
.guidelines-list li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.pricing-card-featured {
  border-color: rgba(245,183,49,0.35);
  background: rgba(245,183,49,0.04);
  box-shadow: 0 0 40px rgba(245,183,49,0.06);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #03040a;
  background: var(--orange);
  padding: 3px 12px;
  border-radius: 12px;
  white-space: nowrap;
}
.pricing-tier { font-size: 1.1rem; font-weight: 800; color: var(--text-hi); margin-bottom: 6px; }
.pricing-price { font-family: var(--mono); font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text);
}
.pricing-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ══ Pricing v2 ══════════════════════════════════════════════ */

/* Billing toggle */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 8px 20px;
}
.ptog-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.ptog-label.active { color: var(--text-hi); }
.pricing-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.pricing-toggle.active {
  background: rgba(245,183,49,0.18);
  border-color: rgba(245,183,49,0.5);
}
.ptog-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), background 0.25s;
}
.pricing-toggle.active .ptog-knob {
  transform: translateX(20px);
  background: var(--orange);
}
.ptog-save-badge {
  display: inline-block;
  background: rgba(0,255,136,0.12);
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.28);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}

/* Pricing grid v2 */
.pricing-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

/* Plan card v2 */
.pc2 {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.pc2:hover { transform: translateY(-4px); }
.pc2-featured {
  border-color: rgba(245,183,49,0.4);
  background: linear-gradient(160deg, rgba(245,183,49,0.06) 0%, rgba(245,183,49,0.02) 100%);
  box-shadow: 0 0 60px rgba(245,183,49,0.08), 0 20px 60px rgba(0,0,0,0.3);
}
.pc2-elite {
  border-color: rgba(168,85,247,0.25);
  background: rgba(168,85,247,0.03);
}
.pc2-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #03040a;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,183,49,0.4);
}
.pc2-tier {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pc2-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
  line-height: 1;
}
.pc2-currency {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-top: 8px;
}
.pc2-amount {
  font-family: var(--mono);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-hi);
  letter-spacing: -2px;
  line-height: 1;
}
.pc2-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 8px;
}
.pc2-billed {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 18px;
  transition: all 0.25s;
}
.pc2-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.pc2-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.pc2-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.45;
}
.pcf-check {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}
.pcf-check.pcf-hi { color: var(--orange); }
.pcf-lock {
  font-size: 0.72rem;
  flex-shrink: 0;
  opacity: 0.5;
  margin-top: 1px;
}
.pc2-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 13px 20px;
  border-radius: 10px;
}
.pc2-cta-elite {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.4);
  color: #a855f7;
}
.pc2-cta-elite:hover {
  background: rgba(168,85,247,0.2);
  box-shadow: 0 4px 20px rgba(168,85,247,0.2);
  transform: translateY(-1px);
}

/* Trust strip */
.pricing-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.pts-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pts-icon { font-size: 1rem; }

/* Compare table */
.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-tbl thead th {
  padding: 14px 16px;
  font-weight: 800;
  font-size: 0.8rem;
  border-bottom: 2px solid var(--border2);
  vertical-align: bottom;
  line-height: 1.4;
}
.ctbl-feature { text-align: left; color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.ctbl-basic  { text-align: center; color: var(--text-hi); }
.ctbl-pro    { text-align: center; color: var(--orange); background: rgba(245,183,49,0.04); }
.ctbl-elite  { text-align: center; color: #a855f7; }
.ctbl-fname  { padding: 11px 16px; color: var(--text); }
.ctbl-cell   { text-align: center; padding: 11px 16px; border-bottom: 1px solid var(--border); }
.ctbl-cell-pro { background: rgba(245,183,49,0.03); }
.ctbl-yes    { color: var(--green); font-weight: 800; }
.ctbl-yes-purple { color: #a855f7; }
.ctbl-no     { color: var(--text-muted); }
.ctbl-partial { color: var(--orange); font-size: 0.78rem; }
.compare-tbl tfoot td { padding: 16px 10px; }
.compare-tbl tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Journey steps */
.journey-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.journey-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 12px;
}
.jstep-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245,183,49,0.1);
  border: 2px solid rgba(245,183,49,0.35);
  color: var(--orange);
  font-family: var(--mono);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.jstep-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 8px;
}
.jstep-body {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.journey-arrow {
  color: var(--orange);
  font-size: 1.4rem;
  margin-top: 18px;
  flex-shrink: 0;
  opacity: 0.5;
  padding: 0 4px;
}

/* CTA banner on pricing page */
.pricing-cta-banner {
  position: relative;
  background: rgba(245,183,49,0.04);
  border: 1px solid rgba(245,183,49,0.18);
  border-radius: 24px;
  padding: 56px 40px;
  overflow: hidden;
}
.pcta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(245,183,49,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-hi);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--orange);
  transition: transform 0.25s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--text-hi); margin: 28px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 10px 0 14px 20px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content .legal-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

/* ── Login / signup ──────────────────────────────────────── */
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text-hi);
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: rgba(245,183,49,0.4); }
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text-hi);
  outline: none;
  cursor: pointer;
}
.form-select option { background: #0a0c14; }
.form-submit { width: 100%; }
.form-msg { font-size: 0.82rem; margin-top: 12px; text-align: center; min-height: 1.4em; }
.form-msg.success { color: var(--green); }
.form-msg.error { color: var(--red); }

/* ── Dashboard preview cards (homepage section 6) ─────────── */
.dash-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.dash-preview-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.dash-preview-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.dash-preview-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.dash-mock-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.dash-mock-row:last-child { border-bottom: none; }
.dash-mock-key { font-size: 0.72rem; color: var(--text-muted); }
.dash-mock-val { font-family: var(--mono); font-size: 0.72rem; color: var(--text-hi); font-weight: 700; }
.dash-mock-val.green { color: var(--green); }
.dash-mock-val.orange { color: var(--orange); }
.dash-mock-val.red { color: var(--red); }

/* ── Footer ──────────────────────────────────────────────── */
.pub-footer {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  position: relative;
  z-index: 1;
}
.pub-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pub-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  align-items: start;
}
.pub-footer-brand-name { font-size: 1.1rem; font-weight: 900; color: var(--orange); margin-bottom: 4px; }
.pub-footer-brand-sub { font-size: 0.75rem; color: var(--text-muted); }
.pub-footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.pub-footer-links a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.pub-footer-links a:hover { color: var(--text-hi); }
.pub-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.not-affiliated { font-size: 0.68rem; color: var(--text-muted); opacity: 0.7; }

/* ══ Hero founder badge ══════════════════════════════════════ */
.hero-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* ══ Hero bullets ════════════════════════════════════════════ */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 32px;
  max-width: 480px;
  text-align: left;
}
.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}
.hero-bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ══ One-line difference ═════════════════════════════════════ */
.one-line-diff-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.one-line-diff-left, .one-line-diff-right { display: flex; flex-direction: column; gap: 8px; }
.one-line-q { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.one-line-a { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 800; line-height: 1.2; }
.one-line-a.normal-bot { color: var(--text-muted); text-decoration: line-through; opacity: 0.6; }
.one-line-a.eth-core { color: var(--orange); }
.one-line-divider-vert { width: 1px; height: 60px; background: var(--border2); }
.diff-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.diff-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  transition: border-color 0.2s, color 0.2s;
}
.diff-pill:hover { border-color: var(--orange); color: var(--orange); }

/* ══ Compare table ═══════════════════════════════════════════ */
.compare-table-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-col { padding: 0; }
.compare-col-bad { background: rgba(255,45,107,0.02); }
.compare-col-good { background: rgba(0,255,136,0.02); border-left: 1px solid var(--border); }
.compare-col-header { padding: 20px 24px 16px; border-bottom: 1px solid var(--border); }
.compare-col-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.compare-col-label.bad { color: var(--text-muted); }
.compare-col-label.good { color: var(--green); }
.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.4;
}
.compare-row:last-child { border-bottom: none; }
.bad-row { color: var(--text-muted); }
.compare-x { color: var(--red); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.compare-check { color: var(--green); font-size: 1rem; font-weight: 700; flex-shrink: 0; }

/* ══ Decision Stack ══════════════════════════════════════════ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stack-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stack-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stack-item:last-child { border-bottom: none; }
.stack-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stack-dot.input { background: var(--blue); }
.stack-dot.output-dot { background: var(--green); }
.stack-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245,183,49,0.12);
  border: 1px solid rgba(245,183,49,0.25);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══ Executable cards ════════════════════════════════════════ */
.exec-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exec-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exec-card.exec-wait { background: rgba(245,183,49,0.03); border-color: rgba(245,183,49,0.15); }
.exec-card.exec-go { background: rgba(0,255,136,0.04); border-color: rgba(0,255,136,0.25); box-shadow: 0 0 30px rgba(0,255,136,0.06); }
.exec-card-tag { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.exec-card-title { font-size: 0.95rem; font-weight: 800; color: var(--text-hi); }
.exec-card-body { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.exec-card-verdict {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 4px;
  align-self: flex-start;
}
.exec-card-verdict.wait { background: rgba(245,183,49,0.1); color: var(--orange); border: 1px solid rgba(245,183,49,0.25); }
.exec-card-verdict.go { background: rgba(0,255,136,0.1); color: var(--green); border: 1px solid rgba(0,255,136,0.3); }

/* ══ Learning cards ══════════════════════════════════════════ */
.learn-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.learn-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.2s;
}
.learn-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.learn-card-icon { font-size: 1.2rem; margin-bottom: 10px; }
.learn-card-title { font-size: 0.9rem; font-weight: 700; color: var(--text-hi); margin-bottom: 6px; }
.learn-card-body { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ══ Founder creds ═══════════════════════════════════════════ */
.founder-avatar-lg {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
  border: 2px solid rgba(245,183,49,0.5) !important;
  filter: drop-shadow(0 0 20px rgba(245,183,49,0.25)) !important;
  flex-shrink: 0;
}
.founder-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.founder-cred {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  text-align: left;
}
.founder-cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ══ Customer portal modules ═════════════════════════════════ */
.portal-module-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 24px 16px !important;
  position: relative;
  overflow: hidden;
}
.portal-module-icon { font-size: 1.4rem; margin-bottom: 4px; }
.portal-module-title { font-size: 0.9rem; font-weight: 700; color: var(--text-hi); }
.portal-module-body { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.portal-module-lock {
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background: rgba(245,183,49,0.08);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: 12px;
  padding: 3px 10px;
  display: inline-block;
}

/* ══ Section hero split (2-col) ══════════════════════════════ */
.pub-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .pub-nav-links { display: none; }
  .pub-nav-hamburger { display: flex; }
  .pub-hero-split { grid-template-columns: 1fr; gap: 40px; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .pub-footer-top { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .one-line-diff-wrap { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .one-line-divider-vert { display: none; }
  .compare-table-wrap { grid-template-columns: 1fr; }
  .compare-col-good { border-left: none; border-top: 1px solid var(--border); }
  .stack-grid { grid-template-columns: 1fr; }
  .exec-cards { grid-template-columns: 1fr; }
  /* Hero split — stack on tablet */
  .hero-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-left-col { align-items: center; }
  .hero-right-col { justify-content: center; }
  .hero-subtitle { margin: 0 0 32px; text-align: left; }
  .hero-cta { justify-content: center; }
}
@media (max-width: 600px) {
  .pub-section { padding: 60px 20px; }
  .pub-hero { padding: 80px 16px 56px; min-height: auto; }
  .btn-lg { font-size: 0.85rem; padding: 12px 22px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .hero-cta .btn { text-align: center; }
  .auth-card { padding: 28px 20px; }
  .auth-card form > div[style*="grid-template-columns:1fr 1fr"] { display: flex !important; flex-direction: column !important; }
  .hero-bullets { padding: 0; max-width: 100%; }
  .hero-bullet { font-size: 0.8rem; }
  .one-line-diff-wrap { padding: 20px 16px; }
  .hero-right-col { display: none; }
  /* Hide decorative overlays that cause overflow on small screens */
  .hero-float-word { display: none; }
  .hero-orb-ring { display: none; }
  .hero-scan-line { display: none; }
  /* Hero text sizing on mobile */
  .hero-left-col .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: -1px;
    word-break: break-word;
  }
  .hero-left-col .hero-subtitle { font-size: 0.9rem; }
  .hero-eyebrow { font-size: 0.62rem; padding: 5px 12px; }
  .hero-founder-badge { font-size: 0.65rem; padding: 4px 12px; }
  .hero-stat-chips { justify-content: center; }
  /* Sections that need to stack */
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-grid-v2 { grid-template-columns: 1fr !important; }
  .journey-steps { flex-direction: column; align-items: center; gap: 16px; }
  .journey-arrow { display: none; }
  .pricing-cta-banner { padding: 36px 24px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  /* Nav on mobile: hide sign-in link, keep CTA button */
  .pub-nav-signin { display: none; }
  /* Footer */
  .pub-footer { padding: 48px 20px 32px; }
  .pub-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Misc ────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 12px;
}
.tag-green { background: rgba(0,255,136,0.1); color: var(--green); border: 1px solid rgba(0,255,136,0.25); }
.tag-orange { background: rgba(245,183,49,0.1); color: var(--orange); border: 1px solid rgba(245,183,49,0.25); }
.tag-red { background: rgba(255,45,107,0.08); color: var(--red); border: 1px solid rgba(255,45,107,0.2); }
.tag-blue { background: rgba(0,212,255,0.08); color: var(--blue); border: 1px solid rgba(0,212,255,0.2); }
.spacer { margin-top: 20px; }
.mono { font-family: var(--mono); }
a { color: inherit; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS & LIVE UI — v5
   ═══════════════════════════════════════════════════════════ */

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Directional slide reveals */
.reveal-left {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.09s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.18s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.27s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.36s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.45s; }
.reveal-stagger.visible > *:nth-child(n+7) { opacity:1; transform:none; transition-delay:0.54s; }

/* ── Hero canvas ───────────────────────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero content wrapper — split layout ───────────────── */
.hero-content-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}
.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
/* Scale title down for the narrower left column */
.hero-left-col .hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  letter-spacing: -1.5px;
}
.hero-left-col .hero-subtitle {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
}
.hero-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right-col .hero-signal-card-wrap {
  width: 100%;
  max-width: 340px;
  animation-delay: 0.35s;
}
.hero-right-col .hero-signal-card {
  max-width: 100%;
  min-width: unset;
}

/* ── Hero stat chips ───────────────────────────────────── */
.hero-stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 6px;
  animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.42s both;
}
.hero-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid rgba(245,183,49,0.22);
  background: rgba(245,183,49,0.06);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--orange);
  white-space: nowrap;
}
.hero-stat-chip .chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
  flex-shrink: 0;
}
.hero-stat-chip.chip-green {
  border-color: rgba(0,255,136,0.22);
  background: rgba(0,255,136,0.05);
  color: var(--green);
}
.hero-stat-chip.chip-green .chip-dot { background: var(--green); }
.hero-stat-chip.chip-blue {
  border-color: rgba(0,212,255,0.22);
  background: rgba(0,212,255,0.05);
  color: var(--blue);
}
.hero-stat-chip.chip-blue .chip-dot { background: var(--blue); }

/* ── Hero fade-in animations ───────────────────────────── */
.hero-eyebrow       { animation: hero-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.hero-founder-badge { animation: hero-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero-title         { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero-subtitle      { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.36s both; }
.hero-bullets       { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.54s both; }
.hero-cta           { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.65s both; }
.hero-trust         { animation: hero-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.74s both; }
.hero-signal-card-wrap { animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s both; }

/* ── Compare columns ───────────────────────────────────── */
.compare-col { transition: transform 0.3s ease, border-color 0.3s ease; }
.compare-col-good:hover { transform: translateY(-3px); }

/* ── Section title accent underline ───────────────────── */
.section-title-accent {
  position: relative;
  display: inline-block;
}
.section-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

/* ── Live signal card glow pulse ───────────────────────── */
.pub-live-wrap {
  animation: none;
}
@keyframes border-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.0), 0 2px 32px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 0 24px 4px rgba(0,255,136,0.10), 0 2px 32px rgba(0,0,0,0.35); }
}
.pub-live-wrap { animation: border-glow-pulse 3.5s ease-in-out infinite; }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Floating background words ─────────────────────────── */
.hero-float-word {
  position: absolute;
  font-family: var(--mono);
  font-weight: 800;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
@keyframes float-drift {
  0%   { transform: translateY(0px)   translateX(0px); }
  25%  { transform: translateY(-12px) translateX(5px); }
  50%  { transform: translateY(-6px)  translateX(-7px); }
  75%  { transform: translateY(-16px) translateX(3px); }
  100% { transform: translateY(0px)   translateX(0px); }
}

/* ── Orb ring pulses ───────────────────────────────────── */
.hero-orb-ring {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(245,183,49,0.1);
  pointer-events: none;
  z-index: 0;
  animation: orb-expand 5s ease-out infinite;
}
.hero-orb-ring:nth-child(2) { animation-delay: 1.7s; }
.hero-orb-ring:nth-child(3) { animation-delay: 3.4s; }
@keyframes orb-expand {
  0%   { width: 180px; height: 180px; opacity: 0.8; border-color: rgba(245,183,49,0.18); }
  100% { width: 1000px; height: 1000px; opacity: 0; border-color: rgba(245,183,49,0); }
}

/* ── Scan line in hero ─────────────────────────────────── */
.hero-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,183,49,0.15) 30%, rgba(0,255,136,0.25) 50%, rgba(245,183,49,0.15) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: scan-sweep 6s linear infinite;
}
@keyframes scan-sweep {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Chatbot widget ────────────────────────────────────── */
.chatbot-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f7cb45 0%, #e49a10 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 6px 24px rgba(245,183,49,0.45), 0 0 0 0 rgba(245,183,49,0.25);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  animation: chatbot-pulse 3.8s ease-in-out infinite;
  outline: none;
}
@keyframes chatbot-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(245,183,49,0.4), 0 0 0 0 rgba(245,183,49,0.2); }
  55%     { box-shadow: 0 8px 30px rgba(245,183,49,0.55), 0 0 0 10px rgba(245,183,49,0); }
}
.chatbot-btn:hover { transform: scale(1.1) translateY(-2px); animation: none; box-shadow: 0 12px 40px rgba(245,183,49,0.6); }
.chatbot-btn.open  { animation: none; transform: scale(1); box-shadow: 0 4px 18px rgba(245,183,49,0.35); }
.chatbot-btn .chat-open-icon  { width: 26px; height: 26px; display: block; }
.chatbot-btn .chat-close-icon { width: 20px; height: 20px; display: none; }
.chatbot-btn.open .chat-open-icon  { display: none; }
.chatbot-btn.open .chat-close-icon { display: block; }

/* Online dot */
.chatbot-online-dot {
  position: absolute;
  top: 3px; right: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #00e5a0;
  border: 2px solid #0d0f1e;
  box-shadow: 0 0 7px rgba(0,229,160,0.75);
  animation: online-dot-pulse 2.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.chatbot-btn.open .chatbot-online-dot { opacity: 0; }
@keyframes online-dot-pulse {
  0%,100% { box-shadow: 0 0 5px rgba(0,229,160,0.55); }
  50%     { box-shadow: 0 0 13px rgba(0,229,160,0.95); }
}

/* Panel */
.chatbot-panel {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 364px; height: 510px;
  background: rgba(6,8,18,0.98);
  border: 1px solid rgba(245,183,49,0.14);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(245,183,49,0.03), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(32px);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(18px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.24s ease;
}
.chatbot-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

/* Gold accent line at top */
.chatbot-accent-bar {
  height: 3px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent 0%, #f5b731 35%, #ffd060 65%, transparent 100%);
  opacity: 0.8;
}

/* Header */
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  background: rgba(245,183,49,0.025);
}
.chatbot-header-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(245,183,49,0.1);
  border: 1px solid rgba(245,183,49,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}
.chatbot-header-icon svg { width: 100%; height: 100%; display: block; }
.chatbot-header-info { flex: 1; min-width: 0; }
.chatbot-header-name {
  font-size: 0.84rem; font-weight: 700;
  color: var(--text-hi); line-height: 1.2;
  letter-spacing: -0.01em;
}
.chatbot-header-status {
  font-size: 0.61rem; color: #00e5a0;
  display: flex; align-items: center; gap: 5px;
  font-weight: 500; margin-top: 2px;
}
.chatbot-header-status::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: #00e5a0;
  box-shadow: 0 0 5px rgba(0,229,160,0.7);
  flex-shrink: 0;
  animation: online-dot-pulse 2.8s ease-in-out infinite;
}
.chatbot-close-x {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}
.chatbot-close-x:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.chatbot-close-x svg { width: 13px; height: 13px; }

/* Messages */
.chatbot-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chatbot-msgs::-webkit-scrollbar { width: 3px; }
.chatbot-msgs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }

.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  animation: chat-pop 0.26s cubic-bezier(0.16,1,0.3,1);
}
@keyframes chat-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Small ETH diamond next to bot messages */
.chat-bot-avatar {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(245,183,49,0.08);
  border: 1px solid rgba(245,183,49,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 3px;
  margin-bottom: 1px;
}
.chat-bot-avatar svg { width: 100%; height: 100%; display: block; }

.chat-msg-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 0.79rem;
  line-height: 1.65;
}
.chat-msg.bot .chat-msg-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  border-bottom-left-radius: 5px;
}
.chat-msg.user {
  flex-direction: row-reverse;
}
.chat-msg.user .chat-msg-bubble {
  background: rgba(245,183,49,0.13);
  border: 1px solid rgba(245,183,49,0.2);
  color: rgba(255,255,255,0.92);
  border-bottom-right-radius: 5px;
}

/* Quick chips */
.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px 12px 6px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.chatbot-chip {
  font-size: 0.67rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 4px 11px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.chatbot-chip:hover {
  border-color: rgba(245,183,49,0.38);
  color: #f5b731;
  background: rgba(245,183,49,0.06);
}

/* Input row */
.chatbot-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.chatbot-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 11px;
  padding: 9px 13px;
  font-family: var(--sans);
  font-size: 0.79rem;
  color: var(--text-hi);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  resize: none;
  height: 38px;
  line-height: 1.4;
}
.chatbot-input::placeholder { color: rgba(255,255,255,0.22); }
.chatbot-input:focus {
  border-color: rgba(245,183,49,0.32);
  background: rgba(255,255,255,0.06);
}
.chatbot-send {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #f7cb45, #e49a10);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s;
  box-shadow: 0 3px 12px rgba(245,183,49,0.3);
}
.chatbot-send svg { width: 16px; height: 16px; }
.chatbot-send:hover { transform: scale(1.08); box-shadow: 0 5px 18px rgba(245,183,49,0.45); }
.chatbot-send:disabled { opacity: 0.45; cursor: default; transform: none; box-shadow: none; }

.chatbot-disclaimer {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.14);
  text-align: center;
  padding: 0 12px 9px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.chat-typing { display: flex; gap: 4px; align-items: center; padding: 4px 2px; }
.chat-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.35; }
  40%          { transform: translateY(-5px); opacity: 1; }
}

@media (max-width: 600px) {
  .chatbot-panel { width: calc(100vw - 32px); right: 16px; bottom: 84px; height: 460px; }
  .chatbot-btn  { right: 16px; bottom: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OVERRIDES — must be LAST in file to win cascade
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Hero grid must stack — overrides hero-content-wrap base style */
  .hero-content-wrap {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 28px !important;
  }
  .hero-left-col {
    align-items: center !important;
    width: 100% !important;
  }
  .hero-left-col .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.2rem) !important;
    letter-spacing: -1px !important;
  }
  .hero-right-col { justify-content: center; }
  .hero-subtitle { margin: 0 auto 28px !important; }
  .hero-cta { justify-content: center !important; }
  .hero-bullets {
    text-align: left !important;
    align-items: flex-start !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 600px) {
  /* Force hero to single column, hide card and decorations */
  .hero-content-wrap {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: left !important;
    padding: 0 4px !important;
  }
  .hero-left-col {
    align-items: flex-start !important;
    width: 100% !important;
  }
  .hero-right-col { display: none !important; }
  .hero-float-word { display: none !important; }
  .hero-orb-ring { display: none !important; }
  .hero-scan-line { display: none !important; }

  /* Hero text */
  .hero-left-col .hero-title {
    font-size: clamp(2rem, 8.5vw, 2.6rem) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.05 !important;
    word-break: break-word !important;
  }
  .hero-left-col .hero-subtitle {
    font-size: 0.88rem !important;
    margin: 0 0 20px !important;
  }
  .hero-eyebrow {
    font-size: 0.6rem !important;
    padding: 5px 11px !important;
    letter-spacing: 1px !important;
  }
  .hero-founder-badge {
    font-size: 0.62rem !important;
    padding: 4px 11px !important;
    letter-spacing: 1px !important;
  }
  .hero-stat-chips {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
  .hero-stat-chip { font-size: 0.65rem !important; padding: 4px 9px !important; }
  .hero-bullets {
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
  }
  .hero-bullet { font-size: 0.8rem !important; }
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 320px !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }
  .hero-cta .btn { text-align: center !important; width: 100% !important; }
  .hero-trust { font-size: 0.66rem !important; }

  /* Nav */
  .pub-nav { padding: 0 16px !important; }
  .pub-nav-brand { font-size: 0.88rem !important; }
  .pub-nav-brand small { font-size: 0.55rem !important; }

  /* Sections */
  .pub-section { padding: 52px 20px !important; }
  .pub-hero { padding: 72px 20px 52px !important; min-height: auto !important; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .section-sub { font-size: 0.88rem !important; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .one-line-diff-wrap {
    grid-template-columns: 1fr !important;
    padding: 20px 16px !important;
    gap: 16px !important;
  }
  .one-line-divider-vert { display: none !important; }
  .compare-table-wrap { grid-template-columns: 1fr !important; }
  .stack-grid { grid-template-columns: 1fr !important; }
  .exec-cards { grid-template-columns: 1fr !important; }

  /* Buttons */
  .btn-lg { font-size: 0.85rem !important; padding: 13px 22px !important; }
}

/* ══ MOBILE HERO DEMO CARD ══════════════════════════════════
   Hidden on desktop — the right column handles it there.
   Shown on mobile only, between bullets and CTA.           */
.hero-mobile-demo {
  display: none;
}
.hero-mobile-demo-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 10px;
}
.hero-signal-card--mobile {
  min-width: unset !important;
  max-width: 100% !important;
  width: 100%;
  padding: 16px 18px !important;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .hero-mobile-demo {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
    animation: hero-fade-up 0.85s cubic-bezier(0.16,1,0.3,1) 0.6s both;
  }
}

/* ══ HERO SUPPORT LINE ══════════════════════════════════════ */
.hero-support-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin: -16px 0 20px;
  max-width: 540px;
}
@media (max-width: 900px) {
  .hero-support-line { text-align: left; max-width: 100%; margin: -8px 0 20px; }
}

/* ══ LIVE HERO PANEL (hlive-*) ══════════════════════════════ */
.hlive-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,212,255,0.06), inset 0 0 30px rgba(0,0,0,0.2);
}
.hlive-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scanline 3s ease-in-out infinite;
}
.hlive-card--mobile {
  min-width: unset !important;
  max-width: 100% !important;
  width: 100%;
  box-sizing: border-box;
}
.hlive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.hlive-pulse-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hlive-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: live-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.5); opacity: 1; }
  50%      { box-shadow: 0 0 0 6px rgba(0,255,136,0); opacity: 0.8; }
}
.hlive-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hlive-ts {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.hlive-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.hlive-price {
  font-family: var(--mono);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-hi);
  line-height: 1;
  transition: color 0.3s;
}
.hlive-price.price-updated { animation: price-flash 0.6s ease-out; }
@keyframes price-flash {
  0%   { color: var(--blue); }
  100% { color: var(--text-hi); }
}
.hlive-decision {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.hlive-exec-row {
  margin-bottom: 12px;
  min-height: 18px;
}
.hlive-conf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hlive-conf-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.hlive-locked-section {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.hlive-locked-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.hlive-locked-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hlive-locked-item:last-child { border-bottom: none; }
.hlive-lock-icon { font-size: 0.65rem; flex-shrink: 0; }
.hlive-locked-item > span:nth-child(2) { flex: 1; }
.hlive-lock-val {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 2px 7px;
  filter: blur(3px);
}
.hlive-error {
  background: rgba(255,45,107,0.06);
  border: 1px solid rgba(255,45,107,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ══ INTELLIGENCE PREVIEW SECTION ══════════════════════════ */
.intel-preview-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.intel-preview-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent);
}
.intel-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .intel-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .intel-row { grid-template-columns: repeat(2, 1fr); } }
.intel-cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
}
.intel-cell-locked {
  opacity: 0.5;
}
.intel-cell-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.intel-cell-val {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-hi);
}
.intel-lock {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
}
.intel-signal-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .intel-signal-row { grid-template-columns: 1fr; } }
.intel-sig-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.intel-sig-val {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.intel-locked-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.intel-locked-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 6px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.intel-locked-row span:nth-child(2) { flex: 1; }
.intel-locked-row em { font-style: normal; font-size: 0.65rem; color: var(--orange); opacity: 0.7; }
.intel-waiting {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 0;
  font-style: italic;
}
.intel-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.intel-note {
  font-size: 0.72rem;
  color: var(--text-muted);
}
@media (max-width: 480px) {
  .intel-cta-row { flex-direction: column; align-items: flex-start; }
  .intel-preview-wrap { padding: 20px 16px; }
}

/* ══ WHAT YOU ACTUALLY GET ══════════════════════════════════ */
.wyag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .wyag-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wyag-grid { grid-template-columns: 1fr; } }
.wyag-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.wyag-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-2px);
}
.wyag-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1;
}
.wyag-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 6px;
}
.wyag-body {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══ PRICING GRID 4-COLUMN ══════════════════════════════════ */
.pricing-grid-v2--4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) { .pricing-grid-v2--4 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px)  { .pricing-grid-v2--4 { grid-template-columns: 1fr !important; } }

.pc2-free {
  border-color: var(--border) !important;
  background: rgba(255,255,255,0.01) !important;
}

/* ══ COMPARISON TABLE 4-COLUMN ══════════════════════════════ */
.compare-tbl--4col th, .compare-tbl--4col td { min-width: 70px; }
.ctbl-free { text-align: center; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); padding: 10px 8px; }

/* ══ SOCIAL PROOF — DATA PARTNERS STRIP ════════════════════ */
.data-partners-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.dps-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 28px;
}
.dps-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.dps-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  filter: grayscale(1) opacity(0.35);
  transition: filter 0.3s;
}
.dps-logo:hover { filter: grayscale(0) opacity(1); }
.dps-logo-wordmark {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.dps-logo--bnb .dps-logo-wordmark  { color: #f0b90b; }
.dps-logo--cq  .dps-logo-wordmark  { color: #4e9af1; }
.dps-logo--ca  .dps-logo-wordmark  { color: #ff7a00; }
.dps-logo--alt .dps-logo-wordmark  { color: #00c97a; }
@media (max-width: 640px) {
  .data-partners-strip { gap: 14px; padding: 16px 16px; }
  .dps-label { margin-right: 0; margin-bottom: 10px; width: 100%; text-align: center; }
  .dps-logos { gap: 20px; }
}

/* ══ SOCIAL PROOF — HERO PULL-QUOTE ════════════════════════ */
.hero-pull-quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(0,255,136,0.04);
  border-left: 3px solid rgba(0,255,136,0.4);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 480px;
}
.hpq-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,255,136,0.12);
  border: 1px solid rgba(0,255,136,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hpq-text {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
}
.hpq-author {
  margin-top: 4px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}
.hpq-author span { color: var(--green); }

/* ══ SOCIAL PROOF — TRUST BADGE STRIP ══════════════════════ */
.trust-badge-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.012);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.025);
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: border-color 0.2s, color 0.2s;
}
.trust-badge:hover { border-color: var(--border2); color: var(--text); }
.trust-badge-icon { font-size: 0.75rem; }
@media (max-width: 600px) {
  .trust-badge-strip { gap: 6px; padding: 14px 16px; }
  .trust-badge { font-size: 0.65rem; padding: 6px 10px; }
}

/* ══ SOCIAL PROOF — TESTIMONIALS ════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Mobile testimonial carousel ───────────────────────────── */
@media (max-width: 767px) {
  .tc-carousel-wrap { overflow: hidden; }
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 24px;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .tc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .tc-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .tc-dot--active {
    background: var(--orange);
    transform: scale(1.25);
  }
}
@media (min-width: 768px) {
  .tc-dots { display: none; }
  .tc-carousel-wrap { overflow: visible; }
}
.testimonial-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  border-color: rgba(0,255,136,0.18);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg {
  width: 13px;
  height: 13px;
}
.testimonial-quote {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-quote strong { color: var(--text-hi); font-style: normal; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245,183,49,0.1);
  border: 1px solid rgba(245,183,49,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.2;
}
.testimonial-meta {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.testimonial-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(0,255,136,0.08);
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.18);
  margin-left: auto;
  white-space: nowrap;
}
/* 3-column grid variant for pricing page */
.testimonials-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .testimonials-grid--3 { grid-template-columns: 1fr; } }

/* ══ SOCIAL PROOF — STAR RATING BADGE ══════════════════════ */
.star-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245,183,49,0.06);
  border: 1px solid rgba(245,183,49,0.2);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 16px;
}
.srb-stars {
  display: flex;
  gap: 2px;
}
.srb-stars svg { width: 14px; height: 14px; }
.srb-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* ══ SOCIAL PROOF — GLOBAL REACH ════════════════════════════ */
.global-reach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.global-reach-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-hi);
  display: flex;
  align-items: center;
  gap: 8px;
}
.global-reach-title .globe-icon { font-size: 1rem; }
.global-reach-flags {
  font-size: 1.4rem;
  letter-spacing: 4px;
  line-height: 1.5;
  text-align: center;
}
.global-reach-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ══ SOCIAL PROOF — ACTIVITY TOAST ══════════════════════════ */
.activity-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  width: 280px;
  background: rgba(10,12,20,0.97);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0,255,136,0.06);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(16px);
}
.activity-toast.toast-visible {
  opacity: 1;
  transform: translateY(0);
}
.activity-toast.toast-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.at-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,255,136,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
.at-body { flex: 1; min-width: 0; }
.at-action {
  font-size: 0.72rem;
  color: var(--text);
  line-height: 1.4;
}
.at-action strong { color: var(--text-hi); font-weight: 600; }
.at-time {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.at-close {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  padding: 2px;
}
@media (max-width: 480px) {
  .activity-toast { left: 12px; right: 12px; width: auto; bottom: 80px; }
  /* Star rating badge — allow text to wrap on narrow phones */
  .star-rating-badge {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 14px;
    max-width: 100%;
  }
  .srb-label {
    white-space: normal;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.5;
  }
  /* Pricing toggle — tighten spacing on small screens */
  .pricing-toggle-wrap {
    gap: 10px;
    padding: 8px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Compare table — ensure scroll container is constrained */
  .pub-section { overflow-x: hidden; }
}

/* ══ MOBILE HERO DEMO (updated show) ════════════════════════ */
@media (max-width: 600px) {
  .hero-mobile-demo {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 4px auto 24px;
    animation: hero-fade-up 0.85s cubic-bezier(0.16,1,0.3,1) 0.6s both;
  }
}

/* ── Hero chip purple variant ──────────────────────────── */
.hero-stat-chip.chip-purple {
  border-color: rgba(168,85,247,0.22);
  background: rgba(168,85,247,0.05);
  color: var(--purple);
}
.hero-stat-chip.chip-purple .chip-dot { background: var(--purple); }

/* ── "Built for the trader" section — clean, minimal ───── */
.bft-section { text-align: center; }
.bft-title {
  font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-hi);
  line-height: 1.2;
  margin: 14px auto 14px;
  max-width: 760px;
}
.bft-title-soft { color: var(--text-muted); font-weight: 500; }
.bft-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.6;
  font-weight: 400;
}
.bft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.bft-item {
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.bft-item:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.bft-icon {
  font-size: 1.3rem;
  margin-bottom: 12px;
  opacity: 0.85;
}
.bft-h {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-hi);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.bft-p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
}
.bft-foot {
  margin-top: 36px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.bft-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.bft-pill--orange { background: rgba(245,183,49,0.10); color: var(--orange); border: 1px solid rgba(245,183,49,0.22); }
.bft-pill--blue   { background: rgba(0,212,255,0.10);  color: var(--blue);   border: 1px solid rgba(0,212,255,0.22); }
.bft-pill--green  { background: rgba(0,255,136,0.10);  color: var(--green);  border: 1px solid rgba(0,255,136,0.22); }

@media (max-width: 900px) {
  .bft-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .bft-grid { grid-template-columns: 1fr; }
  .bft-item { padding: 18px 16px; }
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.pub-breadcrumb {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.pub-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.pub-breadcrumb a:hover { color: var(--text); }
.pub-bc-sep {
  margin: 0 7px;
  opacity: 0.4;
  font-size: 0.68rem;
}
