/* Hover marketing site — Image Hero variant.
 *
 * Source-of-truth: design/screens/marketing.html in the main hover repo
 * (refreshed 2026-05-24 from /Users/nmelo/Desktop/Hover/Hover Marketing Site - Image Hero.html).
 * Pixel-perfect mandate applies — visual changes flow design-side first.
 *
 * Note: the pre-redesign tokens + base classes that /docs/* relied on
 * have moved to docs/docs-shell.css (the docs subsurface still uses the
 * navy-blueprint system; migrating it is a separate bd). This file is
 * marketing-only — clean Image Hero design system, no legacy tokens.
 */

:root {
  --bg-page:#0a0a0a;
  --bg-0:#0a0a0e; --bg-1:#101015; --bg-2:#16161a; --bg-3:#1d1d22; --bg-4:#23232a;
  --hair-1:#202026; --hair-2:#2a2a32; --hair-3:#36363f;
  --t-1:#ececef; --t-2:#a4a4ac; --t-3:#6e6e78; --t-4:#494953;
  --olive:#b8b06a; --olive-dim:#7a7448; --olive-text:#9a915a;
  --sage:#7aa692; --sage-dim:#4a6a5c;
  --wine:#8a3a3a; --wine-bg-2:#241414;
  --green:#5a8a6a; --amber:#b3873d;

  --text-2xs:11px; --text-xs:14px; --text-sm:14px; --text-md:15px;
  --text-base:16px; --text-lg:16px; --text-xl:18px; --text-2xl:20px;
  --text-3xl:22px; --text-4xl:26px;
}

*, *::before, *::after { box-sizing:border-box; }
html, body {
  margin:0; padding:0;
  background:var(--bg-page);
  color:var(--t-1);
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  font-size:16px; line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 28px;
}

/* Top nav + brand lockup moved to the shared chrome.css (site-header partial,
   hov-1ey96) — one copy for both families. Only body-level styles remain here. */

/* (nav links + hamburger + mobile menu now in chrome.css — hov-1ey96) */

/* ============== Buttons ============== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 18px;
  border-radius:5px;
  font-family:inherit;
  font-size:var(--text-base); font-weight:600;
  letter-spacing:0.02em;
  cursor:pointer;
  text-decoration:none;
  border:1px solid transparent;
  transition:background 0.14s, border-color 0.14s, color 0.14s;
  white-space:nowrap;
}
.btn--primary {
  background:var(--olive);
  color:#0a0a0e;
  border-color:var(--olive);
}
.btn--primary:hover { background:#c8c074; border-color:#c8c074; }
.btn--ghost {
  background:transparent;
  color:var(--t-1);
  border-color:var(--hair-3);
}
.btn--ghost:hover { background:var(--bg-3); border-color:var(--hair-3); color:var(--t-1); }
.btn--lg { padding:13px 22px; font-size:var(--text-lg); }
.btn--sm { padding:9px 15px; font-size:var(--text-lg); }
/* Optical correction: a solid (primary) button reads visually taller than an
   outlined (ghost) button of the identical box, so trim the primary ~1px
   vertically to make a primary+ghost pair look the same height. */
.btn--sm.btn--primary { padding-top:8.5px; padding-bottom:8.5px; }
.btn--lg.btn--primary { padding-top:12.5px; padding-bottom:12.5px; }
.btn--primary:not(.btn--sm):not(.btn--lg) { padding-top:10.5px; padding-bottom:10.5px; }

/* ============== Eyebrow ============== */
.eyebrow {
  display:inline-flex; align-items:center; gap:9px;
  font-size:var(--text-xs);
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--olive);
  font-weight:600;
  margin-bottom:18px;
}
.eyebrow .dot {
  width:6px; height:6px; border-radius:50%; background:var(--olive);
  box-shadow:0 0 0 3px rgba(184,176,106,0.18);
}
.eyebrow .num { color:var(--olive); font-family:'JetBrains Mono', monospace; }
.eyebrow .sep { color:var(--t-4); margin:0 2px; }
.eyebrow .label { color:var(--olive); }

