/* OplyAI — premium UX sample. Sample only: not deployed, not the live site. */

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* Wordmark stays on Montserrat 800 so the lockup matches the live brand. */
@font-face {
  font-family: "OplyAI Wordmark";
  src: url("assets/fonts/Montserrat-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

/* ------------------------------------------------------------------ tokens */
/* Palette is the live oplyai.com palette (bg, card, slate, muted, mint, teal lines),
   extended with alpha steps — not a new gray system. */
:root {
  --bg: #05090c;
  --bg-raised: #071016;
  --surface: #0b151a;
  --surface-2: #0e1c22;
  --surface-3: #12252c;
  --line: rgba(92, 235, 255, 0.1);
  --line-2: rgba(92, 235, 255, 0.17);
  --line-3: rgba(92, 235, 255, 0.3);
  --text: #eaf6f8;
  --text-2: #b0c6cc;
  --text-3: #86a0a8;
  --mint: #a8f2f8;

  --cyan: #5cebff;
  --cyan-hi: #8ff2ff;
  --cyan-lo: #2cc9df;
  --cyan-ink: #03161a;
  --cyan-a06: rgba(92, 235, 255, 0.06);
  --cyan-a10: rgba(92, 235, 255, 0.1);
  --cyan-a16: rgba(92, 235, 255, 0.16);
  --cyan-a28: rgba(92, 235, 255, 0.28);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-wordmark: "OplyAI Wordmark", Montserrat, var(--font-sans);

  --fs-display: clamp(2.6rem, 1.1rem + 4.9vw, 4.75rem);
  --fs-h2: clamp(2rem, 1.25rem + 2.5vw, 3.1rem);
  --fs-lede: clamp(1.02rem, 0.97rem + 0.25vw, 1.15rem);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: 120ms;
  --dur-2: 180ms;
  --dur-3: 320ms;
  --dur-4: 700ms;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(88px, 10vw, 140px);
  --header-h: 64px;

  /* Button tokens. Treatments (?treatment=mono|pill) only swap these. */
  --btn-r-sm: 9px;
  --btn-r-md: 11px;
  --btn-r-lg: 13px;
  --btn-primary-bg: linear-gradient(180deg, #8ef2ff 0%, #5cebff 55%, #47e0f6 100%);
  --btn-primary-bg-hover: linear-gradient(180deg, #a8f6ff 0%, #72efff 55%, #56e6fa 100%);
  --btn-primary-fg: var(--cyan-ink);
  --btn-primary-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 50, 60, 0.28),
    0 0 0 1px rgba(92, 235, 255, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 8px 24px -12px rgba(92, 235, 255, 0.6);
  --btn-primary-shadow-hover:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 50, 60, 0.28),
    0 0 0 1px rgba(143, 242, 255, 0.7),
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 12px 32px -12px rgba(92, 235, 255, 0.8);

  interpolate-size: allow-keywords;
}

[data-treatment="mono"] {
  --btn-primary-bg: linear-gradient(180deg, #ffffff 0%, #eef6f8 60%, #dfeaed 100%);
  --btn-primary-bg-hover: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  --btn-primary-fg: #05080a;
  --btn-primary-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 8px 24px -14px rgba(255, 255, 255, 0.35);
  --btn-primary-shadow-hover:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 0 0 4px rgba(92, 235, 255, 0.14),
    0 12px 32px -14px rgba(255, 255, 255, 0.4);
}
[data-treatment="pill"] {
  --btn-r-sm: 999px;
  --btn-r-md: 999px;
  --btn-r-lg: 999px;
}

/* -------------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01" on, "cv11" on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--text); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
strong, b { color: var(--text); font-weight: 600; }
::selection { background: rgba(92, 235, 255, 0.3); color: #fff; }

.mono { font-family: var(--font-mono); font-feature-settings: "zero" on; letter-spacing: -0.01em; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 100;
  padding: 10px 14px; border-radius: 10px; background: var(--text); color: var(--bg);
  font-weight: 600; transform: translateY(-160%); transition: transform var(--dur-2) var(--ease-out);
}
.skip-link:focus { transform: none; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ---------------------------------------------------------------- wordmark */
.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}
.wordmark b { color: var(--cyan); font-weight: 800; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.12rem; line-height: 1;
  border-radius: 10px;
}
.brand img {
  width: 34px; height: 34px; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(92, 235, 255, 0.25));
  transition: transform var(--dur-3) var(--ease-out);
}
.brand:hover img { transform: translateY(-2px) rotate(-6deg); }

/* ----------------------------------------------------------------- buttons */
.btn {
  --h: 44px;
  --px: 18px;
  --fs: 15px;
  --r: var(--btn-r-md);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--h);
  padding: 0 var(--px);
  border-radius: var(--r);
  font: 550 var(--fs)/1 var(--font-sans);
  letter-spacing: -0.008em;
  white-space: nowrap;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    background-color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out),
    color var(--dur-2) var(--ease-out),
    opacity var(--dur-2) var(--ease-out),
    transform var(--dur-1) var(--ease-out);
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-lg svg { width: 17px; height: 17px; }
.btn .arrow { width: 14px; height: 14px; margin-right: -2px; transition: transform var(--dur-2) var(--ease-out); }
.btn:hover .arrow, .btn.is-hover .arrow { transform: translateX(3px); }
.btn:hover .arrow-down, .btn.is-hover .arrow-down { transform: translateY(2px); }

.btn-sm { --h: 36px; --px: 14px; --fs: 14px; --r: var(--btn-r-sm); }
.btn-lg { --h: 52px; --px: 22px; --fs: 16px; --r: var(--btn-r-lg); }
.btn-block { width: 100%; }

/* primary — one per viewport */
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  box-shadow: var(--btn-primary-shadow);
  font-weight: 600;
}
.btn-primary:hover, .btn-primary.is-hover {
  background: var(--btn-primary-bg-hover);
  box-shadow: var(--btn-primary-shadow-hover);
}

