:root {
  --charcoal: #1b1d1c;
  --slate: #232525;
  --slate-2: #2b2d2c;
  --ink: #f5f2ec;
  --orange: #ee7a22;
  --orange-soft: rgba(238, 122, 34, 0.12);
  --text: #f5f2ec;
  --text-dim: rgba(245, 242, 236, 0.65);
  --text-faint: rgba(245, 242, 236, 0.4);
  --line: rgba(245, 242, 236, 0.1);
  --bg-deep: #141615;
  --bg-alt: #181a19;
  --nav-bg: rgba(27, 29, 28, 0.92);
  --drawer-bg: rgba(20, 22, 21, 0.98);
  --dropdown-bg: #202221;
  --card-glass: rgba(32, 34, 33, 0.92);
  --grid-line: rgba(245, 242, 236, 0.03);
  --ghost-border: rgba(245, 242, 236, 0.25);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-chip: 0 14px 36px rgba(0, 0, 0, 0.4);
  --sans: var(--font-montserrat), 'Montserrat', system-ui, sans-serif;
  --mono: var(--font-jetbrains), 'JetBrains Mono', ui-monospace, monospace;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme='light'] {
  --charcoal: #f7f5f0;
  --slate: #ffffff;
  --slate-2: #edeae2;
  --ink: #1b1d1c;
  --text: #22241f;
  --text-dim: rgba(27, 29, 28, 0.68);
  --text-faint: rgba(27, 29, 28, 0.45);
  --line: rgba(27, 29, 28, 0.12);
  --bg-deep: #eceae3;
  --bg-alt: #efede6;
  --nav-bg: rgba(247, 245, 240, 0.92);
  --drawer-bg: rgba(250, 248, 244, 0.98);
  --dropdown-bg: #ffffff;
  --card-glass: rgba(255, 255, 255, 0.94);
  --grid-line: rgba(27, 29, 28, 0.045);
  --ghost-border: rgba(27, 29, 28, 0.3);
  --shadow-card: 0 20px 48px rgba(27, 29, 28, 0.13);
  --shadow-chip: 0 12px 30px rgba(27, 29, 28, 0.12);
}

html.theme-anim,
html.theme-anim body,
html.theme-anim *,
html.theme-anim *::before,
html.theme-anim *::after {
  transition: background-color 0.35s ease, color 0.35s ease,
    border-color 0.35s ease, box-shadow 0.35s ease !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--charcoal);
  scroll-behavior: auto;
  overflow-x: hidden;
  overflow-anchor: none;
  overscroll-behavior: none;
  max-width: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--charcoal);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-anchor: none;
  overscroll-behavior: none;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe, canvas, svg {
  max-width: 100%;
}

::selection { background: var(--orange); color: #141414; }

.container { width: min(1220px, calc(100% - 3rem)); margin: 0 auto; }
.mono { font-family: var(--mono); }
.accent { color: var(--orange); }

.kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); max-width: 22ch; }
h3 { font-size: 1.1rem; letter-spacing: -0.01em; }

.section-intro {
  margin-top: 1.4rem;
  max-width: 62ch;
  color: var(--text-dim);
  font-size: 0.98rem;
}

[data-animate].will-animate {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
[data-animate].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  [data-animate].will-animate,
  [data-animate].is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s ease;
}
.btn-primary { background: var(--orange); color: #161616; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(238, 122, 34, 0.35); }
.btn-primary .btn-arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost { border-color: var(--ghost-border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.72rem; }
.btn-block { width: 100%; justify-content: center; }

/* CTAs carrying the availability dot get the dark "available now" treatment */
.btn-primary:has(.btn-dot) {
  background: #121413;
  color: #f5f2ec;
  border-color: rgba(245, 242, 236, 0.16);
}
.btn-primary:has(.btn-dot):hover {
  background: #121413;
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(238, 122, 34, 0.25);
}
[data-theme='light'] .btn-primary:has(.btn-dot) {
  border-color: rgba(27, 29, 28, 0.2);
  box-shadow: 0 8px 22px rgba(27, 29, 28, 0.18);
}

.btn-dot {
  position: relative;
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
}
.btn-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
}
html.effects-ready .btn-dot::after {
  animation: btn-dot-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes btn-dot-ping {
  0% { transform: scale(1); opacity: 0.75; }
  75%, 100% { transform: scale(2.7); opacity: 0; }
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  background: var(--line);
  pointer-events: none;
}
#scroll-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), #ffab5e);
  box-shadow: 0 0 12px rgba(238, 122, 34, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ---------- topbar ---------- */
.topbar {
  position: relative;
  z-index: 101;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.topbar-clocks { display: flex; gap: 1.4rem; }
.clock b { color: var(--orange); font-weight: 500; margin-right: 0.35em; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem 0;
}
.logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--orange);
  text-decoration: none;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex: none;
}
.logo img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(11.75rem, 46vw);
}
.logo span { color: var(--orange); font-weight: 600; }
.logo i { color: var(--orange); font-style: normal; }

.nav-menu { flex: 1; }
.menu { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.menu-item { position: relative; }
.menu-item > a,
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
}
.menu-item > a:hover,
.menu-item:hover > .menu-trigger,
.menu-item.open > .menu-trigger { color: var(--ink); }
.caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.menu-item:hover .caret,
.menu-item.open .caret { transform: rotate(225deg) translateY(-1px); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 240px;
  padding: 0.6rem;
  background: var(--dropdown-bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.menu-item:hover > .dropdown,
.menu-item.open > .dropdown,
.menu-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s var(--ease);
}
.dropdown a:hover { background: rgba(238, 122, 34, 0.1); color: var(--orange); transform: translateX(4px); }
.dropdown .drop-all {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 0.3rem;
  padding-bottom: 0.7rem;
}
.dropdown-wide { min-width: 460px; }
.drop-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.1rem 0.6rem; }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex: none;
}
.nav-cta { margin-left: 0; }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease);
}
.theme-toggle:hover { color: var(--orange); border-color: var(--orange); transform: rotate(15deg); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme='light'] .theme-toggle .icon-sun { display: block; }
[data-theme='light'] .theme-toggle .icon-moon { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s ease; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  top: -25%; right: -12%;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(238, 122, 34, 0.15), transparent 62%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.55;
}
.hero-inner { position: relative; }
.hero-title {
  font-size: clamp(1.85rem, 4.6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.swap-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 12ch;
}
.swap { display: inline-block; color: var(--orange); will-change: transform, opacity; }
.hero-sub {
  margin-top: 1.6rem;
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: var(--text-dim);
}
.hero-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-proof {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stars { color: var(--orange); letter-spacing: 0.15em; font-size: 0.85rem; }
.proof-text { font-size: 0.82rem; color: var(--text-dim); }
.proof-text b { color: var(--ink); }

/* ---------- hero visual (floating commerce UI) ---------- */
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-visual {
  position: relative;
  height: 560px;
  pointer-events: none;
}
.hv-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle at 55% 45%, rgba(238, 122, 34, 0.14), transparent 65%);
}
.hv-pos { position: absolute; }
.hv-card {
  background: var(--card-glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
html.effects-ready .hv-card {
  animation: hv-float 6s ease-in-out infinite;
}
.hv-pos-dash    { top: 6%; right: 0; width: 300px; }
.hv-pos-ring    { top: 0; left: 6%; }
.hv-pos-product { bottom: 13%; left: 0; width: 210px; }
.hv-pos-order   { bottom: 4%; right: 6%; width: 264px; }
.hv-pos-chip1   { top: 46%; left: 38%; }
.hv-pos-chip2   { top: 66%; right: 2%; }
html.effects-ready .hv-pos-ring .hv-card    { animation-delay: -1.6s; animation-duration: 5.4s; }
html.effects-ready .hv-pos-product .hv-card { animation-delay: -3s; animation-duration: 6.6s; }
html.effects-ready .hv-pos-order .hv-card   { animation-delay: -2.2s; animation-duration: 5.8s; }
html.effects-ready .hv-pos-chip1 .hv-chip   { animation-delay: -4s; }
html.effects-ready .hv-pos-chip2 .hv-chip   { animation-delay: -1s; animation-duration: 7s; }
@keyframes hv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* dashboard card */
.hv-dash { padding: 1.1rem 1.2rem 1.2rem; }
.hv-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
.hv-dots { display: flex; gap: 5px; }
.hv-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.hv-dots i:first-child { background: var(--orange); }
.hv-tag { font-size: 0.54rem; letter-spacing: 0.2em; color: var(--text-faint); }
.hv-dash-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}
.hv-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.hv-dash-stats small { color: var(--text-faint); font-size: 0.66rem; }
.hv-delta {
  font-size: 0.66rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}
.hv-chart { display: block; width: 100%; height: 68px; margin-bottom: 0.7rem; }
.hv-bars { display: flex; gap: 6px; align-items: flex-end; height: 34px; }
.hv-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(238, 122, 34, 0.25), rgba(238, 122, 34, 0.7));
  transform-origin: bottom;
}
html.effects-ready .hv-bars span {
  animation: hv-bar 2.8s ease-in-out infinite;
}
html.effects-ready .hv-bars span:nth-child(2n) { animation-delay: -1.2s; }
html.effects-ready .hv-bars span:nth-child(3n) { animation-delay: -2s; }
@keyframes hv-bar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.82); }
}

