/* ============================================================
   ECHO for Logistics — Site Styles
   Shared across /  (overview) and /flex (SKU page)
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --ink: #111214;
  --ink-2: #15161a;
  --ink-3: #1b1d22;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.16);
  --text: #f1f3f5;
  --muted: #c9ced6;
  --dim: #a9b0bb;
  --faint: #7a7f88;
  --echo-red: #cc0a2f;
  --echo-red-2: #e21a3f;
  --echo-red-glow: rgba(204,10,47,.45);
  --focus: #88c0ff;
  --ok: #7cfc9b;
  --warn: #ffc857;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
img { max-width: 100%; display: block; }
picture { display: block; }

/* Layout */
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.hstack { display: flex; align-items: center; gap: 12px; }
.vstack { display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   URGENCY STRIP (above navbar, sitewide)
   ============================================================ */
.urgency-strip {
  background: linear-gradient(90deg, var(--echo-red) 0%, var(--echo-red-2) 50%, var(--echo-red) 100%);
  background-size: 200% 100%;
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  letter-spacing: .01em;
  position: relative;
  z-index: 1001;
  animation: urgency-shimmer 8s ease-in-out infinite;
}
@keyframes urgency-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.urgency-strip a {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 800;
}
.urgency-strip .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  margin: 0 8px 1px 0;
  vertical-align: middle;
  animation: pulse-white 2s ease-in-out infinite;
}
@keyframes pulse-white {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.slots-pill {
  display: inline-block;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.3);
  padding: 2px 9px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  margin-left: 8px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  background: rgba(8,8,10,.78);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand .logo { height: 40px; width: auto; display: block; }
.brand .sep { opacity: .35; font-weight: 800; letter-spacing: .04em; }
.brand .title { font-weight: 800; letter-spacing: .02em; font-size: 15px; }
.brand .sub { color: var(--dim); font-weight: 500; font-size: 13px; margin-left: 4px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.active { color: var(--text); }
@media (max-width: 820px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 15px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s ease, filter .15s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--echo-red);
  color: white;
  box-shadow: 0 12px 36px rgba(204,10,47,.35);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 16px 44px rgba(204,10,47,.5); }
.btn-primary:disabled { opacity: .6; cursor: default; transform: none; filter: none; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--text); background: rgba(255,255,255,.04); }
.btn-ghost { background: transparent; color: var(--muted); padding: 8px 14px; }
.btn-ghost:hover { color: var(--text); }
.btn-arrow::after { content: "→"; margin-left: 4px; transition: transform .2s ease; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 9px; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ============================================================
   HERO (shared structure)
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background: var(--bg);
}
.hero-inner { position: relative; z-index: 3; }

/* Hero MEDIA slot — image or video. Fallback gradient if absent. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-media img,
.hero-media video,
.hero-media picture,
.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-media::after {
  /* Always-on overlay to keep copy legible over any image */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.82) 35%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.4) 100%),
    linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}

/* Fallback CSS hero when no image is loaded (set via JS) */
.hero-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 60% at 88% 18%, rgba(204,10,47,.18), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(204,10,47,.10), transparent 60%),
    var(--bg);
}
.hero-media-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffd7df;
  background: rgba(204,10,47,.14);
  border: 1px solid rgba(204,10,47,.40);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--echo-red);
  box-shadow: 0 0 10px var(--echo-red-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.4); }
}

h1.hero-headline {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0 0 22px;
}
.hero-headline .accent { color: var(--echo-red); }
.hero-headline .strike { text-decoration: line-through; text-decoration-color: rgba(255,255,255,.25); text-decoration-thickness: 3px; color: var(--dim); font-weight: 700; }

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 620px;
}

/* ============================================================
   LAUNCH PRICING CARD (the urgency centerpiece)
   ============================================================ */