/* secondary — cyan-tinted glass, cyan hairline ring (live .btn-ghost, refined) */
.btn-secondary {
  background: linear-gradient(180deg, rgba(92, 235, 255, 0.07), rgba(92, 235, 255, 0.025));
  box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.34), inset 0 1px 0 rgba(160, 245, 255, 0.1);
  color: var(--text);
}
.btn-secondary:hover, .btn-secondary.is-hover {
  background: linear-gradient(180deg, rgba(92, 235, 255, 0.13), rgba(92, 235, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.6), inset 0 1px 0 rgba(160, 245, 255, 0.16), 0 0 0 4px rgba(92, 235, 255, 0.07);
}
.btn-secondary svg { color: var(--cyan); }

/* ghost — tertiary, cyan text only until hovered */
.btn-ghost { color: var(--cyan); }
.btn-ghost:hover, .btn-ghost.is-hover { color: var(--cyan-hi); background: rgba(92, 235, 255, 0.08); }

.btn:active, .btn.is-active { transform: translateY(1px) scale(0.985); transition-duration: 60ms; }
.btn-primary:active, .btn-primary.is-active { box-shadow: var(--btn-primary-shadow); }
.btn:focus-visible, .btn.is-focus { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: var(--r); }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.42; pointer-events: none; box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-primary[aria-disabled="true"] { background: var(--surface-3); color: var(--text-3); }

/* phone button: label + mono number split by a hairline */
.btn-phone .btn-divider { width: 1px; align-self: stretch; margin: 12px 4px; background: var(--line-2); }
.btn-lg.btn-phone .btn-divider { margin: 14px 4px; }
.muted-num { color: var(--mint); font-weight: 450; font-size: 0.94em; }
.btn-phone:hover .muted-num { color: #fff; }
.btn-phone .btn-divider { background: rgba(92, 235, 255, 0.3); }

/* icon buttons */
.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--btn-r-md);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: background-color var(--dur-2), box-shadow var(--dur-2), transform var(--dur-1);
  -webkit-tap-highlight-color: transparent;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1px var(--line-3); }
.icon-btn:active { transform: scale(0.96); }
.icon-btn-quiet { background: transparent; box-shadow: none; color: var(--text-2); }
.icon-btn-quiet:hover { color: var(--text); }
.icon-btn-primary { background: var(--btn-primary-bg); color: var(--btn-primary-fg); box-shadow: var(--btn-primary-shadow); }
.icon-btn-primary:hover { background: var(--btn-primary-bg-hover); box-shadow: var(--btn-primary-shadow-hover); }

.text-link {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(92, 235, 255, 0.35);
  text-underline-offset: 4px;
  transition: text-decoration-color var(--dur-2), color var(--dur-2);
}
.text-link:hover { color: var(--cyan-hi); text-decoration-color: var(--cyan); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.actions-center { justify-content: center; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  transition: background-color var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), backdrop-filter var(--dur-3);
}
.site-header.is-scrolled {
  background: rgba(5, 8, 10, 0.74);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.menu-open { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: 0 1px 0 var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav a {
  position: relative;
  padding: 8px 9px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color var(--dur-2), background-color var(--dur-2);
}
.nav a:hover { color: var(--cyan); background: rgba(92, 235, 255, 0.06); }
.nav a.is-active { color: var(--cyan); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 1px; width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.header-phone svg { width: 14px; height: 14px; }
.header-phone .mono { font-size: 13.5px; font-weight: 500; }
.header-cta { transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out), background-color var(--dur-2), box-shadow var(--dur-2); }
.header-cta.is-parked { opacity: 0; transform: translateY(-6px); pointer-events: none; visibility: hidden; transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out), visibility 0s linear var(--dur-3); }
.header-call-mobile, .menu-toggle { display: none; }
.menu-toggle .i-close { display: none; }
.menu-toggle[aria-expanded="true"] .i-open { display: none; }
.menu-toggle[aria-expanded="true"] .i-close { display: block; }

.mobile-menu {
  position: absolute; left: 0; right: 0; top: var(--header-h);
  background: var(--bg);
  box-shadow: 0 1px 0 var(--line), 0 0 0 100vmax rgba(0, 0, 0, 0.55);
  clip-path: inset(0 0 -100vmax 0);
  padding: 8px 0 20px;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.mobile-menu nav { display: grid; }
.mobile-menu nav > a {
  display: flex; align-items: center; min-height: 52px;
  font-size: 17px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-menu-actions { display: grid; gap: 10px; margin-top: 18px; }

/* -------------------------------------------------------------------- hero */
.hero { position: relative; padding: clamp(40px, 7vw, 88px) 0 0; margin-top: calc(-1 * var(--header-h)); padding-top: calc(var(--header-h) + clamp(40px, 7vw, 88px)); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
/* Clean background: soft light only, no grid texture behind the character. */
.hero-bg::before {
  content: ""; position: absolute; inset: -10% -10% 20%;
  background:
    radial-gradient(38% 46% at 74% 40%, rgba(92, 235, 255, 0.12), transparent 70%),
    radial-gradient(35% 35% at 18% 12%, rgba(92, 235, 255, 0.05), transparent 70%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 6px 12px 6px 10px; margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(92, 235, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.35);
  font-size: 12px; font-weight: 600; color: var(--cyan); line-height: 1.3;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.eyebrow .sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(92, 235, 255, 0.5); }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex: none; box-shadow: 0 0 8px var(--cyan); }
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--cyan); opacity: 0;
  animation: ping 2.4s var(--ease-out) infinite;
}
@keyframes ping { 0% { transform: scale(0.5); opacity: 0.8; } 80%, 100% { transform: scale(1.6); opacity: 0; } }

.display {
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
  max-width: 13ch;
  color: #fff;
}
/* Cyan accent phrase in headings — the live site's h1 em, kept and given depth. */
.display em, .h2 em {
  font-style: normal;
  color: var(--cyan);
  background: linear-gradient(180deg, #b4f7ff 0%, var(--cyan) 55%, #3fdcf3 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 22px rgba(92, 235, 255, 0.22));
}
.hero-lead { margin-top: 22px; font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem); color: var(--mint); font-weight: 500; letter-spacing: -0.015em; text-wrap: balance; }
.hero-sub { margin-top: 10px; max-width: 54ch; font-size: var(--fs-lede); text-wrap: pretty; }
.hero-keep {
  margin-top: 12px; max-width: 46ch;
  font-size: 1.05rem; line-height: 1.45; font-weight: 500;
  letter-spacing: -0.015em; color: var(--text); text-wrap: pretty;
}
.hero-actions { margin-top: 32px; }

.golive-note {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 28px; max-width: 560px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: linear-gradient(90deg, rgba(92, 235, 255, 0.08), rgba(92, 235, 255, 0.02));
  box-shadow: inset 0 0 0 1px var(--line-2), inset 2px 0 0 var(--cyan);
  font-size: 14.5px; line-height: 1.55;
}
.golive-note svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 2px; }
.golive-note strong { font-weight: 550; }

.industries { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.industries-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); }
.industries ul { display: flex; flex-wrap: wrap; gap: 6px; }
.industries li {
  padding: 4px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: rgba(11, 21, 26, 0.8);
  box-shadow: inset 0 0 0 1px var(--line-2);
}

