/* ==========================================================================
   SteadyRelay — design system + page styles
   Rhythm: white header → dark hero → light workflow → paper outcomes →
   dark system → white product → mist website → white fit → paper process →
   white human → dark transparency → white proof → paper FAQ → light close.
   ========================================================================== */

:root {
  /* Brand */
  --navy-950: #050b18;
  --navy-900: #081226;
  --navy-850: #0c1a33;
  --navy-800: #102243;
  --navy-700: #1a3160;
  --ink: #0a1633;
  --blue: #1a66ff;
  --blue-600: #1257e6;
  --blue-400: #4b8bff;
  --blue-300: #7fb0ff;
  --blue-100: #dce8ff;
  --blue-50: #eef4ff;

  /* Neutrals / surfaces */
  --white: #ffffff;
  --paper: #f3f6fb;
  --mist: #e8eef7;
  --line: #dbe2ee;
  --line-strong: #c3cfe1;
  --slate-700: #34415b;
  --slate-600: #4a5770;
  --slate-500: #626e86;
  --slate-400: #8893a8;

  /* Status — never the brand palette */
  --green: #15964a;
  --green-400: #34d27b;
  --green-50: #e8f8ee;
  --amber: #e8950f;
  --amber-300: #ffc861;
  --amber-50: #fff5e3;
  --red: #d23a3a;
  --red-50: #fdeeee;

  /* Dark-surface text */
  --on-dark: #eaf0fb;
  --on-dark-2: #b0bdd4;
  --on-dark-3: #8a98b5;
  --dark-line: rgba(127, 176, 255, 0.16);
  --dark-line-strong: rgba(127, 176, 255, 0.32);

  /* Type */
  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-note: "Caveat", "Segoe Print", cursive;

  --fs-display: clamp(2.6rem, 1.2rem + 5.2vw, 5rem);
  --fs-h2-xl: clamp(2.2rem, 1.2rem + 3.6vw, 4rem);
  --fs-h2: clamp(2rem, 1.2rem + 2.6vw, 3.1rem);
  --fs-h2-sm: clamp(1.75rem, 1.2rem + 1.6vw, 2.4rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);
  --fs-body: 1rem;
  --fs-label: 0.75rem;

  /* Space */
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1200px;
  --section-y: clamp(56px, 8.5vw, 120px);
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(10, 22, 51, 0.06), 0 1px 1px rgba(10, 22, 51, 0.04);
  --shadow: 0 10px 30px -12px rgba(10, 22, 51, 0.18), 0 2px 6px rgba(10, 22, 51, 0.05);
  --shadow-lg: 0 40px 80px -30px rgba(10, 22, 51, 0.4), 0 10px 24px -10px rgba(10, 22, 51, 0.15);
  --glow: 0 0 0 1px var(--dark-line-strong), 0 0 50px -6px rgba(26, 102, 255, 0.55);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.6;
  color: var(--slate-700); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
picture { display: contents; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 6px; }
.dark :focus-visible { outline-color: var(--blue-300); }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* Icons (Lucide sprite). Stroke width via --sw. */
.i { width: 1.25em; height: 1.25em; flex: none; --sw: 1.75; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.75); }
.dark { background: var(--navy-900); color: var(--on-dark-2); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mist { background: var(--mist); }

/* Section headers — deliberately varied compositions */
.head { display: grid; gap: 16px; margin-bottom: clamp(40px, 5vw, 64px); }
.head h2 { font-size: var(--fs-h2); }
.head > p:last-child, .head p:not(.eyebrow) { font-size: var(--fs-lead); max-width: 56ch; }
.head--center { justify-items: center; text-align: center; }
.head--center h2 { max-width: 24ch; text-wrap: balance; }
.head--center p:not(.eyebrow) { max-width: 60ch; }
.head--statement { justify-items: center; text-align: center; }
.head--statement h2 { font-size: var(--fs-h2-xl); max-width: 18ch; letter-spacing: -0.04em; text-wrap: balance; }
.head--statement p:not(.eyebrow) { max-width: 58ch; }
.head--stack h2 { max-width: 18ch; }
.head--split { grid-template-columns: 1fr; align-items: end; }
.head--split > div { display: grid; gap: 16px; }
@media (min-width: 900px) { .head--split { grid-template-columns: 1.35fr 1fr; gap: 48px; } }
.head--compact { gap: 10px; }
.head--compact h2 { font-size: var(--fs-h2-sm); }

/* ---------- Type helpers ---------- */
.eyebrow { font-family: var(--font-body); font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.dark .eyebrow { color: var(--blue-300); }
.lead { font-size: var(--fs-lead); line-height: 1.55; }
.accent { color: var(--blue); }
.dark .accent { color: var(--blue-400); }
.muted { color: var(--slate-500); }

/* Handwritten margin notes — only where there is real margin */
.note { display: none; font-family: var(--font-note); font-size: 1.55rem; line-height: 1.05; color: var(--slate-500); transform: rotate(-6deg); pointer-events: none; user-select: none; }
.dark .note { color: var(--on-dark-3); }
@media (min-width: 1580px) { .note { display: block; position: absolute; right: calc((100vw - var(--max)) / 2 - 170px); width: 140px; } }

/* ---------- Wordmark ---------- */
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; letter-spacing: -0.035em; color: var(--ink); text-decoration: none; line-height: 1; white-space: nowrap; }
.wordmark span { color: var(--blue); }
.dark .wordmark { color: var(--white); }
.dark .wordmark span { color: var(--blue-400); }

/* ---------- Buttons ---------- */
.btn {
  --h: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 22px; border-radius: 10px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 0.975rem; font-weight: 600; letter-spacing: -0.005em; text-decoration: none; white-space: nowrap;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn .i { width: 18px; height: 18px; --sw: 2; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -8px rgba(26, 102, 255, .7), inset 0 1px 0 rgba(255,255,255,.18); }
.btn--primary:hover { background: var(--blue-600); }
.btn--ghost { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--white); }
.dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(8,18,38,.35); backdrop-filter: blur(6px); }
.dark .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--sm { --h: 42px; padding: 0 16px; font-size: 0.9rem; }
.btn--lg { --h: 54px; padding: 0 26px; font-size: 1rem; }
.btn .play { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; }
.btn .play .i { width: 12px; height: 12px; fill: currentColor; --sw: 2.5; }
.btn--primary .play { background: rgba(255,255,255,.2); }
.text-link { font-weight: 600; text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.text-link .i { width: 16px; height: 16px; --sw: 2; transition: transform .2s var(--ease); }
.text-link:hover .i { transform: translateX(3px); }

/* ---------- Tags ---------- */
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 999px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.3; border: 1px solid var(--line); color: var(--slate-600); background: var(--white); white-space: nowrap; }
.tag--demo { color: #8a5a00; background: var(--amber-50); border-color: #f3d9a6; }
.dark .tag--demo, .phone .tag--demo { color: var(--amber-300); background: rgba(232,149,15,.12); border-color: rgba(232,149,15,.4); }
.tag--live { color: var(--green); background: var(--green-50); border-color: #bfe8cf; }
.dark .tag--live { color: var(--green-400); background: rgba(52,210,123,.08); border-color: rgba(52,210,123,.3); }
.tag--concept { color: var(--blue-600); background: var(--blue-50); border-color: #c9dbff; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.dot--pulse { animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,210,123,.55); } 70% { box-shadow: 0 0 0 7px rgba(52,210,123,0); } 100% { box-shadow: 0 0 0 0 rgba(52,210,123,0); } }

/* Check bubble */
.check { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(52,210,123,.16); color: var(--green-400); flex: none; }
.check .i { width: 11px; height: 11px; --sw: 3; }

/* Icon chips — role-based variants */
.ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--blue-50); color: var(--blue); box-shadow: inset 0 0 0 1px #d5e3ff; }
.ico .i { width: 21px; height: 21px; }
.ico--solid { background: var(--blue); color: #fff; box-shadow: 0 8px 18px -8px rgba(26,102,255,.8); }
.dark .ico { background: rgba(26,102,255,.1); color: var(--blue-300); box-shadow: inset 0 0 0 1px var(--dark-line-strong); }
.dark .ico--solid { background: linear-gradient(180deg, #2a78ff, #1257e6); color: #fff; box-shadow: 0 8px 22px -8px rgba(26,102,255,.9), inset 0 1px 0 rgba(255,255,255,.2); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(10,22,51,.4); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 2px; }
.primary-nav a { position: relative; display: block; padding: 8px 12px; border-radius: 8px; color: var(--slate-700); font-size: 0.925rem; font-weight: 500; text-decoration: none; transition: color .15s, background-color .15s; }
.primary-nav a:hover { color: var(--ink); background: var(--mist); }
.primary-nav a[aria-current="true"] { color: var(--ink); }
.primary-nav a[aria-current="true"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--blue); }
.header-cta { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); align-items: center; justify-content: center; }
.nav-toggle .i { width: 22px; height: 22px; --sw: 2; }
@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .primary-nav { position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; box-shadow: var(--shadow-lg); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility 0s .2s; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .2s, transform .2s; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { padding: 16px 4px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); border-bottom: 1px solid var(--mist); border-radius: 0; }
  .primary-nav a[aria-current="true"]::after { display: none; }
  .primary-nav .mobile-cta { display: flex; margin-top: 18px; width: 100%; color: #fff; font-family: var(--font-body); font-size: 1rem; border-bottom: 0; border-radius: 10px; }
}
@media (min-width: 1024px) { .primary-nav .mobile-cta { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--navy-950); padding-block: clamp(56px, 7vw, 104px) clamp(64px, 8vw, 112px); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::before { /* legibility overlay: solid under copy, opening up toward the photo */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,11,24,.96) 0%, rgba(5,11,24,.86) 34%, rgba(5,11,24,.28) 60%, rgba(5,11,24,.62) 100%),
    linear-gradient(0deg, rgba(5,11,24,.95) 0%, rgba(5,11,24,0) 40%),
    radial-gradient(50% 60% at 82% 30%, rgba(26,102,255,.22), transparent 70%);
}
.hero-grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero h1 { font-size: var(--fs-display); letter-spacing: -0.045em; line-height: 0.98; margin-top: 22px; text-wrap: balance; }
.hero h1 .sub { display: block; font-size: 0.6em; letter-spacing: -0.035em; margin-top: 0.25em; color: var(--blue-300); font-weight: 700; }
.hero .lead { margin-top: 24px; max-width: 52ch; color: var(--on-dark-2); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark); }
.hero-industries { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--dark-line); font-size: 0.875rem; color: var(--on-dark-3); max-width: 52ch; }
.hero .note { top: 18%; }

