/* OrkaSonar landing — kit-aligned section components
   Tokens live in css/tokens.css (OrkaOS foundations + landing aliases). */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  transition: background var(--dur-normal) var(--ease-standard), color var(--dur-normal) var(--ease-standard);
}

.app-shell {
  position: relative;
  z-index: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  transition: background var(--dur-normal) var(--ease-standard), color var(--dur-normal) var(--ease-standard);
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--ink); }

input, select, button { font-family: inherit; }
input::placeholder { color: var(--placeholder); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* —— Type roles (OrkaOS) —— */
.display {
  margin: 0;
  font-size: clamp(var(--fs-5xl), 5vw, var(--fs-7xl));
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-tighter);
  line-height: var(--lh-tight);
  color: var(--ink);
}
.title {
  margin: 0;
  font-size: clamp(var(--fs-2xl), 2.4vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
  color: var(--ink);
}
.body {
  margin: 0;
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--ink-secondary);
  max-width: 65ch;
}
.caption {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  color: var(--ink-tertiary);
}
.figure {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}

@keyframes ringPulse {
  0% { transform: scale(0.75); opacity: 0.85; }
  100% { transform: scale(1.08); opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .marquee-track { transform: none !important; }
}

.desktop-only { display: contents; }
.mobile-only { display: none; }

@media (max-width: 639px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: contents; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}

.mobile-menu[hidden] { display: none !important; }
.mobile-menu:not([hidden]) { display: flex; }

[data-hover] {
  transition: background var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard),
    opacity var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard);
}

.theme-thumb { pointer-events: none; }

.seat-opt.is-selected {
  background: var(--surface) !important;
  color: var(--link) !important;
  font-weight: var(--fw-semibold) !important;
}

#domain-spinner:not([hidden]),
#domain-check:not([hidden]) { display: inline-block; }
#domain-ineligible:not([hidden]) { display: flex; }

/* —— Shared section helpers —— */
.section {
  position: relative;
  z-index: 0;
  padding: var(--space-24) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .section { padding: var(--space-32) var(--space-6); gap: var(--space-16); }
}

.section-head {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-tint-bg);
  border: 1px solid var(--brand-tint-border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--link);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1E8FEC;
  flex-shrink: 0;
}
.section-head h2,
.section-head .display {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  color: var(--ink);
}
.lede {
  margin: 0;
  max-width: 640px;
  font-size: var(--fs-xl);
  line-height: var(--lh-relaxed);
  color: var(--ink-secondary);
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 42px;
  padding: 0 var(--space-5);
  border-radius: 999px;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.btn-primary { background: var(--orka-blue-600); color: var(--text-on-brand); box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: var(--orka-blue-500); }
[data-theme="dark"] .btn-primary { color: #0F2440; }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { background: var(--surface-alt); border-color: var(--border-hover); }
.btn-block { width: 100%; }

.pill-pending {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px dashed var(--border);
  background: var(--surface-alt);
  color: var(--ink-tertiary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.draft-badge {
  height: 20px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(197, 130, 9, 0.16);
  color: #C58209;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* —— Benefits (realized vs unrealized) —— */
.benefits-grid {
  width: 100%;
  max-width: 1248px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
}
.benefit-card .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--link);
}
.benefit-card .pair {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefit-card .metric {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--ink);
}
.benefit-card .caption {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-tertiary);
}
.benefit-card .realized .metric { color: #0CA86C; }
.benefit-card .unrealized .metric { color: #C58209; }

/* —— Validation —— */
.validation {
  padding: 48px 24px;
  background: var(--section-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.validation-inner {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}
.logo-pill {
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.logo-pill img { width: 22px; height: 22px; display: block; object-fit: contain; }
.logo-muted {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-secondary);
  opacity: 0.6;
  transition: opacity 140ms cubic-bezier(0.2, 0, 0, 1);
}
.logo-muted:hover { opacity: 1; }
.logo-pending {
  height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px dashed var(--border);
  color: var(--ink-tertiary);
  font-size: 12px;
  font-weight: 600;
}

/* —— Use-case image banner —— */
.usecase-banner {
  width: 100%;
  max-width: 1248px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.usecase-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usecase-frame {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 1px dashed var(--border);
  background:
    linear-gradient(135deg, var(--surface-alt), var(--surface)),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(134,190,242,0.06) 8px, rgba(134,190,242,0.06) 16px);
  display: grid;
  place-items: center;
  color: var(--ink-tertiary);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}
.usecase-tile h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.usecase-tile p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-secondary);
}

/* —— Workspace icon grid —— */
.ws-grid {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 8px;
  background: #F8FBFF;
  border: 1px solid #E2EAF3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ws-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid #E2EAF3;
  background: #FFFFFF;
  display: grid;
  place-items: center;
  padding: 6px;
}
.ws-tile img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}
.ws-tile .flag {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C58209;
  border: 1.5px solid #FFFFFF;
}

/* —— Testimonials marquee —— */
.marquee {
  width: 100%;
  max-width: 1248px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.t-card {
  width: 340px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  text-align: left;
}
.t-card .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.t-card .name { font-size: 14px; font-weight: 700; color: var(--ink); }
.t-card .role { font-size: 12px; color: var(--ink-tertiary); }
.t-card .company { font-size: 12px; font-weight: 500; color: var(--link); }
.t-card .preview {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card .read-full {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  color: var(--link);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.t-modal[hidden] { display: none !important; }
.t-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 10, 20, 0.66);
}
.t-modal-panel {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-modal-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

/* —— Pricing —— */
.billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  background: var(--border);
}
.billing-toggle button {
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.billing-toggle button.is-active {
  background: var(--surface);
  color: var(--link);
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

.price-controls {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.price-control-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.price-control-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
}
.price-control-summary {
  margin: 0;
  font-size: 13px;
  color: var(--ink-secondary);
  text-align: center;
}
.price-control-summary strong { color: var(--ink); font-weight: 600; }

.org-slider-wrap {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.org-slider {
  width: 100%;
  accent-color: #1E8FEC;
  cursor: pointer;
}
.org-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-tertiary);
}
.org-size-toggle { justify-content: center; }

.price-total {
  margin: -8px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--link);
}
.price-contact[hidden],
[data-paid-price][hidden],
[data-price-pro-total][hidden],
[data-price-premium-total][hidden],
[data-cta-paid][hidden],
[data-cta-contact][hidden] {
  display: none !important;
}

.pricing-grid {
  width: 100%;
  max-width: 1248px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
}
.price-card.featured {
  background: var(--surface-hover);
  border-color: var(--brand-tint-border);
  box-shadow: var(--shadow-lg);
}
.price-card .ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #1E8FEC;
  color: #0F2440;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.price-card .blurb {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-secondary);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-row .amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.012em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.price-row .cadence {
  font-size: 13px;
  color: var(--ink-tertiary);
}
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.price-card li .check { color: #1E8FEC; flex: none; }
.price-note {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-tertiary);
  max-width: 640px;
}

.compare-wrap {
  width: 100%;
  max-width: 1248px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.compare-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  background: var(--canvas-deep);
}
.compare-table td { color: var(--ink-secondary); }
.compare-table td:first-child { color: var(--ink); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: #0CA86C; font-weight: 600; }
.compare-table .no { color: var(--ink-tertiary); }

/* —— Guarantee strip —— */
.guarantee {
  width: 100%;
  max-width: 1248px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md, var(--shadow-sm));
}
.guarantee-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
}
.guarantee-copy img {
  width: 40px;
  height: 40px;
  flex: none;
}
.guarantee-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.guarantee-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-secondary);
}

/* —— Pod —— */
.pod-panel {
  width: 100%;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

/* —— Support —— */
#support {
  scroll-margin-top: 88px;
}

.asset-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* —— Topbar + scroll spy —— */
.topbar-wrap {
  position: sticky;
  top: 20px;
  z-index: 1100;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
.topbar {
  width: 100%;
  max-width: 900px;
  min-height: 52px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 6px 6px 10px;
  border: 1px solid rgba(134, 190, 242, 0.18);
  border-radius: 999px;
  background: var(--topbar-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 8px 28px rgba(2, 8, 18, 0.22);
  transition: background 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
  overflow: visible;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}
.nav-brand img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  transform: scale(1.08);
  transform-origin: center;
}
.nav-brand .brand-accent { color: var(--link); }
.nav-brand.is-active,
.nav-links a.is-active {
  background: rgba(134, 190, 242, 0.16);
  color: var(--ink);
}
[data-theme="light"] .nav-brand.is-active,
[data-theme="light"] .nav-links a.is-active {
  background: rgba(21, 115, 198, 0.12);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-secondary);
  transition: background 140ms ease, color 140ms ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(134, 190, 242, 0.1); }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.theme-switch {
  width: 52px;
  height: 28px;
  flex: none;
  padding: 0;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgba(148, 168, 192, 0.45);
  background: #D4DFEA;
  cursor: pointer;
  position: relative;
}
[data-theme="dark"] .theme-switch {
  background: #C8D4E2;
  border-color: rgba(148, 168, 192, 0.55);
}
.theme-icon-moon,
.theme-icon-sun {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  color: rgba(50, 72, 98, 0.55);
}
.theme-icon-moon { left: 8px; }
.theme-icon-sun { right: 8px; }
.theme-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 36, 64, 0.18);
  transition: left 200ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.menu-btn {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(17, 43, 73, 0.55);
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Apply pill (Opal-inspired soft ring) */
.btn-pill-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: #1E8FEC;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 0 0 6px rgba(30, 143, 236, 0.18),
    0 8px 24px rgba(30, 143, 236, 0.28);
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.btn-pill-apply:hover {
  background: #3D9BF0;
  box-shadow:
    0 0 0 7px rgba(30, 143, 236, 0.22),
    0 10px 28px rgba(30, 143, 236, 0.32);
}
.btn-pill-apply-sm {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  box-shadow:
    0 0 0 4px rgba(30, 143, 236, 0.16),
    0 6px 16px rgba(30, 143, 236, 0.22);
}
.btn-hero { height: 44px; border-radius: 12px; padding: 0 18px; }
.play-mini { font-size: 11px; color: var(--link); }

/* —— Hero —— */
.hero {
  position: relative;
  z-index: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow: visible;
  min-height: 0;
}
.hero-theater {
  width: 100%;
  max-width: 1100px;
  min-height: min(100dvh, 900px);
  padding: clamp(64px, 7vw, 88px) var(--space-6) clamp(20px, 3vw, 36px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.2vw, 24px);
  justify-content: center;
}
.ocean-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.ocean-depth {
  position: absolute;
  inset: -10% -5% 0;
  /* Base ocean wash under the video — keep translucent so motion reads through */
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%, rgba(200, 235, 255, 0.28), transparent 48%),
    radial-gradient(ellipse 70% 45% at 50% 18%, rgba(50, 140, 200, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(11, 58, 98, 0.72) 0%, rgba(7, 40, 72, 0.55) 28%, rgba(6, 24, 46, 0.35) 55%, transparent 78%);
  z-index: 0;
}
[data-theme="light"] .ocean-depth {
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(170, 220, 255, 0.45), transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 22%, rgba(70, 150, 210, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(126, 182, 232, 0.55) 0%, rgba(185, 216, 245, 0.35) 32%, rgba(232, 243, 252, 0.2) 62%, transparent 85%);
}
.ocean-vignette {
  position: absolute;
  inset: 0;
  z-index: 6;
  background:
    radial-gradient(ellipse 72% 58% at 50% 26%, rgba(6, 24, 46, 0.28), transparent 72%),
    linear-gradient(180deg, rgba(6, 24, 46, 0.12) 0%, transparent 28%, transparent 58%, var(--canvas) 100%);
  opacity: 0.52;
  pointer-events: none;
}
[data-theme="light"] .ocean-vignette {
  background:
    radial-gradient(ellipse 68% 52% at 50% 24%, rgba(255, 255, 255, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 36%, #FFFFFF 100%);
  opacity: 0.58;
}
.orca-pod {
  position: absolute;
  opacity: 0.85;
  filter: blur(0.2px);
}
.ocean-rays {
  position: absolute;
  inset: -20% 10% 30%;
  z-index: 3;
  background:
    conic-gradient(from 200deg at 50% 0%, transparent 0deg, rgba(190, 230, 255, 0.14) 18deg, transparent 36deg, rgba(190, 230, 255, 0.1) 52deg, transparent 70deg, rgba(190, 230, 255, 0.12) 88deg, transparent 110deg);
  filter: blur(10px);
  opacity: calc(0.72 - var(--depth-progress, 0) * 0.4);
  animation: rayDrift 18s ease-in-out infinite alternate;
}
.ocean-caustics {
  position: absolute;
  inset: 20% -10% -10%;
  z-index: 3;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(80, 170, 220, 0.16), transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(50, 140, 200, 0.12), transparent 45%);
  opacity: calc(0.85 - var(--depth-progress, 0) * 0.35);
  animation: causticShift 14s ease-in-out infinite alternate;
}
.ocean-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(92vh, 980px);
  z-index: 4;
  background-image:
    linear-gradient(to right, rgba(134, 190, 242, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(134, 190, 242, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 88%);
  opacity: calc(0.62 - var(--depth-progress, 0) * 0.28);
}
[data-theme="light"] .ocean-grid {
  background-image:
    linear-gradient(to right, rgba(20, 70, 120, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 70, 120, 0.18) 1px, transparent 1px);
  opacity: calc(0.72 - var(--depth-progress, 0) * 0.22);
}
.orca-pod {
  position: absolute;
  opacity: 0.7;
  filter: blur(0.4px);
}
.orca-pod-a {
  width: min(42vw, 420px);
  top: 18%;
  left: 8%;
  animation: podSwim 22s ease-in-out infinite;
}
.orca-pod-b {
  width: min(30vw, 280px);
  top: 28%;
  right: 10%;
  animation: podSwim 26s ease-in-out infinite reverse;
}
@keyframes rayDrift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(18px) scale(1.04); }
}
@keyframes causticShift {
  from { transform: translateX(-2%); opacity: 0.7; }
  to { transform: translateX(3%); opacity: 1; }
}
@keyframes podSwim {
  0% { transform: translate(0, 0); }
  50% { transform: translate(24px, -10px); }
  100% { transform: translate(0, 0); }
}

.hero-copy {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  overflow: visible;
}
.hero-brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: block;
  flex: none;
  object-fit: contain;
  overflow: visible;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-tint-bg);
  border: 1px solid var(--brand-tint-border);
  color: var(--link);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1E8FEC;
}
.hero-copy h1,
.hero-copy .display {
  margin: 0;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
  text-shadow: 0 1px 24px rgba(6, 24, 46, 0.35);
}
[data-theme="light"] .hero-copy h1,
[data-theme="light"] .hero-copy .display {
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.65);
}
.hero-lede {
  margin: 0;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-secondary);
  text-wrap: pretty;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-ctas {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-trust {
  margin: var(--space-1) 0 0;
  max-width: 420px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-tertiary);
  line-height: 1.4;
}