/* hero visual — the OplyAI character, full size on a clean glow */
.hero-visual { position: relative; display: flex; justify-content: flex-end; }
.hero-character { position: relative; width: min(530px, 100%); padding: 8px 0 34px; }
.character-glow {
  position: absolute; inset: 0 2% 10%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(92, 235, 255, 0.32), rgba(0, 232, 245, 0.1) 55%, transparent 100%);
  filter: blur(26px);
  pointer-events: none;
}
.character-float { position: relative; animation: float 6s var(--ease-in-out) infinite; will-change: transform; }
.hero-mascot {
  position: relative;
  transform-origin: 50% 70%;
  transition: transform 0.15s ease-out;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.45));
}
.character-floor {
  position: absolute; left: 24%; right: 24%; bottom: 8px; height: 22px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.6), transparent);
  animation: floor 6s var(--ease-in-out) infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floor { 0%, 100% { transform: scaleX(1); opacity: 0.9; } 50% { transform: scaleX(0.84); opacity: 0.55; } }

.demo-visual { width: 100%; max-width: 540px; margin-left: auto; }

/* Mascot PNG badge reads "OplyAi"; overlay restores the OplyAI lockup until the art is re-exported. */
.mascot { display: block; container-type: inline-size; }
.cta-mascot { position: relative; }
.mascot img { width: 100%; height: auto; }
.mascot-badge {
  position: absolute; left: 41%; top: 54.6%; width: 19.2%; height: 9.6%;
  display: grid; place-items: center;
  border-radius: 1.9cqw;
  background: linear-gradient(180deg, #0f1d4a 0%, #07103a 55%, #040a2e 100%);
  box-shadow: inset 0 0.25cqw 0 rgba(140, 170, 255, 0.14), inset 0 -0.3cqw 0 rgba(0, 0, 0, 0.35);
  transform: rotate(-0.6deg);
}
.mascot-badge .wordmark { font-size: 3.55cqw; line-height: 1; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-6px) rotate(-1.5deg); } }

.desk-card {
  position: relative; z-index: 1;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 26, 31, 0.82), rgba(9, 14, 17, 0.9));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    inset 0 0 0 1px var(--line-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 30px 80px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(0, 0, 0, 0.4);
}
.desk-card::before {
  content: ""; position: absolute; left: 18%; right: 18%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 235, 255, 0.55), transparent);
}
.desk-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px 14px; }
.desk-id { display: flex; align-items: center; gap: 12px; }
.desk-avatar {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(180deg, #13343b, #0b1d22);
  box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.22);
}
.desk-avatar img { width: 28px; height: 28px; object-fit: contain; }
.desk-name { font-size: 14.5px; font-weight: 550; color: var(--text); line-height: 1.2; }
.desk-name .wordmark { font-size: 14px; }
.desk-meta { font-size: 11.5px; color: var(--mint); opacity: 0.75; margin-top: 3px; }
.desk-status {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--cyan);
  background: var(--cyan-a06); box-shadow: inset 0 0 0 1px var(--cyan-a16);
  white-space: nowrap;
}
.desk-status svg { width: 13px; height: 13px; }

.desk-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin: 0 14px; padding: 3px; border-radius: 11px;
  background: rgba(0, 0, 0, 0.3); box-shadow: inset 0 0 0 1px var(--line);
}
.desk-tab {
  min-height: 32px; border-radius: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--text-3);
  transition: color var(--dur-2), background-color var(--dur-2), box-shadow var(--dur-2);
}
.desk-tab:hover { color: var(--text); }
.desk-tab[aria-pressed="true"] {
  color: var(--cyan); background: rgba(92, 235, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.35), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.desk-body { min-height: 268px; padding: 18px 18px 8px; display: flex; flex-direction: column; gap: 12px; }
.line { display: grid; grid-template-columns: 52px 1fr; gap: 10px; align-items: baseline; animation: rise var(--dur-3) var(--ease-out) both; }
.line .who { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); padding-top: 2px; }
.line p { font-size: 14.5px; line-height: 1.5; color: var(--text-2); }
.line.agent .who { color: var(--cyan); }
.line.agent p { color: var(--text); }
.typing { display: inline-flex; gap: 4px; padding: 8px 0; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--text-3); animation: blink 1.1s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.event {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px; margin-left: 62px;
  padding: 9px 12px; border-radius: 10px;
  font-size: 13.5px; color: var(--text-2);
  background: var(--cyan-a06); box-shadow: inset 0 0 0 1px var(--cyan-a16);
  animation: rise var(--dur-3) var(--ease-out) both;
}
.event b { color: var(--cyan); font-weight: 600; }
.event-icon { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: var(--cyan); color: var(--cyan-ink); flex: none; }
.event-icon svg { width: 12px; height: 12px; }

