/* ═══════════════════════════════════════════════════════════════
   Bridgefield Ops — redesign.css
   Apple Vision / Apple Intelligence aesthetic
   index.html ONLY — other pages keep style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Surfaces — warm-tinted near-black */
  --bg:        #050505;
  --bg-2:      #0A0A0A;
  --bg-3:      #131313;
  --bg-4:      #1E1E1E;

  /* Borders */
  --border:    rgba(255,255,255,0.06);
  --border-2:  rgba(255,255,255,0.10);
  --border-3:  rgba(201,169,97,0.25);

  /* Text */
  --text:      #F5F2EA;
  --text-2:    #8A8478;
  --text-3:    #4A463E;

  /* Gold */
  --gold:      #D4B36B;
  --gold-l:    #F5DC8E;
  --gold-d:    #A88B4A;
  --gold-glow: rgba(212,179,107,0.18);
  --gold-soft: rgba(212,179,107,0.05);
  --gold-soft2:rgba(212,179,107,0.08);

  /* Typography families */
  --fd: 'Geist', 'Inter Display', system-ui, sans-serif;
  --fb: 'Geist', 'Inter', system-ui, sans-serif;
  --fm: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --mw:        1280px;
  --mw-narrow: 880px;
  --nh:        72px;
  --r:         20px;
  --rs:        10px;
  --rxl:       28px;

  /* Type scale (CSS custom props, not used in shorthand but referenced) */
  --t-display-xl: clamp(48px, 7.6vw, 116px);
  --t-display-l:  clamp(40px, 6vw, 88px);
  --t-display-m:  clamp(24px, 3.5vw, 48px);
  --t-body-l:     clamp(17px, 1.3vw, 21px);
  --t-body:       16px;
  --t-mono-s:     12px;
  --t-eyebrow:    11px;

  /* Easing */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-o:      cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Transitions */
  --trans: 0.4s var(--ease);
  --trans-fast: 0.2s var(--ease-o);

  /* Material elevation system */
  --shadow-1: 0 1px 2px rgba(0,0,0,0.18);
  --shadow-2: 0 4px 12px rgba(0,0,0,0.22);
  --shadow-3: 0 12px 32px -4px rgba(0,0,0,0.32);
  --shadow-4: 0 32px 80px -16px rgba(0,0,0,0.45);
  /* Gold ambient glows */
  --shadow-gold-sm: 0 0 16px rgba(212,179,107,0.18);
  --shadow-gold-md: 0 8px 32px rgba(212,179,107,0.22);
  --shadow-gold-lg: 0 16px 56px rgba(212,179,107,0.28);
}

[data-theme="light"] {
  --bg:    #F5F2EA;
  --bg-2:  #ECE7DA;
  --bg-3:  #E0D9C8;
  --bg-4:  #D4CCB8;
  --text:   #0A0A0A;
  --text-2: #4A463E;
  --text-3: #8A8478;
  --border:   rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.12);
  --gold-soft: rgba(212,179,107,0.08);
  --gold-soft2:rgba(212,179,107,0.12);
  --shadow-1: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-2: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-3: 0 12px 32px -4px rgba(0,0,0,0.10);
  --shadow-4: 0 32px 80px -16px rgba(0,0,0,0.14);
  --shadow-gold-sm: 0 0 16px rgba(168,139,74,0.18);
  --shadow-gold-md: 0 8px 32px rgba(168,139,74,0.20);
  --shadow-gold-lg: 0 16px 56px rgba(168,139,74,0.24);
}

/* ─── RESET + BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  font-size: var(--t-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

/* Focus ring */
:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ─── CURSOR RING ────────────────────────────────────────────── */
#cursor-ring {
  position: fixed;
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-o), height 0.2s var(--ease-o),
              border-color 0.2s, opacity 0.3s, background 0.2s;
  mix-blend-mode: normal;
  opacity: 0;
}
#cursor-ring.is-visible { opacity: 1; }
#cursor-ring.is-hovering {
  width: 44px; height: 44px;
  background: var(--gold-soft);
  border-color: var(--gold-l);
}
@media (hover: none) { #cursor-ring { display: none; } }

/* ─── NOISE OVERLAY ──────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nh);
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(245,242,234,0.88);
}

.nav-in {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-mono { border-radius: 4px; }
.nav-wordmark {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-wordmark .accent { color: var(--gold); }

/* Dark/light logo switching */
.dark-logo  { display: block; }
.light-logo { display: none; }
[data-theme="light"] .dark-logo  { display: none; }
[data-theme="light"] .light-logo { display: block; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-family: var(--fm);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: var(--rs);
  position: relative;
  transition: color var(--trans-fast), background var(--trans-fast);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--border); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-login::after { content: none !important; }

/* Services dropdown */
.nav-item {
  position: relative;
}
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-trigger svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s;
}
.nav-item:hover .nav-trigger svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease-o), transform 0.2s var(--ease-o), visibility 0.2s;
  backdrop-filter: blur(20px);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: calc(var(--r) - 4px);
  color: var(--text-2) !important;
  font-size: 13px !important;
  font-family: var(--fb) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background 0.15s, color 0.15s !important;
}
.nav-dd-item:hover {
  background: var(--border);
  color: var(--text) !important;
}
.nav-dd-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--border);
  flex-shrink: 0;
  color: var(--gold);
}
.nav-dd-icon svg { width: 16px; height: 16px; }
.nav-dd-label { font-weight: 500; color: var(--text); font-size: 13px; margin-bottom: 2px; }
.nav-dd-desc  { font-size: 11px; color: var(--text-3); line-height: 1.4; font-family: var(--fb); }

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  color: var(--gold);
  border: 1px solid rgba(212,179,107,0.28);
  border-radius: var(--rs);
  background: rgba(212,179,107,0.05);
  margin-left: 6px;
  transition: background 0.2s var(--ease),
              color 0.2s var(--ease),
              border-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.nav-login:hover {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,179,107,0.30);
}
.nav-login:hover::after { display: none; }
.nav-login-icon { width: 13px; height: 13px; flex-shrink: 0; }

/* Right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--border); color: var(--text); }
.theme-toggle svg { width: 16px; height: 16px; }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-2);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--border); }
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: var(--nh);
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: var(--nh); right: 0;
  width: min(360px, 90vw);
  height: calc(100dvh - var(--nh));
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 100px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--rs);
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-soft); }
.mobile-menu .mm-sub {
  font-size: 10px;
  letter-spacing: 0.10em;
  padding-left: 32px;
  color: var(--text-3);
  border-left: 1px solid var(--border-2);
  margin-left: 24px;
  border-radius: 0;
}
.mobile-menu .mm-sub:hover { color: var(--gold); border-left-color: var(--gold-d); }
.mm-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 16px;
}
.mm-login {
  display: flex;
  align-items: center;
}
.mm-cta {
  margin-top: auto;
  padding-top: 16px;
}
.mm-cta .btn-primary {
  color: #050505;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Float CTA */
.float-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  pointer-events: none;
  display: none;
}
.float-cta-inner {
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .float-cta {
    bottom: 70px;
  }
}
@media (max-width: 768px) {
  #voiceflow-chat {
    bottom: 8px !important;
    right: 8px !important;
  }
}
.float-cta.is-visible { pointer-events: auto; }
.float-cta .btn-full { pointer-events: auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fb);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background var(--trans-fast), color var(--trans-fast),
              border-color var(--trans-fast), transform 0.2s var(--ease-spring),
              box-shadow 0.2s var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: transparent;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  pointer-events: none;
}
.btn:hover {
  color: var(--text);
  border-color: var(--border-2);
  background: var(--border);
  transform: translateY(-1px);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  color: #050505;
  box-shadow: 0 0 28px var(--gold-glow);
}
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* Magnetic button */
.btn-magnetic {
  position: relative;
  will-change: transform;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--gold);
  position: relative;
  transition: gap 0.3s var(--ease), color 0.2s;
}
.link-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
/* Apple-style underline that draws in from the left on hover */
.link-arrow > span:first-child,
.link-arrow {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: gap 0.3s var(--ease), color 0.2s, background-size 0.45s var(--ease);
}
.link-arrow:hover {
  color: var(--gold-l);
  gap: 12px;
  background-size: calc(100% - 1.5em) 1px;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ─── SECTION COMMON ─────────────────────────────────────────── */
.ops-section {
  width: 100%;
  position: relative;
}

.ops-eyebrow {
  font-family: var(--fm);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── TYPE UTILITIES ─────────────────────────────────────────── */
.ops-display-xl {
  font-family: var(--fd);
  font-size: var(--t-display-xl);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.ops-display-l {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

/* Subtle depth on display headlines (Apple-style lift) */
.ops-display-xl,
.ops-display-l,
.hero-headline-v3 {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 0 80px rgba(0,0,0,0.45);
}
[data-theme="light"] .ops-display-xl,
[data-theme="light"] .ops-display-l,
[data-theme="light"] .hero-headline-v3 {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.5),
    0 1px 2px rgba(0,0,0,0.08);
}
.ops-display-m {
  font-family: var(--fd);
  font-size: var(--t-display-m);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.ops-mono-label {
  font-family: var(--fm);
  font-size: var(--t-mono-s);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nh) + 24px) 0 48px;
}

/* Vertically center hero content within remaining space below the nav buffer */
#hero .hero-fg {
  margin-top: auto;
  margin-bottom: auto;
}

/* Radial gradient behind the canvas */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 65% 40%, rgba(212,179,107,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 80% 70%, rgba(212,179,107,0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

#starfield,
#hero #starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Secondary page hero starfield canvases */
.ops-section--hero-page #starfield,
.ops-section--hero-split #starfield,
.ops-section--hero-legal #starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Ensure hero foreground content sits above the starfield */
#hero .hero-v3-inner { position: relative; z-index: 2; }

#hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
}

/* Fallback gradient when WebGL unavailable */
#hero-mesh.webgl-fallback {
  background: radial-gradient(ellipse 70% 60% at 70% 45%, rgba(212,179,107,0.12) 0%, transparent 65%);
}

.hero-fg {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1180px;
}

.hero-fg .ops-eyebrow {
  margin-bottom: -8px;
}

.hero-headline {
  font-family: var(--fd);
  font-size: var(--t-display-xl);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--t-body-l);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 400;
}

