:root {
  --bg: #0b1220;
  --bg-2: #0f172a;
  --surface: #111c33;
  --surface-2: #16243f;
  --line: #1f2d4a;
  --line-2: #28385a;
  --text: #f1f5f9;
  --text-dim: #94a3b8;
  --text-mute: #64748b;
  --amber: #f59e0b;
  --amber-2: #fbbf24;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --cyan: #06b6d4;
  --cyan-2: #22d3ee;
  --cyan-soft: rgba(6, 182, 212, 0.12);
  --red: #ef4444;
  --green: #22c55e;
  --violet: #a78bfa;
  --grid: rgba(148, 163, 184, 0.06);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shell: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; }

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

/* ====== background grid + scanlines ====== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 80%);
}
.bg-glow-a {
  position: fixed; top: -200px; left: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%);
  pointer-events: none; z-index: 0;
}
.bg-glow-b {
  position: fixed; top: 100px; right: -200px; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(6,182,212,0.14), transparent 60%);
  pointer-events: none; z-index: 0;
}

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
@media (max-width: 720px) { .shell { padding: 0 20px; } }

/* ====== nav ====== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 18, 32, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), #d97706);
  display: grid; place-items: center; color: #0b1220;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.5), 0 10px 30px -10px rgba(245,158,11,0.5);
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--bg);
  animation: pulse 1.6s ease-in-out infinite;
}
.brand-name { display: flex; gap: 1px; }
.brand-name b { color: var(--amber); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-dim); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ====== buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
  border-radius: 10px; font-weight: 600; font-size: 14px;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber); color: #0b1220;
  box-shadow: 0 10px 30px -8px rgba(245,158,11,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px -8px rgba(245,158,11,0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost {
  background: rgba(148,163,184,0.06); color: var(--text); border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(148,163,184,0.1); border-color: var(--cyan); color: var(--cyan-2); }
.btn-outline {
  background: transparent; color: var(--cyan-2); border: 1px solid var(--cyan);
}
.btn-outline:hover { background: var(--cyan-soft); }
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }

/* ====== hero ====== */
.hero {
  padding: 80px 0 120px;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.3);
  font-family: var(--font-mono); font-size: 12px; color: #fca5a5;
  letter-spacing: 0.04em;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.5s ease infinite; box-shadow: 0 0 12px var(--red); }

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-top: 20px;
  text-wrap: balance;
}
h1.hero-title .accent { color: var(--amber); }
h1.hero-title .crossout {
  position: relative; display: inline-block;
}
h1.hero-title .crossout::after {
  content: ''; position: absolute; left: -4%; right: -4%; top: 55%;
  height: 6px; background: var(--red); transform: rotate(-3deg);
}

.hero-sub {
  margin-top: 24px; color: var(--text-dim); font-size: 18px; max-width: 540px;
  line-height: 1.55;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
  font-size: 13px; color: var(--text-dim);
}
.hero-trust .pip {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust .pip svg { color: var(--cyan-2); }

/* ====== dispatch panel ====== */
.dispatch {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5), 0 0 0 1px rgba(6,182,212,0.06) inset;
  position: relative;
}
.dispatch::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% -10%, rgba(6,182,212,0.18), transparent 50%),
    radial-gradient(circle at -10% 120%, rgba(245,158,11,0.12), transparent 50%);
}
.dispatch-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  background: rgba(15,23,42,0.6); position: relative;
}
.dispatch-head .lights { display: flex; gap: 6px; }
.dispatch-head .light { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.dispatch-head .light.on { background: var(--green); box-shadow: 0 0 10px var(--green); }
.dispatch-head .label {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.dispatch-head .stamp {
  font-family: var(--font-mono); font-size: 11px; color: var(--cyan-2);
}

.dispatch-body { padding: 20px; position: relative; }

.feed-row {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center;
  padding: 14px; border-radius: 12px; background: rgba(15,23,42,0.5);
  border: 1px solid var(--line); margin-bottom: 10px;
  position: relative; overflow: hidden;
  animation: rowIn 0.4s ease;
}
.feed-row.fresh { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.04); }
.feed-row.fresh::after {
  content: ''; position: absolute; top: 0; right: 0; width: 3px; height: 100%;
  background: var(--amber); box-shadow: 0 0 12px var(--amber);
}
.feed-cat {
  font-family: var(--font-mono); font-size: 10px; color: var(--cyan-2);
  background: var(--cyan-soft); padding: 4px 8px; border-radius: 6px;
  text-align: center; letter-spacing: 0.05em;
}
.feed-title { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.35; }
.feed-meta { font-size: 12px; color: var(--text-mute); font-family: var(--font-mono); margin-top: 3px; }
.feed-meta .sep { margin: 0 6px; opacity: 0.4; }
.feed-price { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--amber); }