.desk-foot {
  display: flex; gap: 6px; padding: 12px 14px 14px; margin-top: 6px;
  border-top: 1px solid var(--line);
}
.step-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 500; color: var(--text-3);
  transition: color var(--dur-3), background-color var(--dur-3), box-shadow var(--dur-3);
}
.step-chip svg { width: 13px; height: 13px; }
.step-chip.is-on { color: var(--text); background: rgba(92, 235, 255, 0.08); box-shadow: inset 0 0 0 1px var(--line-3); }
.step-chip.is-on svg { color: var(--cyan); }

/* facts strip */
.facts {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts > div { padding: 22px 24px 22px 0; }
.facts > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.facts dt { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); }
.facts dd { margin-top: 6px; font-size: 15.5px; font-weight: 500; color: var(--text); }

/* ---------------------------------------------------------------- sections */
.section { position: relative; padding: var(--section-y) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* Section label: live site's cyan uppercase .label, set in mono with an index chip. */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.kicker .idx {
  display: inline-grid; place-items: center; min-width: 26px; height: 22px; padding: 0 6px;
  border-radius: 6px; letter-spacing: 0.02em;
  color: var(--cyan-ink); background: var(--cyan);
  box-shadow: 0 0 16px -2px rgba(92, 235, 255, 0.55);
}
.kicker .idx svg { width: 12px; height: 12px; }
.kicker .tag {
  padding: 3px 8px; border-radius: 6px; letter-spacing: 0.08em;
  color: var(--mint); background: rgba(92, 235, 255, 0.06); box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.35);
}
.h2 {
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.038em;
  text-wrap: balance;
  color: #fff;
}

/* Hairline cyan divider between sections, fading at the edges. */
.section + .section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--container), 100% - 2 * var(--gutter)); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 235, 255, 0.28) 50%, transparent);
}
.section.cta::before { display: none; }
/* One ambient light per feature section, placed behind its visual. */
.section-glow { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.section-glow::before {
  content: ""; position: absolute; width: 720px; height: 520px; border-radius: 50%;
  left: var(--gx, 70%); top: var(--gy, 45%); transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(92, 235, 255, 0.09), transparent);
}
.section { isolation: isolate; }
.lede { margin-top: 18px; max-width: 62ch; font-size: var(--fs-lede); text-wrap: pretty; }
.prose { margin-top: 20px; max-width: 58ch; font-size: var(--fs-lede); }
.prose p + p { margin-top: 14px; }
.split .actions, .faq-aside .actions { margin-top: 30px; }

.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.split-reverse > :first-child { order: 0; }

/* shared surface */
.panel {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(14, 28, 34, 0.92), rgba(11, 21, 26, 0.82));
  box-shadow:
    inset 0 0 0 1px var(--line-2),
    inset 0 1px 0 rgba(160, 245, 255, 0.08),
    0 24px 60px -32px rgba(0, 0, 0, 0.8);
}
.panel-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 20px 22px 0;
}
.panel-title { font-size: 15px; font-weight: 600; color: var(--text); }
.panel-meta { font-size: 11.5px; color: var(--mint); opacity: 0.7; }

.example-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(92, 235, 255, 0.14);
  box-shadow: inset 0 -1px 0 rgba(92, 235, 255, 0.35);
  color: #fff; font-size: 15px; font-weight: 600; line-height: 1.35;
}
.example-stamp {
  flex: none;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan-ink); background: var(--cyan);
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 0 22px rgba(92, 235, 255, 0.55);
}
.example-hours { font-size: 12.5px; color: var(--mint); font-weight: 500; }
.timeline { overflow: hidden; }
.route-switch {
  display: none;
  width: calc(100% - 44px);
  margin: 16px 22px 0;
  grid-template-columns: 1fr 1fr;
}
.js .route-switch { display: grid; }
.route-switch button {
  white-space: normal; line-height: 1.25; height: auto;
  min-height: 44px; padding: 8px 10px; text-align: center;
}
.coverage-caption {
  margin: 12px 22px 0;
  font-size: 14.5px; line-height: 1.5; color: var(--text); font-weight: 500;
}
#coverage-example[data-mode="overflow"] [data-route-view="oply"],
#coverage-example[data-mode="oply"] [data-route-view="overflow"] { display: none; }
#coverage-example[data-mode="oply"] .legend-staff,
#coverage-example[data-mode="oply"] .legend-overflow { display: none; }