/* Bottom-of-hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  z-index: 1;
}
.hero-scroll-cue::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--text-3);
}

/* ─── STATS STRIP ────────────────────────────────────────────── */
.ops-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: var(--mw);
  margin: 0 auto;
  width: 100%;
}

.ops-stat-strip__item {
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border);
  position: relative;
}
.ops-stat-strip__item:last-child { border-right: none; }

.ops-stat-strip__num {
  font-family: var(--fm);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.ops-stat-strip__num span {
  color: var(--gold);
}

.ops-stat-strip__label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.4;
}

/* ─── BENTO GRID ─────────────────────────────────────────────── */
.bento-section {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
}

.bento-section-head {
  max-width: var(--mw);
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-section-head .ops-eyebrow { margin-bottom: 4px; }

.bento-section-head h2 {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 18ch;
}

.bento-section-head p {
  font-size: var(--t-body-l);
  color: var(--text-2);
  max-width: 52ch;
  line-height: 1.55;
}

.bento-grid {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 360px;
  grid-template-rows: auto auto;
  gap: 12px;
  grid-template-areas:
    "xl   xl   stat"
    "call demo trust";
}

.bento-tile {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-2);
}
.bento-tile:hover {
  background: var(--bg-3);
  border-color: var(--border-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-3), var(--shadow-gold-sm);
}

/* Tile variants */
.bento-tile--xl  { grid-area: xl; min-height: 360px; }
.bento-tile--s   { grid-area: stat; }
.bento-tile--m   { min-height: 240px; }
.bento-tile--wide { grid-area: demo; }

/* Tile: Web Conversion (XL) */
.bento-tile--xl .tile-eyebrow {
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.bento-tile--xl .tile-headline {
  font-family: var(--fd);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.bento-tile--xl .tile-body {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 44ch;
}
.tile-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.2s var(--ease);
}
.tile-link::after { content: '→'; }
.bento-tile:hover .tile-link { gap: 10px; }

/* SVG diagram area (XL tile) */
.tile-diagram {
  margin-top: auto;
  height: 80px;
  display: flex;
  align-items: flex-end;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.bento-tile:hover .tile-diagram { opacity: 1; }
.tile-diagram svg {
  width: 100%;
  height: 100%;
}

/* Diagram hover polish — subtle box brighten + arrow opacity pulse with stagger.
   No more continuous overlay path through all the boxes. */
.bento-tile--xl .tile-diagram svg rect,
.bento-tile--xl .tile-diagram svg line,
.bento-tile--xl .tile-diagram svg polyline,
.bento-tile--xl .tile-diagram svg text {
  transition: stroke-opacity 0.45s var(--ease), opacity 0.45s var(--ease), fill-opacity 0.45s var(--ease);
}
.bento-tile--xl .tile-diagram svg rect {
  stroke-opacity: 0.4;
}
.bento-tile--xl:hover .tile-diagram svg rect {
  stroke-opacity: 1;
  stroke: var(--gold-l);
}
.bento-tile--xl:hover .tile-diagram svg line {
  stroke-opacity: 1;
  stroke: var(--gold);
}
.bento-tile--xl:hover .tile-diagram svg polyline {
  stroke: var(--gold);
}
/* Sequential flow: FORM → arrow1 → AI CHAT → arrow2 → BOOKED → arrow3 → CRM */
.bento-tile--xl .tile-diagram svg rect:nth-of-type(1)                       { transition-delay: 0s;    }
.bento-tile--xl .tile-diagram svg line:nth-of-type(1),
.bento-tile--xl .tile-diagram svg polyline:nth-of-type(1)                   { transition-delay: 0.15s; }
.bento-tile--xl .tile-diagram svg rect:nth-of-type(2)                       { transition-delay: 0.30s; }
.bento-tile--xl .tile-diagram svg line:nth-of-type(2),
.bento-tile--xl .tile-diagram svg polyline:nth-of-type(2)                   { transition-delay: 0.45s; }
.bento-tile--xl .tile-diagram svg rect:nth-of-type(3)                       { transition-delay: 0.60s; }
.bento-tile--xl .tile-diagram svg line:nth-of-type(3),
.bento-tile--xl .tile-diagram svg polyline:nth-of-type(3)                   { transition-delay: 0.75s; }
.bento-tile--xl .tile-diagram svg rect:nth-of-type(4)                       { transition-delay: 0.90s; }

/* Stat tile (S) */
.bento-tile--s {
  grid-area: stat;
  justify-content: center;
  align-items: flex-start;
}
.tile-big-num {
  font-family: var(--fm);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
}
.tile-big-num-caption {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
  max-width: 18ch;
  margin-top: 8px;
}

/* Waveform (Call Capture tile) */
.tile-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  margin-top: auto;
}
.tile-waveform svg { flex-shrink: 0; }
.wf-bar {
  fill: var(--gold-d);
  transform-origin: 50% 50%;
  transition: fill 0.2s;
}
.bento-tile:hover .wf-bar {
  fill: var(--gold);
  animation: wf-pulse 1.6s ease-in-out infinite alternate;
}
.wf-bar:nth-child(2) { animation-delay: 0.15s; }
.wf-bar:nth-child(3) { animation-delay: 0.30s; }
.wf-bar:nth-child(4) { animation-delay: 0.45s; }
.wf-bar:nth-child(5) { animation-delay: 0.60s; }
@keyframes wf-pulse {
  from { transform: scaleY(0.4); opacity: 0.5; }
  to   { transform: scaleY(1.0); opacity: 1; }
}

/* Star pattern (Google Trust tile) */
.tile-stars {
  display: flex;
  gap: 4px;
  margin-top: auto;
}
.tile-stars svg {
  width: 20px; height: 20px;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease-spring);
}
.star-filled { color: var(--gold-d); }
.star-filled polygon {
  fill: var(--gold-d);
  stroke: var(--gold-d);
  transition: fill 0.25s, stroke 0.25s;
}
.bento-tile:hover .star-filled polygon {
  fill: var(--gold-l);
  stroke: var(--gold-l);
}
.bento-tile:hover .tile-stars svg:nth-child(1) polygon { transition-delay: 0ms;   }
.bento-tile:hover .tile-stars svg:nth-child(2) polygon { transition-delay: 140ms; }
.bento-tile:hover .tile-stars svg:nth-child(3) polygon { transition-delay: 280ms; }
.bento-tile:hover .tile-stars svg:nth-child(4) polygon { transition-delay: 420ms; }
.bento-tile:hover .tile-stars svg:nth-child(5) polygon { transition-delay: 560ms; }

/* Demo tile (wide) */
.bento-tile--wide {
  grid-area: demo;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.bento-tile--wide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.bento-tile--wide:hover::before { opacity: 1; }
.wide-tile-text { flex: 1; }
.wide-tile-arrow {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--gold-d);
  transition: transform 0.3s var(--ease-spring), color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.bento-tile--wide:hover .wide-tile-arrow {
  transform: translate(6px, -6px);
  color: var(--gold-l);
}

/* Call tile placement */
.bento-tile--call { grid-area: call; }

/* ─── PROCESS (PINNED SCROLL) ────────────────────────────────── */
.ops-process-section {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ops-process {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.ops-process__head {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.ops-process__head h2 {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.ops-process__head p {
  font-size: var(--t-body-l);
  color: var(--text-2);
  max-width: 50ch;
}

/* Sticky indicator column */
.ops-process__sticky {
  position: sticky;
  top: calc(var(--nh) + 32px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ops-process__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: opacity 0.3s;
}
.ops-process__step:last-child { border-bottom: none; }

.ops-process__step:not(.is-active) { opacity: 0.35; }
.ops-process__step.is-active { opacity: 1; }

.step-num {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.1em;
  padding-top: 2px;
  transition: color 0.3s;
}
.ops-process__step.is-active .step-num { color: var(--gold); }

.step-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
  margin-top: 6px;
  transition: background 0.3s, box-shadow 0.3s;
}
.ops-process__step.is-active .step-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.step-label {
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 0.3s;
}
.ops-process__step.is-active .step-label { color: var(--text); }

/* Right scrolling column */
.ops-process__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ops-process__block {
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 80px) 24px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
  justify-content: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.ops-process__block:last-child { border-bottom: none; }

.ops-process__block.is-active {
  border-left-color: var(--gold);
  background: linear-gradient(90deg, var(--gold-soft), transparent 40%);
}

.ops-process__block.is-active .block-num {
  color: var(--gold);
}

.ops-process__block.is-active .block-title {
  color: var(--text);
}

.block-num {
  font-family: var(--fm);
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--border-2);
}

.block-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.block-body {
  font-size: var(--t-body-l);
  color: var(--text-2);
  max-width: 48ch;
  line-height: 1.55;
}

.block-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-3);
  border-radius: 999px;
  padding: 6px 14px;
  width: fit-content;
}

/* ─── DEMO SHOWCASE ──────────────────────────────────────────── */
.demo-showcase {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-showcase::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,179,107,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.demo-showcase-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.demo-showcase .ops-eyebrow { justify-content: center; }

.demo-showcase h2 {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-align: center;
}

.demo-showcase-sub {
  font-size: var(--t-body-l);
  color: var(--text-2);
  line-height: 1.55;
  text-align: center;
}

/* Abstract demo panel */
.demo-panel {
  width: 100%;
  max-width: 640px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--rxl);
  overflow: hidden;
  position: relative;
}

.demo-panel-bar {
  height: 44px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 8px;
}
.demo-panel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-2);
}
.demo-panel-dot:first-child { background: rgba(255,100,80,0.4); }
.demo-panel-dot:nth-child(2) { background: rgba(255,180,50,0.4); }
.demo-panel-dot:nth-child(3) { background: rgba(80,200,80,0.35); }

.demo-panel-title {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-left: auto;
  margin-right: auto;
}

.demo-panel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}

.demo-panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-panel-label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  width: 80px;
  flex-shrink: 0;
}
.demo-panel-value {
  font-size: 13px;
  color: var(--text-2);
  flex: 1;
}
.demo-panel-tag {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(80,200,80,0.12);
  color: #5fc870;
}
.demo-panel-tag.pending {
  background: var(--gold-soft2);
  color: var(--gold);
}