/* ============== Section spacing ============== */
.section {
  padding:88px 0;
  border-bottom:1px solid var(--hair-1);
}
.section:last-of-type { border-bottom:none; }

/* ============== Hero ============== */
.hero {
  padding:96px 0 80px;
  border-bottom:1px solid var(--hair-1);
  position:relative;
  overflow:hidden;
}
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(184,176,106,0.06), transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(122,166,146,0.04), transparent 70%);
  pointer-events:none;
}
.hero__grid {
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap:48px;
  align-items:center;
  position:relative;
}
.hero h1 {
  margin:0 0 24px;
  font-size:46px;
  font-weight:600;
  letter-spacing:-0.02em;
  line-height:1.1;
  color:var(--t-1);
}
.hero h1 em {
  font-style:italic;
  color:var(--olive);
  font-weight:600;
}
.hero__body {
  font-size:var(--text-2xl);
  color:var(--t-2);
  line-height:1.55;
  max-width:540px;
  margin:0 0 32px;
}
.hero__cta {
  display:flex; gap:12px; align-items:center;
  margin-bottom:60px;
  flex-wrap:wrap;
}

/* ============== Hero image — stylized live feed ============== */
.hero-image {
  position:relative;
  aspect-ratio: 5 / 4;
  width:100%;
  max-width:560px;
  margin-left:auto;
  border-radius:10px;
  /* overflow stays visible so the Live-feed overlay card can overhang the
     panel edge unclipped; each full-bleed layer below self-clips via
     border-radius:inherit instead. */
  overflow:visible;
  background:
    radial-gradient(ellipse at 50% 40%, #1a1d24 0%, #0a0c10 65%, #06080c 100%);
  border:1px solid var(--hair-2);
  box-shadow:
    0 32px 96px -32px rgba(0,0,0,0.8),
    0 0 0 1px rgba(184,176,106,0.04);
}
.hero-image::before {
  content:""; position:absolute; inset:0; border-radius:inherit; overflow:hidden;
  background:
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(122,166,146,0.06) 70%, rgba(184,176,106,0.04) 100%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 38px, rgba(122,166,146,0.04) 38px, rgba(122,166,146,0.04) 39px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 38px, rgba(122,166,146,0.04) 38px, rgba(122,166,146,0.04) 39px);
  pointer-events:none;
}
.hero-image::after {
  content:""; position:absolute; inset:0; border-radius:inherit; overflow:hidden;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 3px);
  pointer-events:none;
  mix-blend-mode:overlay;
}

.hero-image__svg {
  position:absolute; inset:0; width:100%; height:100%;
  pointer-events:none;
  border-radius:inherit;
}

.hero-image .live-chip {
  position:absolute; top:16px; left:16px;
  display:inline-flex; align-items:center; gap:8px;
  padding:5px 12px;
  background:rgba(10,10,14,0.88);
  border:1px solid var(--hair-2);
  border-radius:5px;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--t-1); font-weight:600;
  backdrop-filter:blur(4px);
}
.hero-image .live-chip .pulse {
  width:7px; height:7px; border-radius:50%;
  background:var(--wine);
  box-shadow:0 0 0 3px rgba(138,58,58,0.28);
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow:0 0 0 3px rgba(138,58,58,0.28); }
  50% { box-shadow:0 0 0 7px rgba(138,58,58,0.05); }
}

.hero-image .codec-chips {
  position:absolute; top:16px; right:16px; left:auto; max-width:62%;
  display:flex; gap:6px; flex-wrap:wrap; justify-content:flex-end;
}
.hero-image .codec-chips span {
  padding:3px 8px;
  background:rgba(10,10,14,0.85);
  border:1px solid var(--hair-2);
  border-radius:4px;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  color:var(--t-2);
}