/* ------------------------------------------------------------- after hours */
.timeline { padding-bottom: 22px; }
.tl { padding: 26px 22px 0; }
.tl-row { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; }
.tl-row + .tl-row { margin-top: 10px; }
.tl-day { font-size: 11.5px; color: var(--mint); opacity: 0.75; }
.tl-bar {
  position: relative; height: 40px; border-radius: 10px; overflow: hidden;
  background: rgba(0, 0, 0, 0.25); box-shadow: inset 0 0 0 1px var(--line);
}
.seg {
  position: absolute; top: 0; bottom: 0;
  left: calc(var(--from) / 24 * 100%); width: calc((var(--to) - var(--from)) / 24 * 100%);
  display: flex; align-items: center; padding-left: 10px;
  font-size: 11.5px; font-style: normal; white-space: nowrap; overflow: hidden;
}
.seg i { font-style: normal; font-family: var(--font-mono); }
.seg.oply {
  background: linear-gradient(180deg, rgba(92, 235, 255, 0.3), rgba(92, 235, 255, 0.16));
  box-shadow: inset 0 1px 0 rgba(160, 245, 255, 0.35), inset 1px 0 0 rgba(5, 8, 10, 0.9);
  color: #c9f8ff;
}
.seg.staff {
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 6px, rgba(255, 255, 255, 0.025) 6px 12px);
  box-shadow: inset 1px 0 0 rgba(5, 8, 10, 0.9);
  color: var(--text-3);
}
.tick {
  position: absolute; bottom: 5px; left: calc(var(--at) / 24 * 100%);
  width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 2px rgba(92, 235, 255, 0.18);
}
.tl-axis { position: relative; height: 14px; margin: 10px 0 0 78px; font-size: 11px; color: var(--text-3); }
.tl-axis span { position: absolute; top: 0; left: calc(var(--at) / 24 * 100%); transform: translateX(-50%); }
.tl-axis span:first-child { transform: none; }
.tl-axis span:last-child { transform: translateX(-100%); }
.tl-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 18px 22px 0; font-size: 12.5px; color: var(--text-2); }
.tl-legend span { display: inline-flex; align-items: center; gap: 8px; }
.sw { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.sw.oply { background: rgba(92, 235, 255, 0.4); }
.sw.staff { background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 3px, rgba(255, 255, 255, 0.05) 3px 6px); }
.sw.sw-tick { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); margin: 0 2px; box-shadow: 0 0 0 2px rgba(92, 235, 255, 0.18); }
.coverage {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 20px 22px 0; padding-top: 20px; border-top: 1px solid var(--line);
}
.coverage li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px; border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--text);
  background: rgba(92, 235, 255, 0.04); box-shadow: inset 0 0 0 1px var(--line-2);
}
.coverage svg { width: 16px; height: 16px; color: var(--cyan); }
.coverage .mono { font-size: 11px; color: var(--cyan); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

.guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(40px, 5vw, 64px); }
.guide-card {
  padding: 22px 22px 24px; border-radius: var(--r-lg);
  background: rgba(11, 21, 26, 0.7);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: box-shadow var(--dur-3), background-color var(--dur-3);
}
.guide-card:hover { background: rgba(14, 28, 34, 0.9); box-shadow: inset 0 0 0 1px var(--line-3); }
.guide-tag { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); }
.guide-card h3 { margin-top: 10px; font-size: 17px; }
.guide-card p { margin-top: 6px; font-size: 15px; }

.route-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.route-human {
  margin-top: 28px; max-width: 40em;
  font-size: clamp(1.2rem, 1rem + 0.55vw, 1.45rem);
  line-height: 1.35; letter-spacing: -0.025em;
  color: #fff; font-weight: 550; text-wrap: pretty;
}
.route-notes {
  margin-top: 18px; max-width: 68ch;
  padding: 16px 18px; border-radius: var(--r-md);
  background: rgba(92, 235, 255, 0.05);
  box-shadow: inset 0 0 0 1px var(--line-2), inset 2px 0 0 var(--cyan);
  font-size: 15px; line-height: 1.55;
}
.route-notes p + p { margin-top: 10px; }
.route-notes strong { font-weight: 600; color: var(--text); }

/* ---------------------------------------------------------------- crm sync */
.price-flag { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.price-flag .amt, .plan-price .amt {
  color: var(--cyan);
  background: linear-gradient(180deg, #b4f7ff 0%, var(--cyan) 60%, #45def4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-flag .amt { font-size: 2.6rem; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price-flag .per { font-size: 14px; color: var(--mint); }

.callout {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px; max-width: 58ch;
  padding: 14px 16px; border-radius: var(--r-md);
  background: var(--surface-2); box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.22);
  font-size: 14.5px; line-height: 1.55;
}
.callout svg { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--cyan); }
.callout-quiet { margin-top: 16px; max-width: none; }

.flow { padding-bottom: 22px; }
.record {
  margin: 20px 22px 0; border-radius: 14px; overflow: hidden;
  background: rgba(0, 0, 0, 0.28); box-shadow: inset 0 0 0 1px var(--line-2);
}
.record-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--cyan);
  background: rgba(92, 235, 255, 0.05);
}
.record-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.record-rows > div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 9px 14px; font-size: 14px; }
.record-rows > div + div { border-top: 1px dashed var(--line); }
.record-rows dt { font-size: 12px; color: var(--mint); opacity: 0.72; padding-top: 1px; }
.record-rows dd { color: var(--text); }
.record-rows dd.mono { font-size: 13.5px; }

.flow-link { position: relative; height: 32px; margin-left: 50%; width: 1px; background: linear-gradient(180deg, var(--line-3), var(--line)); }
.flow-link span {
  position: absolute; left: -2px; top: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: travel 2.4s var(--ease-in-out) infinite;
}
.flow-link + .flow-node + .flow-link span { animation-delay: 1.2s; }
@keyframes travel { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(27px); opacity: 0; } }

.flow-node {
  display: flex; gap: 12px; align-items: center;
  margin: 0 22px; padding: 14px 16px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(92, 235, 255, 0.07), rgba(92, 235, 255, 0.025));
  box-shadow: inset 0 0 0 1px var(--cyan-a16);
}
.flow-icon { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(92, 235, 255, 0.12); color: var(--cyan); }
.flow-icon svg { width: 18px; height: 18px; }
.flow-title { font-size: 14.5px; font-weight: 550; color: var(--text); }
.flow-sub { font-size: 13px; color: var(--text-2); margin-top: 2px; }