/* ====== section base ====== */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  border-radius: 999px; border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 11px; color: var(--cyan-2);
  letter-spacing: 0.1em; text-transform: uppercase; background: rgba(6,182,212,0.05);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05;
  text-wrap: balance;
}
.section-sub { color: var(--text-dim); margin-top: 16px; font-size: 17px; line-height: 1.5; }

/* ====== stats strip ====== */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-2); border-radius: 18px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  overflow: hidden;
  margin-top: -60px;
  position: relative; z-index: 5;
}
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-cell { padding: 28px 24px; border-right: 1px solid var(--line); position: relative; }
.stat-cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stat-cell .num { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.03em; }
.stat-cell .num.amber { color: var(--amber); }
.stat-cell .num.cyan { color: var(--cyan-2); }
.stat-cell .lbl { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.stat-cell .arrow { position: absolute; top: 24px; right: 24px; opacity: 0.5; }

/* ====== categories ====== */
.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 980px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cats-grid { grid-template-columns: 1fr; } }

.cat-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px; padding: 22px;
  transition: all .2s;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.cat-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.cat-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--cyan-soft); color: var(--cyan-2);
}
.cat-card.amber .icon-wrap { background: var(--amber-soft); color: var(--amber); }
.cat-card .cat-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.cat-card .cat-meta { font-size: 12px; font-family: var(--font-mono); color: var(--text-mute); display: flex; align-items: center; gap: 6px; }
.cat-card .cat-meta .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; }
.cat-card .arrow {
  position: absolute; top: 22px; right: 22px; opacity: 0; transition: opacity .2s, transform .2s;
  color: var(--cyan-2);
}
.cat-card:hover .arrow { opacity: 1; transform: translate(2px, -2px); }

/* ====== how it works ====== */
.how-tabs {
  display: inline-flex; padding: 4px; border: 1px solid var(--line-2);
  border-radius: 12px; background: var(--surface);
  margin: 0 auto 40px; gap: 4px;
}
.how-tab {
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-dim); transition: all .15s;
  display: flex; align-items: center; gap: 8px;
}
.how-tab.active.client { background: var(--amber); color: #0b1220; }
.how-tab.active.pro { background: var(--cyan); color: #0b1220; }

.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative;
}
@media (max-width: 980px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

.step-card {
  position: relative; padding: 28px 22px 24px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface);
}
.step-num {
  position: absolute; top: -18px; left: 22px;
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  background: var(--bg); border: 1px solid var(--line-2); color: var(--amber);
}
.step-card.pro .step-num { color: var(--cyan-2); }
.step-card .step-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-top: 6px; letter-spacing: -0.01em; }
.step-card .step-desc { color: var(--text-dim); font-size: 14px; line-height: 1.5; margin-top: 8px; }
.step-card .step-icon { color: var(--amber); margin-bottom: 4px; }
.step-card.pro .step-icon { color: var(--cyan-2); }

/* ====== live board ====== */
.live-board {
  display: grid; grid-template-columns: 280px 1fr; gap: 24px;
  border: 1px solid var(--line-2); border-radius: 18px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  overflow: hidden;
}
@media (max-width: 880px) { .live-board { grid-template-columns: 1fr; } }
.lb-sidebar { padding: 24px; border-right: 1px solid var(--line); }
@media (max-width: 880px) { .lb-sidebar { border-right: 0; border-bottom: 1px solid var(--line); } }
.lb-sidebar .lbl {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.lb-filter {
  display: block; width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1px solid transparent; background: transparent;
  font-size: 14px; color: var(--text-dim); text-align: left;
  font-family: var(--font-sans); font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
}
.lb-filter:hover { background: rgba(148,163,184,0.06); color: var(--text); }
.lb-filter.active { background: var(--cyan-soft); color: var(--cyan-2); border-color: rgba(6,182,212,0.3); }
.lb-filter .count { font-family: var(--font-mono); font-size: 12px; opacity: 0.7; }

.lb-feed { padding: 20px; }
.lb-feed-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.lb-status { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.lb-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 1.6s ease infinite; }

.lb-row {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 16px; align-items: center;
  padding: 14px 12px; border-radius: 10px;
  transition: background .15s;
}
.lb-row:hover { background: rgba(148,163,184,0.04); }
.lb-row + .lb-row { border-top: 1px solid var(--line); }
.lb-row .time { font-family: var(--font-mono); font-size: 12px; color: var(--text-mute); min-width: 56px; }
.lb-row .title { font-size: 14px; font-weight: 500; }
.lb-row .meta { font-size: 12px; color: var(--text-mute); font-family: var(--font-mono); margin-top: 2px; }
.lb-row .tag {
  font-family: var(--font-mono); font-size: 11px; padding: 4px 8px; border-radius: 6px;
  background: rgba(148,163,184,0.08); color: var(--text-dim);
}
.lb-row .tag.tech { background: rgba(6,182,212,0.12); color: var(--cyan-2); }
.lb-row .tag.musique { background: rgba(167,139,250,0.12); color: var(--violet); }
.lb-row .tag.transport { background: rgba(245,158,11,0.12); color: var(--amber); }
.lb-row .tag.réparation { background: rgba(34,197,94,0.12); color: var(--green); }
.lb-row .tag.cours { background: rgba(244,114,182,0.12); color: #f472b6; }
.lb-row .price { font-family: var(--font-display); font-weight: 600; color: var(--text); }
.lb-row .price small { color: var(--text-mute); font-weight: 400; font-size: 11px; margin-left: 2px; }

/* ====== providers section ====== */
.prov-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .prov-grid { grid-template-columns: 1fr; } }
.prov-copy h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px,4vw,46px); letter-spacing: -0.03em; line-height: 1.05; }
.prov-copy h2 .accent { color: var(--cyan-2); }
.prov-copy p { color: var(--text-dim); margin-top: 18px; font-size: 17px; line-height: 1.55; }
.prov-bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.prov-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); list-style: none; }
.prov-bullets li svg { color: var(--cyan-2); flex-shrink: 0; margin-top: 2px; }