.launch-pricing {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 22px 0 32px;
  border: 1px solid rgba(204,10,47,.4);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(204,10,47,.08), rgba(204,10,47,.02));
  overflow: hidden;
  position: relative;
}
.launch-pricing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--echo-red), transparent);
}
.launch-price-main {
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(204,10,47,.25);
  min-width: 180px;
}
.launch-price-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--echo-red);
  font-weight: 700;
  margin-bottom: 4px;
}
.launch-price-strike {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--dim);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  margin-bottom: 2px;
}
.launch-price-now {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.launch-price-now .unit { font-size: 13px; color: var(--dim); font-weight: 600; }
.launch-price-savings {
  padding: 16px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.launch-price-savings strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.launch-price-savings small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  display: block;
}
.launch-price-savings .slots {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--echo-red);
  margin-top: 6px;
  letter-spacing: .04em;
  font-weight: 700;
}
@media (max-width: 620px) {
  .launch-pricing { flex-direction: column; }
  .launch-price-main { border-right: 0; border-bottom: 1px solid rgba(204,10,47,.25); }
}

/* ============================================================
   HERO META + CTA
   ============================================================ */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0 32px;
  padding: 20px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
}
.meta-item { display: flex; flex-direction: column; gap: 4px; min-width: 130px; }
.meta-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); font-family: var(--mono); }
.meta-value { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.meta-value .unit { font-size: 13px; color: var(--dim); font-weight: 600; margin-left: 2px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-trust {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  color: var(--dim);
  font-size: 13px;
  font-family: var(--mono);
}
.hero-trust::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--border-strong);
}

/* ============================================================
   FORM CARD (in hero)
   ============================================================ */
.hero-form-wrap { position: relative; }
.form-card {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(204,10,47,.05);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--echo-red), transparent);
}
.form-card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--echo-red);
  margin: 0 0 6px;
  font-weight: 700;
}
.form-card-title { margin: 0 0 6px; font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.form-card-sub { margin: 0 0 20px; color: var(--dim); font-size: 14px; }
.form-card-slots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(204,10,47,.1);
  border: 1px solid rgba(204,10,47,.3);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 13px;
}
.form-card-slots .slots-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 700;
}
.form-card-slots .slots-count {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--echo-red);
  font-size: 13px;
}
.form-card-slots .slots-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  margin: 0 12px;
  overflow: hidden;
}
.form-card-slots .slots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--echo-red), var(--echo-red-2));
  border-radius: 999px;
  transition: width .6s ease;
}

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-weight: 700; font-size: 13px; color: var(--muted); }
.input, .select {
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.4);
  color: white;
  padding: 0 14px;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus { border-color: var(--focus); box-shadow: 0 0 0 3px rgba(136,192,255,.25); }
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23a9b0bb' d='M6 8 0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.validation { font-size: 13px; color: #ff9b9b; display: none; }
.invalid .validation { display: block; }
.invalid .input, .invalid .select { border-color: #ff6b6b; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-foot { margin-top: 14px; color: var(--dim); font-size: 12px; line-height: 1.5; }
.form-foot a { color: var(--muted); text-decoration: underline; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--echo-red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--echo-red);
}
.section-eyebrow.center { justify-content: center; }
.section-h {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0 0 18px;
  max-width: 820px;
}
.section-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 48px;
}
.center .section-h, .center .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   PROBLEM STRIP (quotes comparison)
   ============================================================ */
.problem {
  background: linear-gradient(180deg, var(--bg), var(--ink));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  position: relative;
}
.quote.winner { border-color: rgba(124,252,155,.3); background: linear-gradient(180deg, rgba(124,252,155,.04), var(--ink-2)); }
.quote-amount {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--echo-red);
  letter-spacing: -.01em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-bottom: 10px;
  display: block;
}
.quote.winner .quote-amount { color: var(--ok); text-decoration: none; }
.quote-vendor {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}
.quote-body { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ============================================================
   GENERIC CARD GRID (audience, vertical, etc)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { border-color: rgba(204,10,47,.4); transform: translateY(-2px); }
.feature-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(204,10,47,.15), transparent 70%);
  opacity: 0;
  transition: opacity .25s;
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(204,10,47,.12);
  color: var(--echo-red);
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-size: 17px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.feature-body { color: var(--dim); font-size: 14px; line-height: 1.55; }

/* Image-driven card header (full-bleed image at top of a .feature-card).
   Falls back to a labeled gradient placeholder (JS adds .frame-media-empty). */