/* Waveform SVG in demo panel */
.demo-waveform {
  height: 48px;
  width: 100%;
  opacity: 0.6;
}
.demo-waveform rect {
  fill: var(--gold-d);
  animation: demo-wave 1.4s ease-in-out infinite alternate;
}
.demo-waveform rect:nth-child(1) { animation-delay: 0s; }
.demo-waveform rect:nth-child(2) { animation-delay: 0.12s; }
.demo-waveform rect:nth-child(3) { animation-delay: 0.24s; }
.demo-waveform rect:nth-child(4) { animation-delay: 0.36s; }
.demo-waveform rect:nth-child(5) { animation-delay: 0.48s; }
.demo-waveform rect:nth-child(6) { animation-delay: 0.60s; }
.demo-waveform rect:nth-child(7) { animation-delay: 0.72s; }
.demo-waveform rect:nth-child(8) { animation-delay: 0.84s; }
.demo-waveform rect:nth-child(9) { animation-delay: 0.96s; }
@keyframes demo-wave {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .demo-waveform rect { animation: none; transform: scaleY(0.6); }
}

/* ─── CASES / NUMERICS ───────────────────────────────────────── */
.ops-cases {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
}
.ops-cases-inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.ops-cases-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.ops-cases-head h2 {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.ops-cases-head p {
  font-size: var(--t-body-l);
  color: var(--text-2);
  max-width: 48ch;
  line-height: 1.55;
}

.ops-cases__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--border);
  align-items: center;
}
.ops-cases__row:last-child { border-bottom: 1px solid var(--border); }

.ops-cases__num {
  font-family: var(--fm);
  font-size: var(--t-display-xl);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212,179,107,0.20);
  font-variant-numeric: tabular-nums;
}

.ops-cases__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ops-cases__copy-head {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.ops-cases__copy-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 48ch;
}

/* ─── SERVICE AREA ───────────────────────────────────────────── */
.ops-area-section {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ops-area-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ops-area-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.ops-area-head .ops-eyebrow { justify-content: center; }
.ops-area-head h2 {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-align: center;
}
.ops-area-head p {
  font-size: var(--t-body-l);
  color: var(--text-2);
  line-height: 1.55;
  text-align: center;
}

.ops-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ops-area__chip {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-3);
  color: var(--text-2);
  background: var(--gold-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}
.ops-area__chip:hover {
  background: rgba(212,179,107,0.14);
  color: var(--gold);
  border-color: var(--gold-d);
}

.ops-area-remote {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.55;
  text-align: center;
}
.ops-area-remote strong { color: var(--text-2); font-weight: 500; }

/* ─── FAQ v2 ─────────────────────────────────────────────────── */
.faq-section {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 80px);
}
.faq-section-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section-head h2 {
  font-family: var(--fd);
  font-size: var(--t-display-l);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.faq-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-v2__item {
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.faq-v2__item:last-child { border-bottom: 1px solid var(--border); }

.faq-v2__q {
  display: flex;
  align-items: baseline;
  gap: 20px;
  width: 100%;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fd);
  color: var(--text);
  transition: color 0.2s;
}
.faq-v2__q:hover { color: var(--gold); }

.faq-v2__num {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 4px;
  width: 36px;
}

.faq-v2__q-text {
  font-size: var(--t-display-m);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.faq-v2__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
  padding-left: 56px;
}
.faq-v2__item.is-open .faq-v2__body {
  grid-template-rows: 1fr;
}
.faq-v2__body-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.38s var(--ease);
}
.faq-v2__item.is-open .faq-v2__body-inner {
  padding-bottom: 32px;
}
.faq-v2__body-text {
  font-size: var(--t-body-l);
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── CLOSING CTA ────────────────────────────────────────────── */
.ops-closing {
  padding: clamp(100px, 14vw, 200px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ops-closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,179,107,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.ops-closing-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ops-closing h2 {
  font-family: var(--fd);
  font-size: var(--t-display-xl);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-align: center;
}
.ops-closing h2 em {
  font-style: normal;
  color: var(--gold);
}

.ops-closing-sub {
  font-size: var(--t-body-l);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 52ch;
  text-align: center;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.ops-footer {
  border-top: 1px solid var(--border);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px) clamp(32px, 4vw, 48px);
}

.ops-footer-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ops-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .nav-mono { border-radius: 4px; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 32ch;
}

.footer-col-title {
  font-family: var(--fm);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--text); }

.ops-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.footer-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.footer-loc svg {
  width: 13px; height: 13px;
  stroke: var(--gold-d);
  fill: none;
  stroke-width: 2;
}
.footer-login {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.footer-login:hover { color: var(--text-2); }

/* ─── SECTION REVEAL ANIMATIONS ─────────────────────────────── */
/* Default: visible (graceful degradation if JS fails entirely).
   When JS runs, an inline <head> script adds `.js-on` to <html>,
   which switches reveals into hidden-then-animate-in state. */
.reveal { opacity: 1; transform: none; }

html.js-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* Both class names supported — main.js adds `.in`, redesign.js adds `.is-visible` */
html.js-on .reveal.is-visible,
html.js-on .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* WebGL fallback for hero mesh — gold-tinted radial gradient */
.hero-mesh--fallback {
  background:
    radial-gradient(circle at 70% 50%, rgba(212,179,107,0.18), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(168,139,74,0.10), transparent 60%);
}

/* ── Breadcrumb ── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 0;
  font-size: 0.8125rem;
  line-height: 1;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-2);
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5rem;
  opacity: 0.4;
}

.breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
}

/* ─── MOBILE / RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "xl    xl"
      "stat  trust"
      "call  demo";
  }
  .bento-tile--call { grid-area: call; }
  .bento-tile--trust { grid-area: trust; }
}

@media (max-width: 900px) {
  .ops-process {
    grid-template-columns: 1fr;
  }
  .ops-process__sticky {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    margin-bottom: 32px;
  }
  .ops-process__step {
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    min-width: 120px;
    align-items: center;
    text-align: center;
  }
  .ops-process__step:last-child { border-right: none; }
  .step-dot { display: none; }

  .ops-cases__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ops-cases__num { font-size: clamp(48px, 12vw, 80px); }

  .ops-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .float-cta { display: none; }
  .nav-right { margin-left: auto; }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "xl"
      "stat"
      "call"
      "trust"
      "demo";
  }
  .bento-tile--wide {
    flex-direction: column;
    align-items: flex-start;
  }
  .wide-tile-arrow { align-self: flex-end; }

  .hero-fg { max-width: 100%; }

  .ops-stat-strip {
    grid-template-columns: 1fr;
  }
  .ops-stat-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }
  .ops-stat-strip__item:last-child { border-bottom: none; }

  .faq-v2__q-text { font-size: clamp(18px, 4vw, 28px); }

  .ops-closing h2 { font-size: clamp(36px, 10vw, 80px); }

  .ops-footer-grid { grid-template-columns: 1fr; }
  .ops-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-in { padding: 0 20px; gap: 16px; }
  .hero-fg { padding: 0 20px; }
  .hero-scene {
    height: 320px;
  }
  .hero-orbit {
    transform: scale(0.55);
    transform-origin: center center;
  }
  .hero-headline-v3 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .bento-section, .ops-process-section, .ops-cases, .ops-area-section,
  .faq-section, .ops-closing, .ops-footer { padding-left: 20px; padding-right: 20px; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ SECONDARY PAGE SHARED ============ */

/* Page-level hero (typographic, no canvas) */
.ops-section--hero-page {
  padding-top: calc(var(--nh) + clamp(80px, 12vh, 140px));
  padding-bottom: clamp(96px, 12vh, 160px);
  padding-left: clamp(24px, 6vw, 120px);
  padding-right: clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}

.ops-section--hero-page .ops-eyebrow { margin-bottom: 32px; }

.ops-section--hero-page .ops-display-l {
  max-width: 820px;
  margin-bottom: 40px;
}

.ops-section--hero-page .ops-body-l {
  max-width: 600px;
  margin-bottom: 40px;
}

.ops-hero-cta .link-arrow { font-size: clamp(15px, 1.3vw, 18px); }

/* Closing CTA (smaller scale than index) */
.ops-closing-sm {
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
  border-top: 1px solid var(--border);
}

.ops-closing-sm-inner {
  max-width: var(--mw-narrow);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ops-closing-sm .ops-eyebrow { margin-bottom: 24px; justify-content: center; }
.ops-closing-sm .ops-display-l { margin-bottom: 24px; }
.ops-closing-sm .ops-body-l { margin-bottom: 40px; max-width: 560px; }

/* ============ SERVICES PAGE ============ */

/* Alternating service blocks */
.ops-service-block {
  padding: clamp(96px, 11vw, 160px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.ops-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.ops-service-block--flip .ops-service-inner {
  direction: rtl;
}

.ops-service-block--flip .ops-service-inner > * {
  direction: ltr;
}

.ops-service-num {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ops-service-text .ops-display-m { margin-bottom: 20px; }
.ops-service-text .ops-body-l { margin-bottom: 28px; color: var(--text-2); }

.ops-deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--border);
}

.ops-deliverables-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.ops-deliverables-list li strong {
  color: var(--gold-l);
  font-weight: 600;
}

.ops-deliverables-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* Service accent visuals */
.ops-service-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: clamp(32px, 5vw, 60px);
  min-height: 280px;
}

.ops-accent-svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

/* Waveform accent */
.ops-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100px;
}

.ops-waveform span {
  display: block;
  width: 6px;
  height: var(--h, 60%);
  background: var(--gold);
  border-radius: 3px;
  animation: waveform-pulse 1.4s ease-in-out infinite;
  animation-delay: var(--animation-delay, 0s);
  opacity: 0.7;
}

@keyframes waveform-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

/* Stars accent */
.ops-stars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ops-star {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  animation: star-fill 2.4s ease-in-out infinite;
  animation-delay: calc(var(--star-i) * 0.28s);
}

@keyframes star-fill {
  0%, 60%, 100% { fill: none; opacity: 0.5; }
  30%, 50% { fill: var(--gold); opacity: 1; }
}

/* Included bar */
.ops-included-section {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}

.ops-included-bar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px clamp(32px, 4vw, 64px);
  align-items: start;
}

.ops-included-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
  white-space: nowrap;
}

.ops-included-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ops-included-item {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}

.ops-included-item::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 767px) {
  .ops-service-inner {
    grid-template-columns: 1fr;
  }
  .ops-service-block--flip .ops-service-inner {
    direction: ltr;
  }
  .ops-included-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============ SERVICE DETAIL PAGES (web-conversion, call-capture, google-trust) ============ */

/* Split hero */
.ops-section--hero-split {
  padding-top: calc(var(--nh) + clamp(60px, 10vh, 120px));
  padding-bottom: clamp(60px, 8vh, 100px);
}

.ops-hero-split-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.ops-hero-split-text .ops-eyebrow { margin-bottom: 32px; }
.ops-hero-split-text .ops-display-l { margin-bottom: 40px; }
.ops-hero-split-text .ops-body-l { margin-bottom: 36px; color: var(--text-2); }

.ops-hero-split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: clamp(32px, 5vw, 56px);
  min-height: 320px;
  box-shadow: var(--shadow-3);
  transition: box-shadow 0.4s var(--ease);
}
.ops-hero-split-visual:hover {
  box-shadow: var(--shadow-3), var(--shadow-gold-md);
}