.demo-video {
  width: 100%;
  max-width: 560px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.demo-video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(2, 8, 18, 0.45);
}
.demo-video-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(134, 190, 242, 0.35), transparent 40%),
    linear-gradient(135deg, #0b1c33, #123254 45%, #061320);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  gap: 8px;
}
.demo-video-hook {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 12ch;
  line-height: 1.1;
}
.demo-video-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.demo-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(6px);
}
.demo-chrome {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

/* Device stage */
.device-stage {
  position: relative;
  width: 100%;
  max-width: 860px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: var(--space-3) var(--space-3) var(--space-6);
  perspective: 2600px;
  perspective-origin: 50% 38%;
}
.device-stack,
.device-scene {
  position: relative;
  width: 100%;
  max-width: 980px;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-style: preserve-3d;
  transform: rotateX(6deg);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  animation: deviceRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.device-glow {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  width: 72%;
  height: 140px;
  background: radial-gradient(closest-side, rgba(61, 155, 240, 0.28), transparent);
  filter: blur(28px);
  pointer-events: none;
}
.device-floor {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 68%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
[data-theme="light"] .device-floor {
  background: radial-gradient(ellipse at center, rgba(20, 40, 70, 0.22), transparent 72%);
}
@keyframes deviceRise {
  from { opacity: 0; transform: translateY(36px) rotateX(6deg) scale(0.98); }
  to { opacity: 1; transform: translateY(0) rotateX(6deg) scale(1); }
}
.macbook {
  position: relative;
  width: min(100%, 780px);
  z-index: 1;
}
.macbook-lid {
  border-radius: 18px 18px 0 0;
  padding: 10px 10px 0;
  background: linear-gradient(180deg, #3a3f46, #1c1f24 40%, #121417);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.macbook-bezel {
  position: relative;
  border-radius: 12px 12px 0 0;
  background: #0a0b0d;
  padding: 14px 12px 10px;
}
.macbook-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 10px;
  border-radius: 0 0 8px 8px;
  background: #050506;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.macbook-notch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1c22;
  box-shadow: inset 0 0 0 1px rgba(120, 160, 220, 0.25);
}
.macbook-screen {
  border-radius: 6px;
  overflow: hidden;
  background: #F8FBFF;
  aspect-ratio: 16 / 10;
}
.macbook-chin {
  height: 14px;
  background: linear-gradient(180deg, #2a2e34, #171a1e);
  display: flex;
  justify-content: center;
  align-items: center;
}
.macbook-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d0f12;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.macbook-base {
  height: 12px;
  margin: 0 -18px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #4a5058, #2b3036 55%, #1a1d21);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
}
.macbook-indent {
  width: 22%;
  height: 4px;
  margin-top: 2px;
  border-radius: 0 0 6px 6px;
  background: #121417;
}
.screen-app {
  height: 100%;
  display: flex;
  background: #F8FBFF;
}
.screen-side {
  width: 28%;
  padding: 14px 10px;
  background: #fff;
  border-right: 1px solid #E2EAF3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.screen-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #0F2440;
  margin-bottom: 10px;
}
.screen-brand img { width: 16px; height: 16px; }
.screen-nav-item {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 11px;
  color: #41566F;
}
.screen-nav-item.is-active {
  background: #E7F2FD;
  color: #1573C6;
  font-weight: 600;
}
.screen-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.screen-greeting { font-size: 15px; font-weight: 700; color: #0F2440; }
.screen-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.screen-metrics div {
  background: #fff;
  border: 1px solid #E2EAF3;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.screen-metrics span { font-size: 10px; color: #5E7187; }
.screen-metrics strong { font-size: 18px; color: #0F2440; letter-spacing: -0.02em; }
.screen-chart {
  flex: 1;
  min-height: 80px;
  border-radius: 10px;
  border: 1px solid #E2EAF3;
  background:
    linear-gradient(180deg, transparent 60%, rgba(30, 143, 236, 0.12)),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(226, 234, 243, 0.8) 28px, rgba(226, 234, 243, 0.8) 29px),
    #fff;
  position: relative;
}
.screen-chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 42%;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' fill='none'%3E%3Cpath d='M0 45 C30 40 40 20 70 28 C100 36 110 10 140 18 C170 26 180 8 200 14' stroke='%231E8FEC' stroke-width='3' fill='none'/%3E%3C/svg%3E");
}

.iphone {
  position: absolute;
  left: max(0px, calc(50% - 430px));
  bottom: 28px;
  z-index: 2;
  width: 168px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}
.iphone-frame {
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(160deg, #5a6068, #1c1f24 35%, #0e1013);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}
.iphone-island {
  width: 62px;
  height: 16px;
  margin: 4px auto 8px;
  border-radius: 999px;
  background: #050506;
}
.iphone-screen {
  border-radius: 20px;
  background: #0b1524;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 280px;
}
.iphone-status {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 4px 4px;
}
.iphone-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}
.iphone-card span { font-size: 10px; color: rgba(255, 255, 255, 0.65); }
.iphone-card strong { font-size: 20px; letter-spacing: -0.02em; }
.iphone-card.soft strong { color: #F0C674; }
.iphone-home {
  width: 40%;
  height: 4px;
  margin: 8px auto 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 720px) {
  .iphone { display: none; }
  .device-stage { min-height: 0; }
}

/* Impact / checklist */
.impact-block {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.impact-block.section {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
  box-sizing: border-box;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 0;
  background: transparent;
}
.impact-stats article {
  padding: 0;
  border-right: 0;
}
.impact-stats article:last-child { border-right: 0; }
.impact-stat {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.impact-stats h3 {
  margin: 8px 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.impact-stats p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-secondary);
}
.impact-checklist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.impact-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}
.impact-checklist li > span:first-child {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(30, 143, 236, 0.18);
  color: var(--link);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.impact-checklist strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.impact-checklist div span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-secondary);
}
@media (max-width: 720px) {
  .impact-stats { grid-template-columns: 1fr; }
  .impact-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .impact-stats article:last-child { border-bottom: 0; }
}

/* Portrait testimonials */
.t-portrait {
  width: 280px;
  height: 380px;
  flex: none;
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%),
    var(--t-bg, linear-gradient(160deg, #1a3a5c, #0b1c33));
  box-shadow: 0 18px 40px rgba(2, 8, 18, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.t-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(2, 8, 18, 0.42);
}
.t-draft {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}
.t-portrait-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}
.t-quote-teaser {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}
.t-name {
  font-size: 18px;
  font-weight: 700;
}
.t-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
}
.t-role,
.t-industry {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.t-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.t-modal-head [data-t-name] {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.t-modal-meta {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-tertiary);
}
.t-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--ink);
  cursor: pointer;
}
.t-modal-quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-secondary);
}

/* Support */
.support-grid {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.support-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: inherit;
}
.support-card strong { font-size: 15px; color: var(--ink); }
.support-card span { font-size: 13px; color: var(--ink-secondary); }
.support-card.muted { opacity: 0.85; }
@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
}

.pod-section .pod-panel {
  background: #05080f;
  border-color: rgba(255, 255, 255, 0.08);
  padding: 64px 28px;
}
.pod-section .pod-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
}
.pod-section .lede { color: var(--ink-secondary); }
.pod-note {
  font-size: 11px;
  color: var(--ink-tertiary);
}

[data-theme="light"] .demo-video-label { color: var(--ink); }
[data-theme="light"] .pod-section .pod-panel {
  background: transparent;
}

/* Trusted by (Mobbin-style) */
.trusted-by {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.trusted-by-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-tertiary);
}
.trusted-by-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 28px;
}
.trusted-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-secondary);
  opacity: 0.85;
}
.trusted-logo img { display: block; }
.trusted-logo-pending {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.55;
}