.card-media {
  position: relative;
  margin: -24px -24px 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-3);
  border-bottom: 1px solid var(--border);
}
.card-media img,
.card-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media.frame-media-empty::after,
.post-card-thumb.frame-media-empty::after {
  font-size: 11px;
  letter-spacing: .08em;
  padding: 0 14px;
  text-align: center;
}

/* ============================================================
   VERTICAL CARDS (root page — industry-specific)
   ============================================================ */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 820px) { .vertical-grid { grid-template-columns: 1fr; } }
.vertical-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.vertical-card:hover { border-color: rgba(204,10,47,.4); transform: translateY(-2px); }
.vertical-media {
  height: 200px;
  background: var(--ink-3);
  position: relative;
  overflow: hidden;
}
.vertical-media img, .vertical-media picture, .vertical-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vertical-media-fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(204,10,47,.18), transparent 70%),
    linear-gradient(135deg, var(--ink-3), var(--ink));
  display: flex; align-items: center; justify-content: center;
}
.vertical-media-fallback svg { width: 56px; height: 56px; opacity: .5; }
.vertical-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.7) 100%);
  pointer-events: none;
}
.vertical-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.vertical-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--echo-red);
  font-weight: 700;
  margin-bottom: 8px;
}
.vertical-title { font-size: 20px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.01em; }
.vertical-body p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 14px; flex: 1; }
.vertical-pains {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
}
.vertical-pains li {
  padding: 6px 0;
  color: var(--dim);
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vertical-pains li::before {
  content: "✓";
  color: var(--echo-red);
  font-weight: 700;
}
.vertical-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.vertical-foot a { font-size: 13px; font-weight: 700; color: var(--echo-red); }
.vertical-foot a:hover { text-decoration: underline; }

/* ============================================================
   PRODUCT TEASER (root page → /flex)
   ============================================================ */
.product-teaser {
  background:
    radial-gradient(80% 70% at 80% 50%, rgba(204,10,47,.15), transparent 60%),
    var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 900px) { .product-teaser { grid-template-columns: 1fr; } }
.product-teaser::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--echo-red), transparent);
}
.product-teaser-copy { padding: 48px 44px; }
.product-teaser-media {
  position: relative;
  background: var(--ink-3);
  min-height: 360px;
  overflow: hidden;
}
.product-teaser-media img, .product-teaser-media picture, .product-teaser-media picture img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-teaser-media-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(70% 60% at 50% 50%, rgba(204,10,47,.22), transparent 60%),
    linear-gradient(135deg, var(--ink-2), var(--ink-3));
}
.product-teaser-media-fallback svg { width: 84px; height: 84px; opacity: .65; }
.product-teaser-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--echo-red);
  background: rgba(204,10,47,.12);
  border: 1px solid rgba(204,10,47,.35);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
}
.product-teaser h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.product-teaser h2 .accent { color: var(--echo-red); }
.product-teaser p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.6;
}
.product-teaser-stats {
  display: flex; gap: 32px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-teaser-stat-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}