.ops-accent-svg--lg {
  max-width: 320px;
}

/* Waveform hero variant */
.ops-hero-split-visual--waveform {
  flex-direction: column;
  gap: 24px;
}

.ops-waveform--hero {
  height: 140px;
  gap: 10px;
}

.ops-waveform--hero span {
  width: 10px;
}

.ops-waveform-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Stars hero variant */
.ops-stars--hero {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.ops-stars--hero .ops-star {
  width: 48px;
  height: 48px;
}

.ops-stars-label {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-align: center;
}

/* Deliverables editorial */
.ops-deliverables-section {
  padding: clamp(96px, 11vw, 160px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.ops-section-inner--narrow {
  max-width: var(--mw-narrow);
}

.ops-deliverables-section .ops-eyebrow { margin-bottom: 16px; }
.ops-deliverables-section .ops-display-m { margin-bottom: clamp(32px, 4vw, 56px); }

.ops-deliverables-editorial {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.ops-deliverables-editorial li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--text);
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.ops-deliverables-editorial li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
  top: 20px;
}

.ops-deliverables-editorial li strong {
  color: var(--gold-l);
  font-weight: 600;
}

/* Use cases */
.ops-use-cases-section {
  padding: clamp(96px, 11vw, 160px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.ops-use-cases-section .ops-eyebrow { margin-bottom: 16px; }
.ops-use-cases-section .ops-display-m { margin-bottom: 12px; }
.ops-use-cases-section .ops-body-l { margin-bottom: clamp(40px, 5vw, 64px); color: var(--text-2); }

.ops-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.ops-use-case {
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 40px);
}

.ops-use-case-num {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.ops-use-case h3 {
  font-family: var(--fd);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ops-use-case p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Integrations */
.ops-integrations-section {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.ops-integrations-section .ops-eyebrow { margin-bottom: 24px; }

.ops-integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-pill {
  display: inline-block;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  transition: border-color 0.2s, color 0.2s;
}

.ops-pill:hover {
  border-color: var(--border-3);
  color: var(--gold);
}

/* ROI section */
.ops-roi-section {
  padding: clamp(96px, 11vw, 160px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.ops-roi-section .ops-eyebrow { margin-bottom: 16px; }
.ops-roi-section .ops-display-m { margin-bottom: 20px; }
.ops-roi-section .ops-body-l { margin-bottom: 36px; color: var(--text-2); }

@media (max-width: 900px) {
  .ops-hero-split-inner {
    grid-template-columns: 1fr;
  }
  .ops-hero-split-visual {
    min-height: 200px;
    padding: 28px;
  }
  .ops-use-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ops-stars--hero .ops-star {
    width: 36px;
    height: 36px;
  }
}

/* Light mode for service detail pages */
[data-theme="light"] .ops-service-accent,
[data-theme="light"] .ops-hero-split-visual,
[data-theme="light"] .ops-included-bar,
[data-theme="light"] .ops-use-case {
  background: var(--bg-2);
  border-color: var(--border);
}

[data-theme="light"] .ops-pill {
  background: var(--bg-3);
}

/* ============ DEMO SIMULATOR ============ */

.ops-demo-section {
  padding: clamp(8px, 1vw, 24px) 0 clamp(64px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
}

.ops-demo-section .ctn {
  /* Inherit existing .ctn styles from redesign.css base */
}

/* Restyle demo-stage surface tones */
.demo-stage {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
}

.demo-phone-frame {
  background: var(--bg-3);
  border-color: var(--border-2);
}

.demo-phone-screen {
  background: var(--bg-3);
}

.transcript-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.transcript-header {
  border-bottom: 1px solid var(--border);
}

.transcript-btn {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rs);
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.transcript-btn:hover {
  color: var(--gold);
  border-color: var(--border-3);
}

.live-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.live-head {
  border-bottom: 1px solid var(--border);
}

.scenarios-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
}

.scenario-btn {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}

.scenario-btn:hover, .scenario-btn.active {
  background: var(--bg-3);
  border-color: var(--border-3);
}

.summary-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

/* Light mode */
[data-theme="light"] .demo-stage,
[data-theme="light"] .transcript-card,
[data-theme="light"] .live-card,
[data-theme="light"] .scenario-btn,
[data-theme="light"] .summary-panel {
  background: var(--bg-2);
  border-color: var(--border);
}

/* ============ FORMS ============ */

/* Contact form — Operations Lab aesthetic */
.ops-booking-section {
  padding: clamp(48px, 7vw, 100px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.ops-booking-section .ops-eyebrow { margin-bottom: 16px; }
.ops-booking-section .ops-display-m { margin-bottom: 32px; }

.ops-book-embed {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  min-height: 600px;
}

.ops-book-embed iframe {
  display: block;
  min-height: 600px;
}

.ops-book-divider {
  text-align: center;
  margin: clamp(40px, 5vw, 64px) 0;
  position: relative;
}

.ops-book-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.ops-book-divider span {
  position: relative;
  background: var(--bg);
  padding: 0 16px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
}

.ops-contact-section {
  padding: clamp(24px, 4vw, 56px) clamp(24px, 6vw, 120px) clamp(64px, 8vw, 100px);
  max-width: var(--mw);
  margin: 0 auto;
}

.ops-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* Form inputs */
.ops-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ops-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.ops-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ops-form-field--full {
  grid-column: 1 / -1;
}

.ops-form-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
}

.ops-optional {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-3);
  text-transform: none;
}

.ops-form-input {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--rs);
  color: var(--text);
  font-family: var(--fb);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.ops-form-input::placeholder {
  color: var(--text-3);
}

.ops-form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-d), 0 0 12px var(--gold-glow);
}

.ops-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238A8478' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.ops-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ops-form-consent {
  margin: 4px 0 24px;
}

.ops-consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.ops-consent-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.ops-consent-text {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}

.ops-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field-error {
  font-size: 11px;
  color: #e05555;
  margin-top: 4px;
}

/* Contact aside info cards */
.ops-contact-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.ops-info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-2);
}

.ops-info-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}

.ops-info-icon svg {
  width: 100%;
  height: 100%;
}

.ops-info-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}

.ops-info-val {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.ops-info-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Contact success state — hidden until form submission */
.contact-success[hidden] { display: none; }
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
  gap: 16px;
}

/* What-happens-next aside widget (replaces visible "Got it" placeholder) */
.next-steps-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.next-steps-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, var(--gold-soft), transparent 60%);
  pointer-events: none;
}
.next-steps-card .next-steps-eyebrow {
  font-family: var(--fm);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  position: relative;
}
.next-steps-card .next-steps-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 11px;
  color: var(--text-2);
  margin-bottom: 18px;
  position: relative;
}
.next-steps-card .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: ns-pulse 2.2s ease-out infinite;
}
@keyframes ns-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(212,179,107,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(212,179,107,0);    }
  100% { box-shadow: 0 0 0 0    rgba(212,179,107,0);    }
}
.next-steps-card h3 {
  font-family: var(--fd);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 18px;
  position: relative;
}
.next-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.next-steps-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.next-steps-list li:first-child { border-top: none; padding-top: 6px; }
.next-steps-list .ns-step {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.next-steps-list .ns-text {
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.next-steps-list .ns-text strong {
  color: var(--gold-l);
  font-weight: 600;
  font-size: 16px;
}
.next-steps-list .ns-text small {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 400;
}
[data-theme="light"] .next-steps-card { background: var(--bg-2); }

/* "Bring to the call" card — shown in contact page aside */
.bring-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 28px);
  text-align: left;
  width: 100%;
}
.bring-card__eyebrow {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bring-card__intro {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 14px;
}
.bring-card__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--border-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.success-check svg { width: 24px; height: 24px; }

/* Light mode */
[data-theme="light"] .ops-form-input {
  background: var(--bg-3);
  border-color: var(--border-2);
  color: var(--text);
}

[data-theme="light"] .ops-form-input:focus {
  border-color: var(--gold-d);
}

[data-theme="light"] .ops-info-card,
[data-theme="light"] .ops-book-embed {
  background: var(--bg-2);
  border-color: var(--border);
}

[data-theme="light"] .ops-cases__num {
  text-shadow: 0 0 24px rgba(168,139,74,0.18);
}

[data-theme="light"] .ops-book-divider span {
  background: var(--bg);
}

@media (max-width: 900px) {
  .ops-contact-grid {
    grid-template-columns: 1fr;
  }
  .ops-form-row {
    grid-template-columns: 1fr;
  }
  .ops-form-field--full {
    grid-column: 1;
  }
}

/* ============ LEGAL ARTICLE ============ */

.ops-section--hero-legal {
  padding-top: calc(var(--nh) + clamp(80px, 12vh, 140px));
  padding-bottom: clamp(40px, 6vh, 80px);
  padding-left: clamp(24px, 6vw, 120px);
  padding-right: clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}

/* Secondary hero: position context for starfield + halo */
.ops-section--hero-page,
.ops-section--hero-split,
.ops-section--hero-legal {
  position: relative;
  overflow: hidden;
}

/* Gold halo for secondary page heroes */
.ops-section--hero-page::before,
.ops-section--hero-split::before,
.ops-section--hero-legal::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background:
    radial-gradient(ellipse 38% 50% at 50% 50%, rgba(212,179,107,0.14), transparent 70%),
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,179,107,0.04), transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Hero foreground content above starfield + halo */
.ops-section--hero-page .ops-section-inner,
.ops-section--hero-page .ops-hero-page-inner,
.ops-hero-split-inner,
.ops-section--hero-legal .ops-section-inner,
.ops-section--hero-legal .ops-hero-legal-inner {
  position: relative;
  z-index: 2;
}