/* Ops feed */
.feed { position: relative; background: linear-gradient(180deg, rgba(16,34,67,.82), rgba(8,18,38,.9)); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); border: 1px solid var(--dark-line-strong); border-radius: var(--radius-lg); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.06); padding: 20px; color: var(--on-dark); }
.feed-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--dark-line); }
.feed-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-2); }
.feed-tags { display: flex; gap: 6px; }
.feed-list { position: relative; padding: 12px 0 2px; }
.feed-item { position: relative; display: grid; grid-template-columns: 40px 30px 1fr; gap: 12px; align-items: start; padding: 8px 0; }
.feed-item:not(:last-child)::after { content: ""; position: absolute; left: 66px; top: 40px; bottom: -6px; width: 1px; background: var(--dark-line-strong); }
.feed-time { font-size: 0.75rem; font-variant-numeric: tabular-nums; color: var(--on-dark-3); padding-top: 6px; }
.feed-node { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--navy-800); border: 1px solid var(--dark-line-strong); color: var(--blue-300); position: relative; z-index: 1; transition: background-color .3s, color .3s, box-shadow .3s; }
.feed-node .i { width: 16px; height: 16px; }
.feed-item strong { display: block; font-size: 0.92rem; font-weight: 600; color: #fff; line-height: 1.35; }
.feed-item span { display: block; font-size: 0.8rem; color: var(--on-dark-2); line-height: 1.4; }
.feed-item.is-new .feed-node { background: var(--blue); color: #fff; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(26,102,255,.22); }
.feed-alert { margin-top: 12px; display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 12px; background: linear-gradient(180deg, rgba(232,149,15,.16), rgba(232,149,15,.06)); border: 1px solid rgba(232,149,15,.55); }
.feed-alert .alert-ico { width: 36px; height: 36px; border-radius: 10px; background: rgba(232,149,15,.18); color: var(--amber-300); display: grid; place-items: center; flex: none; }
.feed-alert .alert-ico .i { width: 18px; height: 18px; --sw: 2; }
.feed-alert b { display: block; font-size: 0.68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-300); }
.feed-alert strong { display: block; font-size: 0.9rem; color: #fff; font-weight: 600; }
.feed-alert span { font-size: 0.8rem; color: var(--on-dark-2); }
.feed-alert .alert-go { margin-left: auto; width: 20px; height: 20px; color: var(--amber-300); }
.feed-foot { margin-top: 14px; font-size: 0.75rem; color: var(--on-dark-3); }
.js .feed.is-playing .feed-item, .js .feed.is-playing .feed-alert { opacity: 0; transform: translateY(6px); }
.js .feed.is-playing .is-shown { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease); }
@media (max-width: 640px) {
  .feed { padding: 16px; }
  .feed-item--extra { display: none; }
  .feed-item { grid-template-columns: 36px 28px 1fr; gap: 10px; }
  .feed-item:not(:last-child)::after { left: 59px; }
}

/* ==========================================================================
   LEAD JOURNEY
   ========================================================================== */
.journey { display: grid; gap: 20px; align-items: center; }
@media (min-width: 1024px) { .journey { grid-template-columns: 190px 64px 1fr; gap: 0; } }
.sources { display: grid; gap: 12px; }
@media (max-width: 1023px) { .sources { grid-template-columns: repeat(3, 1fr); } }
.source { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s, transform .2s var(--ease); }
.source:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-1px); }
.source-ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--mist); color: var(--ink); flex: none; }
.source-ico .i { width: 19px; height: 19px; }
.source strong { display: block; font-size: 0.95rem; color: var(--ink); line-height: 1.2; }
.source span { display: block; font-size: 0.75rem; color: var(--slate-500); line-height: 1.3; }
@media (max-width: 560px) { .source { flex-direction: column; text-align: center; gap: 6px; padding: 12px 8px; } .source span { display: none; } }

.merge { display: none; }
@media (min-width: 1024px) {
  .merge { display: block; width: 100%; height: 100%; max-height: 240px; overflow: visible; }
  .merge path { fill: none; stroke: var(--blue-400); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 4 6; animation: dash 1.2s linear infinite; opacity: .8; }
}
@keyframes dash { to { stroke-dashoffset: -20; } }

.flow { position: relative; display: grid; gap: 0; }
@media (min-width: 1024px) { .flow { grid-template-columns: repeat(5, 1fr); gap: 28px; } }
.flow-step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px 20px; box-shadow: var(--shadow-sm); text-align: center; transition: border-color .3s, box-shadow .3s, transform .3s var(--ease), opacity .5s var(--ease); }
.flow-step:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.flow-ico { margin: 0 auto 14px; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; box-shadow: 0 8px 18px -8px rgba(26,102,255,.8), 0 0 0 6px var(--blue-50); }
.flow-ico .i { width: 22px; height: 22px; }
.flow-step h3 { font-size: 1.02rem; letter-spacing: -0.02em; text-wrap: balance; }
.flow-step p { font-size: 0.84rem; color: var(--slate-500); margin-top: 6px; line-height: 1.45; }
.flow-step--human { border: 1.5px dashed #e8c07a; background: linear-gradient(180deg, #fffaf0, #fff); }
.flow-step--human .flow-ico { background: var(--ink); box-shadow: 0 0 0 6px var(--amber-50); }
@media (min-width: 1024px) {
  /* chevron connectors between steps */
  .flow-step:not(:last-child)::after {
    content: ""; position: absolute; top: 46px; right: -24px; width: 20px; height: 20px; border-radius: 50%; z-index: 2;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a66ff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / 13px no-repeat;
    box-shadow: 0 0 0 1px var(--line);
  }
}
@media (max-width: 1023px) {
  .flow { padding-left: 4px; }
  .flow-step { display: grid; grid-template-columns: 50px 1fr; gap: 0 16px; text-align: left; padding: 12px 0 20px; background: transparent; border: 0; box-shadow: none; }
  .flow-step:hover { transform: none; box-shadow: none; }
  .flow-step:not(:last-child)::before { content: ""; position: absolute; left: 24px; top: 64px; bottom: 0; width: 2px; background: linear-gradient(var(--blue-100), var(--line)); }
  .flow-ico { margin: 0; grid-row: span 2; }
  .flow-step p { margin-top: 2px; }
  .flow-step--human { border: 0; background: transparent; }
}
.js .journey .flow-step, .js .journey .source { opacity: .3; }
.js .journey.is-in .source, .js .journey.is-in .flow-step { opacity: 1; }
.js .journey.is-in .flow-step:nth-child(2) { transition-delay: .2s; }
.js .journey.is-in .flow-step:nth-child(3) { transition-delay: .4s; }
.js .journey.is-in .flow-step:nth-child(4) { transition-delay: .6s; }
.js .journey.is-in .flow-step:nth-child(5) { transition-delay: .8s; }
.journey-section .note { top: 40%; }

/* ==========================================================================
   OUTCOMES
   ========================================================================== */
.outcomes { display: grid; gap: 48px; }
@media (min-width: 1024px) { .outcomes { grid-template-columns: 0.75fr 1.25fr; gap: 72px; } .outcomes-intro { position: sticky; top: 120px; align-self: start; } }
.outcomes-intro h2 { font-size: var(--fs-h2); margin-top: 16px; }
.outcomes-intro p:not(.eyebrow) { margin-top: 18px; font-size: var(--fs-lead); }
.outcomes-intro .text-link { margin-top: 24px; }
.outcome-list { display: grid; gap: 16px; }
@media (min-width: 700px) { .outcome-list { grid-template-columns: 1fr 1fr; } }
.outcome { padding: 22px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s var(--ease); }
.outcome:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.outcome-num { display: block; margin-top: 20px; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--blue); letter-spacing: 0.06em; }
.outcome h3 { font-size: clamp(1.4rem, 1.2rem + .7vw, 1.8rem); margin-top: 6px; }
.outcome > p { margin-top: 10px; font-size: 0.95rem; }