.hero-image .crosshair {
  position:absolute; left:50%; top:46%;
  width:36px; height:36px;
  transform:translate(-50%, -50%);
  border:1px solid rgba(184,176,106,0.5);
  border-radius:50%;
}
.hero-image .crosshair::before, .hero-image .crosshair::after {
  content:""; position:absolute;
  background:rgba(184,176,106,0.5);
}
.hero-image .crosshair::before { left:50%; top:-12px; width:1px; height:60px; transform:translateX(-50%); }
.hero-image .crosshair::after { top:50%; left:-12px; height:1px; width:60px; transform:translateY(-50%); }

.hero-image .crosshair-label {
  position:absolute;
  left:calc(50% + 24px); top:calc(46% - 28px);
  font-family:'JetBrains Mono', monospace;
  font-size:var(--text-xs);
  color:rgba(184,176,106,0.85);
  letter-spacing:0.04em;
  white-space:nowrap;
}

.hero-image .hud {
  position:absolute; bottom:0; left:0; right:0;
  padding:18px 18px 16px;
  background:linear-gradient(0deg, rgba(8,8,12,0.95), rgba(8,8,12,0.4) 70%, transparent);
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
}
.hero-image .hud-block { display:flex; flex-direction:column; gap:3px; }
.hero-image .hud-block .k {
  font-size:11px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--t-3);
}
.hero-image .hud-block .v {
  font-family:'JetBrains Mono', monospace;
  font-size:var(--text-base); color:var(--t-1); font-weight:500;
}

.hero-image .feed-id {
  position:absolute; top:54px; left:18px;
  font-family:'JetBrains Mono', monospace;
  font-size:14px; color:var(--t-4);
  letter-spacing:0.04em;
}

.hero-image .marker {
  position:absolute;
  width:14px; height:14px;
  border-radius:50%;
  background:rgba(184,176,106,0.18);
  border:1.5px solid var(--olive);
  box-shadow:0 0 0 4px rgba(184,176,106,0.08);
}
.hero-image .marker--m1 { left:24%; top:38%; }
.hero-image .marker--m2 { left:72%; top:62%; }

.hero-image .relay-status {
  position:absolute;
  top:16px;
  right:16px;
  margin-top:36px;
  padding:8px 11px;
  background:rgba(10,10,14,0.88);
  border:1px solid var(--hair-2);
  border-radius:5px;
  backdrop-filter:blur(4px);
  display:none;
}

.hero-image__overlay {
  position:absolute;
  right:-18px; bottom:30%;
  width:200px;
  padding:13px 14px;
  background:rgba(16,16,21,0.95);
  border:1px solid var(--hair-3);
  border-radius:6px;
  display:flex; flex-direction:column; gap:6px;
  box-shadow:0 18px 40px rgba(0,0,0,0.6);
  backdrop-filter:blur(8px);
}
.hero-image__overlay .lbl {
  font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--olive); font-weight:600;
}
.hero-image__overlay .ttl {
  font-size:var(--text-md); color:var(--t-1); font-weight:500; line-height:1.4;
}
.hero-image__overlay .sub {
  font-family:'JetBrains Mono', monospace;
  font-size:14px; color:var(--t-3); margin-top:1px;
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap:36px; }
  .hero-image { max-width:none; margin:0; }
  .hero-image__overlay { right:0; bottom:0; transform:translateY(0); }
  .hero h1 { font-size:38px; }
}

/* ============== Parallax layers ============== */
.px-bg, .px-path, .px-drone {
  will-change: transform;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}
.hero-image__overlay, .hero-image .live-chip, .hero-image .codec-chips, .hero-image .feed-id, .hero-image .hud {
  will-change: transform;
}
@keyframes droneFloat {
  0%, 100% { transform: translate(480px, 180px); }
  50%      { transform: translate(480px, 177px); }
}
.px-drone {
  animation: droneFloat 3.6s ease-in-out infinite;
}
/* Fly the drone along the flight path (operator 2026-07-21). The path string
   matches the SVG flight-path d exactly; the CSS transform:none neutralizes
   the glyph's translate(480 180) resting attribute so the offset transform
   alone places it. Browsers without SVG offset-path keep the idle float. */