/* SVG visual box stays above canvas */
.ops-hero-split-visual {
  position: relative;
  z-index: 2;
}

.ops-section--hero-legal .ops-eyebrow { margin-bottom: 20px; }
.ops-section--hero-legal .ops-display-l { margin-bottom: 16px; }

.ops-legal-meta {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-3);
  text-transform: uppercase;
}

.ops-legal-section {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 120px) clamp(80px, 10vw, 140px);
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* Legal article typography */
.legal-article {
  max-width: 720px;
  margin: 0 auto;
}

.legal-article h2 {
  font-family: var(--fd);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin-top: clamp(40px, 5vw, 64px);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.legal-article p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-article ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}

.legal-article ul li {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-2);
  line-height: 1.7;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.legal-article ul li:first-child {
  border-top: 1px solid var(--border);
}

.legal-article ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 10px;
}

.legal-article strong {
  color: var(--text);
  font-weight: 600;
}

.legal-article a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-article a:hover {
  color: var(--gold-l);
}

.legal-article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: clamp(40px, 5vw, 64px) 0 24px;
}

.legal-copy-note {
  font-size: 13px;
  color: var(--text-3);
}

/* Light mode */
[data-theme="light"] .legal-article h2 {
  color: var(--text);
  border-color: var(--border);
}

[data-theme="light"] .legal-article p,
[data-theme="light"] .legal-article ul li {
  color: var(--text-2);
}

[data-theme="light"] .legal-article ul li {
  border-color: var(--border);
}

[data-theme="light"] .legal-article strong {
  color: var(--text);
}

/* ============ LINK ARROW (shared CTA text links) ============ */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fb);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: gap 0.2s var(--ease-o), color 0.2s;
}

.link-arrow:hover {
  gap: 12px;
  color: var(--gold-l);
}

/* ============ OPS BODY-L UTILITY ============ */

.ops-body-l {
  font-family: var(--fb);
  font-size: var(--t-body-l);
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 400;
}

/* ============ SECTION INNER UTILITY ============ */

.ops-section-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
}

/* Apply padding to primary section containers on secondary pages */
.ops-deliverables-section .ops-section-inner,
.ops-use-cases-section .ops-section-inner,
.ops-integrations-section .ops-section-inner,
.ops-roi-section .ops-section-inner,
.ops-included-section .ops-section-inner,
.ops-legal-section .ops-section-inner,
.ops-booking-section .ops-section-inner,
.ops-contact-section .ops-section-inner {
  padding: 0;
}

/* ============ HERO V3 (NEW) ============ */

/* Two-column layout wrapper */
.hero-v3-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  width: 100%;
  flex: 1;
  min-height: 0;
}

/* Left column */
.hero-fg--v3 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: clamp(24px, 4vw, 64px);
}

.hero-pretitle {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline-v3 {
  font-family: var(--fd);
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-headline-v3 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 32px rgba(212,179,107,0.25);
}

/* Display em gold glow accents */
.ops-display-xl em,
.ops-display-l em {
  text-shadow: 0 0 32px rgba(212,179,107,0.25);
}
[data-theme="light"] .ops-display-xl em,
[data-theme="light"] .ops-display-l em,
[data-theme="light"] .hero-headline-v3 em {
  text-shadow: 0 0 32px rgba(168,139,74,0.20);
}

.hero-sub-v3 {
  max-width: 480px;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  font-weight: 400;
}
.hero-sub-v3 strong {
  color: var(--gold-l);
  font-weight: 600;
}
[data-theme="light"] .hero-sub-v3 {
  color: #000;
}
[data-theme="light"] .hero-sub-v3 strong {
  color: var(--gold-d);
}

.hero-cta-v3 {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: #0A0A0A;
  padding: 16px 28px;
  border-radius: var(--rs);
  font-family: var(--fd);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero-cta-v3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,179,107,0.38);
}
.hero-cta-v3:focus-visible {
  outline: 2px solid var(--gold-l);
  outline-offset: 3px;
}

.hero-caption {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--text-3);
  margin-top: -8px;
}

/* Right column: scene */
.hero-scene {
  position: relative;
  height: clamp(560px, calc(100svh - 180px), 740px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
}

/* Clean gold halo behind the phone — single soft glow, no rectangular boundary */
.hero-stage::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 880px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 36% 42% at 50% 50%, rgba(212,179,107,0.22), transparent 70%),
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(212,179,107,0.06), transparent 80%);
  pointer-events: none;
  z-index: -1;
  filter: blur(30px);
}

/* Hero-wide particle field — spans the entire hero, blends with starfield */
#hero .hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* 3D stage */
.hero-stage {
  perspective: 2000px;
  position: relative;
  z-index: 3;
}

/* Phone frame */
/* ─── iPhone 17 Pro Max — Black Titanium realism pass ─── */
.hero-phone {
  width: 320px;
  height: 660px;
  /* Black Titanium: thin highlight at left/right edges, subtle vertical brushed
     texture, top/bottom slight darkening for depth */
  background:
    /* Subtle vertical brushed lines */
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0)     1.5px,
      rgba(0,0,0,0.018)        3px,
      rgba(0,0,0,0)            4.5px
    ),
    /* Side-rail highlight ridge (left/right titanium catching light) */
    linear-gradient(90deg,
      #1A1815 0%,
      #100E0B 4%,
      #050402 18%,
      #050402 82%,
      #100E0B 96%,
      #1A1815 100%);
  border-radius: 60px;
  border: none;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  transform: rotateY(var(--rot, 0deg)) rotateX(-2deg) translateZ(0);
  box-shadow:
    /* Hairline gold trim — thin and refined */
    inset 0 0 0 1px rgba(212,179,107,0.38),
    /* Inner bezel darkening (titanium → glass transition) */
    inset 0 0 0 4px rgba(0,0,0,0.88),
    /* Top edge specular highlight (glass catches light) */
    inset 0 1px 0 rgba(255,255,255,0.08),
    /* Bottom shadow for grounding */
    inset 0 -1px 0 rgba(0,0,0,0.5),
    /* Drop shadow */
    0 60px 100px -10px rgba(0,0,0,0.75),
    0 30px 60px -20px rgba(0,0,0,0.5),
    /* Subtle gold ambient glow */
    0 0 80px rgba(212,179,107,0.08);
}

/* Glass screen reflection — sits inside the phone, above the screen content */
.hero-phone::after {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 53px;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.02) 14%,
    transparent 38%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 12;
  backface-visibility: hidden;
}

/* Phone back face — hidden (rotation ±8° never reveals back) */
.hero-phone__back {
  display: none;
}
.hero-phone__camera { display: none; }
.hero-phone__back-mark { display: none; }

/* ─── Side buttons — black titanium pills with edge highlights ─── */
.phone-btn {
  position: absolute;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.07) 0%,
      rgba(255,255,255,0.02) 30%,
      rgba(0,0,0,0)          55%,
      rgba(0,0,0,0.4)        100%),
    linear-gradient(90deg, #1F1C18 0%, #0E0C09 50%, #1F1C18 100%);
  border-radius: 2px;
  z-index: 20;
}
/* Left rail */
.phone-btn--action {
  left: -3.5px;
  top: 21%;
  width: 5px;
  height: 32px;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.10),
    inset -1px 0 0 rgba(0,0,0,0.65),
    -2px 0 4px rgba(0,0,0,0.55);
}
.phone-btn--vol-up,
.phone-btn--vol-down {
  left: -3.5px;
  width: 5px;
  height: 56px;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.10),
    inset -1px 0 0 rgba(0,0,0,0.65),
    -2px 0 4px rgba(0,0,0,0.55);
}
.phone-btn--vol-up   { top: 33%; }
.phone-btn--vol-down { top: 44%; }
/* Right rail */
.phone-btn--power {
  right: -3.5px;
  top: 28%;
  width: 5px;
  height: 64px;
  box-shadow:
    inset -1px 0 0 rgba(255,255,255,0.10),
    inset 1px 0 0 rgba(0,0,0,0.65),
    2px 0 4px rgba(0,0,0,0.55);
}
.phone-btn--camera-ctrl {
  right: -3.5px;
  top: 56%;
  width: 5px;
  height: 36px;
  border-radius: 3px;
  /* Subtle silver dot in center — Camera Control's capacitive ring */
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0%, transparent 40%),
    linear-gradient(90deg, #2A2722 0%, #14110D 50%, #2A2722 100%);
  box-shadow:
    inset -1px 0 0 rgba(255,255,255,0.14),
    inset 1px 0 0 rgba(0,0,0,0.65),
    2px 0 4px rgba(0,0,0,0.55);
}

/* Hide screen + content from back side */
.hero-phone__screen,
.dynamic-island {
  backface-visibility: hidden;
}
.phone-state {
  backface-visibility: hidden;
}

/* ─── Dynamic Island ─── */
.dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 124px;
  height: 36px;
  background: #000;
  border-radius: 20px;
  z-index: 11;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 1px 2px rgba(0,0,0,0.9);
}

/* ─── Inner screen ─── */
.hero-phone__screen {
  position: absolute;
  inset: 9px;
  background: #050505;
  border-radius: 53px;       /* concentric with 60px outer frame at 9px inset (real iPhone is ~58 outer / 53 inner) */
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ─── Phone states base ─── */
.phone-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
}
.phone-state.is-active {
  opacity: 1;
  transform: translateY(0);
}
.phone-state.is-exit {
  opacity: 0;
  transform: translateY(-8px);
}