.destinations { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 8px; margin: 0 22px; }
.destinations li {
  display: grid; place-items: center; text-align: center;
  min-height: 44px; padding: 8px 10px; border-radius: 12px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  background: rgba(92, 235, 255, 0.04); box-shadow: inset 0 0 0 1px var(--line-2);
}
.flow-foot { margin: 16px 22px 0; font-size: 11.5px; color: var(--mint); opacity: 0.7; text-align: center; }

/* ------------------------------------------------------------------- plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 26px 26px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(14, 28, 34, 0.9), rgba(11, 21, 26, 0.75));
  box-shadow: inset 0 0 0 1px var(--line-2), inset 0 1px 0 rgba(160, 245, 255, 0.07);
}
.plan-rec {
  background:
    radial-gradient(90% 45% at 50% 0%, rgba(92, 235, 255, 0.16), transparent 70%),
    linear-gradient(180deg, #0c3a40 0%, #0a2328 45%, #0b171b 100%);
  box-shadow:
    inset 0 0 0 1px rgba(92, 235, 255, 0.55),
    inset 0 1px 0 rgba(180, 248, 255, 0.3),
    0 30px 80px -30px rgba(92, 235, 255, 0.35),
    0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.plan-rec::before {
  content: ""; position: absolute; left: 20%; right: 20%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.plan-top { position: relative; }
.plan-top h3 { font-size: 20px; letter-spacing: -0.02em; }
.plan-desc { margin-top: 4px; font-size: 14px; color: var(--mint); }
.rec-badge {
  position: absolute; top: 2px; right: 0;
  padding: 4px 9px; border-radius: 999px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--cyan); background: var(--cyan-a10); box-shadow: inset 0 0 0 1px var(--cyan-a28);
}
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 26px; }
.plan-price .amt { font-size: 3rem; font-weight: 600; letter-spacing: -0.05em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.plan-price .per { font-size: 15px; color: var(--mint); }
.plan-setup { margin-top: 10px; font-size: 14px; color: var(--text-2); }
.plan-setup .mono { color: var(--text); font-size: 14px; }
.plan .btn-block { margin-top: 24px; }
.plan-specs { margin-top: 24px; border-top: 1px solid var(--line); }
.plan-specs > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.plan-specs dt { color: var(--text-3); }
.plan-specs dd { color: var(--text); text-align: right; display: inline-flex; align-items: center; gap: 8px; }
.pill-247 { padding: 2px 6px; border-radius: 6px; font-size: 11.5px; color: var(--cyan); background: var(--cyan-a10); }
.plan-list { margin-top: 20px; display: grid; gap: 11px; }
.plan-list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--text-2); }
.plan-list svg { width: 16px; height: 16px; margin-top: 3px; color: var(--cyan); }
.plan-list li.no { color: var(--text-3); }
.plan-list li.no svg { color: var(--text-3); }

.addons { margin-top: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.2fr); gap: 24px; align-items: start; }
.addons-head h3 { font-size: 17px; }
.addons-head p { margin-top: 6px; font-size: 14.5px; max-width: 32ch; }
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.addon {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 18px 18px; border-radius: var(--r-lg);
  background: rgba(11, 21, 26, 0.7);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: box-shadow var(--dur-3), background-color var(--dur-3);
}
a.addon:hover { background: rgba(14, 28, 34, 0.95); box-shadow: inset 0 0 0 1px var(--line-3); }
.addon-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.addon-name { font-size: 15px; font-weight: 600; color: var(--text); }
.addon-price { font-size: 15px; font-weight: 600; color: var(--cyan); }
.addon-price small { font-size: 12px; font-weight: 400; color: var(--mint); }
.addon p { font-size: 14px; line-height: 1.5; }
.addon-more { margin-top: auto; padding-top: 4px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: var(--cyan); }
.addons-head .mono { color: var(--cyan); }
.addon-more .arrow { width: 13px; height: 13px; transform: rotate(-90deg); transition: transform var(--dur-2) var(--ease-out); }
a.addon:hover .addon-more .arrow { transform: rotate(-90deg) translateX(2px); }

.fine-print {
  margin-top: 24px; padding: 22px 24px; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-2);
}
.fine-title { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); }
.fine-cols { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; font-size: 14px; line-height: 1.6; }
.fine-cols strong { font-weight: 550; }

/* ------------------------------------------------------------------- scope */
.scope { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.scope-col { padding: 26px 26px 22px; }
.scope-col h3 { font-size: 17px; }
.scope-col.yes h3 { color: var(--cyan); }
.scope-col ul { margin-top: 14px; }
.scope-col li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--text);
}
.scope-col li:first-child { border-top: 0; }
.scope-col svg { width: 20px; height: 20px; padding: 3px; border-radius: 6px; margin-top: 1px; }
.scope-col.yes svg { color: var(--cyan-ink); background: var(--cyan); }
.scope-col.no li { color: var(--text-2); }
.scope-col.no svg { color: var(--text-2); background: rgba(255, 255, 255, 0.07); }

/* -------------------------------------------------------------------- how */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
.steps::before {
  content: ""; position: absolute; left: 14px; right: 14px; top: 14px; height: 1px;
  background: linear-gradient(90deg, rgba(92, 235, 255, 0.35), rgba(92, 235, 255, 0.2) 60%, var(--cyan));
}
.step { position: relative; padding-top: 48px; }
.step-num {
  position: absolute; top: 0; left: 0;
  width: 29px; height: 29px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11.5px; font-weight: 600; color: var(--cyan);
  background: var(--bg); box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.5);
}
.step-live .step-num { color: var(--cyan-ink); background: var(--cyan); box-shadow: 0 0 0 4px rgba(92, 235, 255, 0.14); }
.step h3 { font-size: 17px; }
.step p { margin-top: 8px; font-size: 15px; max-width: 30ch; }