/* Linear-style product demo */
.product-section { gap: 40px; }
.product-shell {
  width: 100%;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0c0e;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.product-shell-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #101012;
}
.product-shell-dots { display: flex; gap: 6px; }
.product-shell-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.product-shell-title {
  flex: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.product-shell-link {
  font-size: 12px;
  font-weight: 500;
  color: #8ab4f8;
}
.product-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 420px;
}
.product-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0a0c;
}
.product-nav button {
  text-align: left;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.product-nav button.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.product-main {
  padding: 24px 28px;
  color: #e8eaed;
  font-size: 13px;
  line-height: 1.5;
}
.demo-panel h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.demo-muted {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.demo-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.demo-kpi {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.demo-kpi span { font-size: 11px; color: rgba(255, 255, 255, 0.45); }
.demo-kpi strong { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.demo-kpi strong.warn { color: #f0a868; }
.demo-kpi em { font-size: 11px; color: rgba(255, 255, 255, 0.4); font-style: normal; }
.demo-callout {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(30, 143, 236, 0.12);
  border: 1px solid rgba(30, 143, 236, 0.25);
  margin-bottom: 16px;
}
.demo-callout strong { display: block; margin-bottom: 4px; }
.demo-callout p { margin: 0; color: rgba(255, 255, 255, 0.65); font-size: 12px; }
.demo-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.demo-prompt-grid span {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 500;
}
.demo-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}
.demo-chart-block {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.demo-chart-label { font-size: 11px; color: rgba(255, 255, 255, 0.45); }
.demo-chart-line {
  height: 80px;
  margin: 12px 0 8px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(30, 143, 236, 0.35), transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M0 45 C40 38 60 18 100 28 C140 38 160 12 200 20' stroke='%231E8FEC' stroke-width='2' fill='none'/%3E%3C/svg%3E") center / 100% 70% no-repeat;
}
.demo-bars { display: flex; flex-direction: column; gap: 10px; }
.demo-bars > div {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.demo-bars .bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.demo-bars .bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #1E8FEC;
}
.demo-bars .bar.warn i { background: #f0a868; }
.demo-bars .bar.muted i { background: rgba(255, 255, 255, 0.25); }
.demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
}
.demo-list li.alert { border-left: 3px solid #f0a868; }
.demo-team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.demo-team-card {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 12px;
}
.demo-team-card.warn {
  background: rgba(240, 168, 104, 0.12);
  border: 1px solid rgba(240, 168, 104, 0.3);
}
.demo-team-card.good {
  background: rgba(30, 143, 236, 0.12);
  border: 1px solid rgba(30, 143, 236, 0.28);
}
.demo-team-card p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.55); }
.demo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.demo-table th,
.demo-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.demo-table th { color: rgba(255, 255, 255, 0.4); font-weight: 500; }
.demo-advisory-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.demo-advisory-cards article {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.demo-advisory-cards .tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #8ab4f8;
}
.demo-advisory-cards p { margin: 0; font-size: 12px; color: rgba(255, 255, 255, 0.65); }
.demo-chat { display: flex; flex-direction: column; gap: 12px; }
.demo-chat-user {
  align-self: flex-end;
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px 12px 4px 12px;
  background: #1E8FEC;
  color: #061320;
  font-size: 12px;
}
.demo-chat-ai {
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-chat-ai p { margin: 0 0 10px; font-size: 12px; color: rgba(255, 255, 255, 0.75); }
.demo-chat-action {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(30, 143, 236, 0.15);
  font-size: 12px;
}
.demo-chat-action strong { display: block; margin-bottom: 4px; color: #8ab4f8; font-size: 11px; }
.product-footnote {
  margin: 0;
  padding: 10px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 800px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .demo-kpi-row,
  .demo-split,
  .demo-team-cards,
  .demo-advisory-cards { grid-template-columns: 1fr; }
}


/* Partner logos in trusted-by / validation */
.trusted-img-wide {
  height: 22px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  display: block;
  filter: grayscale(0.15);
  opacity: 0.9;
}
.trusted-img-wide.amazon { height: 28px; max-width: 110px; }
.trusted-img-wide.projxon { height: 18px; max-width: 118px; }
.trusted-img-wide.rsna { height: 22px; max-width: 140px; }
[data-theme="light"] .trusted-img-wide.projxon,
[data-theme="light"] .trusted-img-wide.rsna {
  filter: invert(1);
}
.site-footer-partners a[href*="projxon"] img,
.site-footer-partners a[href*="rsna"] img {
  filter: brightness(0) invert(1);
}
[data-theme="light"] .site-footer-partners a[href*="projxon"] img,
[data-theme="light"] .site-footer-partners a[href*="rsna"] img {
  filter: invert(1);
}
.partner-logo-img {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.85;
}
.partner-logo-img.amazon { height: 32px; }
.partner-logo-img.projxon { height: 26px; }

/* Ecosystem orbit */
.ecosystem-section { gap: 36px; }
.orbit-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.orbit-ring {
  grid-area: 1 / 1;
  position: relative;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(134, 190, 242, 0.2);
  justify-self: center;
  align-self: center;
  pointer-events: none;
}
.orbit-ring-2 {
  width: 100%;
  opacity: 0.55;
}
.orbit-core {
  grid-area: 1 / 1;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(14, 39, 66, 0.9);
  border: 1px solid rgba(134, 190, 242, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  justify-self: center;
  align-self: center;
}
.orbit-core-gw { width: 36px; height: 36px; }
.orbit-core-orka { width: 28px; height: 28px; }
.orbit-core > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-secondary);
  text-align: center;
  padding: 0 8px;
}
.orbit-cloud {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  height: 100%;
  justify-self: stretch;
  align-self: stretch;
  z-index: 1;
}
.orbit-item {
  --i: 0;
  --orbit-r: 210px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  transform: rotate(calc(var(--i) * 32.727deg)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--i) * -32.727deg));
  animation: orbitItem 56s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes orbitItem {
  to {
    transform: rotate(calc(var(--i) * 32.727deg + 360deg)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--i) * -32.727deg - 360deg));
  }
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-item { animation: none; }
}
@media (max-width: 720px) {
  .orbit-stage {
    width: min(100%, 340px);
  }
  .orbit-core {
    width: 112px;
    height: 112px;
  }
  .orbit-core-gw { width: 34px; height: 34px; }
  .orbit-item {
    --orbit-r: 138px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
  }
  .orbit-item img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .orbit-item img.orbit-gemini-lg {
    width: 38px;
    height: 38px;
  }
  .orbit-item span {
    font-size: 9px;
  }
}
.orbit-item img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
.orbit-item img.orbit-gemini-lg {
  width: 52px;
  height: 52px;
  padding: 5px;
}
.orbit-item span {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-tertiary);
  white-space: nowrap;
  pointer-events: none;
}
.orbit-claims {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.orbit-claims article {
  text-align: center;
  padding: 20px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.orbit-claims strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.orbit-claims span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--link);
}
.orbit-claims em {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-style: normal;
  color: var(--ink-tertiary);
}
.orbit-note {
  margin: 0;
  font-size: 12px;
  color: var(--ink-tertiary);
  text-align: center;
}
@media (max-width: 720px) {
  .orbit-claims { grid-template-columns: 1fr; }
}

/* App marquees */
.apps-marquee-section { gap: 28px; overflow: hidden; }
.apps-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.apps-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.track-left { animation: marquee 55s linear infinite; }
.track-right { animation: marqueeReverse 60s linear infinite; }
@keyframes marqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.apps-marquee:hover .apps-marquee-track { animation-play-state: paused; }
.app-tile {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.app-tile img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex: none;
}
.app-tile strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}
.app-tile span {
  display: block;
  font-size: 11px;
  color: var(--ink-tertiary);
}
.app-tile-ph { border-style: dashed; opacity: 0.92; }
.app-ph-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #C58209;
}

/* iPhone testimonials */
.phone-marquee {
  width: 100%;
  max-width: 1248px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  mask-image: none;
}
.phone-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: none;
  padding: 8px 16px 16px;
}
.phone-marquee:hover .phone-marquee-track { animation: none; }
.t-phone {
  width: 260px;
  height: 480px;
  flex: none;
  position: relative;
  border: 0;
  padding: 28px 20px 24px;
  border-radius: 36px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  scroll-snap-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 30%),
    linear-gradient(180deg, #1a1d24 0%, #0b0d12 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.12),
    0 24px 48px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 180ms ease;
}
.t-phone:hover { transform: translateY(-6px); }
.t-phone-notch {
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #050506;
  margin-bottom: 8px;
}
.t-phone-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  background: var(--avatar, #1a3a5c);
  border: 2px solid rgba(255,255,255,0.2);
  margin: 8px 0 4px;
}
.t-phone-name {
  font-size: 18px;
  font-weight: 700;
}
.t-phone .t-loc {
  margin: 2px 0 4px;
}
.t-phone .t-role,
.t-phone .t-industry {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.t-phone .t-quote-teaser {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.45;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  text-align: left;
  width: 100%;
}
.t-phone-avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin: 8px 0 4px;
}
.t-phone-cta {
  margin-top: 12px;
  width: 100%;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1E8FEC;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* UX feature cards */
.ux-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ux-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.ux-visual {
  min-height: 180px;
  border-radius: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ux-fake-bar {
  display: flex;
  gap: 6px;
  align-self: flex-start;
}
.ux-fake-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(134,190,242,0.35);
}
.ux-kpi-mini {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.ux-kpi-mini.warn b { color: #C58209; }
.ux-list-mini {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  font-size: 12px;
}
.ux-list-mini .off {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(197,130,9,0.12);
  border-left: 3px solid #C58209;
}
.ux-list-mini .on {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(30,143,236,0.12);
  border-left: 3px solid #1E8FEC;
}
.ux-chat-mini {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}
.ux-chat-mini .q {
  align-self: flex-end;
  padding: 8px 12px;
  border-radius: 12px 12px 4px 12px;
  background: #1E8FEC;
  color: #061320;
}
.ux-chat-mini .a {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-secondary);
  text-align: left;
}
.ux-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.ux-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-secondary);
}
@media (max-width: 800px) {
  .ux-grid { grid-template-columns: 1fr; }
}

/* Mobbin-style plans modal */
.plans-modal[hidden] { display: none !important; }
.plans-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(8px);
}
.plans-modal-panel {
  width: min(100%, 980px);
  max-height: min(90vh, 840px);
  overflow: auto;
  border-radius: 20px;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  padding: 28px 24px 32px;
  color: #e8eaed;
}
.plans-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.plans-modal-head h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.plans-modal-head p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.plans-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plans-modal-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.plans-modal-card.featured {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.plans-audience {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.plans-popular {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.plans-modal-card h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.plans-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.plans-bill,
.plans-limit {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.plans-modal-card ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plans-modal-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.plans-modal-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1E8FEC;
  font-size: 12px;
}
@media (max-width: 800px) {
  .plans-modal-grid { grid-template-columns: 1fr; }
}

.apps-marquee-track { will-change: transform; }
.phone-marquee-track { will-change: transform; }
.section-head .btn { margin-top: 4px; }

/* FAQ */
.faq-list {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 0 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  color: var(--link);
  font-size: 16px;
  font-weight: 500;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-secondary);
}
.nav-links a {
  padding: 8px 10px;
  font-size: 12.5px;
}

/* —— Review pass: depth, devices, impact, process, pricing —— */
.page-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.depth-columns {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1248px;
}
.depth-col {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(134,190,242,.28) 12%, rgba(134,190,242,.22) 88%, transparent);
  opacity: 0.85;
}
[data-theme="light"] .depth-col {
  background: linear-gradient(to bottom, transparent, rgba(21,115,198,.28) 12%, rgba(21,115,198,.2) 88%, transparent);
  opacity: 0.9;
}
.depth-col:first-child { left: 0; }
.depth-col:last-child { right: 0; }
/* Page depth continues ocean theater mid-scroll; stays quiet in the hero so .ocean-scene owns first viewport. */
.depth-surface {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: min(70vh, 720px);
  background:
    url("../assets/hero/ocean-surface.png") center top / cover no-repeat;
  opacity: calc(0.12 + var(--depth-progress, 0) * 0.28);
  mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  transition: opacity 0.4s ease;
}
[data-theme="light"] .depth-surface { opacity: calc(0.08 + var(--depth-progress, 0) * 0.18); }
.depth-rays {
  position: absolute;
  top: -10%; left: 10%; right: 10%;
  height: 55vh;
  background: conic-gradient(from 210deg at 55% 0%, transparent 0deg, rgba(190,230,255,.16) 14deg, transparent 28deg, rgba(190,230,255,.1) 44deg, transparent 60deg, rgba(190,230,255,.14) 78deg, transparent 100deg);
  filter: blur(10px);
  animation: rayDrift 18s ease-in-out infinite alternate;
  opacity: calc(0.18 + var(--depth-progress, 0) * 0.45);
}
.depth-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(134,190,242,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(134,190,242,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  /* Mid-page continuity only; hero grid lives on .ocean-grid */
  opacity: calc(var(--depth-progress, 0) * 0.7);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent);
}
[data-theme="light"] .depth-grid {
  background-image:
    linear-gradient(to right, rgba(20, 70, 120, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 70, 120, 0.18) 1px, transparent 1px);
  opacity: calc(var(--depth-progress, 0) * 1.05);
}
.depth-sonar {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: min(90vw, 900px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, transparent 18%, rgba(134,190,242,.1) 19%, transparent 20%),
    radial-gradient(circle, transparent 32%, rgba(134,190,242,.08) 33%, transparent 34%),
    radial-gradient(circle, transparent 46%, rgba(134,190,242,.07) 47%, transparent 48%),
    radial-gradient(circle, transparent 60%, rgba(134,190,242,.05) 61%, transparent 62%);
  opacity: calc(max(0, var(--depth-progress, 0) - 0.28) * 1.8);
  animation: sonarPulse 6s ease-out infinite;
}
[data-theme="light"] .depth-sonar {
  background:
    radial-gradient(circle, transparent 18%, rgba(21,115,198,.26) 19%, transparent 20%),
    radial-gradient(circle, transparent 32%, rgba(21,115,198,.2) 33%, transparent 34%),
    radial-gradient(circle, transparent 46%, rgba(21,115,198,.16) 47%, transparent 48%),
    radial-gradient(circle, transparent 60%, rgba(21,115,198,.12) 61%, transparent 62%);
  opacity: calc(max(0, var(--depth-progress, 0) - 0.18) * 2.2);
}
.depth-topo {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background:
    repeating-radial-gradient(ellipse at 30% 80%, transparent 0 18px, rgba(134,190,242,.05) 19px 20px),
    repeating-radial-gradient(ellipse at 70% 90%, transparent 0 22px, rgba(80,160,210,.04) 23px 24px);
  opacity: calc((var(--depth-progress, 0) - 0.55) * 2.2);
  mask-image: linear-gradient(to top, #000, transparent);
}
@keyframes sonarPulse {
  0% { transform: translateX(-50%) scale(0.92); }
  50% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) scale(1.08); }
}