/* ─── Frame 1: iOS Call UI ─── */
.phone-state--call {
  /* iOS 18 dark wallpaper: subtle radial gradient with warm undertone — not pure black */
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%,   #1A1A22 0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 30% 100%, #0E0E14 0%, transparent 60%),
    radial-gradient(ellipse 90%  60% at 80% 100%, #14141C 0%, transparent 65%),
    #050507;
  justify-content: flex-start;
  padding: 0;
}

/* iOS status bar — tighter, more SF-like */
.ios-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 19px 32px 0;            /* status bar above the Dynamic Island gap */
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}
.ios-status-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.ios-icon { display: block; }
.ios-icon--signal { width: 18px; height: 12px; }
.ios-icon--battery { width: 26px; height: 12px; }

/* Call meta — large name, refined hierarchy */
.ios-call-meta {
  text-align: center;
  margin-top: 92px;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
}
.ios-call-from {
  font-size: 13px;
  color: rgba(235,235,245,0.6);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.ios-call-name {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 4px;
}
.ios-call-num {
  font-size: 16px;
  color: rgba(235,235,245,0.55);
  margin-top: 2px;
  font-weight: 400;
}

/* Call bottom section */
.ios-call-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 32px 38px;
}
.ios-call-extras {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.ios-extra-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
}
.ios-extra-btn > svg {
  width: 24px;
  height: 24px;
  color: #fff;
  display: block;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
  padding: 16px;
  box-sizing: content-box;
}
.ios-extra-btn > span {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
}

.ios-call-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 0 12px;
}
.ios-call-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 1px 0.5px rgba(255,255,255,0.28),
    inset 0 -2px 4px rgba(0,0,0,0.25),
    0 8px 22px rgba(0,0,0,0.55);
}
.ios-call-btn svg {
  width: 30px;
  height: 30px;
  color: #fff;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25));
}
.ios-call-btn--decline {
  background: radial-gradient(ellipse at 50% 35%, #FF6157 0%, #FF3B30 45%, #D62B23 100%);
}
.ios-call-btn--decline svg {
  transform: rotate(135deg);
}
.ios-call-btn--accept {
  background: radial-gradient(ellipse at 50% 35%, #5EE082 0%, #34C759 45%, #28A847 100%);
  animation: ios-accept-pulse 1.8s ease-in-out infinite;
}
@keyframes ios-accept-pulse {
  0%   { box-shadow:
           inset 0 1px 0.5px rgba(255,255,255,0.28),
           inset 0 -2px 4px rgba(0,0,0,0.25),
           0 8px 22px rgba(0,0,0,0.55),
           0 0 0 0 rgba(52,199,89,0.55); }
  70%  { box-shadow:
           inset 0 1px 0.5px rgba(255,255,255,0.28),
           inset 0 -2px 4px rgba(0,0,0,0.25),
           0 8px 22px rgba(0,0,0,0.55),
           0 0 0 18px rgba(52,199,89,0); }
  100% { box-shadow:
           inset 0 1px 0.5px rgba(255,255,255,0.28),
           inset 0 -2px 4px rgba(0,0,0,0.25),
           0 8px 22px rgba(0,0,0,0.55),
           0 0 0 0 rgba(52,199,89,0); }
}

/* ─── Frame 2: Dark ─── */
.phone-state--dark {
  background: #010101;
}

/* ─── Frame 3: iMessage SMS ─── */
.phone-state--sms {
  background: #1C1C1E;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}
.imsg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 20px 14px;
  background: rgba(28,28,30,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 8px;
}
.imsg-back {
  width: 10px;
  height: 17px;
  color: #0A84FF;
  flex-shrink: 0;
}
.imsg-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.imsg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8A96E, #8B7244);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.imsg-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.imsg-video {
  width: 24px;
  height: 16px;
  color: #0A84FF;
  flex-shrink: 0;
}
.imsg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px 16px 28px;
  gap: 6px;
}
.imsg-bubble {
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 18px 18px 4px 18px;
  max-width: 88%;
  word-break: break-word;
}
.imsg-bubble--sent {
  background: #D4B36B;
  color: #0A0A0A;
  font-weight: 500;
}
.imsg-timestamp {
  font-size: 10px;
  color: #636366;
  align-self: flex-end;
  letter-spacing: 0.02em;
}

/* ─── Frame 4: Apple Calendar card ─── */
.phone-state--calendar {
  background: radial-gradient(ellipse at top, #0D1117, #000 70%);
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}
.ios-cal-header {
  padding: 68px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ios-cal-app {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.ios-cal-card {
  margin: 0 16px;
  background: rgba(28,28,30,0.9);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ios-cal-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ios-cal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}
.ios-cal-row svg {
  width: 16px;
  height: 16px;
  color: #D4B36B;
  flex-shrink: 0;
}
.ios-cal-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 15px;
  font-weight: 600;
  color: #34C759;
  letter-spacing: -0.01em;
}
.ios-cal-confirm-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #34C759;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ios-cal-confirm-circle svg {
  width: 14px;
  height: 14px;
  color: #fff;
  stroke: #fff;
}

/* Glass chip — floats above the phone, top-center, no overlap */
.hero-chip {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(20,20,20,0.55);
  border: 1px solid rgba(212,179,107,0.25);
  border-radius: 999px;
  padding: 9px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

/* Bottom indicator — "01 / 03" service signpost */
.hero-systems-pill {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  white-space: nowrap;
}
.hero-systems-pill__dots {
  display: inline-flex;
  gap: 6px;
}
.hero-systems-pill__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
}
.hero-systems-pill__dots span.is-active {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}
.hero-systems-pill__name {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.hero-systems-pill__link {
  color: var(--gold);
  text-decoration: none;
  border-left: 1px solid var(--border);
  padding-left: 14px;
  margin-left: 2px;
  transition: color 0.2s;
}
.hero-systems-pill__link:hover { color: var(--gold-l); }
.hero-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: ns-pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
.hero-chip__num {
  font-family: var(--fm);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-l);
}
.hero-chip__label {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tablet (769–1024px): single column, simplified phone visible below text */
@media (max-width: 1024px) {
  .hero-v3-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-fg--v3 {
    padding-right: 0;
  }
  .hero-scene {
    display: flex;
    height: 480px;
    margin: 0 auto;
  }
  .hero-orbit {
    transform: scale(0.75);
    transform-origin: center center;
  }
  /* Hide orbital widgets on tablet — too tight */
  .orbit-w { display: none !important; }
}

/* Mobile (≤768px) — simplified phone, no orbitals */
@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding-bottom: 32px;
  }
  .hero-fg--v3 {
    position: relative;
    z-index: 5;
  }
  .hero-v3-inner {
    gap: 24px;
  }
  .hero-scene {
    display: flex;
    height: 380px;
    margin-top: 0;
  }
  .hero-orbit {
    transform: scale(0.62);
    transform-origin: center center;
  }
  .hero-fg--v3 {
    gap: 16px;
    padding-right: 0;
  }
  .hero-headline-v3 {
    font-size: clamp(32px, 8vw, 44px);
  }
  .hero-sub-v3 {
    font-size: 15px;
  }
  .hero-cta-v3 {
    align-self: stretch;
    text-align: center;
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-phone {
    transform: rotateY(-8deg) rotateX(-3deg) !important;
  }
  .hero-chip__dot {
    animation: none;
  }
  .ios-call-btn--accept {
    animation: none;
  }
}

/* ============ MARQUEE (Apple-style scrolling capabilities band) ============ */
.ops-marquee {
  position: relative;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  /* Edge fade so labels dissolve into the page bg, not a hard edge */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent 100%);
  background:
    radial-gradient(ellipse 50% 100% at 50% 50%, rgba(212,179,107,0.04), transparent 70%),
    var(--bg);
}

.ops-marquee__track {
  display: flex;
  width: max-content;
  animation: ops-marquee 48s linear infinite;
  will-change: transform;
}

.ops-marquee__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  flex-shrink: 0;
}

.ops-marquee__group > span:not(.ops-marquee__sep) {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  white-space: nowrap;
}

.ops-marquee__sep {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
  display: inline-block;
  flex-shrink: 0;
  /* slight optical balance — slash sits a hair higher than mid-cap */
  transform: translateY(-1px);
  user-select: none;
}

@keyframes ops-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .ops-marquee__track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

/* Light theme variant */
[data-theme="light"] .ops-marquee {
  background:
    radial-gradient(ellipse 50% 100% at 50% 50%, rgba(212,179,107,0.06), transparent 70%),
    var(--bg);
}

@media (max-width: 768px) {
  .ops-marquee { padding: 26px 0; }
  .ops-marquee__group > span:not(.ops-marquee__sep) {
    font-size: 15px;
  }
  .ops-marquee__group { gap: 30px; padding-right: 30px; }
}