.product-teaser-stat-num .strike { text-decoration: line-through; color: var(--dim); font-size: 14px; font-weight: 600; margin-right: 6px; }
.product-teaser-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
  margin-top: 2px;
}
.product-teaser-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; } }
.timeline-step {
  position: relative;
  padding: 24px;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.timeline-step::before {
  content: "";
  position: absolute;
  top: 50%; right: -20px;
  width: 20px; height: 1px;
  background: var(--border-strong);
}
.timeline-step:last-child::before { display: none; }
@media (max-width: 880px) { .timeline-step::before { display: none; } }
.step-num { font-family: var(--mono); font-size: 12px; color: var(--echo-red); letter-spacing: .14em; font-weight: 700; margin-bottom: 12px; }
.step-day { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.step-day .unit { font-size: 14px; color: var(--dim); font-weight: 600; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-body { font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ============================================================
   INCLUDED / NOT INCLUDED
   ============================================================ */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
@media (max-width: 820px) { .included-grid { grid-template-columns: 1fr; } }
.included-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.included-card.has { border-color: rgba(124,252,155,.25); background: linear-gradient(180deg, rgba(124,252,155,.04), var(--ink-2)); }
.included-card.no { border-color: rgba(255,200,87,.22); background: linear-gradient(180deg, rgba(255,200,87,.03), var(--ink-2)); }
.included-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 13px; font-family: var(--mono); letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.has .included-head { color: var(--ok); }
.no .included-head { color: var(--warn); }
.included-list { list-style: none; padding: 0; margin: 0; }
.included-list li { padding: 12px 0; display: flex; align-items: flex-start; gap: 10px; border-top: 1px solid var(--border); font-size: 15px; color: var(--muted); }
.included-list li:first-child { border-top: 0; padding-top: 0; }
.included-list li strong { color: var(--text); display: block; margin-bottom: 2px; font-weight: 700; }
.included-list li small { font-size: 13px; color: var(--dim); }
.included-list .mark { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; font-weight: 700; margin-top: 2px; }
.has .mark { background: rgba(124,252,155,.15); color: var(--ok); }
.no .mark { background: rgba(255,200,87,.15); color: var(--warn); }

/* ============================================================
   SPECS TABLE
   ============================================================ */
.specs { background: linear-gradient(180deg, var(--ink), var(--bg)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.specs-wrap { background: var(--ink-2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 36px; }
.spec-row { display: grid; grid-template-columns: 220px 1fr; border-top: 1px solid var(--border); }
.spec-row:first-child { border-top: 0; }
.spec-key { padding: 18px 24px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); background: rgba(0,0,0,.2); font-weight: 700; display: flex; align-items: center; }
.spec-val { padding: 18px 24px; font-size: 15px; color: var(--text); }
.spec-val .tag { display: inline-block; font-family: var(--mono); font-size: 11px; padding: 2px 8px; border-radius: 4px; background: rgba(204,10,47,.16); color: #ffd7df; margin-left: 8px; letter-spacing: .04em; }
@media (max-width: 720px) {
  .spec-row { grid-template-columns: 1fr; }
  .spec-key { padding-bottom: 4px; }
  .spec-val { padding-top: 8px; }
}

/* ============================================================
   PRICING BLOCK (big centered price)
   ============================================================ */
.pricing-block {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(204,10,47,.22), transparent 60%),
    var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 36px;
}
.pricing-block::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--echo-red), transparent); }
.price-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: white;
  background: var(--echo-red);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}
.price-launch-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse-white 2s ease-in-out infinite;
}
.price-strike-row {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--dim);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-bottom: 4px;
}
.price-main {
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 8px 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}
.price-main .currency { font-size: .4em; margin-top: .3em; color: var(--dim); }
.price-main .period { font-size: .22em; color: var(--muted); margin-top: 1em; font-weight: 600; letter-spacing: .04em; }
.price-fineprint { color: var(--dim); font-size: 14px; max-width: 580px; margin: 12px auto 8px; }
.price-locked {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ok);
  background: rgba(124,252,155,.1);
  border: 1px solid rgba(124,252,155,.3);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin: 14px 0 24px;
}
.price-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 36px; max-width: 860px; }
.faq-item { border-top: 1px solid var(--border); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; cursor: pointer; font-size: 18px; font-weight: 700; letter-spacing: -.005em; color: var(--text); list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-family: var(--mono); font-size: 24px; color: var(--echo-red); line-height: 1; transition: transform .25s; flex-shrink: 0; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 720px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(204,10,47,.25), transparent 70%),
    var(--bg);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 20px; line-height: 1.05; }
.final-cta p { color: var(--muted); font-size: 18px; max-width: 580px; margin: 0 auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); color: #aeb3bb; padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dim); }
.footer-brand img { height: 24px; }
.small { font-size: 13px; }
@media (max-width: 720px) { .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; } }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(8,8,10,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-strong);
  padding: 12px 16px;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta .sticky-price { font-weight: 800; font-size: 15px; }
.sticky-cta .sticky-price .strike { color: var(--dim); text-decoration: line-through; font-weight: 600; font-size: 12px; margin-right: 4px; }
.sticky-cta .sticky-price small { color: var(--echo-red); font-weight: 700; margin-left: 4px; font-size: 11px; display: block; }
.sticky-cta .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ============================================================
   "LOOKING FOR FLEX?" POPUP (root page only)
   ============================================================ */