@supports (offset-path: path("M 0 0 L 1 1")) {
  .px-drone {
    transform: none;
    offset-path: path("M 60 360 Q 120 320 180 300 T 280 240 T 380 200 T 480 180");
    offset-rotate: 0deg;
    animation: droneFly 14s ease-in-out infinite alternate;
  }
  @keyframes droneFly {
    0%   { offset-distance: 0%; }
    100% { offset-distance: 100%; }
  }
}
@keyframes scanDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 60px; }
}
.hero-image::after {
  animation: scanDrift 4.8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .px-drone, .hero-image::after { animation: none !important; }
  .px-drone { offset-distance: 100%; } /* park at the path end, on the ring */
  .px-bg, .px-path { transform: none !important; }
}

.stat-strip {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:0;
  margin-top:48px;
  padding-top:24px;
  border-top:1px solid var(--hair-1);
}
.stat-strip__item {
  padding:8px 28px 8px 0;
  border-right:1px solid var(--hair-1);
}
.stat-strip__item:last-child { border-right:none; }
.stat-strip__item:not(:first-child) { padding-left:28px; }
.stat-strip__k {
  font-size:var(--text-2xs);
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--t-3);
  margin-bottom:8px;
  font-weight:500;
}
.stat-strip__v {
  font-size:var(--text-2xl);
  color:var(--t-1);
  font-weight:600;
  letter-spacing:-0.005em;
}

/* ============== Platform capabilities band ============== */
.cap-band {
  padding:52px 0;
  border-top:1px solid var(--hair-1);
}
.cap-band__eyebrow {
  font-size:var(--text-2xs);
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--t-3);
  font-weight:500;
  margin-bottom:6px;
}
.cap-band__lead {
  font-size:var(--text-lg);
  color:var(--t-2);
  line-height:1.6;
  margin:0 0 32px;
  max-width:none;
}
.cap-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-top:1px solid var(--hair-1);
  padding-top:26px;
}
.cap-col {
  padding:0 30px;
  border-right:1px solid var(--hair-1);
}
.cap-col:first-child { padding-left:0; }
.cap-col:last-child { padding-right:0; border-right:none; }
.cap-col__h {
  font-size:var(--text-2xl);
  color:var(--t-1);
  font-weight:600;
  letter-spacing:-0.005em;
  margin-bottom:12px;
}
.cap-col__p {
  font-size:var(--text-lg);
  color:var(--t-2);
  line-height:1.65;
  margin:0;
}

/* ============== Section header pattern ============== */
.section__h {
  margin-bottom:48px;
}
.section__h h2 {
  margin:0;
  font-size:38px;
  font-weight:600;
  letter-spacing:-0.02em;
  line-height:1.15;
  color:var(--t-1);
}
.section__body {
  font-size:var(--text-xl);
  color:var(--t-2);
  line-height:1.6;
  max-width:none;
}

/* Problem section: 2-column body */
.two-col {
  /* Single stacked column (operator 2026-07-21); name kept to avoid template
     churn. The 72ch measure was removed 2026-07-23 (operator): these paragraphs
     run the full container width rather than wrapping early. */
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}
.two-col p {
  margin:0;
  font-size:var(--text-xl);
  color:var(--t-2);
  line-height:1.6;
}