/* conversion ring */
.hv-ring { display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1.1rem; }
.hv-ring svg { width: 64px; height: 64px; }
.hv-ring-text .mono { display: block; font-size: 1.05rem; font-weight: 700; color: var(--orange); }
.hv-ring-text small { color: var(--text-faint); font-size: 0.64rem; }

/* product card */
.hv-product { padding: 0.9rem; }
.hv-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  background:
    linear-gradient(135deg, rgba(238, 122, 34, 0.18), transparent 60%),
    var(--slate-2);
  border: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
}
.hv-line { height: 8px; border-radius: 4px; background: var(--line); margin-bottom: 6px; }
.hv-line-lg { width: 80%; height: 10px; background: var(--text-faint); opacity: 0.4; }
.hv-line:not(.hv-line-lg) { width: 55%; }
.hv-product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
}
.hv-price { color: var(--ink); font-weight: 700; font-size: 0.9rem; }
.hv-cart-btn {
  padding: 0.42rem 0.75rem;
  border-radius: 6px;
  background: var(--orange);
  color: #161616;
  font-weight: 700;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
html.effects-ready .hv-cart-btn {
  animation: hv-cart-pulse 3.4s ease-in-out infinite;
}
@keyframes hv-cart-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238, 122, 34, 0.4); }
  45% { box-shadow: 0 0 0 8px rgba(238, 122, 34, 0); }
}

/* order toast */
.hv-order {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
}
.hv-order-dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}
.hv-order b { display: block; font-size: 0.8rem; color: var(--ink); }
.hv-order small { color: var(--text-faint); font-size: 0.68rem; }
.hv-order-check {
  margin-left: auto;
  color: var(--orange);
  font-weight: 700;
}

/* chips */
.hv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--card-glass);
  border: 1px solid rgba(238, 122, 34, 0.35);
  color: var(--text-dim);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  box-shadow: var(--shadow-chip);
}
html.effects-ready .hv-chip {
  animation: hv-float 6s ease-in-out infinite;
}
.hv-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* badge bar / marquee */
.badge-bar { position: relative; margin-top: 4rem; padding: 1.5rem 0 1.8rem; border-top: 1px solid var(--line); }
.badge-bar-label {
  text-align: center;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  color: var(--text-faint);
  margin-bottom: 1.2rem;
}
.badge-bar-label b { color: var(--orange); font-weight: 500; }
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--slate);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.badge:hover { border-color: var(--orange); color: var(--ink); transform: translateY(-2px); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---------- sections ---------- */
.section {
  padding: clamp(4.5rem, 8.5vw, 7rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section-alt { background: var(--bg-alt); }
#hero {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}
.section-head { margin-bottom: 3rem; }

/* ---------- why ---------- */
.why-list { border-top: 1px solid var(--line); }
.why-row {
  display: flex;
  gap: 1.6rem;
  padding: 1.8rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.35s var(--ease);
}
.why-row:hover { background: rgba(245, 242, 236, 0.02); }
.why-row.is-in { transition: background 0.3s ease, transform 0.35s var(--ease), opacity 0.9s var(--ease); }
.why-row.is-in:hover { transform: translateX(0.6rem); }
.why-arrow { color: var(--orange); font-size: 1.3rem; line-height: 1.4; transition: transform 0.35s var(--ease); }
.why-row:hover .why-arrow { transform: translateX(6px); }
.why-row h3 { margin-bottom: 0.5rem; }
.why-row p { color: var(--text-dim); font-size: 0.94rem; max-width: 68ch; }
.why-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.team {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.team-member {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.team-member:hover { transform: translateY(-4px); border-color: rgba(238, 122, 34, 0.4); }
.team-li {
  margin-top: 0.45rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid rgba(238, 122, 34, 0.4);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.team-member b { font-size: 0.88rem; }
.team-member small { color: var(--text-faint); font-size: 0.72rem; }

/* ---------- stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.8rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.5rem;
  align-content: start;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(238, 122, 34, 0.4); }
.stat-over { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--text-faint); }
.stat-num { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-dim); }

/* ---------- credentials ---------- */
.cred-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1rem; }
.cred-col {
  padding: 1.8rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cred-col h4 {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-bottom: 1.2rem;
}
.cred-list { list-style: none; display: grid; gap: 0.7rem; }
.cred-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.cred-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.review-rows { display: grid; gap: 1rem; }
.review-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 0.8rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.review-row:last-child { border-bottom: none; }
.review-row b { font-size: 0.95rem; }
.review-row .mono { color: var(--orange); font-size: 0.85rem; }
.review-row small { grid-column: 1 / -1; font-size: 0.58rem; letter-spacing: 0.2em; color: var(--text-faint); }
.cred-col-reviews { min-width: 0; }
.reviews-widget { display: grid; gap: 1.1rem; }
.reviews-widget-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.reviews-score {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.reviews-widget-head small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.reviews-track {
  display: grid;
  gap: 0.9rem;
}
.review-card {
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 0.7rem;
}
.review-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.55;
}
.review-card footer {
  display: grid;
  gap: 0.15rem;
}
.review-card footer b { font-size: 0.86rem; }
.review-card footer small { color: var(--text-faint); font-size: 0.72rem; }
.cred-copy { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1.4rem; }
.retention { display: grid; gap: 0.4rem; margin-bottom: 1.4rem; }

.booking-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  max-width: 100%;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(238, 122, 34, 0.5);
  padding-bottom: 0.4rem;
  transition: color 0.3s ease;
}
.booking-link:hover { color: var(--orange); }
.booking-link i { font-style: normal; transition: transform 0.3s var(--ease); }
.booking-link:hover i { transform: translateX(5px); }
.booking-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: pulse 2s ease-in-out infinite;
  flex: none;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08); } }

/* ---------- client-first approach ---------- */
.section-cf {
  background:
    radial-gradient(ellipse 55% 60% at 12% 20%, rgba(238, 122, 34, 0.08), transparent 70%),
    var(--charcoal);
}
.cf-head {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.cf-head-visual {
  position: relative;
  height: 330px;
  pointer-events: none;
}
.cfv-pos { position: absolute; }
.cfv-pos-chat   { top: 8%; right: 0; width: 300px; }
.cfv-pos-review { bottom: 0; left: 0; width: 200px; }
.cfv-pos-chip1  { top: 0; left: 6%; }
.cfv-pos-chip2  { bottom: 6%; right: 4%; }
.cfv-pos-chat .hv-card   { animation-delay: -2.4s; animation-duration: 6.2s; }
.cfv-pos-review .hv-card { animation-delay: -1.2s; animation-duration: 5.6s; }
.cfv-pos-chip1 .hv-chip  { animation-delay: -3.4s; }
.cfv-pos-chip2 .hv-chip  { animation-delay: -0.8s; animation-duration: 7s; }

.cfv-chat { padding: 1rem 1.1rem 0.9rem; }
.cfv-chat-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.cfv-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
.cfv-msgs { display: grid; gap: 0.55rem; margin-bottom: 0.9rem; }
.cfv-msg {
  max-width: 88%;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-dim);
}
.cfv-msg small {
  display: block;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.15rem;
}
.cfv-them {
  justify-self: start;
  background: var(--slate-2);
  border: 1px solid var(--line);
  border-bottom-left-radius: 3px;
}
.cfv-us {
  justify-self: end;
  background: rgba(238, 122, 34, 0.12);
  border: 1px solid rgba(238, 122, 34, 0.35);
  border-bottom-right-radius: 3px;
  color: var(--ink);
}
.cfv-us small { color: var(--orange); }
.cfv-typing { display: flex; align-items: center; gap: 4px; }
.cfv-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: cfv-bounce 1.2s ease-in-out infinite;
}
.cfv-typing span:nth-child(2) { animation-delay: 0.15s; }
.cfv-typing span:nth-child(3) { animation-delay: 0.3s; }
.cfv-typing em {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--text-faint);
}
@keyframes cfv-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.cfv-review { display: grid; gap: 0.25rem; padding: 1rem 1.1rem; }
.cfv-review .stars { font-size: 0.75rem; }
.cfv-review b { font-size: 0.82rem; color: var(--ink); }
.cfv-review small { color: var(--text-faint); font-size: 0.72rem; }