.golive {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 32px; align-items: center;
  padding: 28px;
}
.golive h3 { font-size: 19px; }
.seg-control {
  display: inline-grid; grid-auto-flow: column; gap: 2px; margin-top: 16px;
  padding: 3px; border-radius: 12px; background: rgba(0, 0, 0, 0.3); box-shadow: inset 0 0 0 1px var(--line);
}
.seg-control button {
  min-height: 36px; padding: 0 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--text-3);
  transition: color var(--dur-2), background-color var(--dur-2), box-shadow var(--dur-2);
}
.seg-control button:hover { color: var(--text); }
.seg-control button[aria-pressed="true"] { color: var(--cyan); background: rgba(92, 235, 255, 0.1); box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.35), 0 1px 2px rgba(0, 0, 0, 0.4); }
.golive-answer { margin-top: 18px; font-size: 17px; color: var(--text); }
.golive-answer strong { color: var(--cyan); font-weight: 600; }
.golive-fine { margin-top: 8px; font-size: 14px; color: var(--text-3); }

.week { display: grid; grid-template-columns: repeat(9, 1fr); gap: 6px; }
.day {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
  min-height: 96px; padding: 10px 8px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.02); box-shadow: inset 0 0 0 1px var(--line);
  transition: background-color var(--dur-3), box-shadow var(--dur-3);
}
.day .dn { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.04em; }
.day .dl { font-size: 11px; line-height: 1.25; color: var(--text-2); min-height: 28px; }
.day.wknd { background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 5px, transparent 5px 10px); }
.day.wknd .dl::before { content: "Doesn’t count"; color: var(--text-3); }
.day.is-in { background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px var(--line-3); }
.day.is-count { box-shadow: inset 0 0 0 1px var(--cyan-a28); }
.day.is-count .dn { color: var(--text); }
.day.is-live { background: linear-gradient(180deg, rgba(92, 235, 255, 0.22), rgba(92, 235, 255, 0.08)); box-shadow: inset 0 0 0 1px rgba(92, 235, 255, 0.6), 0 10px 30px -12px rgba(92, 235, 255, 0.5); }
.day.is-live .dn, .day.is-live .dl { color: #d4faff; }
.day.is-faded { opacity: 0.4; }

/* -------------------------------------------------------------------- faq */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 40px); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 64px; padding: 16px 0;
  font-size: 17px; font-weight: 500; color: var(--text); letter-spacing: -0.012em;
  cursor: pointer; list-style: none;
  transition: color var(--dur-2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--cyan); }
.faq details[open] summary { color: var(--cyan); }
.faq summary:focus-visible { outline-offset: 2px; }
.faq-icon {
  width: 28px; height: 28px; flex: none; border-radius: 8px; display: grid; place-items: center;
  color: var(--cyan); box-shadow: inset 0 0 0 1px var(--line-2);
  transition: transform var(--dur-3) var(--ease-out), color var(--dur-2), background-color var(--dur-2), box-shadow var(--dur-2);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq summary:hover .faq-icon { background: rgba(92, 235, 255, 0.08); box-shadow: inset 0 0 0 1px var(--line-3); }
.faq details[open] .faq-icon { transform: rotate(45deg); color: var(--cyan-ink); background: var(--cyan); box-shadow: none; }
.faq details::details-content {
  block-size: 0; overflow: hidden;
  transition: block-size var(--dur-3) var(--ease-out), content-visibility var(--dur-3) allow-discrete;
}
.faq details[open]::details-content { block-size: auto; }
.faq-body { padding: 0 44px 22px 0; }
.faq-body p { font-size: 15.5px; max-width: 64ch; }

/* -------------------------------------------------------------------- cta */
.cta { padding-top: calc(var(--section-y) * 0.6); }
.cta-panel {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 64px) clamp(48px, 6vw, 72px);
  border-radius: var(--r-2xl);
  text-align: center;
  background: linear-gradient(180deg, #07161b, #05090c);
  box-shadow: inset 0 0 0 1px var(--line-3), inset 0 1px 0 rgba(180, 248, 255, 0.18), 0 40px 100px -40px rgba(92, 235, 255, 0.25);
}
.cta-light {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 0%, rgba(92, 235, 255, 0.24), transparent 70%);
}
.cta-mascot {
  width: 168px; margin: 0 auto 20px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
  animation: bob 7s var(--ease-in-out) infinite;
}
.cta-panel .kicker { margin-bottom: 14px; }
.display-cta { font-size: clamp(2.2rem, 1.3rem + 3vw, 3.6rem); }
.cta-panel .lede { margin: 18px auto 0; max-width: 60ch; }
.cta-panel .actions { margin-top: 32px; }
.cta-email { margin-top: 22px; font-size: 14.5px; color: var(--text-3); }

/* ----------------------------------------------------------------- footer */
/* bottom padding keeps the fixed chat launcher clear of footer text */
.site-footer { padding: clamp(72px, 9vw, 112px) 0 104px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: 14.5px; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; min-height: 44px; font-size: 14px; font-weight: 500; color: var(--cyan); }
.footer-phone svg { width: 14px; height: 14px; }
.footer-phone:hover { color: var(--cyan-hi); }
.footer-col { display: flex; flex-direction: column; gap: 2px; }
.footer-col h4 { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 10px; }
.footer-col a { display: inline-flex; align-items: center; min-height: 34px; font-size: 14.5px; color: var(--text-2); transition: color var(--dur-2); width: fit-content; }
.footer-col a:hover { color: var(--cyan); }
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--container), 100% - 2 * var(--gutter)); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 235, 255, 0.28) 50%, transparent);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--text-3);
}
.footer-bottom-left { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.footer-sprint {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 14px; font-weight: 500; color: var(--cyan);
  text-decoration: none; border-bottom: 1px solid rgba(92, 235, 255, 0.35);
}
.footer-sprint:hover { color: var(--cyan-hi); border-bottom-color: var(--cyan-hi); }
.footer-sign { display: inline-flex; align-items: center; gap: 8px; }
.footer-sign a { color: var(--text-2); font-size: 13px; }
.footer-sign a:hover { color: var(--cyan); }
.footer-mark { font-size: 15px; }

/* ------------------------------------------------------ mobile action bar */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; grid-template-columns: auto minmax(0, 1fr); gap: 8px;
  padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
  background: rgba(5, 8, 10, 0.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 -1px 0 var(--line);
  transform: translateY(110%);
  transition: transform var(--dur-3) var(--ease-out);
}
.action-bar.is-visible { transform: none; }
.action-bar .btn { width: 100%; --px: 14px; }
.action-bar .btn-secondary { width: auto; }

/* ----------------------------------------------------------------- reveal */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out); transition-delay: var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .pulse::after, .flow-link span { display: none; }
}
html.shots { scroll-behavior: auto; }
.shots *, .shots *::before, .shots *::after { animation: none !important; transition: none !important; }
.shots [data-reveal] { opacity: 1 !important; transform: none !important; }
.shots .pulse::after, .shots .flow-link span { display: none; }