/* ============== Relay diagram ============== */
.relay {
  margin-top:48px;
  padding:38px 36px 32px;
  background:var(--bg-2);
  border:1px solid var(--hair-1);
  border-radius:8px;
}
.relay__labels {
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom:14px;
}
.relay__labels span {
  font-size:var(--text-2xs);
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--t-3);
  text-align:center;
  font-weight:500;
}
.relay__nodes {
  display:grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items:center;
  gap:0;
}
.relay__node {
  background:var(--bg-1);
  border:1px solid var(--hair-2);
  border-radius:6px;
  padding:20px 22px;
  display:flex; flex-direction:column; gap:6px;
}
.relay__node--center {
  border-color:var(--olive);
  background:linear-gradient(180deg, #16140e, #131211);
  box-shadow:0 0 0 4px rgba(184,176,106,0.06);
}
.relay__node__t {
  font-size:var(--text-xl); font-weight:600; color:var(--t-1);
  letter-spacing:-0.005em;
}
.relay__node__s {
  font-family:'JetBrains Mono', monospace;
  font-size:var(--text-sm); color:var(--t-3);
}
.relay__arrow {
  height:1.5px;
  background:linear-gradient(90deg, var(--hair-3), var(--olive), var(--hair-3));
  position:relative;
}
.relay__arrow::after {
  content:""; position:absolute; right:-1px; top:50%;
  width:6px; height:6px;
  border-right:1.5px solid var(--olive);
  border-top:1.5px solid var(--olive);
  transform:translateY(-50%) rotate(45deg);
}

/* ============== Feature grid (Platform + Roadmap reuse) ============== */
.features {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
/* Roadmap reuses the grid but carries 3 cards — fill the row evenly (Platform
   keeps the 4-up). */
#roadmap .features { grid-template-columns: repeat(3, 1fr); }
.feature {
  padding:22px 22px 24px;
  background:var(--bg-2);
  border:1px solid var(--hair-1);
  border-radius:8px;
}
.feature__icon {
  width:32px; height:32px;
  border-radius:6px;
  background:var(--bg-3);
  border:1px solid var(--hair-2);
  color:var(--olive);
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.feature__t {
  font-size:var(--text-xl);
  font-weight:600;
  color:var(--t-1);
  letter-spacing:-0.005em;
  margin:0 0 6px;
}
.feature__d {
  font-size:16px; /* legibility floor for card description text (2026-07-10 lift) */
  color:var(--t-3);
  line-height:1.55;
  margin:0;
}

/* ============== Who it's for ============== */
.who {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.who-card {
  padding:24px;
  background:var(--bg-2);
  border:1px solid var(--hair-1);
  border-radius:8px;
  display:flex; flex-direction:column; gap:14px;
}
.who-card--link {
  text-decoration:none;
  transition:border-color .15s ease, transform .15s ease;
}
.who-card--link:hover {
  border-color:var(--olive);
  transform:translateY(-2px);
}
.who-card .pill {
  display:inline-flex; align-items:center; gap:6px;
  align-self:flex-start;
  padding:3px 9px;
  background:rgba(184,176,106,0.10);
  border:1px solid rgba(184,176,106,0.3);
  color:var(--olive);
  border-radius:11px;
  font-size:var(--text-2xs);
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-weight:600;
}
.who-card .pill.sage {
  background:rgba(122,166,146,0.08);
  border-color:rgba(122,166,146,0.3);
  color:var(--sage);
}
.who-card h3 {
  margin:0;
  font-size:var(--text-3xl);
  font-weight:600;
  color:var(--t-1);
  letter-spacing:-0.01em;
  line-height:1.2;
}
.who-card p {
  margin:0;
  font-size:var(--text-base);
  color:var(--t-2);
  line-height:1.6;
}

/* ============== Pricing ============== */
.pricing {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.tier {
  padding:24px 22px;
  background:var(--bg-2);
  border:1px solid var(--hair-1);
  border-radius:8px;
  display:flex; flex-direction:column; gap:16px;
  position:relative;
}
.tier--featured {
  background:linear-gradient(180deg, #16140e, #131211);
  border-color:var(--olive);
}
.tier__ribbon {
  position:absolute;
  top:-10px;
  left:18px;
  padding:3px 10px;
  background:var(--olive);
  color:#0a0a0e;
  font-size:var(--text-2xs);
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  border-radius:3px;
}
.tier__name {
  font-size:var(--text-2xl);
  font-weight:600;
  color:var(--t-1);
  letter-spacing:-0.005em;
}
.tier__price {
  display:flex; align-items:baseline; gap:6px;
  color:var(--olive);
}
.tier__price .num {
  white-space:nowrap;
  font-size:32px;
  font-weight:600;
  color:var(--olive);
  letter-spacing:-0.01em;
}
.tier__price .price-prefix {
  font-size:0.45em;
  font-weight:500;
}
.tier__price .unit {
  font-size:var(--text-sm);
  color:var(--t-3);
  font-family:'JetBrains Mono', monospace;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.tier__features {
  margin:0; padding:0;
  list-style:none;
  display:flex; flex-direction:column;
  gap:0;
  border-top:1px solid var(--hair-1);
}
.tier__features li {
  padding:11px 0;
  border-bottom:1px solid var(--hair-1);
  font-size:var(--text-base);
  color:var(--t-2);
  line-height:1.5;
  display:flex; align-items:flex-start; gap:8px;
}
.tier__features li:last-child { border-bottom:none; }
.tier__features li::before {
  content:"";
  width:5px; height:5px;
  border-radius:50%;
  background:var(--olive);
  flex:none;
  margin-top:7px;
  opacity:0.65;
}
.tier .btn { width:100%; }
.tier__job {
  margin-top:3px;
  font-size:var(--text-md);
  color:var(--t-3);
  line-height:1.45;
}
.tier__price { margin-top:14px; }
.tier__price .num--talk { font-size:24px; }
.tier__leadin {
  font-size:var(--text-sm);
  color:var(--t-3);
  letter-spacing:0.01em;
  margin-bottom:-8px;
}
.tier__features li.hl { color:var(--t-1); font-weight:500; }
.tier__features li.hl::before { display:none; }
.tier__features li.hl .tick {
  flex:none;
  width:14px; height:14px;
  margin-top:3px;
  color:var(--olive);
}
.tier--featured .tier__features { border-top-color:rgba(184,176,106,0.12); }
.tier--featured .tier__features li { border-bottom-color:rgba(184,176,106,0.12); }
.tier__foot {
  margin-top:auto;
  display:flex; flex-direction:column; gap:14px;
}
.tier__spec {
  font-family:'JetBrains Mono', monospace;
  font-size:var(--text-xs);
  color:var(--t-4);
  line-height:1.5;
  letter-spacing:0.02em;
  padding-top:12px;
  border-top:1px solid var(--hair-1);
}
.tier--featured .tier__spec { border-top-color:rgba(184,176,106,0.12); color:var(--t-3); }

/* ============== Closing CTA + footer ============== */
.close-cta {
  text-align:center;
  padding:96px 0;
  border-bottom:1px solid var(--hair-1);
}
.close-cta h2 {
  margin:0 0 18px;
  font-size:36px;
  font-weight:600;
  letter-spacing:-0.02em;
  color:var(--t-1);
  line-height:1.2;
  /* One line on desktop (fits inside the 1200px container); wraps naturally
     only when the viewport forces it. */
  max-width:none;
  margin-left:auto; margin-right:auto;
}
.close-cta__actions {
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.close-cta p {
  font-size:var(--text-xl);
  color:var(--t-2);
  line-height:1.55;
  max-width:none;
  margin:0 auto 28px;
}

/* Footer (link columns + bottom bar) moved to the shared chrome.css
   (nebli-footer partial, hov-1ey96) — one copy for both families. */

@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  #roadmap .features { grid-template-columns: repeat(2, 1fr); }
  .who { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap:24px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-col { padding:22px 0; border-right:none; border-top:1px solid var(--hair-1); }
  .cap-col:first-child { padding-top:0; border-top:none; }
  .cap-col:last-child { padding-bottom:0; }
  .relay__nodes { grid-template-columns: 1fr; gap:16px; }
  .relay__arrow { display:none; }
  .hero h1 { font-size:38px; }
  .section__h h2 { font-size:30px; }
}

/* Talk-to-sales Calendly modal (desktop; mobile opens a new tab) */
.cal-modal { position:fixed; inset:0; z-index:100; display:flex; align-items:center; justify-content:center; padding:24px; }
.cal-modal[hidden] { display:none; }
.cal-modal__backdrop { position:absolute; inset:0; background:rgba(10, 10, 10,0.72); backdrop-filter:blur(6px); }
.cal-modal__dialog {
  position:relative; width:100%; max-width:760px; max-height:90vh;
  display:flex; flex-direction:column;
  background:var(--bg-1); border:1px solid var(--hair-2); border-radius:14px;
  overflow:hidden; box-shadow:0 24px 64px rgba(0,0,0,0.55);
}
.cal-modal__head {
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 18px; border-bottom:1px solid var(--hair-1);
}
.cal-modal__title { font-size:var(--text-lg); font-weight:600; color:var(--t-1); }
.cal-modal__close {
  background:none; border:none; color:var(--t-2);
  font-size:26px; line-height:1; cursor:pointer; padding:0 6px; transition:color 0.14s;
}
.cal-modal__close:hover { color:var(--t-1); }
.cal-modal__body { flex:1 1 auto; min-height:0; background:var(--bg-1); }
.cal-modal__body iframe { width:100%; height:680px; max-height:74vh; display:block; border:0; }
.cal-modal__fallback {
  display:block; text-align:center; padding:11px;
  font-size:var(--text-sm); color:var(--olive-text); text-decoration:none;
  border-top:1px solid var(--hair-1);
}
.cal-modal__fallback:hover { color:var(--olive); }
@media (max-width:640px) {
  .cal-modal { padding:0; }
  .cal-modal__dialog { max-width:100%; height:100%; max-height:100%; border-radius:0; }
  /* Two fixed columns still overflow a phone viewport (each tier's min-content
     exceeds ~180px). Collapse pricing to a single column on phones. */
  .pricing { grid-template-columns: 1fr; }
}

/* Hero compatibility strip: the shipped ingest surfaces, named. */
.hero__compat {
  margin:18px 0 0; font-family:'JetBrains Mono', monospace; font-size:12.5px;
  letter-spacing:0.04em; color:var(--t-3); display:flex; flex-wrap:wrap; align-items:center; gap:8px;
}
.hero__compat-label { text-transform:uppercase; letter-spacing:0.14em; font-size:11px; color:var(--t-4); margin-right:2px; }
.hero__compat a { color:var(--t-2); text-decoration:none; border-bottom:1px solid var(--hair-2); padding-bottom:1px; }
.hero__compat a:hover { color:var(--t-1); border-color:var(--hair-3); }
.hero__compat-sep { color:var(--hair-3); }
/* ============== guide-diagram (instrument-dark mid-article figure) ============== */
.gdiag { margin:34px 0; }
.gdiag__frame {
  position:relative; padding:34px 40px;
  background:
    linear-gradient(var(--hair-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair-1) 1px, transparent 1px),
    var(--bg-page);
  background-size:56px 56px, 56px 56px, auto;
  border:1px solid var(--hair-2); border-radius:8px;
}
/* bracket corners — the instrument tell, mirrors the hero art */
.gdiag__frame::before, .gdiag__frame::after {
  content:""; position:absolute; width:16px; height:16px; pointer-events:none;
}
.gdiag__frame::before { top:10px; left:10px; border-top:1.5px solid var(--hair-3); border-left:1.5px solid var(--hair-3); }
.gdiag__frame::after  { bottom:10px; right:10px; border-bottom:1.5px solid var(--hair-3); border-right:1.5px solid var(--hair-3); }
.gdiag__lane + .gdiag__lane { margin-top:34px; }
.gdiag__lanelabel {
  font-family:ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size:var(--text-2xs); letter-spacing:0.16em; text-transform:uppercase;
  color:var(--t-3); margin-bottom:18px;
}
.gdiag__rail { display:flex; justify-content:space-between; position:relative; }
.gdiag__rail::before {
  content:""; position:absolute; left:7px; right:7px; top:6px;
  border-top:1.5px dashed var(--t-4);
}
.gdiag__lane--accent .gdiag__rail::before { border-top:2px solid var(--olive); }
.gdiag__node { position:relative; display:flex; flex-direction:column; align-items:center; gap:12px; min-width:0; }
.gdiag__node:first-child { align-items:flex-start; text-align:left; }
.gdiag__node:last-child { align-items:flex-end; text-align:right; }
.gdiag__dot {
  width:13px; height:13px; border-radius:50%; box-sizing:border-box;
  background:var(--bg-page); border:2px solid var(--t-4); z-index:1;
}
.gdiag__lane--accent .gdiag__dot { background:var(--olive); border-color:var(--olive); }
.gdiag__t { font-size:var(--text-sm); color:var(--t-2); line-height:1.35; }
.gdiag__cap {
  margin-top:12px; font-size:var(--text-sm); color:var(--t-3); font-style:italic;
}
@media (max-width:640px){
  .gdiag__frame { padding:22px 16px; }
  .gdiag__t { font-size:var(--text-2xs); }
}

/* ============== guide hero art (instrument-dark) ============== */
.guide-hero-art { display:block; width:100%; height:auto; border:1px solid var(--hair-1); border-radius:8px; margin:24px 0 8px; }

/* ── Billing-interval toggle + savings note (pricing card, hov-pw9wy) ──────
   Display text, so the option labels and the note must never wrap (operator
   standing rule): nowrap paired with a fluid clamp so they shrink to fit
   instead of wrapping or overflowing at 360px. The ES strings ("Mensual",
   "2 meses gratis") are the longer ones; the clamp is sized off those. */
.billtoggle {
  display:flex; align-items:center; gap:12px;
  flex-wrap:wrap;                 /* the group may wrap; the labels may not */
  margin:0 0 22px;
}
/* One connected track holding both segments. The track carries the border and
   the radius; the segments sit inside it with no borders of their own, so it
   reads as a single switch instead of two separate pills. */
.billtoggle__track {
  display:inline-flex;
  align-items:stretch;
  padding:3px;
  border:1px solid var(--hair-2);
  border-radius:999px;
  background:rgba(255,255,255,0.015);
}
.billtoggle__opt {
  appearance:none; -webkit-appearance:none;
  background:transparent;
  border:0;
  border-radius:999px;
  padding:7px 18px;
  color:var(--t-2);
  font:inherit;
  font-size:clamp(12.5px, 3.2vw, 14px);
  letter-spacing:0.01em;
  white-space:nowrap;
  cursor:pointer;
  transition:color .15s ease, background-color .15s ease;
}
.billtoggle__opt:hover { color:var(--t-1); }
/* Selected segment uses an INSET ring, not a border: a real border would change
   the box size on toggle and shift the other segment by a pixel. */
.billtoggle__opt.is-on {
  color:var(--olive);
  background:rgba(184,176,106,0.13);
  box-shadow:inset 0 0 0 1px rgba(184,176,106,0.30);
}
.billtoggle__opt:focus-visible { outline:2px solid var(--olive); outline-offset:2px; }
.billtoggle__save, .tier__save {
  font-family:'JetBrains Mono', monospace;
  font-size:clamp(10.5px, 2.6vw, 12px);
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--olive);
  white-space:nowrap;
}
.billtoggle__save { margin-left:4px; }
.tier__save { margin-top:6px; }
/* Explicit, so a display rule elsewhere can never defeat the script's hidden. */
.billtoggle__save[hidden], .tier__save[hidden] { display:none; }
/* The amount and its unit are one display unit; never let them split. */
.tier__price { flex-wrap:nowrap; }
.tier__price .unit { white-space:nowrap; }