@media (max-width: 1080px) {
  .cf-head { grid-template-columns: 1fr; }
  .cf-head-visual { display: none; }
}

.cf-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.cf-video {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  min-height: 300px;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  background: none;
  transition: transform 0.4s var(--ease), border-color 0.35s ease, box-shadow 0.4s var(--ease);
}
.cf-video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}
.cf-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 24, 23, 0.2) 0%, rgba(22, 24, 23, 0.55) 45%, rgba(22, 24, 23, 0.92) 100%);
}
.cf-video:hover .cf-video-thumb {
  transform: scale(1.06);
}
.cf-video-1,
.cf-video-2 { background: #161817; }
.cf-video:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 122, 34, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.cf-play {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(238, 122, 34, 0.15);
  border: 1px solid rgba(238, 122, 34, 0.55);
  color: var(--orange);
  font-size: 1rem;
  padding-left: 4px;
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.cf-video:hover .cf-play { transform: scale(1.12); background: var(--orange); color: #161616; }
/* testimonial cards keep dark artwork in both themes — text stays light */
.cf-label {
  position: relative;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  color: rgba(245, 242, 236, 0.5);
}
.cf-video b {
  position: relative;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  text-transform: none;
  color: #f5f2ec;
}
.cf-video small { position: relative; color: rgba(245, 242, 236, 0.5); font-size: 0.74rem; }
.cf-stat {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: 1.8rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cf-stat .stat-num { font-size: clamp(2.6rem, 4vw, 3.6rem); }

/* ---------- YouTube video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(10, 12, 11, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal-panel {
  width: min(920px, 100%);
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.video-modal-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.video-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.video-modal-close:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}
.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- section-head visuals (work + platforms) ---------- */
.head-2col {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.head-visual {
  position: relative;
  height: 280px;
  pointer-events: none;
}
.hvp { position: absolute; }

/* featured work: deploy terminal + vitals */
.hvp-wv-term   { top: 0; right: 0; width: 300px; }
.hvp-wv-vitals { bottom: 0; left: 4%; width: 216px; }
.hvp-wv-chip   { top: 6%; left: 0; }
.hvp-wv-term .hv-card   { animation-delay: -2.6s; animation-duration: 6.4s; }
.hvp-wv-vitals .hv-card { animation-delay: -1.1s; animation-duration: 5.5s; }
.hvp-wv-chip .hv-chip   { animation-delay: -3.8s; }

.wv-term { padding: 1rem 1.1rem 0.9rem; }
.wv-lines { display: grid; gap: 0.45rem; margin-bottom: 0.5rem; }
.wv-line { font-size: 0.7rem; color: var(--text-dim); }
.wv-cmd { color: var(--ink); }
.wv-ok { color: #4ade80; }
.wv-arrow { color: var(--orange); }
.wv-cursor {
  color: var(--orange);
  font-size: 0.7rem;
  animation: wv-blink 1s steps(1) infinite;
}
@keyframes wv-blink { 50% { opacity: 0; } }

.wv-vitals {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
}
.wv-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  border: 3px solid #4ade80;
  color: #4ade80;
  font-weight: 700;
  font-size: 1rem;
}
.wv-vitals b { display: block; font-size: 0.8rem; color: var(--ink); }
.wv-vitals small { color: var(--text-faint); font-size: 0.68rem; }

/* platforms: stack switcher */
.hvp-pv-stack { top: 0; right: 4%; width: 280px; }
.hvp-pv-chip1 { bottom: 14%; left: 0; }
.hvp-pv-chip2 { bottom: 0; right: 8%; }
.hvp-pv-stack .hv-card  { animation-delay: -2s; animation-duration: 6.2s; }
.hvp-pv-chip1 .hv-chip  { animation-delay: -4.2s; }
.hvp-pv-chip2 .hv-chip  { animation-delay: -1.4s; animation-duration: 7s; }

.pv-stack { padding: 1rem 1.1rem 1.1rem; }
.pv-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.pv-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--slate-2);
  color: var(--text-faint);
  font-weight: 700;
  font-size: 0.8rem;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease);
}
.pv-tile.is-active {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange);
  transform: translateY(-3px);
}
.pv-caption {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-align: center;
}

/* track record: growth graph + rotating KPI */
.head-visual-sm { height: 260px; }
.hvp-rv-graph { top: 0; right: 0; width: 280px; }
.hvp-rv-kpi   { bottom: 0; left: 0; width: 240px; }
.hvp-rv-chip  { bottom: 10%; right: 6%; }
.hvp-rv-graph .hv-card { animation-delay: -2.2s; animation-duration: 6.4s; }
.hvp-rv-kpi .hv-card   { animation-delay: -0.9s; animation-duration: 5.6s; }
.hvp-rv-chip .hv-chip  { animation-delay: -3.2s; }

.rv-graph { padding: 1rem 1.1rem 0.9rem; }
.rv-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  height: 96px;
  margin-bottom: 0.8rem;
}
.rv-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
}
.rv-bar i {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, rgba(238, 122, 34, 0.3), rgba(238, 122, 34, 0.75));
  transform-origin: bottom;
}
.rv-bar-hot i {
  background: linear-gradient(to top, rgba(238, 122, 34, 0.6), var(--orange));
  box-shadow: 0 0 16px rgba(238, 122, 34, 0.4);
}
.rv-bar span { font-size: 0.54rem; letter-spacing: 0.1em; color: var(--text-faint); }
.rv-trend {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: #4ade80;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  text-align: center;
}