.flex-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  border: 1px solid rgba(204,10,47,.4);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(204,10,47,.05);
  z-index: 1100;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.2,.9,.3,1.4), opacity .3s ease;
}
.flex-popup.in {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.flex-popup::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--echo-red), transparent);
  border-radius: 16px 16px 0 0;
}
.flex-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 26px; height: 26px;
  background: rgba(255,255,255,.06);
  border: 0;
  border-radius: 6px;
  color: var(--dim);
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  transition: background .15s, color .15s;
}
.flex-popup-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
.flex-popup-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--echo-red);
  margin-bottom: 6px;
  font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.flex-popup-eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--echo-red);
  box-shadow: 0 0 6px var(--echo-red-glow);
  animation: pulse 2s ease-in-out infinite;
}
.flex-popup h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.flex-popup p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.flex-popup p strong { color: var(--text); }
.flex-popup-slots {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--echo-red);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 10px;
  background: rgba(204,10,47,.1);
  border-radius: 6px;
  display: inline-block;
}
.flex-popup-actions { display: flex; gap: 8px; }
.flex-popup-actions .btn { flex: 1; justify-content: center; }
.flex-popup-actions .btn-sm { padding: 10px 14px; font-size: 13px; }
@media (max-width: 480px) {
  .flex-popup { bottom: 80px; right: 12px; left: 12px; width: auto; }
}

/* ============================================================
   REVEAL-ON-SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mono { font-family: var(--mono); }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.center { text-align: center; }
hr.divider { border: 0; height: 1px; background: var(--border); margin: 48px 0; }

/* ============================================================
   STACK CARD — "two layers, one platform" panel (home hero)
   ============================================================ */
.stack-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--ink-3);
  margin-bottom: 12px;
}
.stack-card:last-child { margin-bottom: 0; }
.stack-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.stack-card small { display: block; color: var(--dim); font-size: 13px; line-height: 1.5; }
.stack-num {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  font-family: var(--mono);
  font-weight: 700; font-size: 14px;
  color: var(--muted);
  background: var(--ink);
  border: 1px solid var(--border-strong);
}
.stack-card-sum {
  border-color: var(--echo-red);
  background: linear-gradient(180deg, rgba(204,10,47,.10), rgba(204,10,47,.02));
}
.stack-card-sum .stack-num {
  color: #fff;
  background: var(--echo-red);
  border-color: var(--echo-red);
  box-shadow: 0 0 12px var(--echo-red-glow);
}

/* ============================================================
   FRAME MEDIA — in-section image/video slots (twin, worker, …)
   Falls back to a labeled gradient placeholder if the asset is
   missing (JS adds .frame-media-empty on <img> error).
   ============================================================ */
.frame-media {
  position: relative;
  margin: 8px 0 40px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 16 / 9;
}
.frame-media-wide { aspect-ratio: 2 / 1; }
.frame-media img,
.frame-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame-media-empty::after {
  content: attr(data-fallback-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(60% 80% at 30% 20%, var(--echo-red-glow), transparent 60%),
    linear-gradient(135deg, var(--ink-3), var(--ink));
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.frame-media-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .5;
}

/* ============================================================
   COMPARE GRID — Before / After transformation
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 760px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  background: var(--ink-2);
}
.compare-head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-list { list-style: none; margin: 0; padding: 0; }
.compare-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-list li:last-child { border-bottom: 0; }
.compare-list li::before {
  position: absolute;
  left: 0; top: 9px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  line-height: 1;
}
.compare-before { opacity: .9; }
.compare-before .compare-head { color: var(--dim); }
.compare-before .compare-list li { color: var(--dim); }
.compare-before .compare-list li::before {
  content: "✕";
  background: rgba(255,255,255,.06);
  color: #ff9b9b;
  border: 1px solid var(--border-strong);
}
.compare-after { border-color: var(--echo-red); }
.compare-after .compare-head { color: #fff; }
.compare-after .compare-list li::before {
  content: "✓";
  background: var(--echo-red);
  color: #fff;
  box-shadow: 0 0 10px var(--echo-red-glow);
}