.ocean-surface-photo {
  position: absolute;
  top: -10%;
  left: -4%;
  right: -4%;
  height: 58%;
  z-index: 2;
  background:
    url("../assets/hero/ocean-surface.png") center 18% / cover no-repeat;
  /* Soft underwater texture only — never partner marks */
  opacity: calc(0.22 - var(--depth-progress, 0) * 0.12);
  mix-blend-mode: soft-light;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 48%, transparent 86%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 48%, transparent 86%);
  transition: opacity 0.5s ease;
}
[data-theme="light"] .ocean-surface-photo {
  opacity: calc(0.16 - var(--depth-progress, 0) * 0.08);
  mix-blend-mode: multiply;
}
.ocean-sonar-rings {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(92vw, 1040px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 5;
  background:
    radial-gradient(circle, transparent 11%, rgba(134,190,242,.16) 12%, transparent 13%),
    radial-gradient(circle, transparent 22%, rgba(134,190,242,.13) 23%, transparent 24%),
    radial-gradient(circle, transparent 34%, rgba(134,190,242,.11) 35%, transparent 36%),
    radial-gradient(circle, transparent 46%, rgba(134,190,242,.09) 47%, transparent 48%),
    radial-gradient(circle, transparent 58%, rgba(134,190,242,.07) 59%, transparent 60%),
    radial-gradient(circle, transparent 70%, rgba(134,190,242,.05) 71%, transparent 72%);
  box-shadow:
    0 0 0 1px rgba(134,190,242,.12),
    0 0 48px rgba(134,190,242,.06);
  animation: oceanSonarPulse 9s ease-out infinite;
  opacity: calc(0.72 - var(--depth-progress, 0) * 0.35);
  pointer-events: none;
}
[data-theme="light"] .ocean-sonar-rings {
  background:
    radial-gradient(circle, transparent 11%, rgba(21, 115, 198, 0.28) 12%, transparent 13%),
    radial-gradient(circle, transparent 22%, rgba(21, 115, 198, 0.22) 23%, transparent 24%),
    radial-gradient(circle, transparent 34%, rgba(21, 115, 198, 0.18) 35%, transparent 36%),
    radial-gradient(circle, transparent 46%, rgba(21, 115, 198, 0.14) 47%, transparent 48%),
    radial-gradient(circle, transparent 58%, rgba(21, 115, 198, 0.1) 59%, transparent 60%),
    radial-gradient(circle, transparent 70%, rgba(21, 115, 198, 0.08) 71%, transparent 72%);
  box-shadow:
    0 0 0 1px rgba(21, 115, 198, 0.2),
    0 0 48px rgba(21, 115, 198, 0.1);
  opacity: calc(0.78 - var(--depth-progress, 0) * 0.28);
}
@keyframes oceanSonarPulse {
  0% { transform: translate(-50%, -50%) scale(0.94); opacity: 0.45; }
  45% { opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.35; }
}

.hero-eyebrow-below {
  margin-top: 4px;
  margin-bottom: 4px;
}
.btn-pill-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border-hover);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 160ms ease, border-color 160ms ease;
}
.btn-pill-demo:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--link);
}
[data-theme="light"] .btn-pill-demo {
  background: #FFFFFF;
  border: 1px solid rgba(15, 36, 64, 0.18);
  color: #0F2440;
  backdrop-filter: none;
}
[data-theme="light"] .btn-pill-demo:hover {
  background: #F4F8FC;
  border-color: #3E82A8;
}
.btn-oval {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--link);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}
.btn-oval:hover { border-color: var(--brand-tint-border); background: var(--brand-tint-bg); }

.trusted-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px 22px;
}
.hero-partners {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-6) var(--space-10);
  box-sizing: border-box;
}
.trusted-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.88;
}
.trusted-pill-primary {
  opacity: 1;
}
.trusted-pill-primary .trusted-pill-face {
  height: 48px;
  padding: 0 20px;
  border-color: var(--brand-tint-border);
  background: var(--brand-tint-bg);
  box-shadow: var(--shadow-sm);
}
.trusted-pill-face {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(8px);
  text-decoration: none;
}
[data-theme="light"] .trusted-pill-face {
  background: rgba(255, 255, 255, 0.72);
}
.trusted-pill-face img { display: block; }
.trusted-pill-pending {
  color: var(--ink-tertiary);
  border-style: dashed;
  letter-spacing: 0.04em;
}
.trusted-pill-cap {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-tertiary);
  text-align: center;
  max-width: 140px;
  line-height: 1.3;
}
.validation-pills { margin: 0 auto; }
.validation { padding: 40px 24px; }

/* Theme-aware screenshots: site dark → app light; site light → app dark */
.device-shot-for-light { display: none; }
.device-shot-for-dark { display: block; }
[data-theme="light"] .device-shot-for-light { display: block; }
[data-theme="light"] .device-shot-for-dark { display: none; }

.device-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}
.macbook-screen .device-shot {
  object-position: left 8%;
}
.iphone-screen .device-shot {
  object-position: center top;
}

/* Opal-grade MacBook */
.macbook {
  width: min(90%, 640px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: none;
}
.macbook-lid {
  border-radius: 16px 16px 0 0;
  background:
    linear-gradient(180deg, #4a4e55 0%, #2a2d32 42%, #1a1c20 100%);
  padding: 11px 11px 0;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.35);
}
.macbook-bezel {
  border-radius: 10px 10px 0 0;
  background: #050607;
  padding: 14px 12px 10px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.macbook-camera-bar {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 9px;
  border-radius: var(--radius-pill);
  background: #0a0a0b;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.macbook-camera-bar span {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a3548, #0d1218 70%);
  box-shadow: inset 0 0 0 1px #1e2a38;
}
.macbook-screen {
  aspect-ratio: 16 / 10.2;
  border-radius: 3px;
  overflow: hidden;
  background: #06182E;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.macbook-base {
  height: 12px;
  margin: 0 -14px;
  background:
    linear-gradient(180deg, #d5d8dd 0%, #aeb2b8 38%, #8a8f96 72%, #6e737a 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 3px 0 #5a5e64,
    0 10px 28px rgba(0,0,0,.35);
}
.macbook-base-inner {
  position: absolute;
  inset: 0 10% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
}
.macbook-indent {
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
  width: 16%;
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(180deg, #7a7e84, #5c6066);
}
.macbook-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

/* Opal-grade iPhone */
.iphone {
  position: absolute;
  right: max(0%, calc(50% - 350px));
  bottom: 4px;
  width: 138px;
  z-index: 3;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.42));
  animation: phoneSlide 1000ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}
.iphone-frame {
  border-radius: 34px;
  background:
    linear-gradient(155deg, #3a3c41 0%, #16171a 38%, #0c0d0f 100%);
  padding: 9px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 0 0 5px #050505,
    0 1px 0 rgba(255,255,255,.08);
}
.iphone-island {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 68px; height: 20px;
  border-radius: var(--radius-pill);
  background: #000;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}
.iphone-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 19.4;
  background: #06182E;
  position: relative;
}
.iphone-side {
  display: none;
}

@keyframes phoneSlide {
  from { opacity: 0; transform: translate(18px, 24px); }
  to { opacity: 1; transform: translate(0, 0); }
}

@media (max-width: 900px) {
  .iphone { display: none; }
  .device-stage { min-height: 0; padding-bottom: var(--space-6); }
  .macbook { width: min(100%, 640px); }
}

@media (max-width: 639px) {
  .hero-theater {
    min-height: auto;
    padding-top: 100px;
    gap: var(--space-4);
  }
  .hero-brand { font-size: 24px; }
  .hero-brand img { width: 28px; height: 28px; }
}

/* Impact tickers */
.impact-block {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}
.impact-head { gap: 10px; }
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 0;
}
.impact-ticker {
  padding: 22px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.impact-delta {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0CA86C;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.impact-delta.lost { color: #E05A5A; }
.impact-delta .arrow { font-size: 0.55em; }
.impact-ticker h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.impact-ticker p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-secondary);
}
.impact-ticker .good { color: #0CA86C; font-weight: 600; }
.impact-ticker .bad { color: #E05A5A; font-weight: 600; }
.impact-foot {
  margin-top: auto;
  font-size: 11px;
  color: var(--ink-tertiary);
}
.impact-checklist {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}
.impact-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.impact-checklist .step {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--link);
  background: var(--brand-tint-bg);
  border: 1px solid var(--brand-tint-border);
}
.impact-checklist strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}
.impact-checklist div span {
  font-size: 12px;
  color: var(--ink-secondary);
  line-height: 1.45;
}
@media (max-width: 800px) {
  .impact-stats { grid-template-columns: 1fr; }
}

.product-shot-wrap {
  width: 100%;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: 8px;
}
.product-shot {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.orbit-core {
  grid-area: 1 / 1;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  z-index: 2;
  justify-self: center;
  align-self: center;
}
.orbit-sonar-pulse {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  border: 1.5px solid rgba(134,190,242,.45);
  animation: corePing 2.4s ease-out infinite;
  pointer-events: none;
}
.orbit-sonar-pulse::before,
.orbit-sonar-pulse::after {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(134,190,242,.25);
  animation: corePing 2.4s ease-out infinite 0.4s;
}
.orbit-sonar-pulse::after { inset: -24%; animation-delay: 0.8s; }
@keyframes corePing {
  0% { transform: scale(0.85); opacity: 0.85; }
  100% { transform: scale(1.35); opacity: 0; }
}
.orbit-core-gw { width: 42px; height: 42px; }
.orbit-core .orbit-core-orka { display: none; }

.ux-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .ux-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ux-grid-4 { grid-template-columns: 1fr; }
}

/* Process phones (use cases) */
.process-phones {
  width: 100%;
  max-width: 1248px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 420px;
  padding: 28px 18px 20px;
  border-radius: 36px;
  background: linear-gradient(165deg, #0c223c 0%, #081828 100%);
  border: 1px solid rgba(134,190,242,.18);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.04);
  color: #F2F7FD;
}
[data-theme="light"] .process-phone {
  background: linear-gradient(165deg, #0f2744 0%, #0a1c32 100%);
}
.process-phone.accent {
  background: linear-gradient(165deg, #152a55 0%, #0e1f3d 100%);
  border-color: rgba(134,190,242,.35);
}
.process-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 18px;
  border-radius: 999px;
  background: #05080e;
}
.process-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #86BEF2;
}
.process-phone h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.process-phone > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(242,247,253,.72);
}
.process-visual { margin-top: auto; }
.process-tag {
  align-self: flex-start;
  height: 24px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(134,190,242,.14);
  border: 1px solid rgba(134,190,242,.28);
  color: #86BEF2;
  font-size: 11px;
  font-weight: 600;
}
.ws-grid.compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.process-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.process-bars div {
  display: grid;
  grid-template-columns: 28px 1fr 32px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.process-bars i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.process-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: #1E8FEC;
  border-radius: 999px;
}
.process-ops, .process-next {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-ops div, .process-next div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(134,190,242,.12);
  font-size: 12px;
}
.process-ops span, .process-next span { color: #86BEF2; font-weight: 600; white-space: nowrap; }
@media (max-width: 1100px) {
  .process-phones { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-phones { grid-template-columns: 1fr; }
}

/* FAQ stronger */
.faq-item {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
  border-color: var(--brand-tint-border);
  box-shadow: var(--shadow-xs);
}
.faq-item[open] {
  border-color: var(--link);
  box-shadow: var(--shadow-sm);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 900px;
}
.estimate-panel, .compare-panel { max-width: 720px; }
.compare-panel { max-width: 900px; }
.price-controls.in-modal {
  margin: 0;
  width: 100%;
}
.estimate-result {
  margin-top: 8px;
  padding: 20px;
  border-radius: 14px;
  background: var(--brand-tint-bg);
  border: 1px solid var(--brand-tint-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.estimate-amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.estimate-detail {
  margin: 0;
  font-size: 13px;
  color: var(--ink-secondary);
}
.seat-opt {
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: var(--ink-secondary);
}
.seat-opt.is-selected {
  background: var(--surface);
  color: var(--link);
  font-weight: 600;
}

.t-phone {
  background: linear-gradient(165deg, #0d243f, #071624);
  border: 1px solid rgba(134,190,242,.2);
}

/* —— Apply card (Phase A: no inline styles) —— */
.apply-card {
  width: 100%;
  max-width: 1248px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.apply-copy {
  padding: clamp(var(--space-6), 6vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.apply-assurances {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2-5);
}
.apply-assurances li {
  display: flex;
  gap: var(--space-2-5);
  font-size: var(--fs-xs);
  color: var(--ink-tertiary);
  line-height: var(--lh-normal);
}
.apply-assurances li span {
  color: var(--orka-blue-600);
  flex: none;
}
.apply-form {
  padding: clamp(var(--space-6), 6vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--canvas-deep);
  border-left: 1px solid var(--border);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label,
.field-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.field-control {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  height: 38px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.field-control input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink);
  font-size: var(--fs-base);
}
.field-lead { font-size: var(--fs-sm); color: var(--ink-tertiary); }
.field-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--link);
  border-right-color: transparent;
  border-radius: var(--radius-circle);
  animation: spin 0.7s linear infinite;
}
.field-ok { font-size: var(--fs-sm); color: var(--success-text); }
.field-alert {
  display: flex;
  gap: var(--space-2-5);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--warning-subtle);
  border: 1px solid var(--warning-text);
  color: var(--warning-text);
}
.field-alert strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}
.field-alert p {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  color: var(--ink-secondary);
}
.field-input,
.field-select {
  height: 38px;
  box-sizing: border-box;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: var(--fs-base);
  outline: none;
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--ink);
  cursor: pointer;
}
.field-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orka-blue-600);
  flex: none;
}
.seat-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 3px;
  border-radius: var(--radius-pill);
  background: var(--border);
}
.apply-footnote { margin-top: calc(var(--space-1) * -1); }
.apply-form .btn-pill-apply {
  width: 100%;
  height: 44px;
}
.apply-form .btn-pill-apply.apply-submit-sm {
  width: auto;
  max-width: 200px;
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
  align-self: flex-start;
}
.site-footer-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 36px);
  padding: var(--space-4) 0;
}
.site-footer-partners a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  transition: opacity 140ms ease;
}
.site-footer-partners a:hover { opacity: 1; }
.site-footer-partners img {
  max-height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.site-footer-partners img.footer-logo-gw { max-height: 24px; }
.site-footer-partners img.footer-logo-orkaos { max-height: 32px; border-radius: 8px; }

/* —— Footer —— */
.site-footer {
  position: relative;
  padding: var(--space-24) var(--space-6) var(--space-10);
  background: var(--canvas-deep);
  border-top: 1px solid var(--border);
}
.site-footer-inner {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-14);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-10);
}
.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 400px;
}
.site-footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2-5);
  font-size: 17px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}