.rv-kpi { display: grid; gap: 0.2rem; padding: 1.1rem 1.3rem; }
.rv-kpi-val {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.rv-kpi-label { color: var(--text-faint); font-size: 0.72rem; }

/* what we do: replatform flow + API card */
.hvp-sv-flow { top: 0; right: 0; width: 320px; }
.hvp-sv-api  { bottom: 4%; left: 0; width: 250px; }
.hvp-sv-chip { bottom: 16%; right: 6%; }
.hvp-sv-flow .hv-card { animation-delay: -1.8s; animation-duration: 6.6s; }
.hvp-sv-api .hv-card  { animation-delay: -3.4s; animation-duration: 5.4s; }
.hvp-sv-chip .hv-chip { animation-delay: -0.6s; }

.sv-flow { padding: 1rem 1.1rem 1rem; }
.sv-flow-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.sv-pill {
  flex: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--slate-2);
  color: var(--text-dim);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.sv-pill-to {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange);
}
.sv-stream {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
}
.sv-stream i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: sv-stream 1.4s linear infinite;
  opacity: 0;
}
.sv-stream i:nth-child(2) { animation-delay: 0.45s; }
.sv-stream i:nth-child(3) { animation-delay: 0.9s; }
@keyframes sv-stream {
  0% { transform: translateX(-14px); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateX(14px); opacity: 0; }
}
.sv-flow-meta {
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  text-align: center;
}