/* ------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header-phone { display: none; }
}

@media (max-width: 960px) {
  /* Stack the hero as one column: character first, then copy, with the CTAs
     pulled up above the supporting paragraph so they stay on the first screen. */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-home .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-home .hero-copy { display: contents; }
  .hero-home .hero-visual { order: -1; justify-content: center; margin-bottom: 8px; }
  .hero-home .hero-character { width: min(300px, 62%); padding-bottom: 22px; }
  .hero-home .eyebrow { order: 1; align-self: flex-start; }
  .hero-home .display { order: 2; }
  .hero-home .hero-lead { order: 3; }
  .hero-home .hero-actions { order: 4; }
  .hero-home .hero-sub { order: 5; margin-top: 24px; }
  .hero-home .hero-keep { order: 5; margin-top: 8px; }
  .hero-home .golive-note { order: 6; }
  .hero-home .industries { order: 7; }
  .demo-visual { margin: 0 auto; }
  .split, .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  
  .addons { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .steps::before { display: none; }
  .golive { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .route-cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .facts > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .header-cta { display: none; }
  .header-call-mobile, .menu-toggle { display: inline-grid; }
  .action-bar { display: grid; }
  .site-footer { padding-bottom: 150px; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .btn { --h: 48px; }
  .btn-sm { --h: 44px; }
  .btn-lg { --h: 54px; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; }
  .btn-phone { justify-content: center; }

  .eyebrow { font-size: 12.5px; margin-bottom: 20px; }
  .eyebrow .sep, .eyebrow-extra { display: none; }
  .display { max-width: none; }
  .hero-actions { margin-top: 28px; }
  .industries { align-items: flex-start; flex-direction: column; gap: 10px; }

  .hero-home { padding-top: calc(var(--header-h) + 12px); }
  .hero-home .hero-character { width: 188px; padding: 0 0 16px; }
  .character-glow { inset: -6% -10% 4%; }
  .character-floor { height: 14px; bottom: 6px; }
  .eyebrow { margin-bottom: 16px; }
  .hero-lead { margin-top: 16px; }
  .hero-actions { margin-top: 22px; }
  .desk-head { padding: 14px 14px 12px; }
  .desk-status { font-size: 11.5px; padding: 4px 8px; }
  .desk-tabs { margin: 0 10px; }
  .desk-tab { min-height: 40px; font-size: 12.5px; }
  .desk-body { padding: 16px 14px 6px; min-height: 290px; }
  .line { grid-template-columns: 46px 1fr; }
  .event { margin-left: 56px; font-size: 13px; }
  .desk-foot { padding: 10px; }

  .facts { grid-template-columns: 1fr; }
  .facts > div, .facts > div + div { padding: 16px 0; border-left: 0; }
  .facts > div + div { border-top: 1px solid var(--line); }

  .tl { padding: 22px 16px 0; }
  .tl-row { grid-template-columns: 1fr; gap: 6px; }
  .tl-axis { margin-left: 0; }
  .tl-legend, .panel-head { padding-left: 16px; padding-right: 16px; }
  .coverage { grid-template-columns: 1fr 1fr; margin: 18px 16px 0; }
  .guide, .route-cards { grid-template-columns: 1fr; }
  .route-switch, .coverage-caption { margin-left: 16px; margin-right: 16px; width: auto; }
  .example-banner { padding: 12px 14px; }

  .record, .flow-node, .destinations { margin-left: 16px; margin-right: 16px; }
  .record-rows > div { grid-template-columns: 78px 1fr; }
  .destinations { grid-template-columns: 1fr 1fr; }
  .destinations li:last-child { grid-column: 1 / -1; }

  .plan { padding: 24px 20px 22px; }
  .addon-grid { grid-template-columns: 1fr; }
  .fine-cols { grid-template-columns: 1fr; }
  .scope { grid-template-columns: 1fr; }
  .scope-col { padding: 22px 20px 16px; }
  .steps { grid-template-columns: 1fr; row-gap: 28px; }
  .step { padding-top: 0; padding-left: 46px; }
  .step-num { top: -3px; }
  .golive { padding: 22px 18px; }
  .golive .seg-control { display: grid; grid-auto-flow: row; grid-template-columns: 1fr 1fr; width: 100%; }
  .seg-control button { min-height: 44px; padding: 0 8px; font-size: 13px; }
  .week { grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 4px; }
  .day { min-height: 84px; padding: 8px 4px; border-radius: 9px; gap: 10px; }
  .day .dn { font-size: 10px; }
  .day .dl { font-size: 9.5px; }
  .faq summary { font-size: 16px; }
  .faq-body { padding-right: 0; }
  .cta-panel { border-radius: 22px; }
  .cta-mascot { width: 128px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col a { min-height: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .action-bar .btn { --fs: 14px; --px: 10px; --h: 48px; }
}