/* ============ CONTACT ASIDE — compact demo card ============ */
.ops-aside-demo {
  display: block;
  text-decoration: none;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 26px 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: var(--shadow-2);
}
.ops-aside-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 100% 0%, var(--gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.ops-aside-demo:hover {
  border-color: var(--border-3);
  background: var(--bg-3);
  box-shadow: var(--shadow-3), var(--shadow-gold-sm);
  transform: translateY(-2px);
}
.ops-aside-demo:hover::before { opacity: 1; }
.ops-aside-demo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
}
.ops-aside-demo__eyebrow {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ops-aside-demo__play {
  width: 14px;
  height: 14px;
  color: var(--gold);
  opacity: 0.7;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.ops-aside-demo:hover .ops-aside-demo__play {
  opacity: 1;
  transform: scale(1.1);
}
.ops-aside-demo__title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
}
.ops-aside-demo__cta {
  font-size: 14px !important;
  position: relative;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL-DRIVEN ANIMATIONS — redesign v2
   ══════════════════════════════════════════════════════════════ */

/* ── U4: Section progress micro-bar ──────────────────────────── */
.ops-section {
  position: relative;
}
.ops-section > .section-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
  z-index: 5;
  transition: width 0.05s linear;
}

/* ── U2: SVG draw-in states ──────────────────────────────────── */
.svg-draw .draw-stroke {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.svg-draw.is-visible .draw-stroke { stroke-dashoffset: 0; }

.svg-draw .scale-bar {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.svg-draw.is-visible .scale-bar { opacity: 0.7; }
.svg-draw.is-visible .scale-bar:nth-child(1) { transition-delay: 0.05s; }
.svg-draw.is-visible .scale-bar:nth-child(2) { transition-delay: 0.10s; }
.svg-draw.is-visible .scale-bar:nth-child(3) { transition-delay: 0.15s; }
.svg-draw.is-visible .scale-bar:nth-child(4) { transition-delay: 0.20s; }
.svg-draw.is-visible .scale-bar:nth-child(5) { transition-delay: 0.25s; }
.svg-draw.is-visible .scale-bar:nth-child(6) { transition-delay: 0.30s; }
.svg-draw.is-visible .scale-bar:nth-child(7) { transition-delay: 0.35s; }

.svg-draw .pop-star {
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-spring);
}
.svg-draw.is-visible .pop-star { transform: scale(1); }
.svg-draw.is-visible .pop-star:nth-child(1) { transition-delay: 0.05s; }
.svg-draw.is-visible .pop-star:nth-child(2) { transition-delay: 0.13s; }
.svg-draw.is-visible .pop-star:nth-child(3) { transition-delay: 0.21s; }
.svg-draw.is-visible .pop-star:nth-child(4) { transition-delay: 0.29s; }
.svg-draw.is-visible .pop-star:nth-child(5) { transition-delay: 0.37s; }

/* ── W3: 3D bento card flip-in ───────────────────────────────── */
.bento-tile.bento-3d-in {
  transform: perspective(1200px) rotateY(-12deg) translateZ(-30px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-tile.bento-3d-in.bento-3d-visible {
  transform: perspective(1200px) rotateY(0deg) translateZ(0px);
  opacity: 1;
}

/* U3: Hero phone scroll-scale support */
.hero-phone {
  transform: rotateY(var(--rot, 0deg)) rotateX(-2deg) scale(var(--scroll-scale, 1)) translateZ(0);
}

/* ── Pinned deliverables layout (P5) ─────────────────────────── */
.ops-deliv-pinned .ops-process {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}
.ops-deliv-pinned .ops-process__sticky {
  position: sticky;
  top: calc(var(--nh) + 40px);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
}
.deliv-progress {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--gold);
  opacity: 0.7;
}
.deliv-block {
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--border);
}
.deliv-block:first-child { border-top: 1px solid var(--border); }
.deliv-num {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.deliv-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.deliv-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ops-deliv-pinned .ops-process {
    grid-template-columns: 1fr;
  }
  .ops-deliv-pinned .ops-process__sticky {
    position: static;
  }
}

/* ── Pinned cases layout (P2) ────────────────────────────────── */
.ops-cases-pinned .ops-process {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}
.ops-cases-pinned .ops-process__sticky {
  position: sticky;
  top: calc(var(--nh) + 40px);
  height: fit-content;
  align-self: start;
}
.cases-block {
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.cases-block:first-child { border-top: 1px solid var(--border); }
.cases-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cases-block .cases-num {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.cases-block .cases-head {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.cases-block .cases-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}
@media (max-width: 768px) {
  .ops-cases-pinned .ops-process {
    grid-template-columns: 1fr;
  }
  .ops-cases-pinned .ops-process__sticky {
    position: static;
  }
}

/* ── Pinned services layout (P1 on services.html) ────────────── */
.ops-services-pinned .ops-process {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}
.ops-services-pinned .ops-process__sticky {
  position: sticky;
  top: calc(var(--nh) + 40px);
  height: fit-content;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-dot-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-dot-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.3s;
}
.svc-dot-item.is-active { color: var(--gold); }
.svc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.svc-dot-item.is-active .svc-dot {
  background: var(--gold);
  transform: scale(1.4);
}
.svc-block {
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 768px) {
  .ops-services-pinned .ops-process {
    grid-template-columns: 1fr;
  }
  .ops-services-pinned .ops-process__sticky {
    position: static;
  }
}

/* ── Pinned demo cards (P4 on demo.html) ─────────────────────── */
.ops-demo-pinned .ops-process {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 120px);
  max-width: var(--mw);
  margin: 0 auto;
}
.ops-demo-pinned .ops-process__sticky {
  position: sticky;
  top: calc(var(--nh) + 40px);
  height: fit-content;
  align-self: start;
}
.demo-block {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--border);
}
.demo-block:last-child { border-bottom: 1px solid var(--border); }
.demo-block-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 40px);
  transition: border-color 0.4s, box-shadow 0.4s, opacity 0.5s var(--ease), transform 0.5s var(--ease);
  opacity: 0.4;
  transform: translateY(20px);
}
.demo-block-card.is-active {
  border-color: var(--border-3);
  box-shadow: 0 0 32px var(--gold-glow);
  opacity: 1;
  transform: translateY(0);
}
.demo-block-num {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.demo-block-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.demo-block-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ops-demo-pinned .ops-process {
    grid-template-columns: 1fr;
  }
  .ops-demo-pinned .ops-process__sticky {
    position: static;
  }
  .demo-block-card {
    opacity: 1;
    transform: none;
  }
}

/* ── W1: Horizontal scroll timeline (call-capture) ───────────── */
.h-timeline {
  position: relative;
  height: 300vh;
}
.h-timeline__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.h-timeline__track {
  display: flex;
  gap: 64px;
  transform: translateX(var(--htl-x, 0px));
  transition: transform 0.05s linear;
  padding: 0 50vw;
  will-change: transform;
}
.h-timeline__frame {
  flex-shrink: 0;
  width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  transform: scale(0.9);
}
.h-timeline__frame.is-active {
  opacity: 1;
  transform: scale(1);
}
.h-timeline__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.h-timeline__frame.is-active .h-timeline__icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.h-timeline__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.h-timeline__sub {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}
.h-timeline__divider {
  width: 48px;
  height: 1px;
  background: var(--border-2);
  align-self: center;
  flex-shrink: 0;
}
.h-timeline__section-head {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 120px) 0;
  max-width: var(--mw);
  margin: 0 auto;
}
.h-timeline__section-head .ops-eyebrow { margin-bottom: 16px; }
@media (prefers-reduced-motion: reduce) {
  .h-timeline {
    height: auto;
  }
  .h-timeline__sticky {
    position: static;
    height: auto;
    overflow: visible;
    flex-wrap: wrap;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 120px);
  }
  .h-timeline__track {
    flex-wrap: wrap;
    transform: none !important;
    padding: 0;
    justify-content: center;
    gap: 32px;
  }
  .h-timeline__frame {
    opacity: 1;
    transform: none;
  }
  .h-timeline__divider { display: none; }
}
@media (max-width: 768px) {
  .h-timeline {
    height: auto;
  }
  .h-timeline__sticky {
    position: static;
    height: auto;
    overflow: visible;
  }
  .h-timeline__track {
    flex-wrap: wrap;
    transform: none !important;
    padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 40px);
    gap: 24px;
    justify-content: center;
  }
  .h-timeline__frame {
    opacity: 1;
    transform: none;
    width: 160px;
  }
  .h-timeline__divider { display: none; }
}

/* ============ HERO SCENE V2 — TRANSCRIPT + CRM + ORBITALS ============ */