.sv-api { display: grid; gap: 0.25rem; padding: 1rem 1.2rem; }
.sv-api-platform { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.sv-api-endpoint { font-size: 0.76rem; color: var(--text); }
.sv-api-status { font-size: 0.62rem; color: #4ade80; }

@media (max-width: 1080px) {
  .head-2col { grid-template-columns: 1fr; }
  .head-visual { display: none; }
}

/* ---------- work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.work-card-lg { grid-column: span 2; }
.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.35s ease, box-shadow 0.4s var(--ease);
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 122, 34, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
@media (pointer: fine) {
  .work-card[data-tilt] { transition: border-color 0.35s ease, box-shadow 0.4s var(--ease); }
  .work-card[data-tilt]:hover { transform: none; }
}
.work-visual {
  position: relative;
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #161817;
}
.work-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 24, 23, 0.15) 0%, rgba(22, 24, 23, 0.35) 55%, rgba(22, 24, 23, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.work-card:hover .work-visual img { transform: scale(1.06); }
.work-visual-1,
.work-visual-2,
.work-visual-3,
.work-visual-4,
.work-visual-5 { background: #161817; }
.work-platform {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  z-index: 2;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(245, 242, 236, 0.92);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(245, 242, 236, 0.18);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.work-body { padding: 1.4rem 1.4rem 0.4rem; flex: 1; }
.work-body h3 { margin-bottom: 0.5rem; }
.work-body > p { color: var(--text-dim); font-size: 0.88rem; }
.work-metrics { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.chip {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid rgba(238, 122, 34, 0.3);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.work-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem 1.3rem;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  transition: color 0.3s ease;
}
.work-cta i { font-style: normal; transition: transform 0.3s var(--ease); }
.work-card:hover .work-cta { color: var(--orange); }
.work-card:hover .work-cta i { transform: translateX(5px); }

/* ---------- platforms ---------- */
.cert-line { margin-top: 1.2rem; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--text-faint); }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.platform-card {
  padding: 2rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.7rem;
  align-content: start;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.platform-card:visited { color: inherit; }
.platform-card:hover { transform: translateY(-4px); border-color: rgba(238, 122, 34, 0.45); }
.platform-top { display: flex; justify-content: space-between; align-items: center; }
.p-num { color: var(--orange); font-size: 0.85rem; }
.p-yrs {
  font-size: 0.68rem;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.platform-card h3 { font-size: 1.35rem; color: var(--ink); }
.p-tags { font-size: 0.6rem; letter-spacing: 0.22em; color: var(--text-faint); }
.platform-card > p:not(.p-tags) { color: var(--text-dim); font-size: 0.92rem; text-decoration: none; }
.p-link {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-link i { font-style: normal; color: var(--orange); }
.platform-card:hover .p-link { color: var(--orange); }

/* ---------- services ---------- */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 4rem 17rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, transform 0.35s var(--ease);
}
.service-row:hover { background: rgba(245, 242, 236, 0.02); }
.service-row.is-in { transition: background 0.3s ease, transform 0.35s var(--ease), opacity 0.9s var(--ease); }
.service-row.is-in:hover { transform: translateX(0.6rem); }
.s-num { color: var(--orange); font-size: 0.8rem; }
.service-row p { color: var(--text-dim); font-size: 0.88rem; }
.s-arrow { color: var(--text-faint); font-size: 1.2rem; transition: transform 0.35s var(--ease), color 0.3s ease; }
.service-row:hover .s-arrow { transform: translateX(6px); color: var(--orange); }

/* ---------- process ---------- */
.process { position: relative; }
.process-line {
  position: absolute;
  top: 22px; left: 2%; right: 2%;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
#process-progress {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}
.process-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { position: relative; padding-top: 3.4rem; }
.step-num {
  position: absolute;
  top: 0; left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--slate);
  border: 1px solid rgba(238, 122, 34, 0.5);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 1;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-dim); font-size: 0.86rem; }
.step-tags { display: block; margin-top: 0.9rem; font-size: 0.58rem; letter-spacing: 0.14em; color: var(--orange); }

/* ---------- industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.industry {
  display: grid;
  gap: 0.3rem;
  padding: 1.5rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.industry:hover { transform: translateY(-4px); border-color: rgba(238, 122, 34, 0.45); }
.industry b { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.02em; }
.industry small { color: var(--text-faint); font-size: 0.76rem; }

/* ---------- faq ---------- */
.faq-inner { max-width: 860px; }
.faq-list { display: grid; gap: 0.6rem; }
.faq-item {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(238, 122, 34, 0.45); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  list-style: none;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-icon {
  flex: none;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 65ch;
}

/* ---------- contact ---------- */
.section-contact {
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(238, 122, 34, 0.1), transparent 70%),
    var(--bg-alt);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-inner > * { min-width: 0; max-width: 100%; }
.contact-sub { margin-top: 1.2rem; color: var(--text-dim); max-width: 40ch; }
.contact-sub a { color: var(--orange); }
.contact-fine {
  margin: 1.6rem 0 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.contact-form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.4rem;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field > span,
.field-group legend {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(238, 122, 34, 0.15); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }

.phone-split {
  display: grid;
  grid-template-columns: minmax(7.5rem, auto) 1fr;
  gap: 0.55rem;
  align-items: stretch;
}
.combo { position: relative; min-width: 0; }
.combo-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 3.05rem;
  padding: 0.7rem 0.8rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.combo-trigger:hover,
.combo-trigger[aria-expanded='true'] { border-color: var(--orange); }
.combo-trigger:disabled { opacity: 0.55; cursor: not-allowed; }
.combo-dial { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; white-space: nowrap; }
.combo-caret {
  flex: none;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.55;
}
.combo-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  min-width: 16rem;
  max-width: min(22rem, 80vw);
  background: var(--dropdown-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  display: grid;
  gap: 0.4rem;
}
.combo-search {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.86rem;
  outline: none;
}
.combo-search:focus { border-color: var(--orange); }
.combo-list {
  max-height: 14rem;
  overflow: auto;
  display: grid;
  gap: 0.1rem;
}
.combo-option {
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 0.84rem;
  cursor: pointer;
}
.combo-option:hover,
.combo-option.is-selected { background: var(--orange-soft); color: var(--orange); }
.combo-empty {
  margin: 0;
  padding: 0.7rem;
  color: var(--text-faint);
  font-size: 0.8rem;
}

.field-group { border: none; display: grid; gap: 0.7rem; }
.check-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.check input, .seg input { position: absolute; opacity: 0; pointer-events: none; }
.check span {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--slate);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  user-select: none;
}
.check span:hover { border-color: rgba(238, 122, 34, 0.5); color: var(--ink); }
.check input:checked + span { background: var(--orange-soft); border-color: var(--orange); color: var(--orange); }
.segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--slate);
}
.seg { position: relative; }
.seg span {
  display: block;
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s ease;
  border-right: 1px solid var(--line);
  user-select: none;
}
.seg:last-child span { border-right: none; }
.seg span:hover { color: var(--ink); background: rgba(245, 242, 236, 0.03); }
.seg input:checked + span { background: var(--orange); color: #161616; font-weight: 700; }
.form-note {
  min-height: 1.1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}
.form-note.is-success { color: #4ade80; }
.form-note.is-error { color: #f87171; }
.form-step-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.form-step-copy {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.form-actions { display: grid; gap: 0.75rem; }
.form-skip {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
.form-skip:hover { color: var(--orange); }
.form-skip:disabled { opacity: 0.5; cursor: not-allowed; }
.form-done { display: grid; gap: 0.7rem; align-content: start; }
.form-done-kicker { color: var(--orange); letter-spacing: 0.18em; }
.form-done h3 { text-transform: none; }

/* ---------- contact page ---------- */
.contact-hero .contact-hero-inner {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  margin: 0.8rem 0 1.2rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(238, 122, 34, 0.35);
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}
.contact-hero-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: grid;
  gap: 1.3rem;
}
.contact-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.contact-people { display: grid; gap: 0.7rem; }
.contact-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--slate);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.3s var(--ease), background 0.25s ease;
}
.contact-person:hover {
  border-color: rgba(238, 122, 34, 0.55);
  background: rgba(238, 122, 34, 0.06);
  transform: translateY(-2px);
}
.contact-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.contact-person b { display: block; font-size: 0.95rem; color: var(--ink); }
.contact-person small { color: var(--text-dim); font-size: 0.78rem; }
.contact-person i { color: var(--orange); font-style: normal; }
.contact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.contact-stats > div {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--slate);
  display: grid;
  gap: 0.2rem;
}
.contact-stats b { font-size: 1.05rem; color: var(--ink); line-height: 1; }
.contact-stats small {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact-offices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

.calendly-bookers { display: grid; gap: 1.2rem; min-width: 0; max-width: 100%; }
.calendly-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.calendly-tab {
  text-align: left;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--text-dim);
  cursor: pointer;
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.calendly-tab strong { color: var(--ink); font-size: 0.98rem; overflow-wrap: anywhere; }
.calendly-tab span { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--text-faint); overflow-wrap: anywhere; }
.calendly-tab:hover { border-color: rgba(238, 122, 34, 0.45); }
.calendly-tab.is-active {
  border-color: var(--orange);
  background: var(--orange-soft);
}
.calendly-tab.is-active strong { color: var(--orange); }
.calendly-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.calendly-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.calendly-panel-head h3 { margin: 0.35rem 0 0.25rem; font-size: 1.35rem; }
.calendly-meta { color: var(--text-dim); font-size: 0.88rem; }
.calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
.calendly-inline-widget iframe {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 960px) {
  .contact-hero .contact-hero-inner { grid-template-columns: 1fr; }
  .calendly-tabs { grid-template-columns: 1fr; }
  .calendly-panel-head { flex-direction: column; align-items: start; }
}

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 4rem 0 2rem; background: var(--bg-deep); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2.2rem;
  padding-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; color: var(--text-faint); font-size: 0.88rem; max-width: 28ch; }
.footer-partner-line { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--text-faint); line-height: 2; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-dim);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.3s var(--ease);
}
.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #161616;
  transform: translateY(-3px);
}
.socials svg { width: 16px; height: 16px; }
.footer-col { display: grid; gap: 0.6rem; align-content: start; }
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.footer-h-gap { margin-top: 1.4rem; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.25s ease;
  width: fit-content;
}
.footer-col a:hover { color: var(--orange); }
.footer-locations {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.2rem;
}
.footer-loc-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--text-faint);
  margin-bottom: 1.3rem;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s ease;
}
.loc-card:hover { transform: translateY(-4px); border-color: rgba(238, 122, 34, 0.45); }
.loc-flag {
  position: relative;
  flex: none;
  width: 52px; height: 35px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  animation: loc-wave 5.5s ease-in-out infinite;
  transform-origin: left center;
}
.loc-card:nth-child(2) .loc-flag { animation-delay: -1.8s; }
.loc-card:nth-child(3) .loc-flag { animation-delay: -3.6s; }
.loc-flag svg { display: block; width: 100%; height: 100%; }
.loc-flag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: loc-sheen 4.5s ease-in-out infinite;
}
.loc-card:nth-child(2) .loc-flag::after { animation-delay: -1.5s; }
.loc-card:nth-child(3) .loc-flag::after { animation-delay: -3s; }
@keyframes loc-wave {
  0%, 100% { transform: rotate(0deg) skewY(0deg); }
  30% { transform: rotate(-1.6deg) skewY(1.4deg); }
  70% { transform: rotate(1.4deg) skewY(-1.2deg); }
}
@keyframes loc-sheen {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(130%); }
}
.loc-info b { display: block; font-size: 0.9rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; }
.loc-info small { color: var(--text-faint); font-size: 0.64rem; letter-spacing: 0.14em; }
.loc-info small span { color: var(--orange); }
.loc-addr {
  display: grid;
  gap: 0.12rem;
  margin-top: 0.45rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
}
.loc-mail {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 122, 34, 0.35);
}
.loc-mail:hover { border-bottom-color: var(--orange); }