.prov-card {
  border: 1px solid var(--line-2); border-radius: 18px; padding: 28px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  position: relative; overflow: hidden;
}
.prov-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.prov-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  display: grid; place-items: center; color: #0b1220;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.prov-card-head h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.prov-card-head .role { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }
.prov-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.prov-stat { padding: 14px; border-radius: 10px; background: rgba(15,23,42,0.6); border: 1px solid var(--line); }
.prov-stat .v { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--cyan-2); }
.prov-stat .l { font-size: 11px; color: var(--text-mute); margin-top: 2px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }

.prov-job {
  padding: 16px; border-radius: 10px; background: rgba(15,23,42,0.6); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; margin-bottom: 10px;
}
.prov-job .tj { font-size: 14px; font-weight: 500; }
.prov-job .tm { font-size: 12px; color: var(--text-mute); font-family: var(--font-mono); margin-top: 3px; }
.prov-job .badge {
  font-family: var(--font-mono); font-size: 11px; padding: 4px 10px;
  border-radius: 6px; background: rgba(34,197,94,0.15); color: var(--green);
}
.prov-job .badge.pending { background: rgba(245,158,11,0.15); color: var(--amber); }

/* ====== testimonials ====== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 16px; padding: 26px; display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.testi-quote { font-family: var(--font-display); font-size: 17px; line-height: 1.5; color: var(--text); }
.testi-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-avatar { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #0b1220; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text-mute); font-family: var(--font-mono); }
.testi-stars { display: flex; gap: 2px; color: var(--amber); }

/* ====== faq ====== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 4px; width: 100%; font-size: 17px; font-weight: 500; font-family: var(--font-display);
  letter-spacing: -0.01em; color: var(--text); text-align: left;
}
.faq-q:hover { color: var(--amber); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .2s, background .15s, border-color .15s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--amber); border-color: var(--amber); color: #0b1220; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s, padding .2s, opacity .2s;
  color: var(--text-dim); font-size: 15px; line-height: 1.6;
  padding: 0 4px; opacity: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 4px 22px; opacity: 1; }

/* ====== final CTA ====== */
.cta-block {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(135deg, #0b1220 0%, #16243f 60%, #1a2d4f 100%);
  padding: 80px 56px;
}
@media (max-width: 720px) { .cta-block { padding: 56px 24px; } }
.cta-block::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.3), transparent 70%);
  pointer-events: none;
}
.cta-block::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.035em; line-height: 1.0;
  text-wrap: balance;
}
.cta-inner h2 .accent { color: var(--amber); }
.cta-inner p { color: var(--text-dim); margin-top: 22px; font-size: 18px; max-width: 540px; }
.cta-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.cta-ticker {
  position: absolute; right: 56px; top: 56px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim);
  text-align: right;
}
@media (max-width: 880px) { .cta-ticker { display: none; } }
.cta-ticker .row { display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.cta-ticker .row .v { color: var(--cyan-2); }

/* ====== footer ====== */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { color: var(--text-dim); font-size: 14px; transition: color .15s; }
.footer-grid ul a:hover { color: var(--amber); }
.footer-grid p { color: var(--text-mute); font-size: 13px; line-height: 1.55; margin-top: 12px; max-width: 280px; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--text-mute); font-family: var(--font-mono);
}

/* animations */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}
@keyframes rowIn {
  from { transform: translateY(-6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 40px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track > * { flex-shrink: 0; }