/* ─── Hero Orbit wrapper ─── */
.hero-orbit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Frame 4: AI Receptionist Transcript ─── */
.phone-state--transcript {
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%,   #1A1A22 0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 30% 100%, #0E0E14 0%, transparent 60%),
    radial-gradient(ellipse 90%  60% at 80% 100%, #14141C 0%, transparent 65%),
    #050507;
  justify-content: flex-start;
  padding: 0;
  flex-direction: column;
}

.trx-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Top padding clears the Dynamic Island (sits at 18–54px from screen top) */
  padding: 36px 20px 12px;
  font-family: 'SF Mono', 'Fira Mono', 'Consolas', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.trx-header > * {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trx-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  flex-shrink: 0;
  animation: pulse-red 1.6s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.trx-live-label {
  color: var(--gold, #D4B36B);
  font-weight: 600;
  letter-spacing: 0.1em;
  flex: 1;
  padding: 0 8px;
}

.trx-duration {
  font-variant-numeric: tabular-nums;
}

.trx-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
  flex: 1;
  overflow-y: hidden;
}

.trx-row {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: flex-start;
}

.trx-row--caller {
  flex-direction: row-reverse;
}

.trx-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(58,58,60,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}

.trx-avatar--ai {
  border: 1px solid var(--gold, #D4B36B);
  color: var(--gold, #D4B36B);
  background: rgba(212,179,107,0.08);
}

.trx-bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  background: rgba(58,58,60,0.95);
  color: #fff;
}

.trx-row--caller .trx-bubble {
  background: var(--gold, #D4B36B);
  color: #0A0A0A;
}

/* Typing dots */
.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold, #D4B36B);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.16s; }
.typing-dots span:nth-child(3) { animation-delay: 0.32s; }

@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
  30%            { opacity: 1;    transform: translateY(-2px); }
}

.trx-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 16px;
  flex-shrink: 0;
}

.trx-mic {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.trx-meta {
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ─── Frame 5: CRM Auto-populate ─── */
.phone-state--crm {
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%,   #161820 0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 20% 100%, #0A0C12 0%, transparent 60%),
    radial-gradient(ellipse 90%  60% at 85% 100%, #101218 0%, transparent 65%),
    #040408;
  justify-content: flex-start;
  padding: 0;
  flex-direction: column;
}

.crm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Clears the Dynamic Island (18–54px from screen top) */
  padding: 38px 16px 10px;
  flex-shrink: 0;
}

.crm-app {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.crm-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212,179,107,0.12);
  border: 1px solid rgba(212,179,107,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crm-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold, #D4B36B);
}

.crm-app-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.crm-app-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-family: 'SF Mono', 'Fira Mono', monospace;
  margin-top: 2px;
}

.crm-status {
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  color: var(--gold, #D4B36B);
  letter-spacing: 0.1em;
  border: 1px solid rgba(212,179,107,0.3);
  border-radius: 4px;
  padding: 3px 6px;
  animation: crm-status-pulse 1.4s ease-in-out infinite;
}

@keyframes crm-status-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

.crm-fields {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.crm-field {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(8px);
}

.crm-field:last-child {
  border-bottom: none;
}

/* Staggered entry when frame is active */
.phone-state--crm.is-active .crm-field {
  animation: crm-field-in 0.4s ease forwards;
  animation-delay: var(--fill-delay, 0s);
}

@keyframes crm-field-in {
  to { opacity: 1; transform: translateY(0); }
}

.crm-label {
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.crm-val {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* Blinking cursor on filling values */
.crm-val--filling::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--gold, #D4B36B);
  margin-left: 2px;
  vertical-align: middle;
  animation: crm-cursor-blink 0.8s step-end infinite;
}

@keyframes crm-cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.crm-val--high {
  color: var(--gold, #D4B36B);
  font-weight: 600;
}

.crm-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 14px;
  background: rgba(212,179,107,0.07);
  flex-shrink: 0;
}

.crm-footer svg {
  width: 14px;
  height: 14px;
  color: var(--gold, #D4B36B);
  flex-shrink: 0;
}

.crm-footer span {
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 10px;
  color: var(--gold, #D4B36B);
  letter-spacing: 0.04em;
}

/* ─── Orbital Widgets ─── */
@keyframes orbit-bob {
  from { transform: translateY(0px); }
  to   { transform: translateY(-6px); }
}

.orbit-w {
  position: absolute;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  background: rgba(20,20,20,0.55);
  border: 1px solid rgba(212,179,107,0.20);
  border-radius: 14px;
  padding: 12px 14px;
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    0 0 0 0 rgba(212,179,107,0);
  white-space: nowrap;
  z-index: 10;
}

.orbit-w.is-shown {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: orbit-bob 4s ease-in-out infinite alternate;
}

.orbit-w:hover {
  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    0 0 18px 2px rgba(212,179,107,0.15);
}

/* Individual widget positions */
.orbit-w--caller-id {
  top: 72px;
  left: -130px;
}

.orbit-w--listening {
  bottom: 22%;
  right: -120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 10px 14px;
}

.orbit-w--listening span {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-family: 'SF Mono', 'Fira Mono', monospace;
}

.orbit-w--lead {
  top: 100px;
  right: -120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.orbit-w--kpi {
  bottom: 28%;
  left: -120px;
}

.orbit-w--review {
  top: 16px;
  left: 50%;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Override generic .orbit-w for review (needs translateX) */
.orbit-w--review.is-shown {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: orbit-bob-center 4s ease-in-out infinite alternate;
}

@keyframes orbit-bob-center {
  from { transform: translateX(-50%) translateY(0px); }
  to   { transform: translateX(-50%) translateY(-6px); }
}

/* Widget content atoms */
.ow-eyebrow {
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold, #D4B36B);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ow-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.ow-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.ow-kpi-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold, #D4B36B);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.ow-mic {
  width: 18px;
  height: 18px;
  color: var(--gold, #D4B36B);
}

.ow-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}

.ow-wave span {
  display: inline-block;
  width: 2px;
  background: var(--gold, #D4B36B);
  border-radius: 1px;
  animation: ow-wave-bar 0.8s ease-in-out infinite alternate;
}

.ow-wave span:nth-child(1) { height: 4px;  animation-delay: 0.0s; }
.ow-wave span:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.ow-wave span:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.ow-wave span:nth-child(4) { height: 8px;  animation-delay: 0.15s; }
.ow-wave span:nth-child(5) { height: 5px;  animation-delay: 0.05s; }

@keyframes ow-wave-bar {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

.ow-check {
  width: 20px;
  height: 20px;
  color: var(--gold, #D4B36B);
  flex-shrink: 0;
}

.ow-stars {
  display: flex;
  gap: 2px;
  margin: 4px 0 2px;
  justify-content: center;
}

.ow-stars .star {
  width: 11px;
  height: 11px;
  color: var(--gold, #D4B36B);
}

/* ─── Reduced-motion overrides ─── */
@media (prefers-reduced-motion: reduce) {
  .trx-live-dot,
  .typing-dots span,
  .crm-status,
  .crm-val--filling::after,
  .ow-wave span {
    animation: none !important;
  }

  .orbit-w.is-shown {
    animation: none !important;
    opacity: 1;
    transform: scale(1);
  }

  .orbit-w--review.is-shown {
    animation: none !important;
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

/* ─── Mobile: hide orbital widgets ─── */
@media (max-width: 768px) {
  .orbit-w {
    display: none !important;
  }
}


/* ============ MOBILE PINNED-SECTION FALLBACKS ============ */
/* On narrow viewports, pinned 2-col sticky layouts collapse to single-column flow.
   The sticky title becomes a normal block at top, content blocks stack naturally. */
@media (max-width: 900px) {
  /* Generic process / cases / services / deliv / demo pinned grids */
  .ops-process,
  .ops-cases-pinned .ops-process,
  .ops-services-pinned .ops-process,
  .ops-deliv-pinned .ops-process,
  .ops-demo-pinned .ops-process {
    display: block !important;
    grid-template-columns: none !important;
  }
  .ops-process__sticky,
  .ops-cases-pinned .ops-process__sticky,
  .ops-services-pinned .ops-process__sticky,
  .ops-deliv-pinned .ops-process__sticky,
  .ops-demo-pinned .ops-process__sticky {
    position: static !important;
    height: auto !important;
    margin-bottom: 32px;
  }
  .ops-process__blocks,
  .ops-cases-pinned .ops-process__blocks,
  .ops-services-pinned .ops-process__blocks,
  .ops-deliv-pinned .ops-process__blocks,
  .ops-demo-pinned .ops-process__blocks {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }
  /* Hide scroll-tied progress dots on mobile — flow doesn't need them */
  .ops-process__sticky .deliv-progress,
  .ops-process__sticky .ops-process__step + .ops-process__step ~ * {
    /* keep individual step labels but ensure they stack readably */
  }
  /* Each block becomes a self-contained card */
  .ops-process__block,
  .deliv-block,
  .cases-block,
  .svc-block,
  .demo-block {
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }
  .ops-process__block:first-child,
  .deliv-block:first-child,
  .cases-block:first-child,
  .svc-block:first-child,
  .demo-block:first-child {
    border-top: none;
    padding-top: 0;
  }
  /* Activate every block by default on mobile (no scroll-tied highlight needed) */
  .ops-process__block,
  .deliv-block,
  .cases-block,
  .svc-block,
  .demo-block {
    opacity: 1 !important;
  }
  /* Cases pinned section large numerals shrink down */
  .cases-block .ops-cases__num,
  .cases-block .cases-num {
    font-size: clamp(48px, 14vw, 72px) !important;
  }
  /* Services pinned section dots indicator hidden on mobile */
  .ops-services-pinned .ops-process__sticky .svc-dots,
  .ops-deliv-pinned .ops-process__sticky .deliv-progress {
    display: none;
  }
}

/* H-timeline (call-capture) — already has its own mobile fallback in JS code,
   ensure section height collapses cleanly on mobile */
@media (max-width: 900px) {
  .h-timeline {
    height: auto !important;
  }
  .h-timeline__sticky {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
  }
  .h-timeline__track {
    flex-wrap: wrap;
    transform: none !important;
    padding: 0 !important;
    justify-content: center;
    gap: 24px;
  }
}

/* ── About page — section spacing & mobile polish ────────────── */
.page-about main > section { position: relative; }

/* Normalize vertical rhythm: remove stacked paddings and redundant borders */
.page-about .ops-roi-section {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 6vw, 120px);
  border-top: 1px solid var(--border);
}

.page-about .ops-cases-pinned .ops-process {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 6vw, 120px);
}

/* Remove the manifesto section's own outer padding so it doesn't double up */
.page-about .ops-cases {
  padding: 0;
  border-top: 1px solid var(--border);
}

.page-about .ops-area-section {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 80px);
}

.page-about .ops-closing-sm {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

/* Tighten hero bottom on this page so it doesn't feel detached */
.page-about .ops-section--hero-page {
  padding-bottom: clamp(64px, 8vw, 112px);
}

/* Manifesto: last cases-block shouldn't have a bottom border (clean transition into next section) */
.page-about .ops-cases-pinned .ops-process__blocks .cases-block:last-child {
  border-bottom: none;
}

/* Mobile polish */
@media (max-width: 768px) {
  .page-about .ops-section--hero-page {
    padding-top: calc(var(--nh) + 56px);
    padding-bottom: 56px;
  }
  .page-about .ops-section--hero-page .ops-display-l {
    font-size: clamp(36px, 9vw, 56px);
    margin-bottom: 24px;
    line-height: 1.05;
  }
  .page-about .ops-section--hero-page .ops-body-l {
    font-size: 16px;
    line-height: 1.55;
  }
  .page-about .ops-roi-section,
  .page-about .ops-area-section,
  .page-about .ops-closing-sm,
  .page-about .ops-cases-pinned .ops-process {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .page-about .ops-display-m {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.1;
  }
  .page-about .ops-body-l {
    font-size: 15px;
  }
  .page-about .ops-cases-pinned .ops-process__sticky {
    margin-bottom: 24px;
  }
  .page-about .ops-cases-pinned .ops-process__sticky h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  .page-about .cases-block {
    padding: 32px 0 !important;
  }
  .page-about .cases-block .cases-num {
    font-size: 40px !important;
    margin-bottom: 12px;
  }
  .page-about .cases-block .cases-head {
    font-size: 18px;
  }
  .page-about .cases-block .cases-sub {
    font-size: 14px;
    line-height: 1.6;
  }
  .page-about .ops-area {
    gap: 8px;
  }
  .page-about .ops-area__chip {
    font-size: 12px;
    padding: 6px 12px;
  }
  .page-about .ops-area-head h2 {
    font-size: clamp(28px, 7vw, 40px);
  }
  .page-about .ops-closing-sm .ops-display-l {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.1;
  }
}