.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  font-size: 0.76rem;
  color: var(--text-faint);
}
.footer-legal a { color: var(--text-faint); text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .drop-cols { grid-template-columns: 1fr; }
  .dropdown-wide { min-width: 260px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card-lg { grid-column: span 2; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr 1fr; }
  .cf-stat { grid-column: span 2; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.4rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand p {
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand .socials { justify-content: center; }
}

@media (max-width: 960px) {
  .process-line { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 3rem 1fr auto; }
  .service-row p { grid-column: 2 / 3; grid-row: 2; }
  .topbar-clocks { display: none; }
}

@media (max-width: 820px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(84vw, 360px);
    background: var(--drawer-bg);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    padding: 5rem 1.5rem 3rem;
    z-index: 105;
  }
  body.nav-open .nav-menu { transform: translateX(0); }
  .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .menu-item { border-bottom: 1px solid var(--line); }
  .menu-item > a, .menu-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0.4rem;
    font-size: 1rem;
  }
  .dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.6rem 1rem;
    opacity: 1;
    visibility: hidden;
    transform: none;
    display: none;
  }
  .menu-item.open > .dropdown { display: grid; visibility: visible; }
  .menu-item:hover > .dropdown:not(.force) { }
  .dropdown a { white-space: normal; }
  .nav-inner { gap: 0.65rem; }
  .nav-actions {
    gap: 0.4rem;
    position: relative;
    z-index: 110;
  }
  .nav-cta {
    display: inline-flex;
    padding: 0.55rem 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    line-height: 1;
  }
  .nav-cta .btn-dot { width: 6px; height: 6px; }
  .theme-toggle {
    width: 36px;
    height: 36px;
  }
  .nav-toggle { display: flex; position: relative; z-index: 110; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.1rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand p {
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand .socials { justify-content: center; }
  .footer-col a { font-size: 0.8rem; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .loc-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .footer-loc-label { text-align: center; }
  .footer-base {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .topbar-inner { justify-content: center; }
  .logo { font-size: 1.15rem; }
  .logo img { height: 2.15rem; }
  .nav-cta {
    padding: 0.5rem 0.7rem;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
  .nav-cta .btn-dot { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-lg { grid-column: span 1; }
  .cf-grid { grid-template-columns: 1fr; }
  .cf-stat { grid-column: span 1; }
  .team { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .segmented { grid-template-columns: repeat(2, 1fr); }
  .seg:nth-child(2) span { border-right: none; }
  .seg:nth-child(-n+2) span { border-bottom: 1px solid var(--line); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 0.9rem;
    padding-bottom: 2.2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.4rem;
  }
  .footer-col a { font-size: 0.76rem; }
  .footer-col h4 { font-size: 0.58rem; letter-spacing: 0.16em; }
  .container { width: min(1220px, calc(100% - 2rem)); }
  .contact-form { padding: 1.25rem; }
  .contact-fine { letter-spacing: 0.08em; font-size: 0.55rem; }
  .calendly-panel-head { padding: 1.1rem 1rem; }
  .calendly-inline-widget { height: 640px !important; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card:last-child:nth-child(odd) { grid-column: auto; }
  .service-row { grid-template-columns: 1fr auto; }
  .s-num { display: none; }
  .service-row p { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* =====================================================================
   INTERIOR PAGES (Platforms)
   ===================================================================== */

/* ---------- page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 80% -10%, rgba(238, 122, 34, 0.14), transparent 68%),
    radial-gradient(ellipse 45% 50% at 5% 110%, rgba(238, 122, 34, 0.06), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 66ch; }
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1.4rem;
}
.page-hero .lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 60ch;
}
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.page-hero-stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.page-hero-stats .ph-stat { display: grid; gap: 0.2rem; }
.page-hero-stats .ph-num { font-size: 1.7rem; font-weight: 700; color: var(--ink); line-height: 1; }
.page-hero-stats .ph-num .accent { color: var(--orange); }
.page-hero-stats .ph-label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }

/* =====================================================================
   Page-hero visual — the animated banner art on each platform page.
   `.pfv` is the stage; every page picks an accent through --pf and
   composes the same primitives (panel / log / prog / steps / gauge).
   ===================================================================== */
.page-hero-inner.has-visual {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(1.8rem, 4.5vw, 4.5rem);
  align-items: center;
}
.page-hero-copy { max-width: 62ch; }
.has-visual .page-hero-stats { gap: clamp(1.1rem, 2.4vw, 2.4rem); }
.has-visual .page-hero-stats .ph-num { font-size: 1.5rem; }

.pfv {
  position: relative;
  height: clamp(440px, 42vw, 540px);
  pointer-events: none;
  --pf: var(--orange);
}
/* taller stage for banners whose top panel carries a pill row or long list */
.pfv-stage-tall { height: clamp(520px, 46vw, 580px); }
.pf-adobe       { --pf: #ff5a3c; }
.pf-shopify     { --pf: #7cb342; }
.pf-bigcommerce { --pf: #5a78f7; }
.pf-woo         { --pf: #9b6dd1; }

.pfv-glow {
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(circle at 55% 45%, color-mix(in srgb, var(--pf) 22%, transparent), transparent 66%);
  filter: blur(14px);
}
.pfv-pos { position: absolute; will-change: transform; }
.pfv .hv-chip { border-color: color-mix(in srgb, var(--pf) 38%, transparent); white-space: nowrap; }
.pfv .hv-chip i { background: var(--pf); }

/* shared panel shell */
.pfv-panel { padding: 1rem 1.1rem 1.1rem; }
.pfv-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.85rem; }
.pfv-head .pfv-dot {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pf);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 18%, transparent);
  animation: pfv-pulse 2.6s ease-in-out infinite;
}
@keyframes pfv-pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 18%, transparent); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--pf) 0%, transparent); }
}
.pfv-head b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.pfv-badge {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--pf) 34%, transparent);
  color: var(--pf);
  white-space: nowrap;
}

/* stat row */
.pfv-stat-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.8rem; }
.pfv-num { display: block; font-family: var(--mono); font-size: 1.4rem; font-weight: 700; color: var(--ink); line-height: 1.05; }
.pfv-sub { font-size: 0.62rem; color: var(--text-faint); }
.pfv-delta {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* progress track */
.pfv-prog { margin-top: 0.9rem; }
.pfv-prog-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.pfv-prog-top b { color: var(--text-dim); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pfv-track { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.pfv-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--pf) 45%, transparent), var(--pf));
}

/* console / log rows */
.pfv-log { display: grid; gap: 0.36rem; font-family: var(--mono); font-size: 0.6rem; }
.pfv-log-line { display: flex; align-items: center; gap: 0.5rem; color: var(--text-dim); overflow: hidden; }
.pfv-log-line .m { flex: none; color: var(--pf); font-weight: 700; }
.pfv-log-line .p { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pfv-log-line .s { flex: none; color: #4ade80; }
.pfv-log-line .t { flex: none; color: var(--text-faint); }

/* sequential steps */
.pfv-steps { display: grid; gap: 0.5rem; }
.pfv-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  color: var(--text-faint);
  transition: color 0.3s ease;
}
.pfv-step i {
  flex: none;
  display: grid;
  place-items: center;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-style: normal;
  font-size: 0.5rem;
  color: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.pfv-step .amt { margin-left: auto; font-family: var(--mono); font-size: 0.58rem; color: var(--text-faint); }
.pfv-step.is-done { color: var(--text-dim); }
.pfv-step.is-done i { background: var(--pf); border-color: var(--pf); color: #151515; }
.pfv-step.is-active { color: var(--ink); }
.pfv-step.is-active i { border-color: var(--pf); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 18%, transparent); }
.pfv-step.is-active .amt { color: var(--pf); }

/* circular gauge */
.pfv-gauge { display: flex; align-items: center; gap: 0.85rem; }
.pfv-gauge svg { flex: none; width: 62px; height: 62px; }
.pfv-gauge-arc-bg { stroke: var(--line); }
.pfv-gauge-arc { stroke: var(--pf); }
.pfv-gauge-text b { display: block; font-family: var(--mono); font-size: 1.05rem; font-weight: 700; color: var(--pf); line-height: 1.15; }
.pfv-gauge-text small { font-size: 0.6rem; color: var(--text-faint); }

/* node flow (API → edge → storefront) */
.pfv-flow { display: flex; align-items: center; }
.pfv-node { display: grid; justify-items: center; gap: 0.3rem; flex: none; }
.pfv-node i {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--slate-2);
  font-style: normal;
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--text-dim);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.pfv-node small { font-family: var(--mono); font-size: 0.46rem; letter-spacing: 0.12em; color: var(--text-faint); }
.pfv-node.is-lit i { border-color: var(--pf); color: var(--pf); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 16%, transparent); }
.pfv-wire { flex: 1; height: 1px; margin: 0 0.3rem; margin-bottom: 0.9rem; background: var(--line); position: relative; overflow: hidden; }
.pfv-wire::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -20px;
  width: 20px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--pf));
  animation: pfv-travel 2.6s linear infinite;
}
.pfv-wire.delay::after { animation-delay: -1.3s; }
@keyframes pfv-travel {
  0% { left: -20px; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* core web vitals meters */
.pfv-vitals { display: grid; gap: 0.6rem; }
.pfv-vital {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  color: var(--text-faint);
}
.pfv-vital b { color: var(--text-dim); font-weight: 500; }
.pfv-vital .val { color: var(--ink); font-weight: 700; min-width: 42px; text-align: right; }

/* block editor mock */
.pfv-editor { display: grid; gap: 0.5rem; }
.pfv-type { font-size: 0.8rem; font-weight: 600; color: var(--ink); min-height: 1.3em; line-height: 1.3; }
.pfv-type::after {
  content: '';
  display: inline-block;
  width: 1px; height: 0.92em;
  margin-left: 2px;
  vertical-align: -0.1em;
  background: var(--pf);
  animation: pfv-caret 1.05s steps(1) infinite;
}
@keyframes pfv-caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.pfv-blk { height: 8px; border-radius: 4px; background: var(--line); }
.pfv-blk.w90 { width: 90%; }
.pfv-blk.w70 { width: 70%; }
.pfv-blk.w45 { width: 45%; }
.pfv-blk-img {
  display: grid;
  place-items: center;
  height: 54px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--pf) 20%, transparent), transparent 62%),
    var(--slate-2);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--text-faint);
}