/* Outcome micro-UI */
.mini { height: 118px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); padding: 12px; overflow: hidden; font-size: 0.75rem; }
.mini--chat { display: grid; align-content: center; gap: 8px; }
.bubble { display: flex; flex-direction: column; max-width: 82%; padding: 7px 10px; border-radius: 12px; line-height: 1.35; }
.bubble time { font-size: 0.62rem; opacity: .7; margin-top: 2px; }
.bubble--in { background: #fff; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 4px; }
.bubble--out { background: var(--blue); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble--out time { text-align: right; }
.mini--pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mini--pipe div { display: flex; flex-direction: column; gap: 5px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 7px; }
.mini--pipe b, .hub-pipe b { font-size: 0.62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-500); }
.mini--pipe i, .hub-pipe i { display: block; height: 10px; border-radius: 3px; background: var(--mist); }
.mini--pipe i.on { background: var(--blue-100); box-shadow: inset 3px 0 0 var(--blue); }
.mini--pipe i.won { background: var(--green-50); box-shadow: inset 3px 0 0 var(--green); }
.mini--tasks { display: grid; align-content: center; gap: 8px; }
.mini--tasks p { display: flex; gap: 8px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; color: var(--ink); font-weight: 500; }
.mini--tasks .i { width: 15px; height: 15px; color: var(--green); --sw: 2.2; }
.mini--status { display: grid; align-content: center; gap: 6px; }
.mini--status p { display: flex; justify-content: space-between; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; color: var(--ink); font-weight: 500; }
.st { font-style: normal; font-size: 0.62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.st--amber { background: var(--amber-50); color: #8a5a00; }
.st--green { background: var(--green-50); color: var(--green); }
.st--blue { background: var(--blue-50); color: var(--blue-600); }

/* ==========================================================================
   SYSTEM
   ========================================================================== */
.system-section { background: var(--navy-950); overflow: hidden; }
.system-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(45% 50% at 50% 62%, rgba(26,102,255,.22), transparent 70%), radial-gradient(30% 30% at 50% 0%, rgba(26,102,255,.12), transparent 70%); }
.system { position: relative; display: grid; gap: 14px; }
.wires { display: none; }
@media (min-width: 1024px) {
  .system { grid-template-columns: 1fr 260px 1fr; gap: 0 90px; align-items: center; }
  .system-col { display: grid; gap: 18px; position: relative; z-index: 1; }
  .wires { display: block; position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
  .wires path { fill: none; stroke: rgba(110,160,255,.85); stroke-width: 2; vector-effect: non-scaling-stroke; }
  .wires path { stroke-dasharray: 3 7; animation: dash 1.4s linear infinite; }
}
.module { position: relative; display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: linear-gradient(180deg, rgba(16,34,67,.7), rgba(12,26,51,.7)); border: 1px solid var(--dark-line); border-radius: var(--radius); transition: border-color .25s, box-shadow .25s, transform .25s var(--ease); }
.module:hover { border-color: rgba(127,176,255,.6); box-shadow: 0 0 30px -10px rgba(26,102,255,.6); }
.module h3 { font-size: 1rem; letter-spacing: -0.015em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.module p { font-size: 0.85rem; margin-top: 4px; line-height: 1.5; }
.module--major { padding: 22px; border-color: var(--dark-line-strong); background: linear-gradient(180deg, rgba(20,44,88,.9), rgba(12,26,51,.9)); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 20px 40px -24px rgba(0,0,0,.8); }
.module--major h3 { font-size: 1.2rem; }
.module--major p { font-size: 0.9rem; }
.module .opt { font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-3); border: 1px solid var(--dark-line-strong); border-radius: 999px; padding: 2px 7px; }
.hub { position: relative; z-index: 1; text-align: center; padding: 30px 22px; border-radius: 24px; background: radial-gradient(120% 100% at 50% 0%, rgba(26,102,255,.4), rgba(12,26,51,.96) 60%); border: 1px solid rgba(127,176,255,.55); box-shadow: var(--glow); }
.hub-ico { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.hub-ico .i { width: 32px; height: 32px; --sw: 1.6; }
.hub h3 { font-size: 2.2rem; letter-spacing: -0.03em; }
.hub p { margin-top: 6px; font-size: 0.9rem; color: var(--on-dark); }
.hub-pipe { margin: 16px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; max-width: 210px; text-align: left; }
.hub-pipe div { display: flex; flex-direction: column; gap: 4px; padding: 6px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--dark-line); }
.hub-pipe b { color: var(--on-dark-3); font-size: 0.56rem; }
.hub-pipe i { height: 7px; background: rgba(255,255,255,.1); }
.hub-pipe i.on { background: rgba(75,139,255,.6); }
.hub-pipe i.won { background: rgba(52,210,123,.6); }
.hub ul { margin-top: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.hub li { font-size: 0.7rem; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--dark-line); color: var(--on-dark-2); }
@media (min-width: 1024px) { .hub { min-height: 360px; display: grid; align-content: center; } }
@media (max-width: 1023px) { .system-col--left { order: 2; } .hub { order: 1; margin-bottom: 8px; } .system-col--right { order: 3; } .system-col { display: grid; gap: 12px; } }
@media (min-width: 640px) and (max-width: 1023px) { .system { grid-template-columns: 1fr 1fr; } .hub { grid-column: 1 / -1; } }

/* ==========================================================================
   RECEPTIONIST
   ========================================================================== */
.recep-head { display: grid; gap: 24px; margin-bottom: clamp(32px, 4vw, 48px); }
@media (min-width: 1024px) { .recep-head { grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: end; } }
.recep-head h2 { font-size: var(--fs-h2-xl); margin-top: 16px; letter-spacing: -0.04em; text-wrap: balance; }
.recep-intro .lead { color: var(--slate-600); }
.usecases { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.usecases li { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 500; padding: 7px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--slate-700); }
.usecases .i { width: 15px; height: 15px; color: var(--blue); }

.stage { position: relative; display: grid; gap: 20px; border-radius: 28px; overflow: hidden; background: var(--navy-900); padding: clamp(16px, 3vw, 40px); isolation: isolate; box-shadow: var(--shadow-lg); }
.stage-media { position: absolute; inset: 0; z-index: -2; }
.stage-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.stage::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,11,24,.08) 0%, rgba(5,11,24,.12) 42%, rgba(5,11,24,.78) 65%, rgba(5,11,24,.94) 100%); }
.stage-caption { position: absolute; left: clamp(16px, 3vw, 40px); bottom: clamp(16px, 3vw, 40px); display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; background: rgba(5,11,24,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 0.95rem; font-weight: 500; border: 1px solid rgba(255,255,255,.12); max-width: 360px; }
.stage-caption .dot { color: var(--red); animation: ring 1.2s ease-in-out infinite; }
@keyframes ring { 0%, 100% { box-shadow: 0 0 0 0 rgba(210,58,58,.6); } 50% { box-shadow: 0 0 0 6px rgba(210,58,58,0); } }
@media (min-width: 1000px) {
  .stage { grid-template-columns: 1fr 400px; min-height: 660px; align-items: center; padding-right: clamp(40px, 6vw, 88px); }
  .stage .phone { grid-column: 2; }
}
@media (max-width: 999px) {
  .stage { padding-top: 280px; }
  .stage::before { background: linear-gradient(180deg, rgba(5,11,24,0) 0%, rgba(5,11,24,.1) 170px, rgba(5,11,24,.92) 330px, rgba(5,11,24,.97) 100%); }
  .stage-media img { height: 380px; object-position: 28% 28%; }
  .stage-caption { top: 210px; bottom: auto; }
}
@media (max-width: 480px) { .stage { padding-top: 250px; } .stage-caption { top: 180px; font-size: 0.85rem; } .stage-media img { height: 340px; } }

.recep-track { margin-top: 20px; padding: 22px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line); }
.recep-track-title { font-size: 0.72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-500); margin: 0 0 12px 4px; }
.recep-steps { display: grid; gap: 8px; }
@media (min-width: 640px) { .recep-steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .recep-steps { grid-template-columns: repeat(6, 1fr); } }
.recep-step { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px; background: #fff; border: 1px solid var(--line); transition: background-color .3s, border-color .3s, box-shadow .3s; }
@media (min-width: 1100px) { .recep-step { flex-direction: column; gap: 10px; } }
.recep-step .n { position: relative; width: 28px; height: 28px; border-radius: 50%; flex: none; display: grid; place-items: center; border: 1.5px solid var(--line-strong); color: var(--slate-500); font-size: 0.78rem; font-weight: 700; transition: background-color .3s, border-color .3s, color .3s; }
.recep-step .n em { font-style: normal; }
.recep-step .n .i { position: absolute; width: 14px; height: 14px; --sw: 3; opacity: 0; }
.recep-step strong { display: block; color: var(--ink); font-size: 0.93rem; line-height: 1.3; }
.recep-step span:not(.n) { display: block; font-size: 0.8rem; color: var(--slate-500); line-height: 1.45; margin-top: 2px; }
.recep-step.is-done .n { background: var(--blue); border-color: var(--blue); color: #fff; }
.recep-step.is-done .n em { opacity: 0; }
.recep-step.is-done .n .i { opacity: 1; }
.recep-step.is-active { border-color: var(--blue-400); box-shadow: 0 0 0 3px var(--blue-50); }
.recep-step--esc.is-done .n { background: var(--amber); border-color: var(--amber); color: #1a1000; }
.recep-step--esc.is-active { border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-50); }
.phone { position: relative; background: linear-gradient(180deg, #0f1f3d, #081226); color: var(--on-dark); border-radius: 30px; padding: 22px 20px 20px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), 0 0 0 8px #18233f, 0 0 0 9px #2f3d61; width: 100%; max-width: 380px; margin-inline: auto; }
.phone > .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--on-dark-2); }
.phone-timer { font-variant-numeric: tabular-nums; }
.phone-caller { display: flex; gap: 14px; align-items: center; margin-top: 16px; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(180deg, #2a3f6a, #1a2b4f); display: grid; place-items: center; color: var(--on-dark-2); flex: none; box-shadow: 0 0 0 3px rgba(26,102,255,.25); }
.avatar .i { width: 26px; height: 26px; }
.phone-caller strong { display: block; font-size: 1.25rem; color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.phone-caller div span { display: flex; gap: 5px; align-items: center; font-size: 0.8rem; color: var(--on-dark-3); }
.phone-caller div span .i { width: 13px; height: 13px; }
.wave { display: flex; align-items: center; gap: 3px; height: 36px; margin: 16px 0 12px; }
.wave i { flex: 1; background: linear-gradient(var(--blue-300), var(--blue)); border-radius: 2px; height: 18%; }
.phone.is-talking .wave i { animation: wave 1s ease-in-out infinite; }
@keyframes wave { 0%, 100% { height: 18%; } 50% { height: var(--h, 70%); } }
.transcript { height: 290px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; padding-right: 4px; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #2c3a5c transparent; }
.msg { max-width: 88%; padding: 9px 12px; border-radius: 12px; font-size: 0.83rem; line-height: 1.45; animation: msg-in .35s var(--ease); }
.msg small { display: block; font-size: 0.62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 2px; font-weight: 700; }
.msg--caller { background: rgba(255,255,255,.07); border: 1px solid var(--dark-line); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg--ai { background: rgba(26,102,255,.24); border: 1px solid rgba(75,139,255,.45); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg--sys { align-self: center; font-size: 0.72rem; color: var(--green-400); background: rgba(52,210,123,.08); border: 1px solid rgba(52,210,123,.25); border-radius: 999px; padding: 4px 10px; }
.msg--esc { align-self: center; font-size: 0.72rem; color: var(--amber-300); background: rgba(232,149,15,.1); border: 1px solid rgba(232,149,15,.4); border-radius: 999px; padding: 4px 10px; }
@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.phone-actions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--dark-line); text-align: center; font-size: 0.64rem; color: var(--on-dark-3); }
.phone-actions span { display: grid; justify-items: center; gap: 4px; opacity: .55; transition: opacity .3s; }
.phone-actions i { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); color: var(--on-dark); transition: background-color .3s, box-shadow .3s; }
.phone-actions i .i { width: 16px; height: 16px; }
.phone-actions .end { opacity: 1; }
.phone-actions .end i { background: var(--red); color: #fff; }
.phone.is-escalating .xfer { opacity: 1; color: var(--amber-300); }
.phone.is-escalating .xfer i { background: var(--amber); color: #1a1000; box-shadow: 0 0 0 4px rgba(232,149,15,.25); }
.phone-play { margin-top: 16px; width: 100%; }

.recep-foot { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
.recep-caveat { font-size: 0.925rem; color: var(--slate-500); max-width: 60ch; }
.recep-section .note { top: 8%; }

/* ==========================================================================
   WEBSITE TRANSFORMATION
   ========================================================================== */
.transform-head { display: grid; gap: 28px; margin-bottom: clamp(32px, 4vw, 48px); }
@media (min-width: 1024px) { .transform-head { grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; } }
.transform-head h2 { font-size: var(--fs-h2); margin-top: 16px; }
.transform-head .lead { margin-top: 16px; max-width: 48ch; }
.transform-offer { display: grid; gap: 22px; justify-items: start; }
.includes { display: grid; gap: 12px; }
.includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.includes .check { width: 22px; height: 22px; background: var(--blue); color: #fff; margin-top: 1px; }
.includes .check .i { width: 12px; height: 12px; }
.includes strong { color: var(--ink); }

.compare-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.seg { display: inline-flex; padding: 4px; border-radius: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.seg button { border: 0; background: transparent; color: var(--slate-600); font-size: 0.85rem; font-weight: 600; padding: 8px 14px; border-radius: 8px; transition: background-color .15s, color .15s; }
.seg button:hover { color: var(--ink); }
.seg button[aria-selected="true"], .seg button[aria-pressed="true"] { background: var(--ink); color: #fff; }
@media (max-width: 560px) { .compare-bar { flex-direction: column; } .seg { width: 100%; } .seg button { flex: 1; padding: 8px 6px; font-size: 0.8rem; } }

.browser { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line-strong); }
.browser-bar { display: flex; align-items: center; gap: 14px; height: 42px; padding: 0 14px; background: linear-gradient(#f6f7f9, #eceff3); border-bottom: 1px solid #d9dee6; }
.dots { display: flex; gap: 7px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }
.url { flex: 1; max-width: 420px; margin-inline: auto; display: flex; align-items: center; justify-content: center; gap: 6px; height: 26px; border-radius: 7px; background: #fff; border: 1px solid #dde2ea; font-size: 0.78rem; color: var(--slate-600); }
.url .i { width: 12px; height: 12px; color: var(--slate-400); --sw: 2.2; }
.browser-side { display: flex; gap: 6px; }
.browser-side em { font-style: normal; font-size: 0.66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; background: #e3e6eb; color: var(--slate-600); }
.browser-side em + em { background: var(--blue); color: #fff; }
@media (max-width: 640px) { .browser-side { display: none; } .dots i { width: 9px; height: 9px; } }

.ba { position: relative; container: ba / inline-size; aspect-ratio: 16 / 9.4; user-select: none; overflow: hidden; background: #fff; }
@media (max-width: 640px) { .ba { aspect-ratio: 10 / 18; } }
.ba-pane { position: absolute; inset: 0; overflow: hidden; }
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; z-index: 4; transform: translateX(-1.5px); box-shadow: 0 0 0 1px rgba(10,22,51,.12), 0 0 24px rgba(0,0,0,.25); pointer-events: none; transition: left .35s var(--ease); }
.ba.is-dragging .ba-handle, .ba.is-dragging .ba-after { transition: none; }
.ba-after { transition: clip-path .35s var(--ease); }
.ba-handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1633' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6-6 6 6 6M15 6l6 6-6 6'/%3E%3C/svg%3E") center / 22px no-repeat; box-shadow: var(--shadow); }
.ba-range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; touch-action: pan-y; }
.ba-range:focus-visible + .ba-handle::after { outline: 3px solid var(--blue-400); outline-offset: 3px; }

/* ---- BEFORE: a typical 2014-era fixed-width template (scaled with the frame) ---- */
.old { --u: calc(100cqw / 1000); --acc: #2f5d3a; --acc-2: #3d7a4c; position: absolute; inset: 0; background: #d9d6cf; font-family: Arial, Helvetica, sans-serif; color: #333; font-size: calc(var(--u) * 13); line-height: 1.45; }
.old-page { width: calc(var(--u) * 900); margin: 0 auto; background: #fff; min-height: 100%; box-shadow: 0 0 calc(var(--u)*8) rgba(0,0,0,.15); }
.old-top { display: flex; justify-content: space-between; align-items: center; padding: calc(var(--u)*18) calc(var(--u)*22); }
.old-logo b { display: block; font-family: Georgia, "Times New Roman", serif; font-size: calc(var(--u) * 28); color: var(--acc); letter-spacing: -0.01em; }
.old-logo small { font-size: calc(var(--u) * 12); color: #777; font-style: italic; }
.old-phone { text-align: right; }
.old-phone small { display: block; font-size: calc(var(--u) * 12); color: #777; }
.old-phone b { font-size: calc(var(--u) * 24); color: #b33a2b; }
.old-nav { display: flex; background: linear-gradient(var(--acc-2), var(--acc)); border-top: 1px solid rgba(0,0,0,.2); }
.old-nav span { color: #fff; padding: calc(var(--u)*10) calc(var(--u)*16); font-size: calc(var(--u)*13); font-weight: bold; border-right: 1px solid rgba(255,255,255,.2); }
.old-nav span:first-child { background: rgba(0,0,0,.18); }
.old-main { display: grid; grid-template-columns: 1fr calc(var(--u)*240); gap: calc(var(--u)*16); padding: calc(var(--u)*16) calc(var(--u)*22) 0; }
.old-slide { position: relative; height: calc(var(--u)*300); overflow: hidden; border: calc(var(--u)*4) solid #eee; }
.old-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; filter: saturate(.8) contrast(.95); }
.old-arrows { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 calc(var(--u)*8); }
.old-arrows i { font-style: normal; width: calc(var(--u)*30); height: calc(var(--u)*30); display: grid; place-items: center; background: rgba(0,0,0,.45); color: #fff; font-size: calc(var(--u)*20); }
.old-dots { position: absolute; bottom: calc(var(--u)*10); left: 50%; transform: translateX(-50%); display: flex; gap: calc(var(--u)*6); }
.old-dots i { width: calc(var(--u)*9); height: calc(var(--u)*9); border-radius: 50%; background: rgba(255,255,255,.6); }
.old-dots i.on { background: #fff; }
.old-quote { background: #f1f1ec; border: 1px solid #d6d6cc; padding: calc(var(--u)*12); display: flex; flex-direction: column; gap: calc(var(--u)*3); font-size: calc(var(--u)*11); }
.old-quote b { font-size: calc(var(--u)*15); color: var(--acc); margin-bottom: calc(var(--u)*4); }
.old-quote i { display: block; height: calc(var(--u)*20); background: #fff; border: 1px solid #bbb; }
.old-quote i.tall { height: calc(var(--u)*46); }
.old-quote em { align-self: flex-start; margin-top: calc(var(--u)*6); font-style: normal; background: linear-gradient(#fafafa, #ddd); border: 1px solid #999; padding: calc(var(--u)*3) calc(var(--u)*14); color: #222; }
.old-welcome { padding: calc(var(--u)*18) calc(var(--u)*22) calc(var(--u)*8); }
.old-h { display: block; font-family: Georgia, "Times New Roman", serif; font-size: calc(var(--u)*22); color: var(--acc); margin-bottom: calc(var(--u)*6); font-weight: normal; }
.old-welcome p { color: #555; }
.old-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--u)*14); padding: calc(var(--u)*10) calc(var(--u)*22) calc(var(--u)*18); }
.old-cols div { border-top: calc(var(--u)*3) solid var(--acc); background: #f7f7f4; padding: calc(var(--u)*10); }
.old-cols b { display: block; font-size: calc(var(--u)*15); color: var(--acc); }
.old-cols p { font-size: calc(var(--u)*12); color: #666; margin-top: calc(var(--u)*4); }
.old-foot { background: #333; color: #aaa; text-align: center; font-size: calc(var(--u)*11); padding: calc(var(--u)*12); }
.old[data-theme="electric"] { --acc: #1f3d7a; --acc-2: #2d55a3; }
.old[data-theme="spa"] { --acc: #8a4b6b; --acc-2: #a8648a; }

/* ---- AFTER: SteadyRelay concept (responsive via container queries) ---- */
.new { --u: calc(100cqw / 1200); --a: #2462d2; --a-dark: #132843; --page: #f7f5f0; --line-concept: #d9dedf; position: absolute; inset: 0; background: var(--page); font-family: var(--font-body); color: var(--a-dark); font-size: calc(var(--u) * 15); overflow: hidden; }
.new[data-theme="electric"] { --a: #d5a63a; --a-dark: #f5f3ed; --page: #161d23; --line-concept: #3e484d; }
.new[data-theme="spa"] { --a: #86536c; --a-dark: #352635; --page: #f8f3f0; --line-concept: #e7d9de; }
.new-approved-concept { display: none; }
@container ba (min-width: 561px) {
  .new[data-theme="home"] .new-approved-concept { display: block; position: absolute; inset: 0; z-index: 5; }
  .new-approved-concept img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
}
.new-topline { height: calc(var(--u)*27); padding: 0 calc(var(--u)*52); display: flex; justify-content: space-between; align-items: center; background: var(--a-dark); color: #fff; font-size: calc(var(--u)*10); font-weight: 700; letter-spacing: .16em; }
.new[data-theme="electric"] .new-topline { color: #161d23; background: var(--a); }
.new[data-theme="spa"] .new-topline { background: #86536c; }
.new-bar { position: relative; z-index: 2; height: calc(var(--u)*77); display: flex; align-items: center; gap: calc(var(--u)*32); padding: 0 calc(var(--u)*52); background: var(--page); border-bottom: 1px solid var(--line-concept); color: var(--a-dark); font-size: calc(var(--u)*14); }
.new-bar b { display: inline-flex; align-items: center; gap: calc(var(--u)*12); font-family: var(--font-display); font-size: calc(var(--u)*21); letter-spacing: -0.03em; margin-right: auto; }
.new-bar b::before { content: ""; width: calc(var(--u)*20); height: calc(var(--u)*20); flex: none; background: var(--a); clip-path: polygon(50% 0,100% 44%,100% 100%,0 100%,0 44%); }
.new[data-theme="electric"] .new-bar b::before { clip-path: polygon(44% 0,100% 0,60% 46%,100% 46%,22% 100%,43% 55%,0 55%); }
.new[data-theme="spa"] .new-bar b::before { border-radius: 50% 0 50% 0; clip-path: none; transform: rotate(-22deg); }
.new-links { display: flex; gap: calc(var(--u)*27); font-size: calc(var(--u)*13); font-weight: 600; opacity: .75; }
.new-bar em { font-style: normal; background: var(--a-dark); color: var(--page); padding: calc(var(--u)*12) calc(var(--u)*20); border-radius: calc(var(--u)*4); font-weight: 700; white-space: nowrap; }
.new[data-theme="electric"] .new-bar em { background: var(--a); color: #161d23; }
.new[data-theme="spa"] .new-bar em { border-radius: 999px; }
.new-hero { position: relative; display: grid; grid-template-columns: 50% 50%; height: calc(var(--u)*500); background: var(--page); }
.new-hero picture { display: block; grid-column: 2; grid-row: 1; overflow: hidden; margin: calc(var(--u)*18) calc(var(--u)*18) calc(var(--u)*18) 0; border-radius: calc(var(--u)*5); }
.new-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.new[data-theme="spa"] .new-hero picture { border-radius: calc(var(--u)*150) calc(var(--u)*6) calc(var(--u)*6) calc(var(--u)*6); }
.new-hero-copy { grid-column: 1; grid-row: 1; align-self: center; min-width: 0; padding: calc(var(--u)*24) calc(var(--u)*34) calc(var(--u)*24) calc(var(--u)*52); display: grid; gap: calc(var(--u)*20); }
.new-kicker { font-size: calc(var(--u)*12); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--a); }
.new-hero-copy strong { font-family: var(--font-display); font-size: calc(var(--u)*69); line-height: .98; letter-spacing: -0.055em; max-width: 10ch; text-wrap: balance; }
.new[data-theme="spa"] .new-hero-copy strong { font-family: Georgia, serif; font-weight: 400; font-size: calc(var(--u)*67); letter-spacing: -0.05em; }
.new-hero-copy p { font-size: calc(var(--u)*17); line-height: 1.5; max-width: 35ch; opacity: .78; }
.new-btns { display: flex; align-items: center; flex-wrap: wrap; gap: calc(var(--u)*24); margin-top: calc(var(--u)*4); }
.new-btns i { font-style: normal; padding: calc(var(--u)*15) calc(var(--u)*22); border-radius: calc(var(--u)*4); font-weight: 700; background: var(--a); color: #fff; font-size: calc(var(--u)*14); white-space: nowrap; }
.new[data-theme="electric"] .new-btns i:first-child { color: #161d23; }
.new[data-theme="spa"] .new-btns i:first-child { border-radius: 999px; }
.new-btns i.alt { background: none; color: var(--a-dark); padding-inline: 0; border-bottom: 1px solid currentColor; border-radius: 0; }
.new-trust { display: flex; justify-content: space-between; gap: calc(var(--u)*22); padding: calc(var(--u)*18) calc(var(--u)*52); background: var(--page); border-top: 1px solid var(--line-concept); border-bottom: 1px solid var(--line-concept); font-size: calc(var(--u)*13); color: var(--a-dark); font-weight: 600; }
.new-trust span { display: inline-flex; gap: calc(var(--u)*10); align-items: center; }
.new-trust span::before { content: "↗"; display: grid; place-items: center; width: calc(var(--u)*20); height: calc(var(--u)*20); border: 1px solid var(--a); border-radius: 50%; color: var(--a); font-size: calc(var(--u)*13); }
.new-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--u)*20); padding: calc(var(--u)*22) calc(var(--u)*52); background: var(--page); counter-reset: services; }
.new-cards div { border-top: calc(var(--u)*2) solid var(--a); padding-top: calc(var(--u)*12); display: grid; gap: calc(var(--u)*6); counter-increment: services; }
.new-cards div::before { content: "0" counter(services); font-size: calc(var(--u)*11); font-weight: 800; letter-spacing: .14em; color: var(--a); }
.new-cards b { font-family: var(--font-display); font-size: calc(var(--u)*19); color: var(--a-dark); letter-spacing: -0.02em; }
.new-cards span { font-size: calc(var(--u)*13); color: var(--a-dark); opacity: .68; }
.new-chat { position: absolute; z-index: 3; right: calc(var(--u)*38); top: calc(var(--u)*548); background: var(--a-dark); color: var(--page); font-size: calc(var(--u)*13); padding: calc(var(--u)*11) calc(var(--u)*17); border-radius: 999px; box-shadow: 0 calc(var(--u)*8) calc(var(--u)*24) rgba(0,0,0,.16); font-weight: 700; }
.new[data-theme="electric"] .new-chat { background: var(--a); color: #161d23; }

/* Concept on a phone-width frame: a real mobile layout, not a shrunken page */
@container ba (max-width: 560px) {
  .new { font-size: 14px; }
  .new-topline { height: 25px; padding-inline: 16px; font-size: 8px; letter-spacing: .08em; }
  .new-topline span:last-child { display: none; }
  .new-bar { height: 58px; padding: 0 16px; gap: 10px; font-size: 12px; }
  .new-bar b { font-size: 16px; gap: 7px; }
  .new-bar b::before { width: 15px; height: 15px; }
  .new-links { display: none; }
  .new-bar em { padding: 8px 10px; font-size: 10px; }
  .new-hero { height: auto; display: flex; flex-direction: column; }
  .new-hero picture { display: block; order: 1; width: calc(100% - 24px); height: 220px; margin: 12px; border-radius: 5px; }
  .new[data-theme="spa"] .new-hero picture { border-radius: 80px 5px 5px 5px; }
  .new-hero-copy { order: 2; align-self: stretch; padding: 18px 20px 24px; gap: 10px; }
  .new-kicker { font-size: 10px; }
  .new-hero-copy strong, .new[data-theme="spa"] .new-hero-copy strong { font-size: 39px; max-width: 11ch; }
  .new-hero-copy p { font-size: 14px; max-width: 36ch; }
  .new-btns { gap: 14px; margin-top: 3px; }
  .new-btns i { padding: 11px 14px; font-size: 12px; }
  .new-trust { gap: 5px; flex-wrap: wrap; padding: 12px 20px; font-size: 11px; }
  .new-trust span::before { width: 15px; height: 15px; font-size: 10px; }
  .new-cards { gap: 8px; padding: 12px 20px; }
  .new-cards div { padding-top: 7px; }
  .new-cards b { font-size: 13px; }
  .new-cards span { display: none; }
  .new-chat { right: 22px; top: 270px; font-size: 11px; padding: 8px 12px; }
}

.compare-notes { display: grid; gap: 14px; margin-top: 18px; }
@media (min-width: 700px) { .compare-notes { grid-template-columns: 1fr 1fr; gap: 18px; } }
.compare-notes > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.cn-title { font-size: 0.72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); }
.cn-title--new { color: var(--blue); }
.compare-notes ul { margin-top: 10px; display: grid; gap: 6px; }
.compare-notes li { position: relative; padding-left: 18px; font-size: 0.9rem; }
.compare-notes li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--slate-400); }
.compare-notes > div:last-child li::before { background: var(--blue); }
.ba-caption { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--slate-500); }
.transform-section .note { top: 12%; }

/* ==========================================================================
   BEST FIT
   ========================================================================== */
.fit-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .fit-grid { grid-template-columns: 1.3fr 1fr; } }
.fit-card { border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); background: #fff; border: 1px solid var(--line); }
.fit-card h3 { font-size: 1.25rem; display: flex; align-items: center; gap: 10px; }
.fit-card h3 .i { width: 26px; height: 26px; }
.fit-card ul { margin-top: 20px; display: grid; gap: 12px; }
.fit-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; line-height: 1.5; }
.fit-card li .i { width: 18px; height: 18px; margin-top: 3px; --sw: 2.4; }
.fit-card--yes { border-color: #bfe3cc; box-shadow: 0 0 0 3px var(--green-50), var(--shadow-sm); }
.fit-card--yes h3 .i, .fit-card--yes li .i { color: var(--green); }
@media (min-width: 700px) { .fit-card--yes ul { grid-template-columns: 1fr 1fr; gap: 14px 24px; } }
.fit-card--no { background: var(--paper); }
.fit-card--no h3 .i, .fit-card--no li .i { color: var(--slate-400); }
.fit-card--no p { margin-top: 20px; font-size: 0.85rem; color: var(--slate-500); }
.industries { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.industries p { font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); margin-right: 8px; }
.industries ul { display: contents; }
.industries li { font-size: 0.85rem; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--slate-700); }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps { position: relative; display: grid; gap: 0; }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .steps::before { content: ""; position: absolute; top: 27px; left: 28px; right: 28px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px); }
  .steps::after { content: ""; position: absolute; top: 27px; left: 28px; width: calc((100% - 96px) * .6 + 48px); height: 2px; background: linear-gradient(90deg, var(--blue-100), var(--blue)); }
}
.step { position: relative; padding: 0 0 32px 76px; }
@media (min-width: 1024px) { .step { padding: 0; } }
@media (max-width: 1023px) { .step::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: repeating-linear-gradient(180deg, var(--line-strong) 0 6px, transparent 6px 12px); } .step:last-child::before { display: none; } }
.step-num { position: absolute; left: 0; top: 0; z-index: 1; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: var(--blue); background: #fff; border: 1px solid var(--blue-100); box-shadow: var(--shadow-sm); }
.step-num .i { width: 24px; height: 24px; }
@media (min-width: 1024px) { .step-num { position: relative; margin-bottom: 20px; } }
.step--live .step-num { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 10px 22px -10px rgba(26,102,255,.9), 0 0 0 6px var(--blue-50); }
.step small { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); padding-top: 4px; }
@media (min-width: 1024px) { .step small { padding-top: 0; } }
.live-pill { display: inline-flex; align-items: center; gap: 5px; padding: 2px 7px; border-radius: 999px; background: var(--green-50); color: var(--green); letter-spacing: .06em; }
.live-pill .dot { width: 6px; height: 6px; animation: pulse 2.2s infinite; }
.step h3 { font-size: 1.15rem; margin-top: 6px; }
.step p { margin-top: 8px; font-size: 0.925rem; line-height: 1.55; }
.steps-note { margin-top: 24px; display: flex; gap: 14px; align-items: center; padding: 18px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: var(--ink); font-weight: 500; box-shadow: var(--shadow-sm); }
.steps-note .i { width: 22px; height: 22px; color: var(--green); }

/* ==========================================================================
   AI + HUMAN / BUILT AROUND YOUR BUSINESS
   ========================================================================== */
.split { position: relative; display: grid; gap: 16px; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 0; } }
.side { padding: clamp(24px, 3.5vw, 44px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; }
@media (min-width: 900px) { .side--ai { border-radius: var(--radius-lg) 0 0 var(--radius-lg); border-right: 0; padding-right: 64px; } .side--human { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding-left: 64px; } }
.side--human { background: var(--ink); border-color: var(--ink); color: var(--on-dark-2); }
.side--human h3 { color: #fff; }
.side-head { display: flex; align-items: center; gap: 14px; }
.side-head .ico { width: 52px; height: 52px; border-radius: 14px; }
.side-head .ico .i { width: 26px; height: 26px; }
.side--human .ico { background: rgba(232,149,15,.14); color: var(--amber-300); box-shadow: inset 0 0 0 1px rgba(232,149,15,.35); }
.side-head small { display: block; font-size: 0.72rem; letter-spacing: .14em; font-weight: 700; text-transform: uppercase; color: var(--blue); }
.side--human .side-head small { color: var(--amber-300); }
.side h3 { font-size: 1.5rem; margin-top: 2px; }
.side ul { margin-top: 24px; display: grid; gap: 10px; }
@media (min-width: 560px) { .side ul { grid-template-columns: 1fr 1fr; } }
.side li { display: flex; gap: 10px; align-items: center; font-size: 0.95rem; }
.side li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex: none; }
.side--human li::before { background: var(--amber); }
.handoff { display: none; }
@media (min-width: 900px) {
  .handoff { display: grid; place-items: center; align-content: center; gap: 4px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 92px; height: 92px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow), 0 0 0 8px rgba(255,255,255,.6); text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
  .handoff .i { width: 26px; height: 26px; color: var(--blue); --sw: 2; animation: nudge 2.4s var(--ease) infinite; }
}
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
.definition { margin-top: 28px; display: grid; gap: 24px; padding: clamp(22px, 3vw, 36px); border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
@media (min-width: 1024px) { .definition { grid-template-columns: 0.85fr 1.6fr; gap: 48px; align-items: center; } }
.definition h3 { font-size: 1.3rem; }
.definition p { margin-top: 10px; font-size: 0.95rem; }
.def-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; counter-reset: d; }
@media (max-width: 480px) { .def-flow { grid-template-columns: 1fr; } }
@media (min-width: 640px) { .def-flow { grid-template-columns: repeat(3, 1fr); } }
.def-flow li { counter-increment: d; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line); font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.def-flow li::before { content: counter(d); width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 700; display: grid; place-items: center; }
.def-flow li:last-child::before { background: var(--amber); }
.def-flow-cap { margin-top: 12px; font-size: 0.85rem; color: var(--slate-500); }
.human-section .note { top: 12%; }

/* ==========================================================================
   OUR AI (dark heads-up)
   ========================================================================== */
.our-ai { background: var(--navy-900); overflow: hidden; }
.our-ai::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 20%, rgba(26,102,255,.2), transparent 70%); pointer-events: none; }
.ai-grid { position: relative; display: grid; gap: 48px; }
@media (min-width: 1024px) { .ai-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; } }
.ai-copy h2 { font-size: var(--fs-h2); margin-top: 16px; text-wrap: balance; }
.ai-copy .lead { margin-top: 18px; }
.ai-points { margin-top: 30px; display: grid; gap: 20px; }
.ai-points li { display: flex; gap: 14px; align-items: flex-start; }
.ai-points .ico { width: 40px; height: 40px; border-radius: 11px; }
.ai-points .ico .i { width: 20px; height: 20px; }
.ai-points strong { display: block; color: #fff; font-size: 1rem; }
.ai-points span:not(.ico) { font-size: 0.925rem; }
.dark .ico--amber { background: rgba(232,149,15,.14); color: var(--amber-300); box-shadow: inset 0 0 0 1px rgba(232,149,15,.35); }

/* Example outreach email */
.email { position: relative; background: #fff; color: var(--slate-700); border-radius: 18px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.06); overflow: hidden; transform: rotate(-1deg); }
@media (max-width: 1023px) { .email { transform: none; } }
.email-top { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #f4f6fa; border-bottom: 1px solid var(--line); }
.email-app { display: flex; gap: 6px; }
.email-app i { width: 10px; height: 10px; border-radius: 50%; background: #d6dbe4; }
.email-meta { margin: 0; padding: 14px 20px 12px; border-bottom: 1px solid var(--line); display: grid; gap: 6px; font-size: 0.85rem; }
.email-meta div { display: grid; grid-template-columns: 64px 1fr; gap: 8px; }
.email-meta dt { color: var(--slate-400); }
.email-meta dd { margin: 0; color: var(--ink); }
.email-from { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.email-from::before { content: "AI"; font-size: 0.6rem; font-weight: 800; letter-spacing: .06em; color: #fff; background: var(--blue); border-radius: 5px; padding: 2px 5px; }
.email-body { padding: 18px 20px 6px; display: grid; gap: 12px; font-size: 0.925rem; line-height: 1.55; }
.email-attach { display: flex; gap: 12px; align-items: center; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.email-attach img { width: 88px; height: 58px; object-fit: cover; border-radius: 8px; flex: none; }
.email-attach strong { display: block; font-size: 0.85rem; color: var(--ink); word-break: break-all; }
.email-attach span { font-size: 0.78rem; color: var(--slate-500); }
.email-foot { display: flex; gap: 8px; align-items: flex-start; margin: 12px 20px 18px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 0.8rem; color: var(--slate-500); }
.email-foot .i { width: 16px; height: 16px; color: var(--blue); margin-top: 2px; }
.our-ai .note { top: 16%; }

/* ==========================================================================
   PROOF
   ========================================================================== */
.proof-grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .proof-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.proof-card { padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; transition: border-color .2s, box-shadow .2s, transform .2s var(--ease); }
.proof-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.proof-card h3 { font-size: 1.15rem; margin-top: 6px; }
.proof-card p { font-size: 0.925rem; }
.proof-card .text-link { margin-top: 4px; }
.proof-card--main { padding: 0; overflow: hidden; gap: 0; border-color: #c9dbff; }
@media (min-width: 560px) { .proof-card--main { grid-template-columns: 0.9fr 1fr; } }
.proof-thumb { position: relative; min-height: 180px; }
.proof-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-thumb .tag { position: absolute; left: 12px; top: 12px; }
.proof-body { padding: 24px; display: grid; gap: 10px; align-content: center; justify-items: start; }
.proof-body h3 { margin-top: 0; font-size: 1.3rem; }
.proof-body .btn { margin-top: 6px; }
.proof-later { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; padding: 16px 4px; border-top: 1px solid var(--line); }
.proof-later p { font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); }
.proof-later ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.proof-later li { display: inline-flex; align-items: center; gap: 7px; font-size: 0.875rem; color: var(--slate-600); }
.proof-later .i { width: 16px; height: 16px; color: var(--slate-400); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { display: grid; gap: 40px; }
@media (min-width: 1024px) { .faq-wrap { grid-template-columns: 0.7fr 1.3fr; gap: 72px; } .faq-intro { position: sticky; top: 120px; align-self: start; } }
.faq-intro h2 { font-size: var(--fs-h2); margin-top: 16px; }
.faq-intro p:not(.eyebrow) { margin-top: 16px; }
.faq-intro .text-link { margin-top: 20px; }
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1633' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform .25s var(--ease), background-color .2s; }
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--mist); }
.faq summary:hover { color: var(--blue); }
.faq .answer { padding: 0 48px 22px 0; max-width: 68ch; }

/* ==========================================================================
   FINAL CTA + FOOTER
   ========================================================================== */
.final { position: relative; overflow: hidden; background: var(--paper); padding-block: clamp(72px, 9vw, 120px) clamp(160px, 16vw, 240px); isolation: isolate; }
.final-media { position: absolute; inset: 0; z-index: -2; }
.final-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; filter: saturate(1.15); }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(243,246,251,1) 0%, rgba(243,246,251,.9) 30%, rgba(243,246,251,.35) 62%, rgba(243,246,251,0) 85%), linear-gradient(90deg, rgba(243,246,251,.8) 0%, rgba(243,246,251,0) 60%); }
.final-inner { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .final-inner { grid-template-columns: 1.3fr 1fr; gap: 64px; } }
.final h2 { font-size: var(--fs-h2); max-width: 18ch; text-wrap: balance; }
.final .lead { margin-top: 18px; max-width: 50ch; color: var(--slate-700); }
.final-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.final-sign { text-align: left; }
@media (min-width: 1024px) { .final-sign { text-align: right; padding-right: 8px; border-right: 3px solid var(--blue); } }
.final-sign .wordmark { font-size: clamp(2.2rem, 1.5rem + 2.5vw, 3.4rem); }
.final-sign p { margin-top: 10px; font-size: 1.1rem; color: var(--ink); font-weight: 500; }
.final-reassure { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.925rem; color: var(--slate-700); font-weight: 500; }
.final-reassure li { display: inline-flex; gap: 8px; align-items: center; }
.final-reassure .i { width: 20px; height: 20px; color: var(--blue); }

.site-footer { background: #fff; border-top: 1px solid var(--line); padding-block: 56px 32px; font-size: 0.9rem; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand p { margin-top: 8px; max-width: 34ch; color: var(--slate-600); }
.footer-brand .footer-tag { margin-top: 12px; color: var(--blue); font-weight: 600; }
.powered { margin-top: 18px !important; display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.8rem; color: var(--slate-600); }
.powered strong { color: var(--ink); }
.footer-col h2 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); }
.footer-col ul { margin-top: 14px; display: grid; gap: 10px; }
.footer-col a { color: var(--slate-700); text-decoration: none; }
.footer-col a:hover { color: var(--blue); text-decoration: underline; }
.footer-disclosure { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 14px; font-size: 0.8rem; color: var(--slate-500); }
@media (min-width: 900px) { .footer-disclosure { grid-template-columns: 1fr auto; gap: 40px; align-items: end; } }
.footer-disclosure p { max-width: 90ch; }
.footer-disclosure .tag { margin-right: 6px; vertical-align: 1px; }

/* ==========================================================================
   INNER PAGES (mockup form, transparency, legal)
   ========================================================================== */
.page-hero { background: var(--navy-950); padding-block: clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 85% 20%, rgba(26,102,255,.25), transparent 65%); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 1.3rem + 3.6vw, 3.8rem); margin-top: 18px; max-width: 18ch; letter-spacing: -0.04em; }
.page-hero .lead { margin-top: 18px; max-width: 58ch; }

.mockup-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .mockup-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; } .mockup-aside { position: sticky; top: 110px; } }
@media (max-width: 1023px) { .mockup-grid .form-card { order: -1; } }
.aside-block + .aside-block { margin-top: 36px; }
.aside-block h2 { font-size: 1.35rem; }
.aside-block .includes { margin-top: 16px; }
.aside-block ol { margin-top: 16px; display: grid; gap: 14px; counter-reset: n; }
.aside-block ol li { counter-increment: n; display: grid; grid-template-columns: 30px 1fr; gap: 12px; font-size: 0.95rem; }
.aside-block ol li::before { content: counter(n); width: 30px; height: 30px; border-radius: 50%; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; }
.aside-block ol li strong { display: block; color: var(--ink); }
.aside-block p { margin-top: 12px; font-size: 0.925rem; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3.5vw, 40px); box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.6rem; }
.form-card form > p { margin-top: 8px; font-size: 0.925rem; color: var(--slate-500); }
.form-grid { display: grid; gap: 18px; margin-top: 26px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { display: grid; gap: 7px; align-content: start; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field .opt { font-weight: 400; color: var(--slate-500); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid var(--line-strong); border-radius: 10px; padding: 12px 14px; min-height: 48px; transition: border-color .15s, box-shadow .15s; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5770' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 16px no-repeat; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--slate-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,102,255,.15); }
.field [aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 4px rgba(210,58,58,.1); }
.field-error { font-size: 0.8rem; color: var(--red); }
.consent { margin-top: 22px; font-size: 0.82rem; color: var(--slate-500); line-height: 1.55; }
.form-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 10px; font-size: 0.9rem; display: none; }
.form-status.is-error { display: block; background: var(--red-50); color: #8a1f1f; border: 1px solid #f3c4c4; }
.form-success { display: none; }
.form-success.is-visible { display: block; }
.form-success .check { width: 48px; height: 48px; background: var(--green); color: #fff; }
.form-success .check .i { width: 24px; height: 24px; }
.form-success h2 { margin-top: 18px; }
.form-success ol { margin-top: 18px; display: grid; gap: 10px; counter-reset: n; }
.form-success ol li { counter-increment: n; padding-left: 30px; position: relative; }
.form-success ol li::before { content: counter(n) "."; position: absolute; left: 0; font-weight: 700; color: var(--blue); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite; display: none; }
.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.6rem; margin-top: 48px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul { margin-top: 14px; }
.prose ul { display: grid; gap: 8px; }
.prose ul li { padding-left: 20px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.draft-banner { margin-bottom: 32px; padding: 14px 18px; border-radius: 10px; background: var(--amber-50); border: 1px solid #f3d9a6; color: #6d4700; font-size: 0.9rem; }

/* ==========================================================================
   Reveal + reduced motion
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; transition-delay: 0s !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .journey .flow-step, .js .journey .source { opacity: 1; }
  .js .feed.is-playing .feed-item, .js .feed.is-playing .feed-alert { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .ba-range, .hero-media, .stage-media, .final-media { display: none; }
  .dark, .hero, .system-section, .our-ai, .stage { background: #fff !important; color: #000; }
}
.dark .email .tag--demo { color: #8a5a00; background: var(--amber-50); border-color: #f3d9a6; }

/* Form checkbox row */
.field--check { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.field--check input { width: 20px; height: 20px; min-height: 0; margin: 1px 0 0; padding: 0; flex: none; accent-color: var(--blue); cursor: pointer; }
.field--check label { cursor: pointer; font-weight: 600; }
.field--check .opt { display: block; font-weight: 400; font-size: 0.82rem; margin-top: 2px; }

/* "Private to you" tag in the CRM hub */
.hub-tag { display: inline-flex; align-items: center; gap: 6px; margin: 10px auto 0; padding: 4px 11px; border-radius: 999px; background: rgba(52,210,123,.12); border: 1px solid rgba(52,210,123,.35); color: var(--green-400); font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hub-tag .i { width: 13px; height: 13px; --sw: 2.2; }

/* "Pick what you need" variant of the definition pills */
.def-flow--pick li::before { content: ""; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.def-flow--pick li:last-child::before { background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat; }