.site-footer-logo img {
  width: 32px;
  height: 32px;
  display: block;
}
.site-footer-logo .brand-accent { color: var(--link); }
.site-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}
.site-footer-col .eyebrow { color: var(--ink-tertiary); }
.site-footer-col a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--ink-secondary);
}
.site-footer-col a:hover { color: var(--link); }
.site-footer-rule {
  height: 1px;
  background: var(--border);
}
.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-10);
}
.site-footer-legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 768px;
}
.site-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
}
.site-footer-legal-links a { color: var(--ink-tertiary); }
.site-footer-legal-links a:hover { color: var(--link); }

/* Metric token hooks */
.impact-ticker .good,
.impact-delta:not(.lost) { color: var(--metric-realized); }
.impact-ticker .bad,
.impact-delta.lost { color: var(--metric-unrealized); }

/* —— Feedback pass: hero video, layered devices, how-it-works, demo modal —— */
.ocean-hero-video {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  width: 100%;
  height: 68%;
  object-fit: cover;
  /* Bias toward calm open water / rays; soften busy mid-pod framing */
  object-position: center 22%;
  z-index: 1;
  opacity: calc(0.52 - var(--depth-progress, 0) * 0.32);
  filter: saturate(0.92) contrast(1.05) brightness(0.92);
  mask-image: linear-gradient(to bottom, #000 4%, rgba(0,0,0,.78) 40%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, #000 4%, rgba(0,0,0,.78) 40%, transparent 90%);
  pointer-events: none;
}
[data-theme="light"] .ocean-hero-video {
  opacity: calc(0.34 - var(--depth-progress, 0) * 0.18);
  mix-blend-mode: multiply;
  filter: saturate(0.85) contrast(1.02) brightness(1.05);
}

.device-stage {
  min-height: 460px;
  padding-bottom: 48px;
}
.hero-mac {
  position: relative;
  width: min(92%, 720px);
  margin: 0 auto;
  z-index: 1;
  transform: translateZ(0);
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(155deg, rgba(134,190,242,.18), rgba(134,190,242,.04) 30%, rgba(6,19,32,.94) 65%);
  border: 1px solid rgba(134,190,242,.22);
  box-shadow: 0 50px 90px -36px rgba(2,8,18,.9), 0 10px 28px rgba(0,0,0,.35);
}
[data-theme="light"] .hero-mac {
  background: linear-gradient(155deg, rgba(134,190,242,.25), rgba(255,255,255,.95) 55%);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.hero-mac-chrome {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px 8px;
}
.hero-mac-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.28);
}
.hero-mac-dot:nth-child(1) { background: #FF5F57; }
.hero-mac-dot:nth-child(2) { background: #FEBC2E; }
.hero-mac-dot:nth-child(3) { background: #28C840; }
.hero-mac-url {
  margin-left: 8px;
  flex: 1;
  height: 20px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,.55);
}
[data-theme="light"] .hero-mac-url {
  background: var(--surface-alt);
  color: var(--ink-tertiary);
}
.hero-mac-screen {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: #F8FBFF;
  min-height: 320px;
  color: #0F2440;
}
.hero-mac-side {
  width: 132px;
  flex: none;
  background: #fff;
  border-right: 1px solid #E2EAF3;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
  color: #41566F;
}
.hero-mac-side span { padding: 6px 8px; border-radius: 8px; }
.hero-mac-side .is-active { background: #E7F2FD; color: #1573C6; font-weight: 600; }
.hero-mac-brand {
  display: flex; align-items: center; gap: 6px;
  padding: 2px 6px 12px;
  font-size: 12px; font-weight: 700; color: #0F2440;
}
.hero-mac-main {
  flex: 1; min-width: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F8FBFF;
}
.hero-mac-main header {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-mac-main header strong { font-size: 16px; font-weight: 700; }
.hero-mac-main header em { font-style: normal; font-size: 11px; color: #5E7187; }
.hero-mac-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-mac-kpis > div {
  background: #fff;
  border: 1px solid #E2EAF3;
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-mac-kpis span { font-size: 10px; color: #5E7187; }
.hero-mac-kpis b { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.hero-mac-kpis i { font-style: normal; font-size: 10px; font-weight: 600; }
.hero-mac-kpis .good, .hero-metric .good, .hero-phone-body .good { color: #0CA86C; }
.hero-mac-kpis .bad, .hero-mac-kpis .warn, .hero-metric .bad, .hero-phone-body .bad { color: #C58209; }
.hero-mac-kpis b.warn { color: #C58209; }
.hero-mac-charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  flex: 1;
}
.hero-mac-chart, .hero-mac-bars {
  background: #fff;
  border: 1px solid #E2EAF3;
  border-radius: 10px;
  padding: 10px;
}
.hero-mac-chart span, .hero-mac-bars span { font-size: 11px; font-weight: 600; color: #0F2440; }
.hero-mac-chart svg { width: 100%; height: 72px; margin-top: 6px; display: block; }
.hero-mac-bars {
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
}
.hero-mac-bars > div {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  color: #5E7187;
}
.hero-mac-bars i {
  display: block; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, #1E8FEC, #1E8FEC) left / var(--w, 40%) 100% no-repeat,
    #E9F1FB;
}
.hero-mac-bars b { font-variant-numeric: tabular-nums; color: #C58209; font-size: 10px; }

.hero-phone {
  position: absolute;
  left: max(0%, calc(50% - 430px));
  bottom: 12px;
  width: 168px;
  z-index: 3;
  padding: 8px;
  border-radius: 34px;
  background: linear-gradient(160deg, #234769, #08192C 60%);
  border: 1px solid #2C4E76;
  box-shadow: 0 40px 70px -28px rgba(2,8,18,.92);
  transform: translateZ(140px) rotateY(6deg);
}
.hero-phone-island {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 18px; border-radius: 999px; background: #000; z-index: 2;
}
.hero-phone-body {
  border-radius: 28px;
  overflow: hidden;
  background: #F8FBFF;
  color: #0F2440;
  padding: 28px 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 340px;
}
.hero-phone-top {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
}
.hero-phone-hi { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.hero-metric {
  background: #fff;
  border: 1px solid #E2EAF3;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 1px;
}
.hero-metric span { font-size: 9px; color: #5E7187; font-weight: 500; }
.hero-metric strong { font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.hero-metric em { font-style: normal; font-size: 9px; line-height: 1.35; }
.hero-phone-coach {
  margin-top: auto;
  border: 1px solid #CFD4F4;
  background: #EFF0FE;
  border-radius: 10px;
  padding: 8px 10px;
}
.hero-coach-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: linear-gradient(122deg, #5B6CF5, #0C9FAB);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-phone-coach p { margin: 4px 0 0; font-size: 10px; line-height: 1.4; color: #0F2440; }

.hero-coach-pop {
  position: absolute;
  right: max(0%, calc(50% - 400px));
  bottom: 36px;
  width: min(280px, 42%);
  z-index: 4;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(30,48,85,.92);
  border: 1px solid #2C3C73;
  box-shadow: 0 36px 60px -24px rgba(2,8,18,.95);
  backdrop-filter: blur(12px);
  transform: translateZ(200px) rotateY(-4deg);
  color: #F2F7FD;
}
.hero-coach-pop-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-coach-mark {
  width: 20px; height: 20px; border-radius: 7px;
  display: grid; place-items: center;
  background: linear-gradient(122deg, #5B6CF5, #0C9FAB);
  color: #0F2440; font-size: 11px;
}
.hero-coach-pop-head span:nth-child(2) {
  background: linear-gradient(122deg, #5B6CF5, #0C9FAB);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-coach-pop-head em {
  margin-left: auto; font-style: normal;
  font-size: 9px; padding: 2px 7px; border-radius: 999px;
  background: #27386B; border: 1px solid #2C3C73; color: #A5AEFB;
}
.hero-coach-pop > p {
  margin: 8px 0 10px; font-size: 12px; line-height: 1.5; color: #F2F7FD;
}
.hero-coach-actions {
  display: flex; gap: 8px; padding-top: 8px; border-top: 1px solid #2C3C73;
}
.hero-coach-actions span {
  height: 26px; padding: 0 10px; border-radius: 6px;
  display: inline-flex; align-items: center;
  background: #8893FA; color: #0F2440; font-size: 11px; font-weight: 600;
}
.hero-coach-actions .ghost {
  background: transparent; color: #A5AEFB; font-weight: 500;
}

.how-section {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 40px);
}
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.how-steps li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.how-steps .step {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--link);
}
.how-steps strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.how-steps span:not(.step) { font-size: 12px; line-height: 1.45; color: var(--ink-secondary); }

.demo-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(8px);
}
.demo-modal[hidden] { display: none !important; }
.demo-modal-panel {
  position: relative;
  width: min(960px, 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: var(--shadow-lg);
}
.demo-modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.55); color: #fff; cursor: pointer;
}
.demo-modal-video { width: 100%; display: block; aspect-ratio: 16 / 9; background: #000; }

@media (max-width: 900px) {
  .hero-phone, .hero-coach-pop { display: none; }
  .hero-mac { width: min(100%, 640px); }
  .device-stage { min-height: 0; }
  .how-steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-mac-side { display: none; }
  .hero-mac-kpis { grid-template-columns: 1fr; }
  .hero-mac-charts { grid-template-columns: 1fr; }
}


/* —— Polish pass: partners, how progression, impact stack, quotes, product video, ovals —— */
.trusted-pill { width: 180px; opacity: 1; gap: 8px; }
.trusted-pill-face,
a.trusted-pill-face {
  width: 180px;
  height: 48px;
  padding: 0 16px;
  box-sizing: border-box;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--brand-tint-bg);
  border: 1px solid var(--brand-tint-border);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
[data-theme="light"] .trusted-pill-face,
[data-theme="light"] a.trusted-pill-face {
  background: #fff;
  border-color: var(--brand-tint-border);
  box-shadow: 0 0 0 1px rgba(30,143,236,.12), var(--shadow-xs);
}
.trusted-pill-primary .trusted-pill-face {
  height: 48px;
  padding: 0 16px;
}
.trusted-pill-cap { font-size: 11px; max-width: 180px; }
.trusted-img-wide { height: 22px; max-width: 132px; filter: none; opacity: .95; }
.trusted-img-wide.amazon { height: 22px; max-width: 100px; }
.trusted-img-wide.projxon { height: 20px; max-width: 128px; }
.trusted-img-wide.rsna { height: 22px; max-width: 138px; }
[data-theme="light"] .trusted-img-wide.projxon,
[data-theme="light"] .trusted-img-wide.rsna { filter: invert(1); }

.how-section { position: relative; }
.how-steps {
  position: relative;
  gap: 0;
}
.how-steps li {
  position: relative;
  margin: 0 6px;
}
.how-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-tint-border), rgba(30,143,236,.55));
  z-index: 1;
}
.how-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--link);
  box-shadow: 0 0 0 4px var(--brand-tint-bg);
  z-index: 2;
}
@media (max-width: 900px) {
  .how-steps li:not(:last-child)::before,
  .how-steps li:not(:last-child)::after { display: none; }
  .how-steps { gap: 12px; }
}

.impact-stats {
  gap: 14px !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}
.impact-stats article,
.impact-ticker {
  border-right: 0 !important;
  border-left: 0 !important;
}
.impact-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.impact-stack p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}
.impact-stack .good { color: var(--metric-realized, #0CA86C); }
.impact-stack .bad { color: var(--metric-unrealized, #E05A5A); }
.impact-head .title { text-wrap: balance; }

.t-quote-bubble {
  margin-top: 8px;
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-sizing: border-box;
}
.t-phone .t-quote-teaser {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.45;
  font-style: italic;
  color: rgba(255,255,255,.92);
  text-align: left;
  width: 100%;
  display: block;
}

.product-demo-stage {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.product-video-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.product-video-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.product-video-dots {
  display: inline-flex;
  gap: 5px;
}
.product-video-dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-hover);
  display: block;
}
.product-video-dots i:nth-child(1) { background: #FF5F57; }
.product-video-dots i:nth-child(2) { background: #FEBC2E; }
.product-video-dots i:nth-child(3) { background: #28C840; }
.product-video-title {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-secondary);
  text-align: center;
}
.product-video-link {
  border: 0;
  background: transparent;
  color: var(--link);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.product-inline-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}
.product-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.product-footnote {
  margin: 0;
  font-size: 12px;
  color: var(--ink-tertiary);
  text-align: center;
}

.pricing-grid .btn-pill-apply,
.pricing-grid .btn-pill-demo,
.pricing-actions .btn-pill-apply,
.pricing-actions .btn-pill-demo {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  text-decoration: none;
  box-sizing: border-box;
}
.pricing-grid .btn-block {
  width: 100%;
}
.site-footer-partners img.footer-logo-orkaos {
  max-height: 56px;
  max-width: 120px;
  border-radius: 0;
}

/* Theme-aware partner marks */
.partner-mark-light { display: none !important; }
.partner-mark-dark { display: block !important; }
[data-theme="light"] .partner-mark-light { display: block !important; }
[data-theme="light"] .partner-mark-dark { display: none !important; }
a.trusted-pill-face { gap: 0; }
a.trusted-pill-face .partner-mark-light,
a.trusted-pill-face .partner-mark-dark { margin: 0; }
[data-theme="light"] .trusted-img-wide.projxon,
[data-theme="light"] .trusted-img-wide.rsna { filter: none; }
.site-footer-partners a[href*="projxon"] img,
.site-footer-partners a[href*="rsna"] img { filter: none; }
[data-theme="light"] .site-footer-partners a[href*="projxon"] img,
[data-theme="light"] .site-footer-partners a[href*="rsna"] img { filter: none; }

/* —— Production pass: dark site chrome, light product UIs, density —— */

/* Product surfaces stay light regardless of site theme */
.app-tile,
.orbit-item img,
.ws-tile {
  background: #FFFFFF !important;
  border-color: #E2EAF3 !important;
  color: #0F2440;
}
.app-tile strong { color: #0F2440 !important; }
.app-tile span { color: #5E7187 !important; }

.process-phone {
  background: linear-gradient(165deg, #F8FBFF 0%, #EEF4FB 100%) !important;
  border: 1px solid #D7E4F2 !important;
  box-shadow: 0 18px 40px -24px rgba(15, 36, 64, 0.35), inset 0 0 0 1px rgba(255,255,255,.8) !important;
  color: #0F2440 !important;
}
.process-phone.accent {
  background: linear-gradient(165deg, #F4F7FF 0%, #EAF1FB 100%) !important;
  border-color: #C9D9EC !important;
}
.process-notch { background: #0F2440; }
.process-step { color: #1573C6 !important; }
.process-phone h3 { color: #0F2440 !important; }
.process-phone > p { color: #5E7187 !important; }
.process-tag {
  background: #E7F2FD !important;
  border-color: #B7D6F5 !important;
  color: #1573C6 !important;
}
.process-bars {
  background: #FFFFFF !important;
  border: 1px solid #E2EAF3;
}
.process-bars span,
.process-bars b { color: #41566F; }
.process-bars i {
  background: #E9F1FB !important;
}
.process-ops,
.process-next {
  background: #FFFFFF;
  border: 1px solid #E2EAF3;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-ops div,
.process-next div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #0F2440;
  padding: 8px 10px;
  border-radius: 8px;
  background: #F8FBFF;
  border: 1px solid #E9F1FB;
}
.process-ops span,
.process-next span { color: #0CA86C; font-weight: 700; white-space: nowrap; }

/* Partner optical balance */
.trusted-img-wide.projxon { height: 16px !important; max-width: 112px !important; opacity: 0.95; }
.trusted-img-wide.amazon { height: 20px !important; max-width: 96px !important; }
.trusted-img-wide.rsna { height: 20px !important; max-width: 128px !important; }
.trusted-pill-row { gap: 18px !important; }
.hero-partners { margin-top: 8px; }

/* Hero breathing room */
.hero-theater {
  gap: clamp(20px, 3vw, 32px);
}
.how-section {
  gap: clamp(28px, 4vw, 40px);
}
.section-partners {
  width: 100%;
  margin: 0;
  padding: 4px 0 8px;
}
.section-partners .trusted-pill-row {
  justify-content: center;
}
.device-stage {
  min-height: 500px;
  padding-bottom: 56px;
}
.hero-mac {
  width: min(90%, 700px);
}
.hero-phone {
  left: max(2%, calc(50% - 450px));
  width: 176px;
}
.hero-coach-pop {
  right: max(2%, calc(50% - 460px));
}

/* How-it-works density */
.how-steps {
  gap: 10px !important;
}
.how-steps li {
  margin: 0 10px !important;
  padding: 18px 14px !important;
  min-height: 148px;
}

.pricing-section { gap: 48px; }

/* Impact / pricing rhythm */
.impact-stats {
  gap: 18px !important;
}
.pricing-grid {
  gap: 20px;
}

/* Single apps marquee */
.apps-marquee-section .apps-marquee + .apps-marquee { display: none; }
.app-tile {
  min-width: 210px;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 20px -16px rgba(15,36,64,.35);
}

/* Mobile: keep atmosphere, simplify devices */
@media (max-width: 900px) {
  .hero-phone,
  .hero-coach-pop { display: none; }
  .hero-mac {
    width: min(100%, 640px);
    transform: none;
  }
  .device-stage {
    min-height: 0;
    padding-bottom: 24px;
  }
  .ocean-hero-video {
    opacity: 0.42;
    height: 58%;
  }
  .ocean-grid { opacity: 0.45; }
  .ocean-sonar-rings { opacity: 0.5; width: min(110vw, 720px); }
  .process-phones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .trusted-pill-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .process-phones { grid-template-columns: 1fr; }
  .how-steps li { min-height: 0; }
  .hero-copy .display { font-size: clamp(28px, 8vw, 36px); }
}

/* UX mini product surfaces stay light on dark chrome */
.ux-card {
  gap: 14px;
}
.ux-visual {
  background: #F8FBFF !important;
  border: 1px solid #E2EAF3 !important;
  border-radius: 12px;
  min-height: 96px;
}
.ux-kpi-mini,
.ux-list-mini,
.ux-chat-mini {
  background: #FFFFFF;
  border: 1px solid #E9F1FB;
  color: #0F2440;
}
.ux-kpi-mini b,
.ux-chat-mini .q { color: #0F2440; }
.ux-kpi-mini i,
.ux-list-mini span,
.ux-chat-mini .a { color: #5E7187; }
.ux-list-mini .off { color: #C58209; }
.ux-list-mini .on { color: #0CA86C; }

/* —— Feedback pass 16: nav, partners, impact, loop, faq, apply, pod, footer —— */
.theme-switch {
  width: 52px;
  height: 28px;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.theme-thumb {
  top: 50% !important;
  left: 3px !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  transition: left 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-switch[aria-checked="true"] .theme-thumb {
  left: calc(100% - 25px) !important;
}

/* Always-white partner ovals */
.pill-white,
.trusted-pill-face.pill-white,
a.trusted-pill-face.pill-white {
  background: #FFFFFF !important;
  border: 1px solid rgba(15, 36, 64, 0.1) !important;
  color: #0F2440 !important;
  box-shadow: 0 6px 18px -12px rgba(2, 8, 18, 0.45) !important;
  gap: 8px;
}
.pill-white span { color: #0F2440 !important; white-space: nowrap; }
.trusted-img-wide.projxon { height: 22px !important; max-width: 148px !important; }
.trusted-img-wide.rsna { height: 26px !important; max-width: 168px !important; }
.trusted-img-wide.amazon { height: 20px !important; max-width: 100px !important; }
/* White-on-black assets → ink on white pills (both themes) */
.pill-white img.ink-on-white,
.footer-pill img.ink-on-white {
  filter: invert(1) !important;
}
.trusted-pill-face.pill-white {
  flex-direction: row !important;
  flex-wrap: nowrap;
  width: auto;
  min-width: 180px;
  max-width: none;
  padding: 0 18px;
}
.trusted-pill-primary .trusted-pill-face.pill-white {
  gap: 10px;
}
.pill-link {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.pill-link:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 143, 236, 0.55) !important;
  box-shadow: 0 10px 28px -14px rgba(30, 143, 236, 0.65) !important;
}
.partner-mark-light { display: none !important; }

/* Impact breathing room + green-up scheme */
.impact-stats {
  gap: 20px !important;
  align-items: stretch;
}
.impact-ticker {
  padding: 28px 24px !important;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px !important;
  justify-content: flex-start;
}
.impact-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--link);
}
.impact-delta,
.impact-delta.lost {
  color: #0CA86C !important;
  font-size: clamp(28px, 3vw, 36px) !important;
}
.impact-stack {
  gap: 8px !important;
  margin-top: 4px;
}
.impact-stack .good { color: #0CA86C; font-size: 15px; }
.impact-stack .unreal,
.impact-stack .bad {
  color: #D94B4B !important;
  font-weight: 600 !important;
  font-size: 14px;
}
.impact-ticker h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* Dual marquee restore — track-right uses marqueeReverse keyframes already */
.apps-marquee-section .apps-marquee + .apps-marquee { display: block; }

/* Combined weekly loop */
.loop-flow {
  width: 100%;
  max-width: 1248px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.loop-stage {
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loop-stage-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-tint-bg);
  border: 1px solid var(--brand-tint-border);
  color: var(--link);
  font-size: 12px;
  font-weight: 700;
}
.loop-stage h3 { margin: 0; font-size: 16px; }
.loop-stage > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-secondary);
}
.ux-visual.compact {
  min-height: 0;
  padding: 12px;
  margin-top: auto;
}
.loop-subhead { margin-top: 12px; }

/* FAQ tiles */
.faq-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.faq-tile {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
}
.faq-tile summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-tile summary::-webkit-details-marker { display: none; }
.faq-tile summary::after {
  content: "+";
  color: var(--link);
  font-weight: 700;
}
.faq-tile[open] summary::after { content: "–"; }
.faq-tile p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-secondary);
}

/* Apply split */
.apply-form.apply-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 20px 22px 22px;
}
.apply-select-col,
.apply-type-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.apply-select-col {
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.apply-form .btn-pill-apply.apply-submit-sm,
.apply-form.apply-split .apply-submit-sm {
  width: auto;
  align-self: center;
  min-width: 0;
  max-width: 220px;
  padding: 0 22px;
  height: 44px;
  font-size: 15px;
}
.apply-submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}
.apply-submit-row .apply-footnote {
  margin: 0;
  text-align: center;
}

/* Pod open (no black box) — theme-aware copy */
.pod-panel.pod-open,
.pod-section .pod-panel.pod-open {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 12px 8px;
}
.pod-section .pod-panel.pod-open h2 {
  color: var(--ink) !important;
}
.pod-section .pod-panel.pod-open .lede {
  color: var(--ink-secondary) !important;
}
.pod-section .pod-panel.pod-open .pod-note {
  color: var(--ink-tertiary) !important;
}
.pod-section .pod-panel.pod-open .eyebrow {
  color: var(--link);
}
.depth-topo { display: none !important; }
.depth-sonar {
  border-radius: 50%;
  aspect-ratio: 1;
  width: min(70vw, 640px);
  bottom: 22%;
}

/* Footer logos inline white pills */
.footer-compact { gap: 32px; }
.footer-logos-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-start;
}
.footer-pill {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(15,36,64,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.footer-pill img {
  display: block;
  max-height: 18px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
}
.footer-pill .footer-projxon { max-height: 20px; max-width: 128px; }
.footer-pill .footer-rsna { max-height: 24px; max-width: 140px; }
.footer-pill .footer-logo-orkaos { max-height: 22px; max-width: 72px; }
.footer-pill.pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(30,143,236,.6);
}
.footer-powered {
  color: #FFFFFF !important;
  font-weight: 700;
  text-decoration: none;
}
.footer-powered:hover { text-decoration: underline; }
[data-theme="light"] .footer-powered { color: var(--link) !important; }

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 8px;
}
.pricing-actions .btn-pill-demo,
.pricing-actions .btn-pill-compare {
  border-radius: 999px;
  height: 44px;
  min-width: 168px;
  padding: 0 18px;
  box-sizing: border-box;
  text-decoration: none;
  justify-content: center;
}
.btn-pill-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid #5BA8D4;
  background: rgba(91, 168, 212, 0.22);
  color: #D7EFFA;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 0 4px rgba(91, 168, 212, 0.12);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.btn-pill-compare:hover {
  background: rgba(91, 168, 212, 0.24);
  border-color: #7BC0E4;
  color: #E8F6FC;
}
[data-theme="light"] .btn-pill-compare {
  background: rgba(62, 130, 168, 0.1);
  border-color: #3E82A8;
  color: #1F5F82;
}
[data-theme="light"] .btn-pill-compare:hover {
  background: rgba(62, 130, 168, 0.18);
  border-color: #2F6F96;
  color: #0F4A68;
}
[data-estimate-contact][hidden] {
  display: none !important;
}
.device-follow-section {
  padding-top: 8px;
}

@media (max-width: 900px) {
  .loop-flow { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .apply-form.apply-split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .loop-flow { grid-template-columns: 1fr; }
}

/* —— Conversion craft: viewport-fit modals, compact apply, oval CTAs —— */
.plans-modal {
  padding: 16px;
  align-items: center;
}
.plans-modal-panel {
  width: min(100%, 880px);
  max-height: min(92dvh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.plans-modal-head {
  margin-bottom: 0;
  flex: none;
}
.plans-modal-head h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
}
.plans-modal-head p {
  max-width: none;
  font-size: 13px;
  color: var(--ink-secondary);
}
.estimate-panel { max-width: 760px; }
.compare-panel { max-width: 860px; }
.estimate-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
  min-height: 0;
  flex: 1;
}
.price-controls.in-modal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.price-control-block { gap: 8px; }
.price-control-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
}
.billing-toggle button,
.org-size-toggle button {
  border-radius: 999px;
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
}
.estimate-result {
  margin-top: 0;
  justify-content: center;
  min-height: 0;
}
.estimate-amount { font-size: clamp(32px, 4vw, 40px); }
.compare-wrap.in-modal {
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th,
.compare-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  background: var(--surface-alt);
}
.compare-table tr:last-child td { border-bottom: 0; }

.demo-modal {
  padding: 16px;
}
.demo-modal-panel {
  width: min(920px, 100%);
  max-height: min(92dvh, 820px);
}

/* Apply: banner + dense form (no empty left column) */
.apply-card {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}
.apply-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.apply-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apply-banner-copy .title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
}
.apply-banner-copy .body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-secondary);
}
.apply-assurances {
  margin: 0;
  gap: 8px;
  justify-content: center;
}
.apply-form {
  border-left: 0;
  padding: 20px 22px 22px;
  gap: 14px;
  background: var(--canvas-deep);
}
.apply-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.apply-form-grid .field-span { grid-column: 1 / -1; }
.apply-form .caption { margin: 0; }
.price-rule {
  height: 1px;
  background: var(--border);
}
.price-cta { margin-top: 0; }
.price-cta-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  width: min(220px, calc(100% - 36px)) !important;
  max-width: 220px !important;
  height: 42px !important;
  margin: 0 !important;
  z-index: 4;
  box-shadow: 0 12px 28px -10px rgba(30, 143, 236, 0.65);
}
.pricing-grid {
  padding-top: 28px !important;
  gap: 20px;
}
.footer-powered {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}
.footer-powered:hover { text-decoration: underline; }

/* —— Pass 17: nav oval, hero orbit, logos, spacing —— */
.nav-links a.is-active,
.nav-brand.is-active {
  background: rgba(148, 176, 210, 0.32) !important;
  color: var(--ink) !important;
  box-shadow: inset 0 0 0 1px rgba(134, 190, 242, 0.28);
}
[data-theme="light"] .nav-links a.is-active,
[data-theme="light"] .nav-brand.is-active {
  background: rgba(21, 115, 198, 0.18) !important;
  box-shadow: inset 0 0 0 1px rgba(21, 115, 198, 0.28);
  color: #0F2440 !important;
}

.hero-theater {
  position: relative;
  max-width: 1180px;
  min-height: min(86dvh, 780px);
  padding: clamp(108px, 12vw, 132px) clamp(20px, 4vw, 40px) clamp(40px, 5vw, 64px);
  justify-content: center;
  gap: clamp(20px, 3vw, 32px);
}
.hero-orbit-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 48%, #000 42%, rgba(0,0,0,0.55) 62%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 48%, #000 42%, rgba(0,0,0,0.55) 62%, transparent 78%);
}
.hero-orbit-ring {
  position: absolute;
  width: min(92%, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(134, 190, 242, 0.18);
}
.hero-orbit-ring-2 {
  width: min(72%, 560px);
  opacity: 0.55;
}
.hero-orbit-cloud {
  position: absolute;
  width: min(88%, 680px);
  aspect-ratio: 1;
}
.hero-orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  margin: -28px 0 0 -28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: rotate(calc(var(--i) * 36deg)) translateY(calc(-1 * min(34vw, 300px))) rotate(calc(var(--i) * -36deg));
  animation: heroOrbitItem 64s linear infinite;
}
.hero-orbit-item img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px -16px rgba(2, 8, 18, 0.7);
  object-fit: contain;
  padding: 4px;
  box-sizing: border-box;
}
.hero-orbit-item img.orbit-gemini-lg {
  width: 44px;
  height: 44px;
}
.hero-orbit-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(234, 241, 250, 0.78);
  text-shadow: 0 1px 8px rgba(2, 8, 18, 0.55);
  white-space: nowrap;
}
@keyframes heroOrbitItem {
  to {
    transform: rotate(calc(var(--i) * 36deg + 360deg)) translateY(calc(-1 * min(34vw, 300px))) rotate(calc(var(--i) * -36deg - 360deg));
  }
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  isolation: isolate;
}
.hero-copy::before {
  content: none;
  display: none;
}
@media (max-width: 900px) {
  .hero-orbit-stage {
    opacity: 0.28;
    -webkit-mask-image: radial-gradient(ellipse 78% 70% at 50% 42%, #000 18%, rgba(0,0,0,0.35) 48%, transparent 72%);
    mask-image: radial-gradient(ellipse 78% 70% at 50% 42%, #000 18%, rgba(0,0,0,0.35) 48%, transparent 72%);
  }
  .hero-orbit-item {
    --orbit-r: min(48vw, 200px);
    width: 36px;
    margin: -18px 0 0 -18px;
    transform: rotate(calc(var(--i) * 36deg)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--i) * -36deg));
    animation: heroOrbitItem 90s linear infinite;
  }
  @keyframes heroOrbitItem {
    to {
      transform: rotate(calc(var(--i) * 36deg + 360deg)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--i) * -36deg - 360deg));
    }
  }
  .hero-orbit-item img { width: 28px; height: 28px; border-radius: 8px; padding: 3px; }
  .hero-orbit-item img.orbit-gemini-lg { width: 32px; height: 32px; }
  .hero-orbit-item span { display: none; }
}
@media (max-width: 639px) {
  .hero-orbit-stage {
    opacity: 0.22;
  }
  .hero-orbit-item {
    --orbit-r: min(46vw, 168px);
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orbit-item { animation: none; }
}

/* Partner logos: PROJXON ≈ Google Workspace weight; Amazon larger */
.trusted-pill-face.pill-white {
  min-height: 48px;
}
.trusted-img-wide.projxon {
  height: 30px !important;
  max-width: 190px !important;
}
.trusted-img-wide.amazon {
  height: 30px !important;
  max-width: 148px !important;
}
.trusted-img-wide.rsna {
  height: 30px !important;
  max-width: 188px !important;
}
.trusted-pill-face.pill-white {
  min-height: 52px;
  padding: 0 20px !important;
}

/* Tighter vertical rhythm + breathing room on sides */
.section {
  padding: clamp(40px, 5.5vw, 64px) clamp(24px, 5.5vw, 56px) !important;
  gap: clamp(16px, 2.4vw, 28px) !important;
}
.section-head {
  gap: 8px !important;
  margin-bottom: 0;
  max-width: 820px;
}
.section-head .lede {
  margin-top: 0;
}
.process-phones {
  gap: 14px !important;
  max-width: 1200px;
}
.process-phone {
  min-height: 0 !important;
  padding: 24px 16px 18px !important;
  gap: 10px !important;
}
.how-steps {
  gap: 10px !important;
}
.impact-stats {
  gap: 14px !important;
}
.faq-grid {
  gap: 10px !important;
  margin-top: 4px;
}
.apps-marquee-section {
  padding-top: clamp(28px, 4vw, 40px) !important;
  padding-bottom: clamp(28px, 4vw, 40px) !important;
}
.ecosystem-section .orbit-claims {
  margin-top: 8px;
}
.how-section,
.device-follow-section,
.product-section,
.impact-block,
.apps-marquee-section,
.ecosystem-section,
.loop-section,
.pricing-section,
.pod-section {
  scroll-margin-top: 88px;
}
.loop-flow { display: none !important; }
.loop-subhead { display: none !important; }

/* —— Pass 18 —— */
.nav-brand {
  padding: 6px 12px;
  border-radius: 999px;
}
.theme-switch {
  width: 44px !important;
  height: 24px !important;
  background: rgba(200, 212, 226, 0.55) !important;
  border-color: rgba(148, 168, 192, 0.35) !important;
  opacity: 0.88;
}
.theme-thumb {
  width: 18px !important;
  height: 18px !important;
  left: 3px !important;
}
.theme-switch[aria-checked="true"] .theme-thumb {
  left: calc(100% - 21px) !important;
}
.theme-icon-moon,
.theme-icon-sun {
  font-size: 10px !important;
  opacity: 0.55;
}

.hero-orbit-ring,
.hero-orbit-ring-2 { display: none !important; }
.hero-orbit-item {
  --orbit-r: min(48vw, 420px);
  transform: rotate(calc(var(--i) * 36deg)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--i) * -36deg));
  animation-name: heroOrbitItemWide;
  z-index: 0;
}
@keyframes heroOrbitItemWide {
  to {
    transform: rotate(calc(var(--i) * 36deg + 360deg)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--i) * -36deg - 360deg));
  }
}
@media (max-width: 900px) {
  .hero-orbit-item { --orbit-r: min(50vw, 260px); }
}
[data-theme="light"] .hero-orbit-item span {
  color: rgba(15, 36, 64, 0.72);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.65);
}

.trusted-img-wide.projxon {
  height: 38px !important;
  max-width: 210px !important;
}

.impact-kicker-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 12px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #0F2440 !important;
  border: 1px solid rgba(15, 36, 64, 0.08);
  letter-spacing: 0.06em;
  width: fit-content;
  margin: 0 auto 4px;
}

.t-phone {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  padding-bottom: 20px !important;
}
.t-phone:hover,
.t-phone:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 40px -24px rgba(30, 143, 236, 0.55);
  border-color: rgba(134, 190, 242, 0.45);
}
.t-phone::after { content: none !important; display: none !important; }
.t-phone-cta { display: none !important; }
.t-phone .t-quote-bubble {
  margin-top: 6px !important;
  margin-bottom: auto;
}
.t-phone .t-quote-teaser {
  margin-top: 0 !important;
}

.faq-tone-blue { border-color: rgba(30, 143, 236, 0.35) !important; background: linear-gradient(180deg, rgba(30,143,236,.12), var(--surface)) !important; }
.faq-tone-green { border-color: rgba(12, 168, 108, 0.35) !important; background: linear-gradient(180deg, rgba(12,168,108,.12), var(--surface)) !important; }
.faq-tone-tan { border-color: rgba(197, 130, 9, 0.35) !important; background: linear-gradient(180deg, rgba(197,130,9,.12), var(--surface)) !important; }
.faq-tone-coral { border-color: rgba(216, 90, 74, 0.35) !important; background: linear-gradient(180deg, rgba(216,90,74,.12), var(--surface)) !important; }
.faq-tone-blue summary::after { color: #1E8FEC; }
.faq-tone-green summary::after { color: #0CA86C; }
.faq-tone-tan summary::after { color: #C58209; }
.faq-tone-coral summary::after { color: #D85A4A; }
[data-theme="light"] .faq-tone-blue {
  border-color: rgba(21, 115, 198, 0.4) !important;
  background: linear-gradient(180deg, rgba(30,143,236,.1), #FFFFFF) !important;
}
[data-theme="light"] .faq-tone-green {
  border-color: rgba(12, 168, 108, 0.4) !important;
  background: linear-gradient(180deg, rgba(12,168,108,.1), #FFFFFF) !important;
}
[data-theme="light"] .faq-tone-tan {
  border-color: rgba(197, 130, 9, 0.42) !important;
  background: linear-gradient(180deg, rgba(197,130,9,.1), #FFFFFF) !important;
}
[data-theme="light"] .faq-tone-coral {
  border-color: rgba(216, 90, 74, 0.42) !important;
  background: linear-gradient(180deg, rgba(216,90,74,.1), #FFFFFF) !important;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 22px 22px !important;
  overflow: visible;
}
.price-card.featured {
  padding-top: 28px !important;
}
.price-card .ribbon { display: none !important; }
.price-cta-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: calc(100% - 40px) !important;
  max-width: 220px;
  height: 40px !important;
  margin: 0 !important;
  z-index: 3;
  box-shadow: 0 10px 24px -12px rgba(30, 143, 236, 0.55);
}
.price-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding-top: 8px;
}
.price-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-card h3 { margin: 0; }
.price-card .blurb { margin: 6px 0 0; }
.pricing-grid {
  padding-top: 20px;
  align-items: stretch;
}

.apply-card-vivid .field-input,
.apply-card-vivid #os-domain,
.apply-card-vivid .field-control {
  background: #FFFFFF !important;
  color: #0F2440 !important;
  border: 1px solid rgba(15, 36, 64, 0.12) !important;
  border-radius: 12px;
}
.apply-card-vivid .field-input::placeholder,
.apply-card-vivid #os-domain::placeholder {
  color: #8A9BB0 !important;
}
.apply-card-vivid .field-control {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  min-height: 44px;
}
.apply-card-vivid .field-control input {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #0F2440 !important;
  flex: 1;
  min-width: 0;
}
.apply-card-vivid .field-lead { color: #5E7187; }
.apply-card-vivid .field-select {
  background: rgba(30, 143, 236, 0.16) !important;
  border: 1px solid rgba(30, 143, 236, 0.4) !important;
  color: var(--ink) !important;
  border-radius: 12px;
  font-weight: 600;
}
[data-theme="light"] .apply-card-vivid .field-select {
  background: #E7F2FD !important;
  color: #0F2440 !important;
  border-color: rgba(21, 115, 198, 0.35) !important;
}
.apply-card-vivid .apply-select-col {
  padding: 16px;
  border-radius: 16px;
  background: rgba(30, 143, 236, 0.1);
  border: 1px solid rgba(30, 143, 236, 0.22);
}
.apply-card-vivid .apply-type-col {
  padding: 16px;
  border-radius: 16px;
  background: rgba(12, 168, 108, 0.08);
  border: 1px solid rgba(12, 168, 108, 0.2);
}
.apply-card-vivid .seat-opt {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(134, 190, 242, 0.25);
}
.apply-card-vivid .seat-opt.is-selected {
  background: #1E8FEC;
  color: #0F2440;
  border-color: #1E8FEC;
}

.apply-card-vivid {
  border: 1px solid rgba(30, 143, 236, 0.35) !important;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(30,143,236,.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(12,168,108,.1), transparent 50%),
    var(--surface) !important;
  box-shadow: 0 24px 60px -36px rgba(30, 143, 236, 0.45) !important;
}
.apply-card-vivid .apply-banner {
  border-bottom: 1px solid rgba(134, 190, 242, 0.18);
  padding-bottom: 16px;
  margin-bottom: 8px;
}
[data-estimate-contact][hidden],
[data-estimate-continue][hidden] {
  display: none !important;
}

.pod-intake-panel { max-width: 480px; }
.pod-intake-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 4px 8px;
}

.footer-pill-gw {
  gap: 8px !important;
  padding: 0 16px !important;
}
.footer-pill-gw img { width: 18px; height: 18px; }
.footer-pill-gw span {
  font-size: 12px;
  font-weight: 700;
  color: #0F2440;
  white-space: nowrap;
}
.footer-pill .footer-projxon {
  max-height: 24px !important;
  max-width: 165px !important;
}
.footer-pill .footer-amazon {
  max-height: 22px;
  max-width: 110px;
}
.footer-pill-orkaos {
  gap: 8px !important;
  padding: 0 14px !important;
}
.footer-orka-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-pill .footer-logo-orkaos {
  max-height: 16px !important;
  max-width: 88px !important;
}

/* Device 3D stage restore */
.device-follow-section {
  overflow: visible;
}
.device-stage {
  min-height: 520px !important;
  perspective: 2800px !important;
  perspective-origin: 48% 40% !important;
}
.device-scene {
  min-height: 480px !important;
  transform: rotateX(8deg) rotateY(-4deg);
  transform-style: preserve-3d;
}
.hero-mac {
  transform: translateZ(40px);
  width: min(94%, 760px) !important;
}
.hero-phone {
  transform: translate3d(-18%, 8%, 120px) rotateY(12deg);
  z-index: 3;
}
.hero-coach-pop {
  transform: translate3d(18%, -10%, 80px);
}
.hero-mac-side .nav-group {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8AA0B8;
  pointer-events: none;
}
.hero-mac-main header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.hero-mac-ask {
  flex: none;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #E7F2FD;
  color: #1573C6;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.hero-meter {
  height: 6px;
  border-radius: 999px;
  background: #E2EAF3;
  overflow: hidden;
  margin-top: 8px;
}
.hero-meter i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, #1E8FEC, #3D9BF0);
  border-radius: inherit;
}
.hero-phone-hi em {
  font-style: normal;
  color: #5E7187;
  font-size: 12px;
}

.ecosystem-section .orbit-claims {
  margin-bottom: 20px;
  order: -1;
}

@media (max-width: 760px) {
  .estimate-layout { grid-template-columns: 1fr; }
  .apply-banner { grid-template-columns: 1fr; }
  .apply-form-grid { grid-template-columns: 1fr; }
  .plans-modal-panel {
    max-height: 94dvh;
    overflow: auto;
  }
  .hero-phone { transform: translate3d(0, 12%, 60px) rotateY(0); }
  .device-stage { min-height: 0 !important; }
}

/* —— Mobile polish: nav spy, pricing space, footer row, orbit —— */
.nav-spy-oval {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: min(42vw, 148px);
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
  background: rgba(134, 190, 242, 0.18);
  box-shadow: inset 0 0 0 1px rgba(134, 190, 242, 0.32);
  flex: 1 1 auto;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-spy-oval[hidden] {
  display: none !important;
}
[data-theme="light"] .nav-spy-oval {
  background: rgba(21, 115, 198, 0.14);
  box-shadow: inset 0 0 0 1px rgba(21, 115, 198, 0.28);
  color: #0F2440;
}
@media (max-width: 639px) {
  .nav-spy-oval:not([hidden]) {
    display: inline-flex;
  }
  .topbar {
    gap: 8px;
  }
  .nav-brand span {
    display: none;
  }
}

.site-footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  align-items: start;
}
@media (min-width: 900px) {
  .site-footer-grid.footer-compact {
    grid-template-columns: minmax(240px, 1.4fr) minmax(280px, 1fr);
    align-items: start;
  }
}

.phone-marquee-track {
  animation: none !important;
  will-change: auto;
}

@media (max-width: 720px) {
  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 40px;
    gap: 12px;
  }
  .pricing-actions .btn-pill-demo,
  .pricing-actions .btn-pill-compare {
    width: 100%;
    min-width: 0;
    height: 46px;
  }
  .pricing-grid {
    gap: 56px !important;
    padding-top: 36px !important;
  }
  .price-card {
    margin-top: 16px;
    padding-top: 40px !important;
  }
  .price-cta-overlay {
    top: 0 !important;
  }
  .orbit-stage {
    width: min(100%, 320px);
  }
  .orbit-item {
    --orbit-r: 126px;
  }
  .orbit-core {
    width: 104px;
    height: 104px;
  }
}