/* swapping headline inside a panel (services / industries banners) */
.pfv-swap-name { display: block; font-size: 0.98rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.pfv-swap-sub { display: block; margin-top: 0.2rem; font-size: 0.72rem; color: var(--text-dim); line-height: 1.4; }

/* pill row — every item shown, the live one lit */
.pfv-tags { display: flex; flex-wrap: wrap; gap: 0.32rem; margin-top: 0.9rem; }
.pfv-pill {
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.pfv-pill.is-on {
  color: var(--pf);
  border-color: color-mix(in srgb, var(--pf) 50%, transparent);
  background: color-mix(in srgb, var(--pf) 10%, transparent);
}

/* connected-systems list (integrations banner) */
.pfv-conn { display: grid; gap: 0.5rem; }
.pfv-conn-row { display: flex; align-items: center; gap: 0.55rem; font-size: 0.72rem; color: var(--text-dim); }
.pfv-conn-row i {
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.pfv-conn-row .st {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.pfv-conn-row.is-on i { background: var(--pf); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 18%, transparent); }
.pfv-conn-row.is-on .st { color: var(--pf); }

/* toast row (reuses .hv-order rhythm with the platform accent) */
.pfv-toast { display: flex; align-items: center; gap: 0.8rem; padding: 0.85rem 1rem; }
.pfv-toast-dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pf);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 18%, transparent);
}
.pfv-toast b { display: block; font-size: 0.78rem; color: var(--ink); }
.pfv-toast small { font-size: 0.66rem; color: var(--text-faint); }
.pfv-toast .pfv-toast-check { margin-left: auto; font-family: var(--mono); font-weight: 700; color: var(--pf); }

/* ---------- all-platforms orbit (platforms index banner) ---------- */
/* Taller stage: the tiles sweep a 248px ring, so the summary card below
   needs clearance the standard stage height can't guarantee. */
.pfv-stage-orbit { height: clamp(520px, 46vw, 580px); }
.pfv-orbit {
  position: absolute;
  top: 200px; left: 50%;
  width: 248px; height: 248px;
  transform: translate(-50%, -50%);
}
.pfv-ring { position: absolute; border-radius: 50%; border: 1px dashed var(--line); }
.pfv-ring-lg { inset: 0; }
.pfv-ring-sm { inset: 22%; border-style: solid; }
.pfv-sweep {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, color-mix(in srgb, var(--orange) 26%, transparent) 40deg, transparent 90deg);
  mask-image: radial-gradient(circle, transparent 42%, #000 44%);
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 44%);
  animation: pfv-spin 7s linear infinite;
}
.pfv-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  width: 96px; height: 96px;
  align-content: center;
  border-radius: 50%;
  background: var(--card-glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}
.pfv-hub-mark { font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1; }
.pfv-hub-mark span { color: var(--orange); }
.pfv-hub small { font-family: var(--mono); font-size: 0.44rem; letter-spacing: 0.16em; color: var(--text-faint); text-align: center; }

.pfv-spin { position: absolute; inset: 0; animation: pfv-spin 46s linear infinite; }
.pfv-orb { position: absolute; inset: 0; transform: rotate(var(--a)); }
.pfv-orb-in { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%) rotate(calc(-1 * var(--a))); }
.pfv-orb-anti { animation: pfv-spin-rev 46s linear infinite; }
@keyframes pfv-spin { to { transform: rotate(360deg); } }
@keyframes pfv-spin-rev { to { transform: rotate(-360deg); } }

.pfv-tile {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  width: 118px;
  padding: 0.65rem 0.5rem 0.6rem;
  border-radius: 12px;
  background: var(--card-glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-chip);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease);
}
.pfv-tile-mark {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--pf);
  background: color-mix(in srgb, var(--pf) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--pf) 32%, transparent);
}
.pfv-tile b { font-size: 0.62rem; font-weight: 600; color: var(--text-dim); line-height: 1.25; }
.pfv-tile small { font-family: var(--mono); font-size: 0.46rem; letter-spacing: 0.14em; color: var(--text-faint); }
.pfv-tile.is-active {
  border-color: color-mix(in srgb, var(--pf) 55%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pf) 12%, transparent), var(--shadow-card);
  transform: scale(1.06);
}
.pfv-tile.is-active b { color: var(--ink); }

/* ---------- shared slot geometry (same rhythm on every platform page) ----------
   Widths are percentages of the stage so the right-hand column (a, d) and the
   left-hand column (b, c) never overlap, whatever width the grid track gets. */
.pfv-slot-a { top: 0; right: 0; width: 56%; }
.pfv-slot-b { top: 40%; left: 0; width: 42%; }
.pfv-slot-c { bottom: 0; left: 0; width: 43%; }
.pfv-slot-d { bottom: 8%; right: 0; width: 54%; }
.pfv-slot-chip1 { top: 46%; left: 45%; }
.pfv-slot-chip2 { top: 20%; left: 0; }
.pfv-slot-b .hv-card { animation-delay: -1.6s; animation-duration: 5.4s; }
.pfv-slot-c .hv-card { animation-delay: -3s; animation-duration: 6.6s; }
.pfv-slot-d .hv-card { animation-delay: -2.2s; animation-duration: 5.8s; }
.pfv-slot-chip1 .hv-chip { animation-delay: -4s; }
.pfv-slot-chip2 .hv-chip { animation-delay: -1s; animation-duration: 7s; }
/* orbit page: summary card sits below the ring */
.pfv-slot-summary { bottom: 0; left: 50%; width: 290px; margin-left: -145px; }
.pfv-slot-orbit-chip { top: 6%; right: 0; }

@media (max-width: 1080px) {
  .page-hero-inner.has-visual { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pfv-sweep, .pfv-spin, .pfv-orb-anti, .pfv-wire::after,
  .pfv-head .pfv-dot, .pfv-type::after, .pfv .hv-card, .pfv .hv-chip { animation: none; }
}

/* ---------- detail cards (services / industries / integrations hubs) ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.detail-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.6rem 1.5rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 130px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.detail-card:hover { border-color: rgba(238, 122, 34, 0.35); transform: translateY(-3px); }
.detail-card-head { display: flex; align-items: baseline; gap: 0.75rem; }
.detail-num { font-family: var(--mono); font-size: 0.74rem; color: var(--orange); }
.detail-card h3 { font-size: 1.12rem; }
.detail-tags {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.detail-card > p { color: var(--text-dim); font-size: 0.9rem; }
.detail-card > p a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(238, 122, 34, 0.35); }
.tick-list { list-style: none; display: grid; gap: 0.42rem; margin-top: auto; padding-top: 0.5rem; }
.tick-list li { position: relative; padding-left: 1.15rem; font-size: 0.82rem; color: var(--text-dim); }
.tick-list li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--orange); font-size: 0.76rem; }
.detail-proof {
  margin-top: 0.3rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-faint);
}
.detail-proof b { color: var(--text-dim); font-weight: 600; }

@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

/* ---------- breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-style: normal; color: var(--text-faint); }
.breadcrumb b { color: var(--orange); font-weight: 500; }

/* ---------- prose intro ---------- */
.prose { max-width: 68ch; }
.prose p { color: var(--text-dim); margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(238, 122, 34, 0.35); }
.prose a:hover { border-bottom-color: var(--orange); }

/* ---------- project grid ---------- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.proj-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s var(--ease);
}
.proj-card:visited { color: inherit; }
.proj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 122, 34, 0.45);
  box-shadow: var(--shadow-card);
}
.proj-card-head { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.proj-card h3 { font-size: 1.05rem; color: var(--ink); }
.proj-tag {
  flex: none;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(238, 122, 34, 0.3);
  background: var(--orange-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.proj-card p { color: var(--text-dim); font-size: 0.86rem; flex: 1; }
.proj-url {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  word-break: break-all;
  transition: color 0.25s ease;
}
.proj-url i { font-style: normal; color: var(--orange); }
.proj-card:hover .proj-url { color: var(--orange); }

/* ---------- spec / capability list ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.spec {
  display: grid;
  gap: 0.5rem;
  padding: 1.6rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-content: start;
}
.spec .spec-num { font-family: var(--mono); font-size: 0.8rem; color: var(--orange); }
.spec h3 { font-size: 1rem; }
.spec p { color: var(--text-dim); font-size: 0.86rem; }

/* ---------- certification cards ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cert-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-content: start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.cert-card:visited { color: inherit; }
.cert-card:hover { border-color: rgba(238, 122, 34, 0.45); transform: translateY(-3px); }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.cert-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(238, 122, 34, 0.6);
}
.cert-card b { font-size: 0.98rem; }
.cert-card .cert-verify { font-family: var(--mono); font-size: 0.66rem; color: var(--text-faint); }
.cert-card:hover .cert-verify { color: var(--orange); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 120% at 85% 15%, rgba(238, 122, 34, 0.16), transparent 70%),
    var(--bg-alt);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}
.cta-band h2 { max-width: 20ch; }
.cta-band p { margin-top: 1rem; color: var(--text-dim); max-width: 46ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

@media (max-width: 860px) {
  .spec-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   SEO / GEO / AEO additions
   ============================================================ */

/* --- Static crawlable nav & footer ---------------------------------------
   These render inside #site-header / #site-footer for crawlers and for users
   without JS. platform.js replaces them with the interactive header/footer on
   render, so in practice they are on screen for a single frame. They are kept
   in the DOM (not display:none) so search and AI crawlers still count them. */
.static-nav,
.static-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
  align-items: center;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  font-size: 0.82rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
}
.static-footer {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.static-footer p {
  flex: 1 0 100%;
  margin: 0 0 0.5rem;
  color: var(--text-dim);
}
.static-nav a,
.static-footer a {
  color: var(--text-dim);
  text-decoration: none;
}
.static-nav a:hover,
.static-footer a:hover { color: var(--orange); }

/* --- Comparison table (featured-snippet / AEO target) -------------------- */
.table-wrap {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-glass);
}
.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}
.compare-table caption {
  caption-side: top;
  padding: 1rem 1.15rem 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  text-align: left;
}
.compare-table th,
.compare-table td {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.compare-table tbody th[scope='row'] { font-weight: 700; color: var(--text); }
.compare-table tbody th[scope='row'] a { color: var(--orange); text-decoration: none; }
.compare-table tbody th[scope='row'] a:hover { text-decoration: underline; }
.compare-table td { color: var(--text-dim); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th { background: var(--orange-soft); }

/* ---------- legal pages ---------- */
.legal-hero .page-hero-inner { max-width: 72ch; }
.legal {
  max-width: 72ch;
}
.legal h2 {
  font-size: 1.15rem;
  margin: 2.6rem 0 0.85rem;
}
.legal h3 {
  font-size: 0.98rem;
  margin: 1.6rem 0 0.55rem;
  color: var(--ink);
}
.legal p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.legal ul,
.legal ol {
  margin: 0 0 1.15rem 1.15rem;
  display: grid;
  gap: 0.45rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.legal li::marker { color: var(--orange); }
.legal a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 122, 34, 0.35);
}
.legal a:hover { border-bottom-color: var(--orange); }
.legal-updated {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0.4rem 0 0;
}

/* ---------- chat widgets: Tawk (left) + WhatsApp (right) ---------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}
@media print {
  .whatsapp-fab,
  iframe[title*='chat'],
  div[class*='widget-visible'] {
    display: none !important;
  }
}

