/* Prompt Media Solutions — design tokens & global styles */

:root {
  /* Logo assets: logo-navbar.png (light), logo-on-dark.png / logo-footer.png (dark) */
  --void-rgb: 0 0 0;
  --signal-rgb: 227 30 36;
  --ember-rgb: 227 30 36;

  --void-950: #000000;
  --void-900: #0a0a0a;
  --void-850: #141414;
  --void-800: #1a1a1a;
  --void-700: #2a2a2a;
  --void-600: #404040;

  --signal-950: #2a080a;
  --signal-900: #5c1015;
  --signal-800: #8f1519;
  --signal-700: #b3181d;
  --signal-600: #e31e24;
  --signal-500: #ef4444;
  --signal-400: #f87171;

  --ember-600: #b3181d;
  --ember-500: #e31e24;
  --ember-400: #ef4444;
  --ember-300: #f87171;

  /* Legacy blue-* → brand (older selectors) */
  --blue-500: var(--signal-700);
  --blue-400: var(--signal-600);
  --blue-300: var(--ember-500);

  /* Surfaces & ink — neutral whites/greys + PROMPT grey */
  --surface-50: #fafafa;
  --surface-cool: #f5f7fa;
  --surface-100: #f0f0f0;
  --surface-200: #e4e4e4;
  --page-bg: #fffafa;
  --ink-900: #0a0a0a;
  --ink-700: #3d3e41;
  --ink-600: #58595b;
  --ink-500: #6e6f73;
  --ink-400: #909195;

  /* Legacy slate aliases */
  --slate-50: #fafafa;
  --slate-100: #f0f0f0;
  --slate-200: #e4e4e4;
  --slate-400: #909195;
  --slate-600: #58595b;
  --slate-900: #0a0a0a;

  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Shared layout container (aligns navbar + sections). */
  --site-container-max: 90rem;

  /* Gradients — red → red + black (theme) */
  --grad-hero: linear-gradient(135deg, #000000 0%, #5c1015 46%, #0a0a0a 100%);
  --grad-signal: linear-gradient(135deg, #8f1519 0%, #e31e24 42%, #b3181d 100%);
  --grad-signal-soft: linear-gradient(135deg, rgb(var(--signal-rgb) / 0.82) 0%, rgb(var(--ember-rgb) / 0.62) 100%);
  --grad-text: linear-gradient(90deg, #b3181d, #e31e24 68%, #8f1519);
  --grad-text-brand: linear-gradient(90deg, #8f1519, #e31e24 58%, #b3181d);
  --grad-hero-primary: linear-gradient(105deg, #0a0a0a 0%, #1c1917 42%, #3f1215 88%);
  --grad-hero-accent: linear-gradient(100deg, #5c1015 0%, #8f1519 18%, #e31e24 48%, #f58220 72%, #b3181d 100%);
  --grad-card-border: linear-gradient(135deg, rgb(var(--signal-rgb) / 0.16), rgb(var(--ember-rgb) / 0.06));
  /* Legacy gradient names */
  --grad-navy: var(--grad-signal);
  --grad-navy-soft: var(--grad-signal-soft);
  --grad-blue: var(--grad-signal);

  /* Shadows — void-first; signal tint kept subtle (enterprise) */
  --shadow-card: 0 4px 24px rgb(var(--void-rgb) / 0.06), 0 2px 10px rgb(var(--signal-rgb) / 0.03);
  --shadow-glass-sm: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 6px 18px rgb(var(--void-rgb) / 0.045),
    0 2px 10px rgb(var(--signal-rgb) / 0.025);
  --shadow-glass-md: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 8px 24px rgb(var(--void-rgb) / 0.055),
    0 24px 60px rgb(var(--void-rgb) / 0.04), 0 4px 20px rgb(var(--signal-rgb) / 0.025);
  --shadow-glass-lg: 0 1px 0 rgba(255, 255, 255, 0.94) inset, 0 12px 32px rgb(var(--void-rgb) / 0.065),
    0 32px 80px rgb(var(--void-rgb) / 0.05), 0 8px 28px rgb(var(--signal-rgb) / 0.035);
  --shadow-glow: 0 0 28px rgb(var(--signal-rgb) / 0.055);
  --shadow-float: 0 8px 28px rgb(var(--void-rgb) / 0.1), 0 2px 12px rgb(var(--signal-rgb) / 0.04);

  --nav-shadow-light: 0 1px 0 rgb(var(--void-rgb) / 0.05), 0 6px 20px rgb(var(--void-rgb) / 0.045),
    0 18px 44px rgb(var(--signal-rgb) / 0.028);

  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans: "Google Sans Flex", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Google Sans Flex", system-ui, sans-serif;
}

/* Layout utility override: align section containers with navbar width. */
.max-w-7xl {
  max-width: var(--site-container-max) !important;
}

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

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  font-family: inherit;
  background: var(--page-bg);
  color: var(--ink-900);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}


::selection {
  background: rgb(var(--signal-rgb) / 0.12);
  color: var(--void-950);
}

/* Subtle ambient layer — void depth + restrained brand warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 72% 48% at 50% -8%, rgb(var(--signal-rgb) / 0.014), transparent 58%),
    radial-gradient(ellipse 58% 40% at 100% 32%, rgb(var(--ember-rgb) / 0.01), transparent 54%),
    radial-gradient(ellipse 52% 38% at 0% 72%, rgb(var(--void-rgb) / 0.025), transparent 55%);
}

main {
  position: relative;
  z-index: 1;
}

/* Site preloader — homepage each load (see assets/js/motion/preloader.js) */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: all;
  overflow: hidden;
}

.site-preloader__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--void-950);
}

.site-preloader__veil::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0,
    transparent 18px,
    rgb(255 255 255 / 0.9) 18px,
    rgb(255 255 255 / 0.9) 19px,
    transparent 19px,
    transparent 36px
  );
  pointer-events: none;
}

.site-preloader__phrase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  z-index: 3;
  pointer-events: none;
  text-align: center;
}

.site-preloader__phrase-line {
  margin: 0;
  font-family: var(--font-display, ui-sans-serif, system-ui, sans-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: rgb(255 255 255 / 0.92);
}

.site-preloader__phrase-line .site-preloader__phrase-word:nth-child(odd) .site-preloader__phrase-inner {
  font-weight: 700;
}

.site-preloader__phrase-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-inline: 0.12em;
}

.site-preloader__phrase-word:first-child {
  margin-inline-start: 0;
}

.site-preloader__phrase-inner {
  display: inline-block;
  will-change: transform, opacity;
}

.site-preloader__line {
  width: 0;
  max-width: min(18rem, 72vw);
  height: 1px;
  margin-top: 0.85rem;
  margin-inline: auto;
  background: var(--signal-600);
  transform-origin: 50% 50%;
  pointer-events: none;
  will-change: width, transform, opacity;
}

.site-preloader__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94);
}

.site-preloader__logo img {
  width: min(480px, 82vw);
  height: auto;
  max-height: min(120px, 18vh);
  object-fit: contain;
}

html.is-preloading body {
  overflow: hidden;
}

html.has-site-preloader:not(.is-preloading) body {
  overflow: auto;
  background: var(--surface-50);
}

.site-preloader.is-done {
  pointer-events: none;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__phrase-inner {
    will-change: auto;
  }

  .site-preloader__line {
    will-change: auto;
  }
}

/* Inner content column — matches navbar width; use inside sections, not as a page wrapper. */
.site-body {
  width: 100%;
  max-width: var(--site-container-max);
  margin-inline: auto;
}

/* Section bands — premium curved shells + light / dark / signal rhythm */
.section-shell {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 0;
  overflow: hidden;
}
.section-shell.container {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}

/* Full-viewport band backgrounds; section content stays in max-w-* inner wrappers. */
section.section-shell.section-band--light,
section.section-shell.section-band--dark,
section.section-shell.section-band--signal {
  position: relative;
  isolation: isolate;
  background: transparent;
}
section.section-shell.section-band--light::before,
section.section-shell.section-band--dark::before,
section.section-shell.section-band--signal::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
}
section.section-shell.section-band--light::before {
  background: var(--page-bg);
}
section.section-shell.section-band--dark::before {
  background: linear-gradient(165deg, var(--void-950) 0%, var(--void-900) 48%, #0f0f0f 100%);
}
section.section-shell.section-band--signal::before,
section.section-shell.section-band--signal.business-outcomes::before {
  background: linear-gradient(145deg, var(--signal-950) 0%, #1a0809 40%, var(--void-950) 100%);
}
.section-shell + .section-shell {
  margin-top: 0;
}
.section-shell.section-band--light {
  box-shadow: none;
}
.section-band--light {
  background: var(--page-bg);
  color: var(--ink-900);
}
.section-band--dark {
  background: linear-gradient(165deg, var(--void-950) 0%, var(--void-900) 48%, #0f0f0f 100%);
  color: #fff;
}
.section-band--signal {
  background: linear-gradient(145deg, var(--signal-950) 0%, #1a0809 40%, var(--void-950) 100%);
  color: #fff;
}
.section-band--dark .text-ink-900,
.section-band--dark .growth-layer-title,
.section-band--signal .text-ink-900 {
  color: #fff;
}
.section-band--dark .text-ink-500,
.section-band--dark .text-ink-600,
.section-band--signal .text-ink-500,
.section-band--signal .business-outcomes-subtitle {
  color: rgba(255, 255, 255, 0.78);
}
.section-band--light .section-band__muted {
  color: var(--ink-600);
}
.section-band--dark .section-band__muted,
.section-band--signal .section-band__muted {
  color: rgba(255, 255, 255, 0.78);
}
.section-band--dark .glass-card .section-band__muted,
.section-band--signal .glass-card .section-band__muted,
.section-band--signal .business-outcomes-card .section-band__muted {
  color: rgba(255, 255, 255, 0.72);
}
.section-band--dark .section-band__lead,
.section-band--signal .section-band__lead {
  color: rgba(255, 255, 255, 0.78);
}
.section-band--dark .glass-card,
.section-band--signal .glass-card,
.section-band--signal .business-outcomes-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 12px 40px rgba(0, 0, 0, 0.25);
}
.section-band--dark .growth-layer-placeholder {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}
.section-band--dark .growth-layer-placeholder span {
  color: rgba(255, 255, 255, 0.4);
}

.section-band--signal .business-outcomes-card h3 {
  color: #fff;
}
.section-band--signal .business-outcomes-icon {
  color: var(--signal-400);
}
.section-band--signal.business-outcomes {
  background: linear-gradient(145deg, var(--signal-950) 0%, #1a0809 40%, var(--void-950) 100%);
  color: #fff;
}
.section-band--signal .business-outcomes-bg__dots,
.section-band--signal .business-outcomes-bg__lines {
  opacity: 0.28;
}

.section-band--dark.security-showcase {
  background: #000000;
  --ss-card-bg: #1e1f20;
  --ss-card-bg-hover: #2d2e30;
  --ss-card-border: rgba(255, 255, 255, 0.08);
  --ss-card-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.25);
  --ss-card-shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  --ss-card-title: rgba(255, 255, 255, 0.95);
  --ss-card-body: rgba(255, 255, 255, 0.72);
  color: #fff;
}
.section-band--dark .security-showcase__headline-part {
  color: #fff;
}
.section-band--dark .security-showcase__sub {
  color: rgba(255, 255, 255, 0.72);
}
.section-band--dark .security-showcase-card {
  background: var(--ss-card-bg);
  border: 1px solid var(--ss-card-border);
  box-shadow: var(--ss-card-shadow);
}
.section-band--dark .security-showcase-card__title {
  color: var(--ss-card-title);
}
.section-band--dark .security-showcase-card__body {
  color: var(--ss-card-body);
}
.section-band--dark .security-showcase__headline {
  color: #fff;
}
.section-band--dark .security-showcase__headline-accent {
  background: linear-gradient(90deg, var(--signal-400), var(--ember-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-band--dark .security-showcase__ambient {
  background: none;
}

/* Dark / signal band — beat legacy section-specific rules (~3000+) */
.section-band--dark.security-showcase .security-showcase__headline {
  color: #fff;
}
.section-band--dark .security-showcase-svg,
.section-band--dark .security-showcase-icon {
  color: var(--signal-400);
}
.section-band--dark .security-showcase-svg {
  stroke: var(--signal-400);
}
.section-band--dark .security-showcase-card:hover {
  background: var(--ss-card-bg-hover);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--ss-card-shadow-hover);
}
/* Typography */
.text-display {
  font: 800 clamp(2.75rem, 6vw, 5rem) / 1.05 "Google Sans Flex", system-ui, sans-serif;
}
.text-h2 {
  font: 700 clamp(1.75rem, 3.5vw, 2.5rem) / 1.15 "Google Sans Flex", system-ui, sans-serif;
}
.text-h3 {
  font: 600 clamp(1.25rem, 2vw, 1.5rem) / 1.3 "Google Sans Flex", system-ui, sans-serif;
}
.text-body-lg {
  font: 400 1.125rem/1.7 "Google Sans Flex", system-ui, sans-serif;
}
.text-body {
  font: 400 1rem/1.65 "Google Sans Flex", system-ui, sans-serif;
}
.text-small {
  font: 500 0.875rem/1.5 "Google Sans Flex", system-ui, sans-serif;
}
.text-mono {
  font: 500 0.8rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
}

/* Motion reveal helper — opt-in. Content is visible by default; JS adds
   .motion-prep only after GSAP is confirmed available, then animates to .is-animated. */
.motion-prep {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  will-change: opacity, transform;
}
.motion-prep[data-animate="fade-down"] {
  transform: translate3d(0, -1.25rem, 0);
}
.motion-prep[data-animate="fade-left"] {
  transform: translate3d(1.25rem, 0, 0);
}
.motion-prep[data-animate="fade-right"] {
  transform: translate3d(-1.25rem, 0, 0);
}
.motion-prep[data-animate="scale-in"] {
  transform: scale(0.96);
}
.motion-prep[data-animate="fade"] {
  transform: translate3d(0, 0.75rem, 0);
}
.motion-prep.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-prep[data-animate="scale-in"].is-animated {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .motion-prep,
  .motion-prep.is-animated {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* GSAP owns entrance when motion layer is active */
.motion-gsap .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Lenis smooth scroll */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* Social proof — dual-layer client logo stage */
.social-proof-logos-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 88rem);
  margin: 0 auto;
  padding-inline: clamp(0.75rem, 2.5vw, 1.5rem);
}
@media (min-width: 1024px) {
  .social-proof-logos-wrap {
    width: min(calc(100vw - 3rem), 90rem);
  }
}
.social-proof-logos-stage--wide {
  padding: clamp(1.35rem, 3vw, 2rem) clamp(0.5rem, 1.5vw, 0.75rem);
}
.social-proof-logos-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(0.75rem, 2vw, 1rem);
  border-radius: clamp(1.25rem, 3vw, 1.75rem);
  /* background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 48%,
    rgba(250, 250, 250, 0.9) 100%
  );
  box-shadow: var(--shadow-glass-lg), 0 0 0 1px rgb(var(--signal-rgb) / 0.06); */
}
.social-proof-logos-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(var(--signal-rgb) / 0.04) 50%,
    transparent
  );
  opacity: 0.65;
}
.social-proof-logos-stage__ambient {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 18% 0%, rgb(var(--signal-rgb) / 0.07), transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgb(var(--ember-rgb) / 0.06), transparent 58%);
  z-index: 0;
}
.social-proof-logos-stage__label {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font: 700 0.6875rem "Google Sans Flex", system-ui, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal-500);
  opacity: 0.88;
}
.social-proof-logos-stage__rows {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  /* gap: 0.65rem; */
}
.social-proof-marquee--elite .social-proof-logo-cell {
  min-width: 11rem;
  padding: 1.45rem 1.65rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.social-proof-marquee--elite .social-proof-logo-cell img {
  max-height: 3.15rem;
  max-width: 11.5rem;
  opacity: 0.9;
}
.social-proof-marquee--primary .social-proof-logo-cell {
  background: rgba(255, 255, 255, 0.84);
}

/* Client logo marquee */
.social-proof-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.social-proof-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.social-proof-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.social-proof-logo-cell {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 1.35rem 1.6rem;
  background: rgba(255, 255, 255, 0.78);
}
.social-proof-logo-cell img {
  max-height: 3rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}
.social-proof-marquee__viewport:hover .social-proof-logo-cell img {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .social-proof-logos-stage__rows {
    gap: 1rem;
  }
  .social-proof-marquee__track {
    flex-wrap: wrap;
    width: 100% !important;
    transform: none !important;
  }
  .social-proof-marquee__group[aria-hidden="true"] {
    display: none !important;
  }
  .social-proof-marquee__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 1px;
    background: var(--surface-200);
  }
  .social-proof-marquee__viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
@media (prefers-reduced-motion: reduce) and (min-width: 640px) {
  .social-proof-marquee__group {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) and (min-width: 768px) {
  .social-proof-marquee__group {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Platform — single-layer horizontal scroll chapters */
.platform-layers {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vh, 4rem);
}

.platform-layer {
  position: relative;
  min-height: auto;
}

.platform-layer__shell {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  gap: clamp(0.75rem, 1.5vh, 1rem);
}

.platform-layer.growth-layer-card {
  padding: 1rem;
}

@media (min-width: 768px) {
  .platform-layer.growth-layer-card {
    padding: 1.125rem 1.25rem;
  }
}

.platform-layer__intro {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.2vh, 0.85rem);
}

.platform-layer__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-inline: 0.125rem;
}

.platform-layer__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  align-items: center;
}

.platform-layer__hero-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.28);
  aspect-ratio: 3 / 2;
  min-height: 12.5rem;
}

.platform-layer__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-layer__hero-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgb(var(--signal-rgb) / 0.22) 45%,
    rgb(227 30 36 / 0.18) 100%
  );
}

.platform-layer--communication .platform-layer__hero-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #c2410c 100%);
}

.platform-layer--digital-marketing .platform-layer__hero-placeholder {
  background: linear-gradient(135deg, #172554 0%, #312e81 55%, #9a3412 100%);
}

.platform-layer--development .platform-layer__hero-placeholder {
  background: linear-gradient(135deg, #0c4a6e 0%, #134e4a 55%, #7c2d12 100%);
}

.platform-layer--btl .platform-layer__hero-placeholder {
  background: linear-gradient(90deg, #1c1917 0%, #44403c 45%, #b45309 100%);
}

.platform-layer__hero-copy {
  min-width: 0;
}

.platform-layer__hero-title {
  letter-spacing: -0.02em;
}

.platform-layer__hero-body {
  max-width: 42rem;
}

.platform-layer__rail {
  position: relative;
  flex-shrink: 0;
  min-width: 0;
}

.platform-layer__rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.75rem;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 14, 0.55) 0%,
    rgba(12, 12, 14, 0) 100%
  );
}

.platform-layer__scroll-hint {
  letter-spacing: 0.02em;
  padding-inline: 0.125rem;
}

.platform-layer__scroll-hint-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.platform-layer__scroll-hint svg {
  width: 0.875rem;
  height: 0.875rem;
}

.platform-layer__viewport {
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--signal-rgb) / 0.35) transparent;
}

.platform-layer__viewport:focus-visible {
  outline: 2px solid rgb(var(--signal-rgb) / 0.55);
  outline-offset: 2px;
}

.platform-layer__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  min-height: 0;
  padding-inline-start: 0.25rem;
  padding-inline-end: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 0.25rem;
}

.platform-layer[data-scroll-dir="rtl"] .platform-layer__track {
  padding-inline-start: clamp(1.5rem, 4vw, 3rem);
  padding-inline-end: 0.25rem;
}

.platform-layer__tile {
  flex: 0 0 clamp(6.5rem, 11vw, 8.5rem);
  scroll-snap-align: start;
  min-width: 0;
  display: flex;
}

.platform-layer__tile--circle {
  flex: 0 0 clamp(6.5rem, 11vw, 8.5rem);
}

#platform .platform-layer__intro,
#platform .platform-layer__intro * {
  opacity: 1;
  transform: none;
}

#platform .platform-layer.is-platform-pinned.growth-layer-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 48px rgba(0, 0, 0, 0.32);
}

#platform .platform-layer.is-platform-pinned.growth-layer-card {
  border-color: rgb(var(--signal-rgb) / 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 20px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgb(var(--signal-rgb) / 0.1);
}

#platform .platform-layer__track {
  will-change: auto;
}

#platform .platform-layer.is-platform-pinned .platform-layer__track {
  will-change: transform;
}

.platform-layer__tile .channel-tile--link {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.platform-layer__tile .channel-tile--circle.channel-tile--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.platform-layer__foot {
  flex-shrink: 0;
  padding-inline: 0.125rem;
  padding-top: clamp(0.5rem, 1vh, 0.65rem);
}

@media (min-width: 640px) {
  .platform-layer__hero[data-hero-layout="image-left"] {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .platform-layer__hero[data-hero-layout="image-right"] {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .platform-layer__hero[data-hero-layout="image-right"] .platform-layer__hero-media {
    order: 2;
  }

  .platform-layer__hero[data-hero-layout="image-right"] .platform-layer__hero-copy {
    order: 1;
  }

  .platform-layer__hero-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (min-width: 1024px) {
  .platform-layers {
    gap: 0;
  }

  .platform-layer {
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .platform-layer.growth-layer-card {
    padding: clamp(0.85rem, 1.5vh, 1.15rem) clamp(1rem, 1.75vw, 1.35rem);
  }

  .platform-layer__shell {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(0.5rem, 1vh, 0.75rem);
    padding-block: clamp(0.75rem, 2vh, 1.25rem);
    max-width: 72rem;
    width: 100%;
    margin-inline: auto;
  }

  .platform-layer__hero {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .platform-layer__hero-media {
    border-radius: 1rem;
    aspect-ratio: 5 / 3;
    min-height: min(32vh, 16rem);
    max-height: min(40vh, 21rem);
  }

  .platform-layer__hero-placeholder {
    min-height: 0;
  }

  .platform-layer__scroll-hint {
    display: none;
  }

  .platform-layer__rail::before {
    height: 1.25rem;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 100%
    );
  }

  .platform-layer__viewport {
    flex: 0 0 auto;
    overflow: hidden;
    scroll-snap-type: none;
    margin-top: 0;
    display: block;
  }

  .platform-layer__track {
    gap: clamp(0.85rem, 1.5vw, 1.25rem);
    align-items: flex-end;
    padding-bottom: 0.125rem;
  }

  .platform-layer__tile--circle {
    flex: 0 0 var(--platform-tile-w, 11rem);
  }

  .platform-layer__foot {
    flex-shrink: 0;
    padding-top: clamp(0.35rem, 0.75vh, 0.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-layer__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .platform-layer__track {
    will-change: auto;
    transform: none !important;
  }

  .platform-layer__scroll-hint {
    display: none;
  }
}

/* Platform light — static wrapped channel grid */
.platform-layer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  margin-top: 0.25rem;
  padding: 0.125rem 0.25rem 0.25rem;
}

#platform-light .platform-layer__grid .platform-layer__tile--circle {
  flex: 0 0 clamp(5.25rem, 10vw, 7.5rem);
}

.growth-layer-grid {
  position: relative;
}
.growth-layer-spine {
  display: none !important;
  position: absolute;
  left: 50%;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  margin-left: -1px;
  transform-origin: top center;
  background: linear-gradient(
    180deg,
    rgb(var(--signal-rgb) / 0.45) 0%,
    rgb(var(--signal-rgb) / 0.12) 55%,
    rgb(227 30 36 / 0.2) 100%
  );
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1280px) {
  .growth-layer-spine {
    display: block;
  }
}

/* Glassmorphism utility system */
.glass-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-glass-md);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium),
    border-color 0.25s var(--ease-premium);
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glass-lg);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.78);
  /* backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%); */
  /* border: 1px solid rgba(3, 3, 3, 0.055);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-glass-md); */
}

.glass-pill,
.signal-capsule,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(180deg, #ef3a40 0%, #e31e24 52%, #c91a21 100%);
  border: 1px solid rgb(0 0 0 / 0.18);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.38) inset,
    0 -1px 0 rgb(0 0 0 / 0.12) inset,
    0 3px 12px rgb(227 30 36 / 0.4);
}

.glass-pill {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: 1rem;
}

.eyebrow--wide {
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.12em;
  max-width: 11.5rem;
}

@media (min-width: 640px) {
  .glass-pill,
  .signal-capsule,
  .eyebrow {
    font-size: 0.75rem;
    padding: 0.5rem 1.35rem;
    letter-spacing: 0.18em;
  }
}

/* Dark glass surface (accent regions) */
.glass-card--navy {
  background: linear-gradient(160deg, rgba(3, 3, 3, 0.96) 0%, rgba(69, 10, 10, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 12px 40px rgba(3, 3, 3, 0.45), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--signal-700);
  background-image: linear-gradient(180deg, var(--signal-600) 0%, var(--signal-700) 100%);
  color: #fff;
  padding: 0.8rem 1.85rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgb(0 0 0 / 0.06);
  cursor: pointer;
  transition: transform 0.2s var(--ease-premium), box-shadow 0.2s var(--ease-premium),
    background 0.2s var(--ease-premium);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgb(0 0 0 / 0.06),
    0 4px 14px rgb(var(--signal-rgb) / 0.12);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 2px 4px rgb(0 0 0 / 0.06),
    0 8px 20px rgb(var(--signal-rgb) / 0.14);
}

.btn-primary-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem;
}

.btn-primary-solid {
  background: var(--signal-600);
  border: 1px solid rgb(0 0 0 / 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 1px 2px rgb(0 0 0 / 0.05),
    0 4px 12px rgb(var(--signal-rgb) / 0.1);
}
.btn-primary-solid:hover {
  background: var(--signal-700);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgb(0 0 0 / 0.06),
    0 6px 16px rgb(var(--signal-rgb) / 0.12);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--signal-800);
  border: 1.5px solid rgb(var(--signal-rgb) / 0.18);
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s var(--ease-premium), border-color 0.25s var(--ease-premium),
    color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 14px rgb(var(--signal-rgb) / 0.06);
}
.btn-outline-blue:hover {
  background: #fff;
  border-color: var(--signal-800);
  color: var(--signal-700);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 8px 22px rgb(var(--signal-rgb) / 0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--slate-50);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--slate-50);
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

/* Eyebrow */
.eyebrow-light,
.eyebrow-dark {
  /* legacy modifiers — bright capsule is the default */
}

/* Gradient text */
.text-gradient {
  background: var(--grad-text-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards */
.card-dark {
  background: var(--void-900);
  border: 1px solid rgb(var(--signal-rgb) / 0.14);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card-dark:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--signal-rgb) / 0.28);
  box-shadow: 0 8px 28px rgb(var(--void-rgb) / 0.2), 0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}

.card-light {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-glass-sm);
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium),
    border-color 0.25s var(--ease-premium);
}
.card-light:hover {
  transform: translateY(-3px);
  border-color: rgb(var(--signal-rgb) / 0.16);
  box-shadow: var(--shadow-glass-md);
}

.icon-box {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  background: rgb(var(--signal-rgb) / 0.08);
  border: 1px solid rgb(var(--signal-rgb) / 0.14);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  color: var(--signal-800);
}

.icon-box-lg {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

/* Trust banner on dark canvas */
.trust-banner-section .icon-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fecaca;
}

.trust-banner-section .icon-box svg {
  color: #fecaca;
  stroke: #fecaca;
}

/* Navbar shell — floating dock; content-width pill at rest, max-w-7xl cap on scroll */
.site-nav-shell {
  --nav-inset-x: 1rem;
  --nav-inset-top: 0.75rem;
  --nav-radius: 1.25rem;
  --nav-max-width: min(var(--site-container-max), calc(100% - 2rem));
  --site-nav-dropdown-gap: 0.5rem;
  --site-nav-mega-max-width-products: 64rem;
  --site-nav-mega-max-width-industries: 36rem;
  --site-nav-mega-max-width-solutions: 52rem;
  --site-nav-mega-max-width-company: 22rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--nav-inset-top) var(--nav-inset-x) 0;
  pointer-events: none;
  transition: padding 0.45s var(--ease-premium);
}
@media (min-width: 1024px) {
  .site-nav-shell {
    --nav-inset-x: 1.25rem;
  }
}
.site-nav-shell:has(.site-nav.scrolled),
.site-nav-shell.site-nav-shell--scrolled {
  padding: var(--nav-inset-top) var(--nav-inset-x) 0;
}
@media (min-width: 1024px) {
  .site-nav-shell:has(.site-nav.scrolled),
  .site-nav-shell.site-nav-shell--scrolled {
    --nav-inset-x: 1.25rem;
  }
}
.site-nav-unit {
  position: relative;
  width: 100%;
  max-width: var(--nav-max-width);
  margin-inline: auto;
  pointer-events: none;
  transition: max-width 0.45s var(--ease-premium), width 0.45s var(--ease-premium);
}
.site-nav-shell.site-nav-shell--scrolled .site-nav-unit,
.site-nav-shell:has(.site-nav.scrolled) .site-nav-unit {
  width: 100%;
}
@media (max-width: 1023px) {
  .site-nav-unit {
    width: 100%;
    max-width: 100%;
  }
}
.site-nav.site-nav--dockable {
  position: relative;
  pointer-events: auto;
  width: 100%;
  border-radius: var(--nav-radius);
  transition: max-width 0.45s var(--ease-premium), border-radius 0.45s var(--ease-premium);
}

/* Glass shell on ::before so fixed mega-panels are not clipped (backdrop-filter + overflow on nav would trap them). */
.site-nav.site-nav--dockable::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: #ffffff;
  border: 1px solid rgb(var(--void-rgb) / 0.06);
  box-shadow: var(--nav-shadow-light);
  transition: background 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium);
}
.site-nav--dockable:not(.scrolled) .site-nav__bar {
  padding-left: 1rem;
  padding-right: 1rem;
}
.site-nav--dockable.scrolled .site-nav__bar {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .site-nav--dockable:not(.scrolled) .site-nav__bar {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .site-nav--dockable.scrolled .site-nav__bar {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .site-nav__bar {
    width: 100%;
  }
  .site-nav__brand {
    justify-self: start;
  }
  .site-nav__menu {
    justify-self: center;
  }
  .site-nav__actions {
    justify-self: end;
  }
}
.site-nav.site-nav--dockable.scrolled::before {
  background: #ffffff;
  border-color: rgb(var(--void-rgb) / 0.08);
  box-shadow: 0 1px 0 rgb(var(--void-rgb) / 0.04), 0 6px 24px rgb(var(--void-rgb) / 0.06),
    0 18px 44px rgb(var(--void-rgb) / 0.05);
}
@media (max-width: 639px) {
  .site-nav-shell {
    --nav-inset-x: 0.5rem;
    --nav-inset-top: 0.5rem;
    --nav-radius: 1rem;
  }
}

.site-nav .site-nav-link {
  color: var(--ink-600);
}
.site-nav .site-nav-link:hover {
  color: var(--signal-800);
}

.site-nav .site-nav-logo-text {
  color: var(--signal-800);
}

.site-nav-logo-img,
.site-footer-logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 11.5rem;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .site-nav-logo-img {
    height: 2.85rem;
    max-width: 13.5rem;
  }
}

.site-footer-logo-img {
  height: 2.85rem;
  max-width: 14.5rem;
}

.site-nav .site-nav-login {
  color: var(--ink-600);
  border-color: transparent;
  background: transparent;
  padding: 0.35rem 0.7rem;
}
.site-nav .site-nav-login:hover {
  color: var(--signal-800);
  background: rgb(var(--signal-rgb) / 0.04);
  border-color: transparent;
}

/* Login control — segmented product selector + Login action */
.site-nav-login-control {
  position: relative;
}

.site-nav-login-pill {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--signal-600);
  border-radius: 9999px;
  overflow: visible;
  background: #ffffff;
  box-shadow: 0 2px 8px rgb(var(--signal-rgb) / 0.12);
}

.site-nav-login-dropdown {
  position: relative;
}

.site-nav-login-trigger--selector {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.125rem;
  padding: 0.4rem 0.85rem 0.4rem 1rem;
  border: none !important;
  border-radius: 9999px 0 0 9999px;
  background: var(--signal-600) !important;
  color: #ffffff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.15s var(--ease-premium);
}

.site-nav .site-nav-login-trigger--selector,
.site-nav .site-nav-login-trigger--selector:hover,
.site-nav .site-nav-login-dropdown.site-nav-dropdown--open > .site-nav-login-trigger--selector {
  color: #ffffff !important;
  background: var(--signal-600) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.site-nav-login-current {
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.site-nav-login-chevron {
  flex-shrink: 0;
  color: #ffffff;
  opacity: 1;
  transition: transform 0.2s var(--ease-premium);
}

.site-nav-login-dropdown.site-nav-dropdown--open .site-nav-login-chevron {
  transform: rotate(180deg);
}

.site-nav .site-nav-login-trigger--selector:hover,
.site-nav .site-nav-login-dropdown.site-nav-dropdown--open > .site-nav-login-trigger--selector {
  background: var(--signal-700) !important;
}

.site-nav-login-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.125rem;
  padding: 0.4rem 1.1rem;
  border: none;
  border-radius: 0 9999px 9999px 0;
  background: #ffffff;
  color: var(--signal-600);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s var(--ease-premium), color 0.15s var(--ease-premium);
}

.site-nav-login-action:hover {
  background: rgb(var(--signal-rgb) / 0.06);
  color: var(--signal-700);
}

.site-nav-login-action:focus-visible {
  outline: 2px solid rgb(var(--signal-rgb) / 0.45);
  outline-offset: 2px;
}

.site-nav-login-action--disabled,
.site-nav-login-action--disabled:hover {
  opacity: 0.55;
  cursor: not-allowed;
  background: #ffffff;
  color: var(--signal-600);
}

.site-nav-dropdown-panel--login {
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% + 0.45rem);
  min-width: 17rem;
  max-width: min(20rem, calc(100vw - 2rem));
  margin-top: 0;
  transform: none;
  border-radius: 0.85rem;
  overflow: hidden;
  z-index: 60;
}

.site-nav-login-dropdown.site-nav-dropdown--open .site-nav-dropdown-panel--login {
  transform: none;
}

.site-nav-dropdown-panel--login::before {
  top: -0.5rem;
  height: 0.5rem;
}

.site-nav-login-panel {
  padding: 0.35rem 0;
}

.site-nav-login-panel__heading {
  margin: 0;
  padding: 0.55rem 0.9rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.site-nav-login-list {
  list-style: none;
  margin: 0;
  padding: 0 0.35rem 0.35rem;
}

.site-nav-login-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0.55rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-700);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s var(--ease-premium), color 0.15s var(--ease-premium);
}

.site-nav-login-link:hover,
.site-nav-login-link:focus-visible {
  color: var(--signal-800);
  background: rgb(var(--signal-rgb) / 0.06);
  outline: none;
}

.site-nav-login-link--selected {
  color: var(--signal-800);
  background: rgb(var(--signal-rgb) / 0.08);
  font-weight: 600;
}

.site-nav-login-link--with-icon {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav-login-link-label {
  flex: 1;
  min-width: 0;
}

.site-nav-login-link--with-icon .site-nav-mega-link-icon,
.site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0.35rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.site-nav-login-link--with-icon .site-nav-mega-link-icon--flat,
.site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon--flat {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
}

.site-nav-login-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-brand-icon,
.site-nav-login-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-channel-icon,
.site-nav-login-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-cdn-icon,
.site-nav-login-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-mdi-icon,
.site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-brand-icon,
.site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-channel-icon,
.site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-cdn-icon,
.site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon--flat .site-nav-mega-mdi-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.site-nav-login-link--with-icon .site-nav-mega-link-icon--stack {
  width: auto;
  min-width: 1.5rem;
  max-width: 2rem;
  gap: 1px;
}

.site-nav-login-link--with-icon .site-nav-mega-cdn-icon--stack {
  width: 0.75rem;
  height: 0.75rem;
}

.site-nav-mobile-links--login a.site-nav-mobile-link--login {
  min-height: 2.35rem;
  padding: 0.35rem 0;
  color: var(--ink-700);
  text-decoration: none;
}

.site-nav-mobile-links--login a.site-nav-mobile-link--login.site-nav-mobile-link--with-icon {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav-mobile-links--login a.site-nav-mobile-link--login:hover {
  color: var(--signal-800);
}

.site-nav .site-nav-menu-btn {
  color: var(--signal-800);
  border-color: rgb(var(--signal-rgb) / 0.18);
  background: #ffffff;
}
.site-nav .site-nav-menu-btn:hover {
  background: rgb(var(--signal-rgb) / 0.06);
}

.site-nav-mobile-panel {
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  max-height: min(calc(100dvh - var(--site-nav-dropdown-top, 5rem) - 0.5rem), 92vh);
  overflow-x: hidden;
  background: #ffffff;
  border-color: rgb(var(--void-rgb) / 0.06);
  border-radius: 0 0 calc(var(--nav-radius) - 1px) calc(var(--nav-radius) - 1px);
}

/* Open state only — do not force display over Tailwind .hidden / .lg:hidden */
.site-nav-mobile-panel:not(.hidden) {
  display: flex;
}

@media (min-width: 1024px) {
  .site-nav-mobile-panel {
    display: none !important;
  }
}

.site-nav-mobile-scroll {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.site-nav-mobile-scroll > .site-nav-mobile-details,
.site-nav-mobile-scroll > .site-nav-mobile-flat-link {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.site-nav-mobile-actions {
  flex-shrink: 0;
  background: #ffffff;
}

.site-nav-menu-btn {
  position: relative;
}

.site-nav-menu-btn-icon {
  display: block;
}

.site-nav-menu-btn-icon--close {
  display: none;
}

.site-nav-menu-btn--open .site-nav-menu-btn-icon--menu {
  display: none;
}

.site-nav-menu-btn--open .site-nav-menu-btn-icon--close {
  display: block;
}
.site-nav-mobile-divider {
  border-color: rgb(var(--signal-rgb) / 0.08);
}

/* Scroll lock when any nav menu is open */
body.nav-open {
  overflow: hidden;
}

/* Mega-menu (desktop): panels aligned to #site-nav width */
.site-nav-dropdown {
  position: relative;
}

.site-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.72rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: background 0.2s var(--ease-premium), border-color 0.2s var(--ease-premium), color 0.2s var(--ease-premium);
}

.site-nav-trigger--link {
  text-decoration: none;
  padding: 0.32rem 0.72rem;
}

.site-nav .site-nav-trigger {
  color: var(--ink-600);
}
.site-nav .site-nav-trigger:hover,
.site-nav .site-nav-dropdown--open > .site-nav-trigger {
  color: var(--signal-800);
  background: rgb(var(--signal-rgb) / 0.05);
  border-color: rgb(var(--signal-rgb) / 0.06);
}

.site-nav .site-nav-dropdown--open > .site-nav-trigger {
  background: rgb(var(--signal-rgb) / 0.08);
  border-color: rgb(var(--signal-rgb) / 0.1);
  box-shadow: 0 1px 2px rgb(var(--signal-rgb) / 0.06);
}

.site-nav-trigger:focus-visible {
  outline: 2px solid var(--signal-700);
  outline-offset: 2px;
}

.site-nav-trigger-chevron {
  opacity: 0.65;
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease-premium);
}

.site-nav-dropdown--open .site-nav-trigger-chevron {
  transform: rotate(180deg);
}

.site-nav-trigger-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--ink-600);
  opacity: 0.92;
  transition: opacity 0.2s var(--ease-premium), color 0.2s var(--ease-premium);
}

.site-nav .site-nav-trigger:hover .site-nav-trigger-icon,
.site-nav .site-nav-dropdown--open > .site-nav-trigger .site-nav-trigger-icon {
  color: var(--signal-800);
  opacity: 1;
}

.site-nav-mobile-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.site-nav-mobile-summary-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--ink-600);
  opacity: 0.88;
}

.site-nav-mobile-flat-link--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Shared dropdown shell */
.site-nav-dropdown-panel {
  z-index: 55;
  margin-top: 0.35rem;
  padding-top: 0;
  border-radius: 1rem;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgb(var(--signal-rgb) / 0.04), transparent 65%),
    rgb(253 250 250 / 0.99);
  border: 1px solid rgb(0 0 0 / 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 20px 50px -24px rgba(15, 23, 42, 0.18),
    0 32px 64px -32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-premium), visibility 0.2s var(--ease-premium);
}

.site-nav-dropdown--open .site-nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mega panels: top from bar via JS; horizontal center on .site-nav__menu */
.site-nav-dropdown-panel--mega-contained {
  position: fixed;
  left: var(--site-nav-dropdown-anchor-x, 50%);
  right: auto;
  width: max-content;
  max-width: min(var(--site-nav-mega-max-width, 52rem), calc(100vw - 2rem));
  top: var(--site-nav-dropdown-top, 4.5rem);
  margin-top: var(--site-nav-dropdown-gap, 0.5rem);
  border-radius: 1.25rem;
  transform: translateX(-50%);
  max-height: min(
    calc(100vh - var(--site-nav-dropdown-top, 4.5rem) - var(--site-nav-dropdown-gap, 0.5rem)),
    85vh
  );
  overflow-x: hidden;
  overflow-y: auto;
}

.site-nav-dropdown--open .site-nav-dropdown-panel--mega-contained {
  transform: translateX(-50%);
}

#nav-mega-products {
  --site-nav-mega-max-width: var(--site-nav-mega-max-width-products);
}

#nav-mega-industries {
  --site-nav-mega-max-width: var(--site-nav-mega-max-width-industries);
}

#nav-mega-solutions {
  --site-nav-mega-max-width: var(--site-nav-mega-max-width-solutions);
}

#nav-mega-company {
  --site-nav-mega-max-width: var(--site-nav-mega-max-width-company);
}

.site-nav-company-dropdown-open #nav-mega-company.site-nav-dropdown-panel--mega-contained {
  transform: translateX(0);
}

.site-nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

.site-nav-dropdown-panel--mega-contained::before {
  top: calc(-1.5rem - var(--site-nav-dropdown-gap, 0.5rem));
  height: calc(1.5rem + var(--site-nav-dropdown-gap, 0.5rem));
}

.site-nav-dropdown-panel--mega-contained .site-nav-mega-shell {
  width: max-content;
  max-width: inherit;
  margin-inline: auto;
  /* padding-inline: 1rem; */
}

.site-nav-mega-shell {
  padding-bottom: 0;
}

.site-nav-dropdown-panel-inner--mega {
  padding: 0.85rem 0 0.85rem;
}

.site-nav-mega-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500, #5c6578);
  margin: 0 0 0.5rem;
}

.site-nav-mega-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-800);
  margin: 0 0 0.4rem;
}

.site-nav-mega-divider {
  height: 1px;
  background: rgb(var(--signal-rgb) / 0.08);
  margin: 0.6rem 0 0.45rem;
}

.site-nav-mega-row {
  display: grid;
  gap: 0.7rem;
}

.site-nav-mega-row--suite {
  grid-template-columns: 1fr;
}

.site-nav-mega-row--products {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 768px) {
  .site-nav-mega-row--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-nav-mega-row--products {
    grid-template-columns: repeat(4, minmax(13.5rem, 1fr));
  }
}

.site-nav-mega-row--combined {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 768px) {
  .site-nav-mega-row--combined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-nav-mega-row--combined {
    grid-template-columns: repeat(2, minmax(11rem, 1fr));
  }
}

.site-nav-mega-col-heading {
  margin: 0 0 0.5rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  background: rgb(0 0 0 / 0.04);
  border-radius: 0.25rem;
}

.site-nav-mega-list--products,
.site-nav-mega-list--rich {
  gap: 0.15rem;
}

@media (min-width: 1024px) {
  .site-nav-mega-row--suite {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav-mega-row--suite .site-nav-mega-featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1280px) {
  .site-nav-mega-row--suite {
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(14rem, 1.15fr);
  }

  .site-nav-mega-row--suite .site-nav-mega-featured {
    grid-column: auto;
  }
}

.site-nav-mega-row--growth {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .site-nav-mega-row--growth {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-nav-mega-row--solutions {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .site-nav-mega-row--solutions {
    grid-template-columns: 1fr 1fr minmax(11rem, 0.95fr);
    align-items: stretch;
  }
}

.site-nav-mega-row--platform {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .site-nav-mega-row--platform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .site-nav-mega-row--platform {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.site-nav-mega-col {
  min-width: 0;
  background: rgb(255 252 252 / 0.82);
  border: 1px solid rgb(var(--signal-rgb) / 0.09);
  border-radius: 0.85rem;
  padding: 1.35rem 1.35rem 1.1rem;
}

.site-nav-mega-row--suite .site-nav-mega-col + .site-nav-mega-col,
.site-nav-mega-row--growth .site-nav-mega-col + .site-nav-mega-col,
.site-nav-mega-row--products .site-nav-mega-col + .site-nav-mega-col,
.site-nav-mega-row--combined .site-nav-mega-col + .site-nav-mega-col,
.site-nav-mega-row--solutions .site-nav-mega-col + .site-nav-mega-col {
  border-left: none;
}

@media (max-width: 1023px) {
  .site-nav-mega-row--suite .site-nav-mega-col + .site-nav-mega-col,
  .site-nav-mega-row--growth .site-nav-mega-col + .site-nav-mega-col,
  .site-nav-mega-row--products .site-nav-mega-col + .site-nav-mega-col,
  .site-nav-mega-row--combined .site-nav-mega-col + .site-nav-mega-col,
  .site-nav-mega-row--solutions .site-nav-mega-col + .site-nav-mega-col {
    border-top: none;
    margin-top: 0;
  }
}

.site-nav-mega-col--flush {
  padding-left: 0;
  border-left: none;
}

.site-nav-mega-col--cta {
  padding-top: 0.15rem;
}

.site-nav-mega-cta-blurb {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-500, #5c6578);
  margin: 0.35rem 0 0.85rem;
}

.site-nav-mega-featured {
  position: relative;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  background:
    linear-gradient(145deg, rgb(var(--signal-rgb) / 0.06), rgb(var(--ember-rgb) / 0.08)) padding-box,
    linear-gradient(135deg, rgb(var(--signal-rgb) / 0.22), rgb(var(--ember-rgb) / 0.12), rgb(var(--signal-rgb) / 0.08))
      border-box;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-height: 100%;
  box-shadow: 0 8px 28px rgb(var(--signal-rgb) / 0.06);
}

.site-nav-mega-featured-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500, #5c6578);
  margin: 0;
}

.site-nav-mega-featured-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display, "Google Sans Flex", system-ui, sans-serif);
  color: var(--signal-800);
  margin: 0;
  line-height: 1.25;
}

.site-nav-mega-featured-desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-500, #5c6578);
  margin: 0;
  flex: 1;
}

.site-nav-mega-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--signal-800);
  text-decoration: none;
}

.site-nav-mega-featured-cta:hover {
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .site-nav-mega-featured {
    border-left: 1px solid rgb(var(--signal-rgb) / 0.08);
    padding-left: 1.35rem;
    margin-left: 0;
  }

}

.site-nav-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.35rem;
  background: rgb(var(--signal-rgb) / 0.06);
  color: var(--signal-800);
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
}

.site-nav-pill--column {
  margin: 0.1rem 0 0.65rem;
  padding: 0.32rem 0.6rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--signal-800);
  background: rgb(var(--signal-rgb) / 0.05);
  border: 1px solid rgb(var(--signal-rgb) / 0.13);
  border-radius: 0.25rem;
}

.site-nav-mega-col-head {
  margin-bottom: 0.65rem;
}

.site-nav-mega-col-head .site-nav-pill--column {
  margin-bottom: 0.35rem;
}

.site-nav-pill--column-title {
  text-transform: none;
  letter-spacing: 0.03em;
}

.site-nav-pill--column-long {
  display: block;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.58rem;
  line-height: 1.35;
  font-weight: 700;
}

.site-nav-mega-col-hint {
  display: block;
  margin: 0 0.1rem;
  font-size: 0.58rem;
  line-height: 1.35;
  color: #64748b;
}

.site-nav-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.site-nav-mega-grid {
  display: grid;
  gap: 0;
}

.site-nav-mega-grid--compact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-nav-mega-link {
  display: block;
  text-decoration: none;
  padding: 0.24rem 0.45rem;
  margin: 0 -0.45rem;
  border-radius: 0.65rem;
  border-left: 2px solid transparent;
  transition:
    background 0.15s var(--ease-premium),
    border-color 0.15s var(--ease-premium);
}

.site-nav-mega-link--card {
  margin: 0;
  padding: 0.85rem 0.95rem;
  height: 100%;
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.site-nav .site-nav-mega-link--card:hover {
  background: rgb(var(--signal-rgb) / 0.04);
  border-color: rgb(var(--signal-rgb) / 0.12);
}

.site-nav .site-nav-mega-link:not(.site-nav-mega-link--rich) {
  color: var(--signal-800);
}
.site-nav .site-nav-mega-link:not(.site-nav-mega-link--rich):hover {
  background: rgb(var(--signal-rgb) / 0.05);
  border-left-color: rgb(var(--signal-rgb) / 0.45);
}

.site-nav-mega-link:focus-visible {
  outline: 2px solid var(--signal-500, #ef4444);
  outline-offset: 1px;
}

.site-nav-mega-link-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.site-nav-mega-link-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.site-nav-mega-badge {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 9999px;
  background: rgb(var(--signal-rgb) / 0.08);
  color: var(--ink-600);
}

.site-nav-mega-badge--outline {
  background: transparent;
  color: #5c6578;
  border: 1px solid rgb(0 0 0 / 0.12);
  border-radius: 0.25rem;
  padding: 0.05rem 0.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav-mega-link-desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ink-500, #5c6578);
}

.site-nav-mega-link--with-icon {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.site-nav-mega-link-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.site-nav .site-nav-mega-link--with-icon .site-nav-mega-link-icon {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.28rem;
  margin-top: 0;
  border-radius: 0.5rem;
  background: rgb(var(--signal-rgb) / 0.06);
  color: var(--ink-500, #5c6578);
  transition:
    background 0.15s var(--ease-premium),
    color 0.15s var(--ease-premium);
}

.site-nav .site-nav-mega-link--with-icon:hover .site-nav-mega-link-icon {
  background: rgb(var(--signal-rgb) / 0.12);
  color: var(--signal-800);
}

.site-nav-mega-link--compact .site-nav-mega-link-body .site-nav-mega-link-desc {
  margin-top: 0.12rem;
}

.site-nav-mega-link--card.site-nav-mega-link--with-icon .site-nav-mega-link-icon {
  margin-top: 0;
}

.site-nav .site-nav-mega-link--card:hover {
  border-left-color: rgb(var(--signal-rgb) / 0.35);
}

/* Mega menus — Infobip-style rich links (title + description) */
.site-nav-mega-link--rich {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-left: none;
  border-radius: 0.5rem;
  color: #111;
}

.site-nav-mega-link--rich:hover {
  background: rgb(0 0 0 / 0.04);
  border-left-color: transparent;
}

.site-nav-mega-link--rich .site-nav-mega-link-title {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #111;
}

.site-nav-mega-link--rich .site-nav-mega-link-desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-500, #5c6578);
  font-weight: 400;
}

.site-nav-mega-link--rich .site-nav-mega-link-body {
  flex: 1;
  min-width: 0;
}

.site-nav-mega-row--company {
  grid-template-columns: minmax(12rem, 1fr);
  max-width: 22rem;
}

#nav-mega-products .site-nav-mega-link--product {
  padding: 0.18rem 0.45rem;
  color: #111;
}

#nav-mega-products .site-nav-mega-link--product:hover,
#nav-mega-products .site-nav-mega-link--product:focus-visible {
  color: #111;
}

#nav-mega-products .site-nav-mega-link--product .site-nav-mega-link-title {
  color: #111;
}

#nav-mega-products .site-nav-mega-link--product.site-nav-mega-link--with-icon {
  align-items: center;
  transition: transform 0.3s ease;
}

#nav-mega-products .site-nav-mega-link--product.site-nav-mega-link--with-icon:hover,
#nav-mega-products .site-nav-mega-link--product.site-nav-mega-link--with-icon:focus-visible {
  transform: translateX(4px);
}

#nav-mega-products .site-nav-mega-link-icon,
#nav-mega-products .site-nav-mega-link-icon--brand,
#nav-mega-products .site-nav-mega-link-icon--channel,
#nav-mega-products .site-nav-mega-link-icon--cdn,
#nav-mega-products .site-nav-mega-link-icon--mdi {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  transition: box-shadow 0.3s ease;
}

#nav-mega-products .site-nav-mega-link-icon--flat,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--flat {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 36px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
}

#nav-mega-products .site-nav-mega-link--product:hover .site-nav-mega-link-icon--flat,
#nav-mega-products .site-nav-mega-link--product:focus-visible .site-nav-mega-link-icon--flat,
.site-nav-mobile-products--mega .site-nav-mobile-link--product:hover .site-nav-mega-link-icon--flat,
.site-nav-mobile-products--mega .site-nav-mobile-link--product:focus-visible .site-nav-mega-link-icon--flat {
  box-shadow: none !important;
}

#nav-mega-products .site-nav-mega-link-icon--flat .site-nav-mega-brand-icon,
#nav-mega-products .site-nav-mega-link-icon--flat .site-nav-mega-channel-icon,
#nav-mega-products .site-nav-mega-link-icon--flat .site-nav-mega-cdn-icon,
#nav-mega-products .site-nav-mega-link-icon--flat .site-nav-mega-mdi-icon,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--flat .site-nav-mega-brand-icon,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--flat .site-nav-mega-channel-icon,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--flat .site-nav-mega-cdn-icon,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--flat .site-nav-mega-mdi-icon {
  width: 20px;
  height: 20px;
}

#nav-mega-products .site-nav-mega-link--product:hover .site-nav-mega-link-icon:not(.site-nav-mega-link-icon--flat),
#nav-mega-products .site-nav-mega-link--product:focus-visible .site-nav-mega-link-icon:not(.site-nav-mega-link-icon--flat) {
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
}

#nav-mega-products .site-nav-mega-link-icon--stack {
  width: auto;
  min-width: 2.75rem;
  max-width: 3.25rem;
  gap: 2px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#nav-mega-products .site-nav-mega-cdn-icon--stack {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

#nav-mega-products .site-nav-mega-brand-icon,
#nav-mega-products .site-nav-mega-channel-icon,
#nav-mega-products .site-nav-mega-cdn-icon,
#nav-mega-products .site-nav-mega-mdi-icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
}

#nav-mega-products .site-nav-mega-link-top {
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
}

#nav-mega-products .site-nav-mega-link-title {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

#nav-mega-products .site-nav-mega-link-title.is-truncated {
  cursor: default;
}

.site-nav-title-popover {
  position: fixed;
  z-index: 70;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid rgb(0 0 0 / 0.1);
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.12);
  color: #111;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-4px);
  transition: opacity 0.2s var(--ease-premium), transform 0.2s var(--ease-premium),
    visibility 0.2s var(--ease-premium);
}

.site-nav-title-popover[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

body.dark-index .site-nav-title-popover {
  border-color: var(--nav-mega-border, #333333);
  background: var(--nav-mega-col-bg, #252525);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .site-nav-title-popover {
    transition: none;
  }
}

#nav-mega-products .site-nav-mega-badge--outline {
  flex-shrink: 0;
  white-space: nowrap;
}

/* dark-index: Products mega — override light #nav-mega-products rules (reference) */
body.dark-index #nav-mega-products .site-nav-mega-link--product {
  border-left: none;
}

body.dark-index #nav-mega-products .site-nav-mega-link--product,
body.dark-index #nav-mega-products .site-nav-mega-link--product:hover,
body.dark-index #nav-mega-products .site-nav-mega-link--product:focus-visible {
  color: rgba(255, 255, 255, 0.92);
}

body.dark-index #nav-mega-products .site-nav-mega-link--product .site-nav-mega-link-title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index #nav-mega-products .site-nav-mega-link--product.site-nav-mega-link--with-icon:hover,
body.dark-index #nav-mega-products .site-nav-mega-link--product.site-nav-mega-link--with-icon:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: transparent;
}

body.dark-index #nav-mega-products .site-nav-mega-link-top {
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
  width: 100%;
}

body.dark-index #nav-mega-products .site-nav-mega-link-icon,
body.dark-index #nav-mega-products .site-nav-mega-link-icon--brand,
body.dark-index #nav-mega-products .site-nav-mega-link-icon--channel,
body.dark-index #nav-mega-products .site-nav-mega-link-icon--cdn,
body.dark-index #nav-mega-products .site-nav-mega-link-icon--mdi,
body.dark-index #nav-mega-products .site-nav-mega-link-icon--flat {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.dark-index #nav-mega-products .site-nav-mega-link--product:hover .site-nav-mega-link-icon,
body.dark-index #nav-mega-products .site-nav-mega-link--product:focus-visible .site-nav-mega-link-icon {
  box-shadow: none !important;
}

body.dark-index #nav-mega-products .site-nav-mega-brand-icon,
body.dark-index #nav-mega-products .site-nav-mega-channel-icon,
body.dark-index #nav-mega-products .site-nav-mega-cdn-icon,
body.dark-index #nav-mega-products .site-nav-mega-mdi-icon {
  width: 20px;
  height: 20px;
}

body.dark-index #nav-mega-products .site-nav-mega-link-icon--stack {
  width: auto;
  min-width: 2.25rem;
  max-width: 2.75rem;
}

body.dark-index #nav-mega-products .site-nav-mega-cdn-icon--stack {
  width: 14px;
  height: 14px;
}

body.dark-index #nav-mega-products .site-nav-mega-badge--outline {
  flex-shrink: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  background: transparent;
}

body.dark-index #nav-mega-industries .site-nav-mega-link--rich,
body.dark-index #nav-mega-industries .site-nav-mega-link--rich .site-nav-mega-link-title,
body.dark-index #nav-mega-solutions .site-nav-mega-link--rich,
body.dark-index #nav-mega-solutions .site-nav-mega-link--rich .site-nav-mega-link-title,
body.dark-index #nav-mega-company .site-nav-mega-link--rich,
body.dark-index #nav-mega-company .site-nav-mega-link--rich .site-nav-mega-link-title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index #nav-mega-industries .site-nav-mega-link--rich:hover,
body.dark-index #nav-mega-solutions .site-nav-mega-link--rich:hover,
body.dark-index #nav-mega-company .site-nav-mega-link--rich:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.dark-index #nav-mega-industries .site-nav-mega-link-desc,
body.dark-index #nav-mega-solutions .site-nav-mega-link-desc,
body.dark-index #nav-mega-company .site-nav-mega-link-desc {
  color: rgba(255, 255, 255, 0.55);
}

.site-nav-mobile-products--mega .site-nav-mobile-link--product.site-nav-mobile-link--with-icon {
  transition: transform 0.3s ease;
}

.site-nav-mobile-products--mega .site-nav-mobile-link--product.site-nav-mobile-link--with-icon:hover,
.site-nav-mobile-products--mega .site-nav-mobile-link--product.site-nav-mobile-link--with-icon:focus-visible {
  transform: translateX(4px);
}

.site-nav-mobile-products--mega .site-nav-mega-link-icon,
.site-nav-mobile-products--mega .site-nav-mobile-link--with-icon .site-nav-mega-link-icon,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--brand,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--channel,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--cdn,
.site-nav-mobile-products--mega .site-nav-mega-link-icon--mdi {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  transition: box-shadow 0.3s ease;
}

.site-nav-mobile-products--mega .site-nav-mega-link-icon--stack {
  width: auto;
  min-width: 2.75rem;
  max-width: 3.25rem;
  gap: 2px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.site-nav-mobile-products--mega .site-nav-mega-cdn-icon--stack {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.site-nav-mobile-products--mega .site-nav-mega-brand-icon,
.site-nav-mobile-products--mega .site-nav-mega-channel-icon,
.site-nav-mobile-products--mega .site-nav-mega-cdn-icon,
.site-nav-mobile-products--mega .site-nav-mega-mdi-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
}

.site-nav-mobile-links--products a.site-nav-mobile-link--product {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.3rem 0.35rem;
  text-decoration: none;
  border-radius: 0.45rem;
  color: #111;
}

.site-nav-mobile-links--products a.site-nav-mobile-link--product:hover {
  background: rgb(0 0 0 / 0.04);
  color: #111;
}

.site-nav-mobile-products--mega .site-nav-mobile-link--product .site-nav-mobile-link-title {
  color: #111;
  font-weight: 600;
  font-size: 0.875rem;
}

.site-nav-mobile-col-heading {
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
}

.site-nav-mobile-col-heading:first-child {
  margin-top: 0;
}

.site-nav-mobile-products--mega .site-nav-mobile-link--rich .site-nav-mobile-link-title,
.site-nav-mobile-links--rich .site-nav-mobile-link--rich .site-nav-mobile-link-title {
  color: #111;
  font-weight: 600;
  font-size: 0.875rem;
}

.site-nav-mobile-link--rich {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.45rem 0.35rem;
  text-decoration: none;
  border-radius: 0.45rem;
}

.site-nav-mobile-link--rich:hover {
  background: rgb(0 0 0 / 0.04);
}

.site-nav-mobile-link--rich .site-nav-mobile-link-desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ink-500, #5c6578);
}

.site-nav-mobile-col-heading.site-nav-pill--column {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
}

.site-nav-mega-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgb(var(--signal-rgb) / 0.08);
}

.site-nav-mega-footer-sep {
  display: none;
}

.site-nav-mega-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: var(--signal-700);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgb(0 0 0 / 0.08);
  transition: opacity 0.15s var(--ease-premium), transform 0.15s var(--ease-premium);
}

.site-nav-mega-cta--block {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.site-nav-mega-cta:hover {
  opacity: 0.92;
}

.site-nav-mega-cta--ghost {
  background: rgb(var(--signal-rgb) / 0.06);
  color: var(--signal-800);
  border: 1px solid rgb(var(--signal-rgb) / 0.1);
}

/* Mobile accordion nav */
.site-nav-mobile-details {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.site-nav-mobile-summary {
  list-style: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.site-nav-mobile-details[open] > .site-nav-mobile-summary {
  color: var(--signal-800);
}

.site-nav-mobile-details[open] .site-nav-mobile-summary-icon {
  color: var(--signal-800);
}

.site-nav-mobile-summary::-webkit-details-marker {
  display: none;
}

.site-nav-mobile-summary::marker {
  display: none;
}

.site-nav-mobile-summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s var(--ease-premium);
}

.site-nav-mobile-details[open] .site-nav-mobile-summary::after {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.site-nav-mobile-body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid rgb(var(--signal-rgb) / 0.06);
  overflow-x: hidden;
}

.site-nav-mobile-products {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.site-nav-mobile-products-group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 0.5rem;
}

.site-nav-mobile-products-group:last-of-type {
  margin-bottom: 0.25rem;
}

.site-nav-mobile-links--products a {
  min-height: 2.5rem;
  padding: 0.35rem 0;
  align-items: center;
}

.site-nav-mobile-links a.site-nav-mobile-link--with-icon,
.site-nav-mobile-links--products a.site-nav-mobile-link--with-icon {
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 0;
}

.site-nav-mobile-links li {
  min-width: 0;
  max-width: 100%;
}

.site-nav-mobile-link-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
}

.site-nav-mobile-link-title {
  font-weight: 500;
  line-height: 1.35;
}

.site-nav .site-nav-mobile-link--with-icon .site-nav-mega-link-icon {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.22rem;
  margin-top: 0;
  border-radius: 0.45rem;
  background: rgb(var(--signal-rgb) / 0.06);
  color: var(--ink-500, #5c6578);
  transition:
    background 0.15s var(--ease-premium),
    color 0.15s var(--ease-premium);
}

.site-nav .site-nav-mobile-link--with-icon:hover .site-nav-mega-link-icon {
  background: rgb(var(--signal-rgb) / 0.12);
  color: var(--signal-800);
}

.site-nav-mobile-link-desc {
  display: block;
  font-size: 0.7rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink-500, #5c6578);
}

.site-nav-mobile-section-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-800);
  margin: 0.15rem 0 0.65rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgb(var(--signal-rgb) / 0.1);
}

.site-nav-mobile-section-kicker:not(:first-child) {
  margin-top: 0.35rem;
}

.site-nav-mobile-section-divider {
  height: 1px;
  margin: 0.65rem 0;
  background: rgb(var(--signal-rgb) / 0.1);
}

.site-nav-mobile-link-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  width: 100%;
}

.site-nav-mobile-link--product .site-nav-mobile-link-top {
  flex-wrap: nowrap;
  gap: 0.35rem;
}

.site-nav-mobile-link--product .site-nav-mobile-link-title {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.site-nav-mobile-link--product .site-nav-mega-badge--outline {
  flex-shrink: 0;
  white-space: nowrap;
}

.site-nav-mobile-badge {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 0.08rem 0.38rem;
  border-radius: 9999px;
  background: rgb(var(--signal-rgb) / 0.08);
  color: var(--ink-600);
  line-height: 1.3;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .site-nav-mobile-links--products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.75rem;
  }

  .site-nav-mobile-links--products li {
    min-width: 0;
  }
}

.site-nav-mobile-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  margin: 0.5rem 0 0.35rem;
  border-radius: 9999px;
  background: rgb(var(--signal-rgb) / 0.06);
  color: var(--signal-800);
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
}

.site-nav-mobile-products-group:first-child .site-nav-mobile-pill {
  margin-top: 0.15rem;
}

.site-nav-mobile-links {
  list-style: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.site-nav-mobile-links a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.45rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-600);
}

.site-nav-mobile-links a:hover {
  color: var(--signal-800);
}

.site-nav-mobile-inline-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--signal-800);
}

.site-nav-mobile-flat-link {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--signal-800);
  border-radius: 0.75rem;
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  background: rgba(255, 255, 255, 0.2);
}

.site-nav-mobile-flat-link:hover {
  background: rgb(var(--signal-rgb) / 0.04);
}

.site-nav-mobile-products .site-nav-mobile-featured {
  margin: 0.75rem 0 0.5rem;
  min-height: 0;
}

.site-nav-mobile-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgb(var(--signal-rgb) / 0.08);
}

.site-nav-mobile-cta-row .site-nav-mega-cta--ghost {
  flex: 1 1 auto;
  text-align: center;
  justify-content: center;
}

.site-nav-mobile-solutions-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(var(--signal-rgb) / 0.08);
}

.site-nav-mobile-solutions-cta .site-nav-pill {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.site-nav-mobile-solutions-cta .site-nav-mega-cta-blurb {
  margin-bottom: 0.65rem;
}

/* Hero */
.hero-section {
  background: var(--grad-hero);
  position: relative;
}
.hero-section:not(.hero-section--stacked) {
  overflow: hidden;
}
.hero-section.hero-section--light {
  background: transparent;
  color: var(--ink-900);
}
.hero-section.hero-section--light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(3, 3, 3, 0.04), transparent 52%),
    radial-gradient(ellipse 68% 52% at 50% 0%, rgb(var(--signal-rgb) / 0.045), transparent 58%),
    radial-gradient(ellipse 42% 34% at 88% 22%, rgb(var(--ember-rgb) / 0.035), transparent 54%),
    radial-gradient(ellipse 38% 32% at 10% 68%, rgba(3, 3, 3, 0.025), transparent 52%);
  z-index: 0;
}
.hero-section.hero-section--stacked {
  --hero-media-scale: 1;
  --hero-media-max-w: min(80%, 56rem);
  --hero-media-max-w-expanded: 94%;
  --hero-media-radius: clamp(1.25rem, 4vw, 2rem);
  --hero-media-radius-expanded: 0.875rem;
  --hero-media-max-h: min(65vh, 720px);
  --hero-media-max-h-expanded: 75vh;
  --hero-media-frame-radius-expanded: 0.5rem;
  --hero-media-slot-pad-expanded: 1.25rem;
  --hero-media-stage-pad: 0.35rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: min(100svh, 920px);
  padding-bottom: clamp(1.25rem, 3vh, 2.5rem);
  overflow: visible;
}
#academics.social-proof-section {
  position: relative;
  z-index: 1;
}
.hero-section.is-hero-pinned {
  z-index: 46;
  overflow: visible;
  isolation: isolate;
}
body.is-hero-scroll-lock main > .pin-spacer {
  position: relative;
  z-index: 45;
}
body.is-hero-scroll-lock #academics.social-proof-section {
  position: relative;
  z-index: 0;
}
.hero-section.is-hero-pinned .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-section.is-hero-pinned .hero-media-slot,
.hero-section.is-hero-pinned .hero-media,
.hero-section.is-hero-pinned .hero-media__stage,
.hero-section.is-hero-pinned .hero-video-frame {
  position: relative;
  z-index: 5;
}
.hero-section.is-hero-pinned .hero-media-slot {
  z-index: 6;
}
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor__svg {
  width: 100%;
  height: 100%;
  color: rgb(var(--signal-rgb) / 0.12);
}
.hero-decor__grid {
  opacity: 0.45;
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-bottom: 2.5rem;
  min-height: clamp(26rem, 52vh, 36rem);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 52rem);
  margin: 0;
  padding-inline: clamp(0.25rem, 2vw, 1rem);
  gap: clamp(0.2rem, 0.55vw, 0.35rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.hero-sub {
  margin: 0;
  max-width: min(100%, 48rem);
  padding-inline: clamp(0.25rem, 2vw, 1rem);
}

.hero-ctas {
  margin: 0;
  padding-top: clamp(0.35rem, 1.25vw, 0.85rem);
}
.hero-floating {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hero-floating {
    inset: -4% -2%;
  }
}
@media (min-width: 1024px) {
  .hero-section--stacked .hero-floating {
    -webkit-mask-image: radial-gradient(circle at 50% 44%, transparent 0%, transparent 38%, #000 58%);
    mask-image: radial-gradient(circle at 50% 44%, transparent 0%, transparent 38%, #000 58%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
.hero-floating__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-float {
  position: absolute;
  pointer-events: auto;
  will-change: transform;
}
.hero-float--anchor-tl {
  transform: translate(-50%, -50%) rotate(var(--float-rotate, 0deg)) scale(var(--float-scale, 1));
}
.hero-float--anchor-tr {
  transform: translate(50%, -50%) rotate(var(--float-rotate, 0deg)) scale(var(--float-scale, 1));
}
.hero-float--anchor-bl {
  transform: translate(-50%, 50%) rotate(var(--float-rotate, 0deg)) scale(var(--float-scale, 1));
}
.hero-float--anchor-br {
  transform: translate(50%, 50%) rotate(var(--float-rotate, 0deg)) scale(var(--float-scale, 1));
}
.hero-float__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform-origin: center center;
  will-change: transform;
}
.hero-float.is-animated .hero-float__card {
  animation: hero-float-drift var(--float-duration, 4s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
.hero-float.is-hover .hero-float__card {
  animation-play-state: paused;
}
@keyframes hero-float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(2px, -5px, 0) rotate(1.25deg);
  }
  66% {
    transform: translate3d(-2px, 3px, 0) rotate(-1deg);
  }
}
.hero-float__icon {
  width: clamp(2.75rem, 4.5vw, 3.5rem);
  height: clamp(2.75rem, 4.5vw, 3.5rem);
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.hero-float__popover {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.45rem);
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid rgb(var(--void-rgb) / 0.08);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 14px rgb(var(--void-rgb) / 0.08);
  color: rgb(var(--void-rgb) / 0.88);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.25s var(--ease-premium), transform 0.25s var(--ease-premium),
    visibility 0.25s var(--ease-premium);
}
.hero-float--anchor-bl .hero-float__popover,
.hero-float--anchor-br .hero-float__popover {
  top: auto;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%) translateY(4px);
}
.hero-float__icon--brand {
  width: clamp(3rem, 5vw, 3.75rem);
  height: clamp(3rem, 5vw, 3.75rem);
}
.hero-float__icon--mdi {
  width: clamp(2.85rem, 4.75vw, 3.6rem);
  height: clamp(2.85rem, 4.75vw, 3.6rem);
}
@media (min-width: 768px) {
  .hero-float__icon {
    width: clamp(3.25rem, 4.25vw, 4rem);
    height: clamp(3.25rem, 4.25vw, 4rem);
  }
  .hero-float__icon--brand {
    width: clamp(3.5rem, 4.75vw, 4.25rem);
    height: clamp(3.5rem, 4.75vw, 4.25rem);
  }
}
.hero-float.is-near .hero-float__icon {
  transform: scale(1.04);
}
.hero-float.is-hover .hero-float__icon {
  transform: scale(1.06);
}
.hero-float.is-near .hero-float__popover,
.hero-float.is-hover .hero-float__popover,
.hero-float:focus-within .hero-float__popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hero-float.is-near .hero-float__card,
.hero-float.is-hover .hero-float__card,
.hero-float:focus-within .hero-float__card {
  box-shadow: none;
}
@media (max-width: 767px) {
  .hero-floating {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float.is-animated .hero-float__card {
    animation: none;
  }
  .hero-float__popover {
    transition: none;
  }
  .hero-float:hover .hero-float__card,
  .hero-float:focus-within .hero-float__card {
    transform: none;
  }
}
.hero-media-slot {
  position: relative;
  z-index: 3;
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
  padding: 2rem 0 clamp(0.75rem, 2vh, 1.5rem);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Reserve layout space for scaled media (scale does not shrink box) */
  min-height: 38vh;
}
.hero-media {
  position: relative;
  width: 100%;
  max-width: var(--hero-media-max-w);
  margin-inline: auto;
  transform: scale(var(--hero-media-scale));
  transform-origin: center bottom;
  pointer-events: auto;
  will-change: max-width;
}
.hero-media__stage {
  padding: var(--hero-media-stage-pad);
  border-radius: var(--hero-media-radius);
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 48%, #0f0f0f 100%);
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 24px 64px rgba(3, 3, 3, 0.22),
    0 48px 100px rgb(var(--signal-rgb) / 0.1); */
  will-change: border-radius;
}
.hero-line--primary,
.hero-line--accent {
  display: block;
  width: 100%;
  max-width: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-line--primary {
  background-image: var(--grad-hero-primary);
  /* background-color: white; */
}

.hero-line--accent {
  background-image: var(--grad-hero-accent);
  /* background-color: #e31e24; */
  background-size: 120% 100%;
  background-position: 0% 50%;
}

@media (max-width: 639px) {
  .hero-title {
    gap: clamp(0.28rem, 1.2vw, 0.5rem);
    line-height: 1.16;
    max-width: 100%;
  }

  .hero-line--primary,
  .hero-line--accent {
    line-height: 1.18;
    hyphens: none;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-title {
    max-width: min(100%, 36rem);
    gap: clamp(0.22rem, 0.65vw, 0.4rem);
    line-height: 1.12;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    max-width: min(100%, 56rem);
    gap: clamp(0.12rem, 0.3vw, 0.28rem);
    line-height: 1.06;
  }

  .hero-line--primary,
  .hero-line--accent {
    white-space: nowrap;
    line-height: 1.06;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section.hero-section--stacked {
    --hero-media-scale: 1;
    --hero-media-max-w: min(100%, 72rem);
    --hero-media-max-h: min(65vh, 720px);
  }
  .hero-media-slot {
    min-height: auto;
  }
}
.hero-mesh {
  background-image: radial-gradient(
      circle at 20% 50%,
      rgb(var(--signal-rgb) / 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgb(var(--ember-rgb) / 0.14) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 80%,
      rgb(var(--signal-rgb) / 0.1) 0%,
      transparent 35%
    ),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 32px 32px;
}

/* Video */
.video-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: visible;
  box-shadow: var(--shadow-float);
  border: 1px solid rgb(var(--signal-rgb) / 0.1);
}
.video-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1.6rem;
  background: var(--grad-card-border);
  z-index: -1;
}
.video-inner video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: max(0px, calc(var(--hero-media-radius) - 0.35rem));
  border: 1px solid rgb(var(--signal-rgb) / 0.14);
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 12px 40px rgb(var(--signal-rgb) / 0.18); */
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
  max-height: var(--hero-media-max-h);
  will-change: border-radius, max-height;
}
.hero-video-frame .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
}
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: #000;
}

/* Custom hero video player */
.hero-video-player {
  --hero-player-chrome-h: 2.75rem;
  cursor: pointer;
  isolation: isolate;
}
.hero-video-player.is-playing {
  cursor: default;
}
.hero-video-player.is-playing:hover .hero-video-player__chrome,
.hero-video-player.is-playing:focus-within .hero-video-player__chrome,
.hero-video-player:not(.is-playing) .hero-video-player__chrome {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.hero-video-player__big-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgb(0 0 0 / 0.35), transparent 70%);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.hero-video-player.is-playing .hero-video-player__big-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-video-player__big-play-ring {
  position: absolute;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 999px;
  background: rgb(var(--signal-rgb) / 0.92);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.14),
    0 12px 36px rgb(0 0 0 / 0.45),
    0 0 40px rgb(var(--signal-rgb) / 0.35);
  transition: transform 0.25s ease, background 0.2s ease;
}
.hero-video-player__big-play:hover .hero-video-player__big-play-ring,
.hero-video-player__big-play:focus-visible .hero-video-player__big-play-ring {
  transform: scale(1.06);
  background: var(--signal-600);
}
.hero-video-player__big-play:focus-visible {
  outline: none;
}
.hero-video-player__big-play-icon {
  position: relative;
  z-index: 1;
  width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.15rem;
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.25));
}
.hero-video-player__chrome {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: min(22rem, calc(100% - 1.5rem));
  min-height: var(--hero-player-chrome-h);
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(10 10 10 / 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.4);
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.hero-video-player__btn {
  flex: 0 0 auto;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.18s ease, transform 0.18s ease;
}
.hero-video-player__btn:hover,
.hero-video-player__btn:focus-visible {
  background: rgb(var(--signal-rgb) / 0.88);
  outline: none;
  transform: translateY(-1px);
}
.hero-video-player__icon {
  grid-area: 1 / 1;
  width: 0.95rem;
  height: 0.95rem;
  display: none;
  pointer-events: none;
}
.hero-video-player:not(.is-playing) .hero-video-player__icon--play,
.hero-video-player.is-playing .hero-video-player__icon--pause,
.hero-video-player.is-muted .hero-video-player__icon--muted,
.hero-video-player:not(.is-muted) .hero-video-player__icon--unmuted,
.hero-video-player:not(.is-fullscreen) .hero-video-player__icon--fs-enter,
.hero-video-player.is-fullscreen .hero-video-player__icon--fs-exit {
  display: block;
}
.hero-video-player__scrub {
  position: relative;
  flex: 1 1 auto;
  max-width: 9.5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}
.hero-video-player__scrub:focus-visible {
  outline: none;
}
.hero-video-player__scrub:focus-visible .hero-video-player__scrub-track {
  box-shadow: 0 0 0 2px rgb(var(--signal-rgb) / 0.65);
}
.hero-video-player__scrub-track {
  position: relative;
  width: 100%;
  height: 0.28rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  overflow: hidden;
  transition: height 0.15s ease;
}
.hero-video-player__scrub:hover .hero-video-player__scrub-track,
.hero-video-player__scrub:focus-visible .hero-video-player__scrub-track {
  height: 0.4rem;
}
.hero-video-player__scrub-buffered,
.hero-video-player__scrub-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  pointer-events: none;
}
.hero-video-player__scrub-buffered {
  background: rgb(255 255 255 / 0.28);
}
.hero-video-player__scrub-fill {
  background: linear-gradient(90deg, var(--signal-700), var(--signal-500));
  box-shadow: 0 0 12px rgb(var(--signal-rgb) / 0.45);
}
.hero-video-player__time {
  flex: 0 0 auto;
  min-width: 2.1rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(255 255 255 / 0.78);
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.hero-video-player.is-loading::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 2px solid rgb(255 255 255 / 0.2);
  border-top-color: var(--signal-500);
  animation: hero-video-spin 0.7s linear infinite;
}
@keyframes hero-video-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .hero-video-player__big-play-ring {
    width: 3.75rem;
    height: 3.75rem;
  }
  .hero-video-player__big-play-icon {
    width: 1.35rem;
    height: 1.35rem;
  }
  .hero-video-player__chrome {
    bottom: 0.65rem;
    width: min(18.5rem, calc(100% - 1rem));
    gap: 0.25rem;
    padding: 0.28rem 0.32rem;
  }
  .hero-video-player__scrub {
    max-width: 7rem;
  }
  .hero-video-player__time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-player__big-play,
  .hero-video-player__chrome,
  .hero-video-player__big-play-ring,
  .hero-video-player__btn {
    transition: none;
  }
  .hero-video-player.is-loading::after {
    animation: none;
  }
}

/* Channel badges */
.channel-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-float);
  animation: badgeFloat var(--delay, 3s) ease-in-out infinite;
  z-index: 10;
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* Tabs — platform */
.tab-bar {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  border-radius: 9999px;
  padding: 0.375rem;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 4px 14px rgb(var(--signal-rgb) / 0.05);
}
.tab-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 9999px;
  font: 600 0.875rem "Google Sans Flex", system-ui, sans-serif;
  color: var(--ink-500);
  transition: color 0.25s var(--ease-premium), background 0.25s var(--ease-premium),
    box-shadow 0.25s var(--ease-premium);
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}
.tab-btn:hover {
  color: var(--signal-800);
}
.tab-btn.active {
  background: var(--signal-600);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 2px 8px rgb(0 0 0 / 0.08),
    0 4px 12px rgb(var(--signal-rgb) / 0.12);
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* Industry use cases — premium layout (9 industries, vertical selector + device + metrics) */
.industry-usecases-section--polished,
.industry-usecases-section--premium {
  --industry-brand: #e31e24;
  --industry-ink: #0a0a0a;
  --industry-muted: #5c6578;
  position: relative;
  overflow: hidden;
}
.industry-usecases-section--polished::before,
.industry-usecases-section--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 80rem);
  height: 22rem;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 75% 55% at 50% -15%,
    rgb(var(--signal-rgb) / 0.07),
    transparent 72%
  );
}
.industry-usecases-section--polished::after,
.industry-usecases-section--premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 6%,
    rgb(var(--void-rgb) / 0.08) 20%,
    rgb(var(--signal-rgb) / 0.12) 50%,
    rgb(var(--void-rgb) / 0.08) 80%,
    transparent 94%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 26px rgb(var(--signal-rgb) / 0.035);
  pointer-events: none;
  z-index: 0;
}

/* Unified single-card layout */
.industry-unified-card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.05),
    0 4px 14px rgb(var(--void-rgb) / 0.018);
  overflow: clip;
}
.industry-unified-card .industry-panel-shell {
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 72% 55% at 92% 8%, rgb(var(--signal-rgb) / 0.045), transparent 68%),
    radial-gradient(ellipse 58% 48% at 4% 92%, rgb(var(--ember-rgb) / 0.035), transparent 62%);
}
.industry-unified-card .glass-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.78) 52%,
    rgba(255, 255, 255, 0.86) 100%
  );
  backdrop-filter: blur(20px) saturate(185%);
  -webkit-backdrop-filter: blur(20px) saturate(185%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.04),
    0 2px 8px rgb(var(--void-rgb) / 0.016);
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    border-color 0.25s var(--ease-premium);
}
.industry-unified-card .glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.industry-unified-card .glass-card > * {
  position: relative;
  z-index: 1;
}
.industry-unified-card .glass-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.06),
    0 3px 10px rgb(var(--void-rgb) / 0.02);
}
.industry-unified-card .industry-stat-mini-icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgb(var(--signal-rgb) / 0.07));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.industry-unified-card .industry-stat-wide {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.82) 100%
  );
}
@media (min-width: 1024px) {
  .industry-unified-card .industry-panel-shell {
    padding: 1.75rem 1.5rem;
  }
}
@media (max-width: 1023px) {
  .industry-unified-card {
    flex-direction: column;
    border-radius: 1.25rem;
  }
}

/* Mobile horizontal pill tab row (9 industries) */
.industry-tabbar-mobile {
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.industry-tabbar-mobile__scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.25rem 0.75rem;
}
.industry-tabbar-mobile__scroll::-webkit-scrollbar {
  display: none;
}
.industry-tab--pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgb(var(--signal-rgb) / 0.1);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 9999px;
  font: 600 0.8125rem "Google Sans Flex", system-ui, sans-serif;
  color: var(--industry-muted);
  cursor: pointer;
  scroll-snap-align: start;
  transition: color 0.25s var(--ease-premium), background 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium),
    transform 0.2s var(--ease-premium);
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 2px 8px rgb(var(--signal-rgb) / 0.04); */
}
.industry-tab--pill .industry-tab-icon,
.industry-tab--pill svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}
.industry-tab--pill .industry-vertical-icon {
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
}
.industry-tab--pill:hover {
  color: var(--industry-brand);
  border-color: rgb(var(--signal-rgb) / 0.18);
  transform: translateY(-1px);
}
.industry-tab--pill.active {
  background: var(--grad-signal);
  border-color: transparent;
  color: #fff;
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 2px 6px rgb(0 0 0 / 0.08),
    0 4px 14px rgb(var(--signal-rgb) / 0.12); */
}
.industry-tab--pill.active svg {
  color: #fff;
  stroke: #fff;
}

/* Desktop vertical selector */
.industry-vselector {
  flex: 0 0 300px;
  width: 300px;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset -1px 0 0 rgb(var(--signal-rgb) / 0.03);
  border-radius: 0;
  gap: 0.5rem;
}
.industry-unified-card .industry-vselector {
  position: static;
  top: auto;
}
.industry-vselector__eyebrow {
  margin: 0 0 0.75rem 0.25rem;
  font: 700 0.6875rem "Google Sans Flex", system-ui, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--industry-brand);
  opacity: 0.78;
}
.industry-vtab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  background: transparent;
  color: var(--ink-700);
  font: 600 0.875rem "Google Sans Flex", system-ui, sans-serif;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color 0.25s var(--ease-premium), background 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium),
    transform 0.2s var(--ease-premium);
}
.industry-vtab__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--industry-brand);
  border: none;
  transition: background 0.25s var(--ease-premium), border-color 0.25s var(--ease-premium),
    color 0.25s var(--ease-premium);
}
.industry-vtab__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2;
}
.industry-vtab__icon .industry-vertical-icon {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
.industry-vtab__label {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.industry-vtab__arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  color: #fff;
  transition: opacity 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
}
.industry-vtab:focus-visible {
  outline: 2px solid var(--industry-brand);
  outline-offset: 3px;
}
.industry-vtab:hover {
  color: var(--industry-brand);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgb(var(--signal-rgb) / 0.04));
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.04);
  transform: translateX(2px);
}
.industry-vtab:hover .industry-vtab__icon {
  background: transparent;
  border-color: transparent;
}
.industry-vtab.active {
  /* background: var(--grad-signal); */
  background: var(--signal-600);
  color: #fff;
  border-color: transparent;
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 10px 28px rgb(var(--signal-rgb) / 0.28); */
  transform: translateX(0);
}
.industry-vtab.active .industry-vtab__icon {
  background: transparent;
  border-color: transparent;
  color: #fff;
}
.industry-vtab.active .industry-vtab__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Panel wrap + active panel transitions */
.industry-panel-wrap {
  position: relative;
  display: grid;
  flex: 1;
  min-width: 0;
}
.industry-panel-wrap > .industry-panel.tab-panel {
  display: block;
}
.industry-panel {
  grid-area: 1 / 1;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-premium), transform 0.5s var(--ease-premium), visibility 0s 0.5s;
}
.industry-panel.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease-premium), transform 0.5s var(--ease-premium), visibility 0s;
}
.industry-panel-shell {
  position: relative;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}
/* .industry-panel-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgb(var(--signal-rgb) / 0.18), rgb(var(--ember-rgb) / 0.04) 35%, rgb(var(--signal-rgb) / 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
} */

/* Centered phone shell (replaces old left/right phone layout) */
.industry-device-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.5rem 0;
  isolation: isolate;
}
.industry-device-shell__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.industry-device-shell__glow--a {
  width: 18rem;
  height: 18rem;
  top: -3rem;
  left: -2rem;
  background: radial-gradient(circle, rgb(var(--ember-rgb) / 0.09), transparent 65%);
}
.industry-device-shell__glow--b {
  width: 16rem;
  height: 16rem;
  bottom: -3rem;
  right: -2rem;
  background: radial-gradient(circle, rgb(var(--signal-rgb) / 0.1), transparent 65%);
}
.industry-phone--centered {
  position: relative;
  z-index: 1;
  width: 240px;
  margin: 0 auto;
}
.industry-phone-wrap {
  position: relative;
  width: 100%;
}
.industry-phone-svg {
  display: block;
  width: 100%;
  height: auto;
}
.industry-phone-content {
  position: absolute;
  top: 7.5%;
  left: 3.2%;
  right: 3.2%;
  bottom: 1.6%;
  border-radius: 7.3%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f4f4f5;
}
.industry-device-image {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 360px);
}
.industry-device-image__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Use case chip row */
.industry-usecase-block {
  position: relative;
}
.industry-usecase-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.industry-usecase-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.76) 100%
  );
  backdrop-filter: blur(16px) saturate(185%);
  -webkit-backdrop-filter: blur(16px) saturate(185%);
  color: var(--ink-700);
  font: 600 0.8125rem "Google Sans Flex", system-ui, sans-serif;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.04);
  transition: color 0.25s var(--ease-premium), background 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium), transform 0.2s var(--ease-premium),
    box-shadow 0.25s var(--ease-premium);
}
.industry-usecase-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.45rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgb(var(--signal-rgb) / 0.09));
  color: var(--industry-brand);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.industry-usecase-chip__icon svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2.25;
}
.industry-usecase-chip__label {
  font-size: 0.8125rem;
}
.industry-usecase-chip:hover {
  color: var(--industry-brand);
  border-color: rgba(255, 255, 255, 1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.06),
    0 2px 8px rgb(var(--signal-rgb) / 0.02);
}

/* Panel content rhythm (headline, products, use cases) */
.industry-unified-card .industry-panel-content {
  gap: 1.35rem;
}
@media (min-width: 768px) {
  .industry-unified-card .industry-panel-content {
    gap: 1.65rem;
  }
}
.industry-unified-card .industry-channels-block {
  margin-top: 0.15rem;
  padding-top: 0.35rem;
}
.industry-unified-card .industry-usecase-block--compact {
  margin-top: 0.15rem;
  padding-top: 0.65rem;
}
.industry-usecase-chip--compact {
  padding: 0.32rem 0.55rem;
  gap: 0.35rem;
  font-size: 0.75rem;
}
.industry-usecase-chip--compact .industry-usecase-chip__icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.35rem;
}
.industry-usecase-chip--compact .industry-usecase-chip__icon svg {
  width: 0.7rem;
  height: 0.7rem;
}
.industry-usecase-chip--compact .industry-usecase-chip__label {
  font-size: 0.75rem;
}
.industry-usecase-chiprow--compact {
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.industry-unified-card .industry-usecase-chiprow--compact {
  margin-top: 0.75rem;
}

/* Recommended products — navbar-style compact mega list */
.industry-channels-block {
  position: relative;
  margin-top: 0;
}
.industry-unified-card .industry-products-mega-scroll {
  max-height: 14rem;
  margin-top: 0.65rem;
}
.industry-products-mega-scroll {
  max-height: 11.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-signal-700, #b91c1c) transparent;
  border-radius: 0.5rem;
  padding-right: 0.2rem;
}
.industry-products-mega-scroll::-webkit-scrollbar {
  width: 3px;
}
.industry-products-mega-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.industry-products-mega-scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-signal-700, #b91c1c);
  border-radius: 9999px;
  opacity: 0.5;
}
.industry-products-mega {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.65rem;
}
.industry-products-mega__col {
  min-width: 0;
  container-type: inline-size;
}
.industry-products-mega__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 0.35rem;
  padding: 0.3rem 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, #ef3a40 0%, #e31e24 52%, #c91a21 100%);
  border: 1px solid rgb(0 0 0 / 0.18);
  color: #fff;
  font: 700 0.56rem/1 "Google Sans Flex", system-ui, sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.32) inset,
    0 -1px 0 rgb(0 0 0 / 0.1) inset,
    0 2px 8px rgb(var(--signal-rgb) / 0.38);
}
@container (max-width: 11rem) {
  .industry-products-mega__pill {
    font-size: 0.5rem;
    padding-inline: 0.42rem;
  }
}
@container (max-width: 9.25rem) {
  .industry-products-mega__pill {
    font-size: 0.44rem;
    padding-inline: 0.34rem;
  }
}
.industry-products-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.industry-nav-product-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
  padding: 0.32rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.76) 100%
  );
  backdrop-filter: blur(16px) saturate(185%);
  -webkit-backdrop-filter: blur(16px) saturate(185%);
  text-decoration: none;
  color: var(--ink-700);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.04);
  transition:
    color 0.25s var(--ease-premium),
    background 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium),
    transform 0.2s var(--ease-premium),
    box-shadow 0.25s var(--ease-premium);
}
.industry-nav-product-link:hover {
  color: var(--industry-brand);
  border-color: rgba(255, 255, 255, 1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  transform: scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.06),
    0 2px 8px rgb(var(--signal-rgb) / 0.02);
}
.industry-nav-product-link:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 1px;
}
.industry-nav-product-link .site-nav-mega-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0.1rem;
  border-radius: 0.35rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgb(var(--signal-rgb) / 0.09));
  color: var(--industry-brand);
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    background 0.25s var(--ease-premium),
    color 0.25s var(--ease-premium);
}
.industry-nav-product-link:hover .site-nav-mega-link-icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgb(var(--signal-rgb) / 0.12));
  color: var(--industry-brand);
}
.industry-nav-product-link .site-nav-mega-link-icon--flat {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
body.dark-index .industry-nav-product-link .site-nav-mega-link-icon--flat {
  background: transparent;
  box-shadow: none;
}
.industry-nav-product-link .site-nav-mega-brand-icon,
.industry-nav-product-link .site-nav-mega-channel-icon,
.industry-nav-product-link .site-nav-mega-mdi-icon {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1.55rem;
  max-height: 1.55rem;
  object-fit: contain;
}
.industry-nav-product-link__body {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
  flex: 1;
}
.industry-nav-product-link__title {
  min-width: 0;
  flex: 1;
  font: 600 0.75rem/1.2 "Google Sans Flex", system-ui, sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.industry-nav-product-link__badge {
  flex-shrink: 0;
  padding: 0.04rem 0.28rem;
  border: 1px solid rgb(0 0 0 / 0.1);
  border-radius: 0.22rem;
  color: var(--ink-500);
  font: 500 0.56rem/1.2 "Google Sans Flex", system-ui, sans-serif;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .industry-products-mega {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem 0.8rem;
  }
  .industry-nav-product-link__title {
    font-size: 0.74rem;
  }
}
@media (min-width: 1200px) {
  .industry-products-mega {
    gap: 0.6rem 1rem;
  }
  .industry-nav-product-link {
    padding: 0.34rem 0.58rem;
  }
}
@media (max-width: 767px) {
  .industry-products-mega {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .industry-usecases-section--premium .industry-section-inner {
    min-height: calc(100vh - 5.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .industry-usecases-section--premium .industry-unified-card {
    flex: 0 1 auto;
  }
  .industry-unified-card .industry-panel-shell {
    padding: 1rem 1.1rem;
  }
  .industry-vselector {
    flex-basis: 300px;
    width: 300px;
    padding: 1rem 0.75rem;
    gap: 0.25rem;
  }
  .industry-vselector__eyebrow {
    margin-bottom: 0.45rem;
  }
  .industry-vtab {
    padding: 0.5rem 0.65rem;
  }
  .industry-phone--centered {
    width: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .industry-nav-product-link,
  .industry-nav-product-link:hover {
    transform: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }
}

/* Category thumb tag inside bubble */
.industry-wa-thumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.45rem;
  margin-bottom: 0.4rem;
  border-radius: 0.4rem;
  background: rgb(var(--signal-rgb) / 0.07);
  color: var(--signal-700);
  font: 700 0.55rem "Google Sans Flex", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
}
.industry-wa-thumb-tag svg {
  width: 0.7rem;
  height: 0.7rem;
  stroke-width: 2.25;
}
.industry-wa-thumb-tag .industry-vertical-icon {
  width: 0.85rem;
  height: 0.85rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .industry-device-shell {
    min-height: 0;
    padding: 0.5rem 0 1rem;
  }
  .industry-phone--centered {
    width: 240px;
  }
  .industry-device-image {
    width: min(100%, 350px);
  }
}

.industry-hero-accent {
  font-weight: 800;
}

.industry-subcopy,
.industry-value-body {
  line-height: 1.65;
}
.industry-value-body {
  font-size: 0.9375rem;
}
.industry-unified-card .industry-col-title {
  font-size: 1rem;
}
.industry-unified-card .industry-stat-mini-value {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .industry-unified-card .industry-device-shell {
    align-self: center;
    min-height: 0;
    padding: 0.5rem 0;
  }
  .industry-unified-card .industry-device-image {
    width: min(100%, 320px);
  }
}

/* Legacy horizontal tab-bar (kept for backwards compatibility — scoped to old container) */
.industry-tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.125rem;
  padding: 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  border-radius: 1rem;
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 20px rgb(var(--signal-rgb) / 0.06); */
}

.industry-tab-bar .industry-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  margin: 0.1rem;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  font: 600 0.875rem "Google Sans Flex", system-ui, sans-serif;
  color: var(--industry-muted);
  cursor: pointer;
  transition: color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium),
    background 0.25s var(--ease-premium), transform 0.2s var(--ease-premium);
  /* box-shadow: inset 0 -3px 0 transparent; */
}
.industry-tab-bar .industry-tab:focus-visible {
  outline: 2px solid var(--industry-brand);
  outline-offset: 3px;
}
.industry-tab-bar .industry-tab .industry-tab-icon,
.industry-tab-bar .industry-tab svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke-width: 2;
}
.industry-tab-bar .industry-tab:hover {
  color: var(--industry-brand);
  background: rgb(var(--signal-rgb) / 0.05);
}
.industry-tab-bar .industry-tab.active {
  color: #fff;
  background: var(--grad-signal);
  /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 14px rgb(var(--signal-rgb) / 0.28); */
}
.industry-tab-bar .industry-tab.active svg {
  color: #fff;
  stroke: #fff;
}
.industry-tab-bar .industry-tab:not(.active) svg {
  stroke: var(--ink-500);
  color: var(--ink-500);
}

.industry-usecase-shell {
  /* box-shadow: 0 4px 28px rgb(var(--signal-rgb) / 0.06),
    0 12px 48px rgb(var(--signal-rgb) / 0.05), 0 0 0 1px rgba(255, 255, 255, 0.6) inset; */
}

.industry-col-title {
  letter-spacing: -0.02em;
}

.industry-usecase-row {
  /* box-shadow: 0 1px 3px rgb(var(--signal-rgb) / 0.05); */
  transition: border-color 0.25s var(--ease-premium), background 0.25s var(--ease-premium),
    box-shadow 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
}
.industry-usecase-row:hover {
  border-color: rgb(var(--signal-rgb) / 0.24);
  background: #fff;
  /* box-shadow: 0 4px 14px rgb(var(--signal-rgb) / 0.07),
    0 0 0 1px rgb(var(--signal-rgb) / 0.08); */
  transform: translateY(-1px);
}
.industry-usecase-row:hover .industry-usecase-row-icon {
  /* box-shadow: 0 0 0 1px rgb(var(--signal-rgb) / 0.2); */
  background: rgb(var(--signal-rgb) / 0.09);
}

.industry-visual {
  isolation: isolate;
}
.industry-mockup-img {
  z-index: 1;
}
.industry-mockup-img--blend {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 12%,
    #000 28%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 12%,
    #000 28%,
    #000 100%
  );
}
.industry-mockup-img[src=""],
.industry-mockup-img:not([src]) {
  display: none;
}

.industry-stat-mini {
  /* box-shadow: 0 1px 4px rgb(var(--signal-rgb) / 0.05); */
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium);
}
.industry-stat-mini:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 22px rgb(var(--signal-rgb) / 0.1); */
  border-color: rgb(var(--signal-rgb) / 0.18);
}
.industry-unified-card .industry-stat-mini:hover {
  transform: translateY(-2px);
}

.industry-stat-wide {
  position: relative;
  overflow: hidden;
}
.industry-stat-wide-accent {
  width: 4px;
  align-self: stretch;
  min-height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, var(--industry-brand), #b3181d);
  margin-right: 0.25rem;
  flex-shrink: 0;
}

/* Legacy div frame (unused; SVG shell replaces) */
.industry-phone-frame--light {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.industry-phone-frame--iphone {
  background: linear-gradient(160deg, #2d2d2d 0%, #0a0a0a 40%, #1a1a1a 100%);
  border: 2px solid #1f2937;
  border-radius: 2.35rem;
  padding: 0.55rem 0.45rem 0.75rem;
  /* box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset; */
}
.industry-phone-notch {
  width: 3.5rem;
  height: 0.28rem;
  background: #94a3b8;
  border-radius: 9999px;
  margin: 0 auto 0.65rem;
}
.industry-phone-notch--dark {
  background: #374151;
  margin-bottom: 0.5rem;
}
.industry-phone-screen {
  border-radius: 1.25rem;
  background: #fff;
  padding: 0.75rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9); */
}
.industry-phone-screen--wa {
  background: #e5ddd5;
  padding: 0;
  min-height: 300px;
  overflow: hidden;
  /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06); */
}
.industry-phone-screen__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.industry-wa-topbar {
  background: #f0f2f5;
  padding: 0.45rem 0.6rem 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.industry-wa-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.industry-phone-brand--wa {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1a1f36;
  letter-spacing: 0.01em;
}
.industry-wa-verified {
  width: 0.85rem;
  height: 0.85rem;
  color: #e31e24;
  stroke-width: 2.5;
  flex-shrink: 0;
}
.industry-wa-chat {
  padding: 0.45rem 0.45rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.industry-wa-bubble-in {
  background: #fff;
  border-radius: 0.5rem;
  border: none;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); */
  padding: 0.45rem;
}
.industry-phone-thumb--property {
  height: 3.5rem;
  background: linear-gradient(135deg, #bfdbfe 0%, #60a5fa 45%, #1d4ed8 100%);
}
.industry-phone-card-body--wa {
  font-size: 0.56rem;
  color: #374151;
  line-height: 1.5;
  margin: 0.35rem 0 0.5rem;
}
.industry-phone-cta--wa {
  background: #e31e24;
  font-size: 0.55rem;
  padding: 0.42rem 0.5rem;
  border-radius: 0.4rem;
  transition: box-shadow 0.2s ease, filter 0.2s ease, transform 0.15s ease;
  /* box-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 2px 8px rgb(var(--signal-rgb) / 0.12); */
}
.industry-phone-cta--wa:hover {
  filter: brightness(1.04);
  /* box-shadow: 0 2px 4px rgb(0 0 0 / 0.08), 0 4px 12px rgb(var(--signal-rgb) / 0.16); */
  transform: translateY(-0.5px);
}
.industry-wa-out-row {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.15rem;
}
.industry-phone-bubble-wa-user {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  max-width: 95%;
  background: #dcf8c6;
  color: #1a1f36;
  font-size: 0.56rem;
  line-height: 1.4;
  padding: 0.4rem 0.48rem 0.34rem 0.52rem;
  border-radius: 0.5rem;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07); */
}
.industry-phone-bubble-wa-text {
  flex: 1;
  min-width: 0;
}
.industry-wa-ticks {
  font-size: 0.55rem;
  line-height: 1;
  color: #e31e24;
  letter-spacing: -0.12em;
  flex-shrink: 0;
  padding-bottom: 0.05rem;
}

/* Chat UI inside SVG content overlay */
.industry-phone-screen--tg {
  background: #f4f4f5;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.industry-phone-content .industry-tg-topbar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.45rem 0.38rem;
  background: #e5e7eb;
  border-bottom: none;
  flex-shrink: 0;
}
.industry-tg-back {
  width: 0.7rem;
  height: 0.7rem;
  color: #8a9ab5;
  stroke-width: 2.25;
  flex-shrink: 0;
}
.industry-tg-topbar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.45rem 0.38rem;
  background: #e5e7eb;
  border-bottom: none;
  flex-shrink: 0;
}
.industry-tg-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #e31e24 0%, #b3181d 100%);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0;
}
.industry-tg-brand-group {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex: 1;
  min-width: 0;
}
.industry-phone-brand--tg {
  font-size: 0.62rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.industry-tg-status {
  font-size: 0.48rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.2;
}
.industry-tg-verified {
  width: 0.75rem;
  height: 0.75rem;
  color: #22c55e;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-left: auto;
}
.industry-tg-chat {
  padding: 0.45rem 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-height: 0;
}
.industry-phone-content .industry-tg-bubble-in,
.industry-tg-bubble-in {
  background: #ffffff;
  border-radius: 0.75rem;
  border: none;
  box-shadow: none;
  padding: 0.42rem 0.45rem;
}
.industry-phone-content .industry-phone-card.industry-tg-bubble-in {
  border: none;
  background: #ffffff;
}
.industry-phone-card-body--tg {
  font-size: 0.56rem;
  color: #374151;
  line-height: 1.5;
  margin: 0.35rem 0 0.4rem;
}
.industry-phone-cta--tg {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.38rem 0.5rem;
  border: none;
  border-radius: 9999px;
  background: rgb(var(--signal-rgb) / 0.08);
  color: var(--signal-700);
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease;
}
.industry-phone-cta--tg:hover {
  background: rgb(var(--signal-rgb) / 0.12);
  color: var(--signal-700);
  filter: none;
  transform: none;
}
.industry-tg-out-row {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.1rem;
}
.industry-tg-bubble-out {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  max-width: 95%;
  background: #d4d4d8;
  color: #3f3f46;
  font-size: 0.56rem;
  line-height: 1.4;
  padding: 0.38rem 0.45rem 0.32rem 0.48rem;
  border-radius: 0.75rem 0.75rem 0.1rem 0.75rem;
  box-shadow: none;
}
.industry-tg-bubble-text {
  flex: 1;
  min-width: 0;
}
.industry-tg-ticks {
  font-size: 0.55rem;
  line-height: 1;
  color: var(--signal-700);
  letter-spacing: -0.12em;
  flex-shrink: 0;
  padding-bottom: 0.05rem;
}

.industry-phone-brand {
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1f36;
  letter-spacing: 0.02em;
}
.industry-phone-card {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  background: #f9fafb;
}
.industry-phone-thumb {
  height: 3.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  margin-bottom: 0.4rem;
}
.industry-phone-card-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1f36;
  line-height: 1.3;
  margin: 0;
}
.industry-phone-card-body {
  font-size: 0.58rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0.25rem 0 0.45rem;
}
.industry-phone-cta {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0.45rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  background: #e31e24;
  cursor: default;
  transition: box-shadow 0.2s ease, filter 0.2s ease;
  /* box-shadow: 0 1px 2px rgb(0 0 0 / 0.08), 0 2px 8px rgb(var(--signal-rgb) / 0.1); */
}
.industry-phone-cta:hover {
  filter: brightness(1.03);
  /* box-shadow: 0 2px 6px rgb(0 0 0 / 0.08), 0 4px 12px rgb(var(--signal-rgb) / 0.14); */
}
.industry-phone-chat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.industry-phone-bubble {
  font-size: 0.58rem;
  line-height: 1.35;
  padding: 0.35rem 0.5rem;
  border-radius: 0.55rem;
  max-width: 92%;
}
.industry-phone-bubble.them {
  align-self: flex-start;
  background: #f3f4f6;
  color: #374151;
}
.industry-phone-bubble.me {
  align-self: flex-end;
  background: #e31e24;
  color: #fff;
}

/* Phone mockup */
.phone-mockup {
  width: 220px;
  margin: 0 auto;
  background: var(--void-950);
  border: 2px solid var(--void-700);
  border-radius: 2.5rem;
  padding: 1rem 0.75rem;
  box-shadow: var(--shadow-float);
  position: relative;
}
.phone-notch {
  width: 4rem;
  height: 0.35rem;
  background: var(--void-800);
  border-radius: 9999px;
  margin: 0 auto 0.75rem;
}
.phone-screen {
  border-radius: 1rem;
  background: var(--void-850);
  aspect-ratio: 9 / 19;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.chat-bubble {
  max-width: 85%;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  font-size: 0.65rem;
  line-height: 1.35;
}
.chat-bubble.them {
  align-self: flex-start;
  background: var(--void-700);
  color: var(--slate-200);
}
.chat-bubble.me {
  align-self: flex-end;
  background: var(--signal-600);
  color: #fff;
}

.stat-card-float {
  position: absolute;
  bottom: -1rem;
  right: -3rem;
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(3, 3, 3, 0.4);
  min-width: 160px;
  z-index: 5;
}

/* Accordion */
.accordion-item {
  margin-bottom: 0.75rem;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  border-radius: 0.875rem;
  cursor: pointer;
  transition: background 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium),
    color 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
  width: 100%;
  text-align: left;
}
.accordion-header:hover,
.accordion-header.open {
  background: var(--signal-600);
  color: #fff;
  box-shadow: 0 4px 16px rgb(var(--signal-rgb) / 0.12), 0 1px 2px rgb(0 0 0 / 0.06);
  border-color: var(--signal-700);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-premium);
}
.accordion-body.open {
  max-height: 2000px;
}
.chevron {
  transition: transform 0.3s var(--ease-premium);
  flex-shrink: 0;
}
.accordion-header.open .chevron {
  transform: rotate(180deg);
  color: #fff;
}
.accordion-header.open .accordion-badge {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.25);
}
.accordion-header .accordion-title {
  color: var(--ink-900);
}
.accordion-header:hover .accordion-title,
.accordion-header.open .accordion-title {
  color: #fff;
}
.accordion-header:hover .accordion-badge {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Process flow section (#approach) — elite timeline */
.process-flow-section {
  --pf-card-radius: 20px;
  --pf-card-bg: #ffffff;
  --pf-card-bg-hover: #f8f9fa;
  --pf-card-border: rgba(60, 64, 67, 0.12);
  --pf-card-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.06);
  --pf-card-shadow-hover: 0 2px 4px rgba(60, 64, 67, 0.1), 0 8px 20px rgba(60, 64, 67, 0.12);
  background: linear-gradient(180deg, #fdfcfb 0%, #f7f5f3 50%, #fdfcfb 100%);
}

@media (min-width: 1024px) {
  .process-flow-section {
    --pf-card-radius: 18px;
  }
}

.process-flow-section__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% -5%, rgb(227 30 36 / 0.09), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 30%, rgb(227 30 36 / 0.05), transparent 50%),
    radial-gradient(ellipse 40% 40% at 0% 85%, rgb(227 30 36 / 0.05), transparent 55%);
  opacity: 1;
}

.process-flow-section__eyebrow {
  margin-bottom: 1rem;
}

.cta-elite-card__eyebrow {
  margin-bottom: 1rem;
}

.process-flow-section__title {
  color: #0a0a0a;
  background: none;
  -webkit-text-fill-color: unset;
}

.process-flow-section__title-accent {
  color: #e31e24;
}

.process-flow-section__sub {
  margin-left: auto;
  margin-right: auto;
}

.process-flow-track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 3.25rem;
  gap: 1.5rem;
  container-type: inline-size;
}

@media (min-width: 1024px) {
  .process-flow-track {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    column-gap: 0.75rem;
    row-gap: 0;
    margin-top: 4rem;
    padding-bottom: 0.5rem;
    --process-track-gap: 0.75rem;
  }
}

/* Column: image card + badge + text */
.process-flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

@media (min-width: 1024px) {
  .process-flow-step {
    display: contents;
  }

  .process-flow-step__media,
  .process-flow-step__marker,
  .process-flow-step__copy {
    grid-column: var(--step-col);
    min-width: 0;
  }

  .process-flow-step__media {
    grid-row: 1;
  }

  .process-flow-step__marker {
    grid-row: 2;
    align-self: end;
    margin-top: 0.875rem;
  }

  .process-flow-step__copy {
    grid-row: 3;
    margin-top: 0.75rem;
  }
}

/* Step illustration — product-style gray boxes */
.process-flow-step__media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  margin: 0;
  border-radius: var(--pf-card-radius);
  background: var(--pf-card-bg);
  border: 1px solid var(--pf-card-border);
  box-shadow: var(--pf-card-shadow);
  perspective: 700px;
  transform-style: preserve-3d;
  transform: translateY(0) scale(1);
  transition:
    background 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.process-flow-step__media:hover {
  background: var(--pf-card-bg-hover);
  border-color: var(--pf-card-border);
  box-shadow: var(--pf-card-shadow-hover);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}

.process-flow-step__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: translateZ(0) scale(1);
  transform-origin: center bottom;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
  transition:
    transform 0.32s var(--ease-premium),
    filter 0.32s var(--ease-premium);
  will-change: transform;
}

.process-flow-step__media:hover .process-flow-step__img {
  transform: translateZ(18px) scale(1.1);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

@media (prefers-reduced-motion: reduce) {
  .process-flow-step__media {
    transition: none;
  }
  .process-flow-step__media:hover {
    transform: none;
  }
  .process-flow-step__img {
    transition: none;
    will-change: auto;
  }
  .process-flow-step__media:hover .process-flow-step__img {
    transform: none;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
  }
}

/* Horizontal timeline connector (desktop) */
.process-flow-connector {
  display: none;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .process-flow-connector {
    display: block;
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    z-index: 0;
    height: 2px;
    margin-left: calc(((100% - 6 * var(--process-track-gap)) / 7) / 2);
    margin-right: calc(((100% - 6 * var(--process-track-gap)) / 7) / 2);
    margin-bottom: 3px;
  }

  .process-flow-connector__track,
  .process-flow-connector__fill {
    position: absolute;
    inset: 0;
    height: 2px;
    border-radius: 1px;
  }

  .process-flow-connector__track {
    background: rgb(227 30 36 / 0.18);
  }

  .process-flow-connector__fill {
    background: #e31e24;
    transform: scaleX(0);
    transform-origin: left center;
  }
}

/* Number badge + timeline dot (stacked, column-centered) */
.process-flow-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 0.875rem;
  position: relative;
  z-index: 3;
}

.process-flow-step__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-flow-step__dot {
  display: none;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.625rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e31e24;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .process-flow-step__dot {
    display: block;
  }
}

.process-flow-badge {
  position: relative;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e31e24;
  color: #e31e24;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-flow-step__title {
  margin: 0 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  text-align: center;
  color: #0a0a0a;
}

.process-flow-step__body {
  margin: 0.375rem 0.5rem 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  text-align: center;
  color: #4a4a4a;
}

/* Footer trust bar */
.process-flow-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgb(0 0 0 / 0.08);
  background: transparent;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .process-flow-footer {
    gap: 0;
    justify-content: space-between;
    padding: 1rem 2.5rem;
  }
}

.process-flow-footer__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3a3a3a;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .process-flow-footer__item:not(:last-child) {
    padding-right: 2rem;
    border-right: 1px solid rgb(0 0 0 / 0.1);
  }
}

.process-flow-footer__icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke: #e31e24;
  color: #e31e24;
  flex-shrink: 0;
}

.process-flow-footer__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

@media (min-width: 1280px) {
  .process-flow-track {
    column-gap: 1rem;
    --process-track-gap: 1rem;
  }

  .process-flow-step__title {
    font-size: 1rem;
  }

  .process-flow-step__body {
    font-size: 0.875rem;
  }
}

/* Security showcase (#security) — Google-style feature boxes */
.security-showcase {
  --ss-blue: #e31e24;
  --ss-ink: #0a0a0a;
  --ss-muted: #5f6368;
  --ss-card-radius: 20px;
  --ss-card-bg: #ffffff;
  --ss-card-bg-hover: #f8f9fa;
  --ss-card-border: rgba(60, 64, 67, 0.12);
  --ss-card-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.06);
  --ss-card-shadow-hover: 0 1px 3px rgba(60, 64, 67, 0.12), 0 4px 8px rgba(60, 64, 67, 0.08);
  --ss-card-title: var(--ink-900);
  --ss-card-body: var(--ss-muted);
  background: linear-gradient(180deg, var(--surface-100) 0%, var(--surface-50) 100%);
  color: var(--ss-ink);
}

@media (min-width: 1024px) {
  .security-showcase {
    --ss-card-radius: 24px;
  }
}

.security-showcase__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -20%, rgb(var(--signal-rgb) / 0.08), transparent 55%);
  opacity: 1;
}

.security-showcase__eyebrow {
  margin: 0;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ss-blue);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgb(var(--signal-rgb) / 0.2);
}

@media (min-width: 640px) {
  .security-showcase__eyebrow {
    font-size: 0.75rem;
  }
}

.security-showcase__headline {
  color: var(--ss-ink);
}

.security-showcase__headline-accent {
  color: var(--ss-blue);
}

.security-showcase__headline-accent::before {
  content: " ";
}

.security-showcase__headline-accent + .security-showcase__headline-part::before {
  content: " ";
}

.security-showcase__sub {
  margin-left: auto;
  margin-right: auto;
}

.security-showcase__grid {
  gap: 12px;
}

@media (min-width: 1024px) {
  .security-showcase__grid {
    gap: 14px;
  }
}

.security-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.875rem 1.25rem;
  border-radius: var(--ss-card-radius);
  background: var(--ss-card-bg);
  border: 1px solid var(--ss-card-border);
  box-shadow: var(--ss-card-shadow);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateY(0) scale(1);
  transition:
    background 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.security-showcase-card:hover {
  background: var(--ss-card-bg-hover);
  border-color: var(--ss-card-border);
  box-shadow: var(--ss-card-shadow-hover);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}

.security-showcase-card:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.12s;
}

.security-showcase-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  margin: 0 0 0.5rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  perspective: 700px;
  transform-style: preserve-3d;
}

.security-showcase-card__img {
  width: clamp(4.5rem, 18vw, 5.75rem);
  height: clamp(4.5rem, 18vw, 5.75rem);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: translateZ(0) scale(1);
  transform-origin: center bottom;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.22));
  transition:
    transform 0.32s var(--ease-premium),
    filter 0.32s var(--ease-premium);
  will-change: transform;
}

.security-showcase-card:hover .security-showcase-card__img {
  transform: translateZ(18px) scale(1.12);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.security-showcase-card:active .security-showcase-card__img {
  transform: translateZ(10px) scale(1.06);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
  transition-duration: 0.12s;
}

@media (min-width: 1024px) {
  .security-showcase-card__img {
    width: clamp(5.25rem, 7vw, 6.5rem);
    height: clamp(5.25rem, 7vw, 6.5rem);
  }
}

.security-showcase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: var(--ss-blue);
}

.security-showcase-svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--ss-blue);
  color: var(--ss-blue);
  stroke-width: 1.65;
}

.security-showcase-svg--sm {
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  z-index: 1;
}

.security-showcase-icon--gdpr {
  position: relative;
  width: 4rem;
  height: 4rem;
}

.security-showcase-icon__eu {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgb(var(--signal-rgb) / 0.18) 0deg 4deg,
    transparent 4deg 30deg
  );
  opacity: 0.85;
  pointer-events: none;
}

.security-showcase-icon--gdpr .security-showcase-svg {
  position: relative;
  z-index: 1;
}

.security-showcase-icon--ring {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1.5px solid rgb(var(--signal-rgb) / 0.16);
  background: radial-gradient(circle at 50% 45%, rgb(var(--signal-rgb) / 0.08), transparent 65%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.security-showcase-icon--ring .security-showcase-svg {
  width: 1.875rem;
  height: 1.875rem;
}

.security-showcase-icon--stack {
  position: relative;
  width: 4rem;
  height: 4rem;
}

.security-showcase-svg--stack-main {
  width: 2.25rem;
  height: 2.25rem;
}

.security-showcase-svg--stack-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.125rem;
  height: 1.125rem;
  padding: 0.15rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgb(var(--signal-rgb) / 0.2);
  box-shadow: 0 2px 8px rgb(var(--signal-rgb) / 0.1);
  stroke-width: 1.75;
}

.security-showcase-icon--uptime {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-showcase-uptime__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid rgb(var(--signal-rgb) / 0.2);
  background: linear-gradient(180deg, #fff 0%, #f4f7fd 100%);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ss-blue);
  line-height: 1;
  box-shadow: 0 2px 10px rgb(var(--signal-rgb) / 0.1);
}

.security-showcase-svg--uptime-badge {
  position: absolute;
  bottom: -0.125rem;
  right: -0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  padding: 0.15rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgb(var(--signal-rgb) / 0.22);
  box-shadow: 0 2px 8px rgb(var(--signal-rgb) / 0.1);
}

.security-showcase-icon--server {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-showcase-svg--server-main {
  width: 2.375rem;
  height: 2.375rem;
}

.security-showcase-svg--server-badge {
  position: absolute;
  bottom: 0.125rem;
  right: 0;
  width: 1.125rem;
  height: 1.125rem;
  padding: 0.15rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgb(var(--signal-rgb) / 0.2);
  box-shadow: 0 2px 8px rgb(var(--signal-rgb) / 0.1);
}

.security-showcase-card__title {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ss-card-title);
}

.security-showcase-card__body {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ss-card-body);
  max-width: 15rem;
}

@media (prefers-reduced-motion: reduce) {
  .security-showcase-card {
    transition: none;
  }
  .security-showcase-card:hover,
  .security-showcase-card:active {
    transform: none;
  }
  .security-showcase-card__img {
    transition: none;
    will-change: auto;
  }
  .security-showcase-card:hover .security-showcase-card__img,
  .security-showcase-card:active .security-showcase-card__img {
    transform: none;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.22));
  }
}

/* CTA elite (#cta) — premium card, two columns */
section.section-shell.section-band--light.cta-elite::before {
  background: linear-gradient(180deg, #fff 0%, var(--surface-50) 100%);
}

.cta-elite {
  --cta-blue: #e31e24;
  --cta-ink: #ffffff;
  --cta-body: rgba(255, 255, 255, 0.88);
  --cta-muted: rgba(255, 255, 255, 0.72);
  position: relative;
}

.cta-elite-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.5rem;
  background: #000000;
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: none;
}

.cta-elite-card__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgb(var(--signal-rgb) / 0.07), transparent 62%),
    radial-gradient(ellipse 50% 42% at 88% 82%, rgb(var(--ember-rgb) / 0.06), transparent 58%);
  z-index: 0;
}

.cta-elite-card__glow {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
}

.cta-elite-card__glow--left {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -40px;
  background: rgb(var(--signal-rgb) / 0.12);
}

.cta-elite-card__glow--right {
  width: 280px;
  height: 280px;
  bottom: -80px;
  right: -60px;
  background: rgb(var(--ember-rgb) / 0.1);
}

.cta-elite-card__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .cta-elite-card__grid {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .cta-elite-card__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    padding: 3rem 3.25rem;
  }
}

.cta-elite-card__copy {
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-elite-card__copy {
    text-align: left;
  }
}

.cta-elite-card__title {
  color: var(--cta-ink);
}

.cta-elite-card__title-accent {
  color: #ffffff;
}

.cta-elite-card__sub {
  color: var(--cta-body);
}

.cta-elite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (min-width: 1024px) {
  .cta-elite-actions {
    justify-content: flex-start;
  }
}

.cta-elite-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.65rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: linear-gradient(135deg, var(--signal-600) 0%, var(--signal-700) 100%);
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.25s var(--ease-premium),
    background 0.2s var(--ease-premium);
}

.cta-elite-btn-primary:hover {
  background: var(--signal-700);
}

.cta-elite-btn-primary__arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-premium);
}

.cta-elite-btn-primary:hover .cta-elite-btn-primary__arrow {
  transform: translateX(3px);
}

.cta-elite-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.65rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.35);
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition:
    background 0.2s var(--ease-premium),
    border-color 0.2s var(--ease-premium);
}

.cta-elite-btn-outline:hover {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.55);
}

.cta-elite-btn-outline__icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke: #ffffff;
  color: #ffffff;
  stroke-width: 2;
  transition: transform 0.25s var(--ease-premium);
}

.cta-elite-btn-outline:hover .cta-elite-btn-outline__icon {
  transform: scale(1.08);
}

.cta-elite-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.cta-elite-visual-frame {
  position: relative;
  width: 100%;
  max-width: min(420px, 88vw);
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  z-index: 1;
  padding: 0.35rem;
  border-radius: 1.125rem;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: none;
}

@media (min-width: 1024px) {
  .cta-elite-visual-frame {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

.cta-elite-visual-accent {
  position: absolute;
  top: -0.75rem;
  right: -0.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgb(var(--signal-rgb) / 0.12);
  box-shadow: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cta-ink);
}

@media (min-width: 1024px) {
  .cta-elite-visual-accent {
    top: 1rem;
    right: -1rem;
  }
}

.cta-elite-visual-accent__icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--cta-blue);
  stroke: var(--cta-blue);
  stroke-width: 2;
}

.cta-elite-visual-accent__text {
  white-space: nowrap;
}

.cta-elite-visual-img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 0.875rem;
  border: none;
  background: #f8f8f8;
}

@media (min-width: 1024px) {
  .cta-elite-visual-img {
    min-height: 280px;
    aspect-ratio: auto;
    max-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-elite-btn-primary,
  .cta-elite-btn-outline,
  .cta-elite-btn-primary__arrow,
  .cta-elite-btn-outline__icon {
    transition: none;
  }

  .cta-elite-btn-primary:hover .cta-elite-btn-primary__arrow,
  .cta-elite-btn-outline:hover .cta-elite-btn-outline__icon {
    transform: none;
  }
}

/* Footer elite (#footer) */
.site-footer-elite {
  --fe-blue: #e31e24;
  --fe-body: #475569;
  --fe-muted: #94a3b8;
  color: #0a0a0a;
}

.site-footer-elite--dark {
  --fe-body: rgb(255 255 255 / 0.58);
  --fe-muted: rgb(255 255 255 / 0.38);
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgb(var(--signal-rgb) / 0.09), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 100%, rgb(var(--signal-rgb) / 0.05), transparent 50%),
    linear-gradient(180deg, #080808 0%, #000000 100%);
  color: rgb(255 255 255 / 0.92);
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

.site-footer-elite--dark .site-footer-elite__heading {
  color: rgb(255 255 255 / 0.92);
}

.site-footer-elite--dark .site-footer-elite__social {
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.72);
  border-color: rgb(255 255 255 / 0.1);
}

.site-footer-elite--dark .site-footer-elite__social:hover {
  color: #ffffff;
  background: rgb(var(--signal-rgb) / 0.18);
  border-color: rgb(var(--signal-rgb) / 0.35);
}

.site-footer-elite--dark .site-footer-elite__link:hover {
  color: #ffffff;
}

.site-footer-elite--dark .site-footer-elite__bar {
  border-top: 1px solid rgb(255 255 255 / 0.06);
  background: rgb(0 0 0 / 0.35);
}

.site-footer-elite--dark .site-footer-elite__lang {
  border-color: rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
  color: rgb(255 255 255 / 0.72);
}

.site-footer-elite--dark .site-footer-elite__lang:hover {
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.08);
}

.site-footer-elite--dark .site-footer-elite__lang-icon,
.site-footer-elite--dark .site-footer-elite__lang-chev {
  color: rgb(255 255 255 / 0.6);
  stroke: rgb(255 255 255 / 0.6);
}

.site-footer-elite__grid {
  display: grid;
  gap: 2.25rem 1.5rem;
}

@media (min-width: 640px) {
  .site-footer-elite__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-elite__brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .site-footer-elite__grid {
    grid-template-columns: minmax(200px, 1fr) minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 0 2rem;
    align-items: start;
  }
  .site-footer-elite__brand {
    grid-column: auto;
    padding-right: 0.25rem;
  }
  .site-footer-elite__col {
    position: relative;
    padding-left: 2.75rem;
  }
  .site-footer-elite__col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.14) 0%,
      rgb(255 255 255 / 0.05) 70%,
      transparent 100%
    );
  }
}

.site-footer-elite__tagline {
  margin: 1.125rem 0 0;
  max-width: 18rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--fe-body);
}

.site-footer-elite__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer-elite__social:hover {
  color: var(--fe-blue);
  background: rgb(var(--signal-rgb) / 0.06);
  border-color: rgb(var(--signal-rgb) / 0.25);
}

.site-footer-elite__heading {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--signal-800);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer-elite__heading::before {
  content: '';
  flex-shrink: 0;
  width: 1.125rem;
  height: 2px;
  border-radius: 999px;
  background: var(--signal-600);
  opacity: 0.85;
}

.site-footer-elite__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

@media (min-width: 768px) {
  .site-footer-elite__list--cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 0.4375rem;
  }
}

.site-footer-elite__list--compact .site-footer-elite__link {
  font-size: 0.75rem;
  line-height: 1.4;
}

.site-footer-elite__link {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--fe-body);
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer-elite__link:hover {
  color: var(--fe-blue);
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-elite__link {
    transition: color 0.22s ease;
  }
  .site-footer-elite__link:hover {
    transform: none;
  }
}

.site-footer-elite__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.site-footer-elite__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.site-footer-elite__legal-link {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--fe-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-elite__legal-link:hover {
  color: #ffffff;
}

.site-footer-elite__legal-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.6875rem;
}

.site-footer-elite__iso-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--fe-blue);
  stroke: var(--fe-blue);
  stroke-width: 2;
  flex-shrink: 0;
}

.site-footer-elite__iso-text {
  font-size: 0.75rem;
  color: var(--fe-muted);
  line-height: 1.3;
}

.site-footer-elite__copy {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--fe-muted);
}

.site-footer-elite__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-footer-elite__lang:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

.site-footer-elite__lang-icon,
.site-footer-elite__lang-chev {
  width: 1rem;
  height: 1rem;
  color: #6b7280;
  stroke: #6b7280;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Rocket CTA */
.rocket-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}
.rocket-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgb(var(--signal-rgb) / 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}
.rocket-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  animation: rocketFloat 4s ease-in-out infinite;
}
@keyframes rocketFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Four growth layers (platform cards) */
.section-band--dark .growth-layer-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 48px rgba(0, 0, 0, 0.32);
}
.section-band--dark .growth-layer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.section-band--dark .growth-layer-card:hover {
  border-color: rgb(var(--signal-rgb) / 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 20px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgb(var(--signal-rgb) / 0.12);
}

/* Platform light section — growth stack on white */
.platform-section--light {
  background: var(--surface-cool);
}

.section-band--light .growth-layer-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(3, 3, 3, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 28px rgba(3, 3, 3, 0.06);
}

.section-band--light .growth-layer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(3, 3, 3, 0.06) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.section-band--light .growth-layer-card:hover {
  border-color: rgb(var(--signal-rgb) / 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 36px rgba(3, 3, 3, 0.08),
    0 0 0 1px rgb(var(--signal-rgb) / 0.1);
}

.section-band--light .growth-layer-title,
.section-band--light .platform-layer__hero-title {
  color: var(--ink-900);
}

.section-band--light .growth-layer-count {
  color: var(--ink-700);
  background: rgba(3, 3, 3, 0.05);
  border-color: rgba(3, 3, 3, 0.1);
}

.section-band--light .growth-layer-catalogue-cta {
  color: var(--signal-700);
}

.section-band--light .growth-layer-catalogue-cta:hover {
  color: var(--signal-800);
}

.section-band--light .platform-layer__hero-media {
  border-color: rgba(3, 3, 3, 0.08);
  box-shadow: 0 4px 24px rgba(3, 3, 3, 0.08);
}

.section-band--light .platform-layer--communication .platform-layer__hero-placeholder {
  background: linear-gradient(135deg, #e8eef5 0%, #dbeafe 50%, #fed7aa 100%);
}

.section-band--light .platform-layer--digital-marketing .platform-layer__hero-placeholder {
  background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 55%, #ffedd5 100%);
}

.section-band--light .platform-layer--development .platform-layer__hero-placeholder {
  background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 55%, #ffedd5 100%);
}

.section-band--light .platform-layer--btl .platform-layer__hero-placeholder {
  background: linear-gradient(90deg, #f5f5f4 0%, #e7e5e4 45%, #fde68a 100%);
}

#platform-light .platform-layer__rail::before {
  display: none;
}

.growth-layer-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .growth-layer-card__head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }
}

.growth-layer-count {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.growth-layer-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 480px) {
  .growth-layer-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

.growth-layer-product__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0.4375rem 0.5rem;
  border-radius: 0.625rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
  transition:
    background 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium),
    color 0.25s var(--ease-premium),
    transform 0.25s var(--ease-premium);
}
.growth-layer-product__link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateX(2px);
}
.growth-layer-product__link:focus-visible {
  outline: 2px solid rgb(var(--signal-rgb) / 0.55);
  outline-offset: 2px;
}

.growth-layer-product__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  flex-shrink: 0;
  border-radius: 0.4375rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--signal-400);
  transition: background 0.25s var(--ease-premium), color 0.25s var(--ease-premium);
}
.growth-layer-product__link:hover .growth-layer-product__icon {
  background: rgb(var(--signal-rgb) / 0.18);
  color: #fff;
}
.growth-layer-product__icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.growth-layer-product__label {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 500;
}
@media (min-width: 768px) {
  .growth-layer-product__label {
    font-size: 0.875rem;
  }
}

.growth-layer-product__badge,
.growth-layer-product__usp {
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.growth-layer-product__badge {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.growth-layer-product__usp {
  color: var(--signal-300);
  background: rgb(var(--signal-rgb) / 0.15);
  border: 1px solid rgb(var(--signal-rgb) / 0.28);
}

.growth-layer-product--highlight .growth-layer-product__link {
  border-color: rgb(var(--signal-rgb) / 0.22);
  background: rgb(var(--signal-rgb) / 0.08);
}

.growth-layer-catalogue-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--signal-400);
  text-decoration: none;
  transition: color 0.2s var(--ease-premium), gap 0.25s var(--ease-premium);
}
.growth-layer-catalogue-cta:hover {
  color: #fff;
  gap: 0.5rem;
}
.growth-layer-catalogue-cta svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Platform layer tiles — premium squircle wells */
#platform-light .channel-tile--circle .channel-tile__surface,
#platform .channel-tile--circle .channel-tile__surface {
  width: clamp(5.5rem, 11vw, 8rem);
  height: clamp(5.5rem, 11vw, 8rem);
  min-height: 0;
  padding: clamp(0.35rem, 5%, 0.5rem);
  border-radius: 1.125rem;
  background: rgb(255 255 255 / 0.96);
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 6px 18px rgb(0 0 0 / 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#platform-light .channel-tile--circle .channel-tile__icon,
#platform .channel-tile--circle .channel-tile__icon {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

#platform-light .channel-tile--circle .channel-tile__icon svg,
#platform .channel-tile--circle .channel-tile__icon svg {
  width: 52%;
  height: 52%;
}

#platform-light .channel-tile--circle .channel-tile__icon--brand .channel-tile__brand,
#platform .channel-tile--circle .channel-tile__icon--brand .channel-tile__brand,
#platform-light .channel-tile--circle .channel-tile__icon--channel .channel-tile__brand,
#platform .channel-tile--circle .channel-tile__icon--channel .channel-tile__brand,
#platform-light .channel-tile--circle .channel-tile__icon--flat .channel-tile__brand,
#platform .channel-tile--circle .channel-tile__icon--flat .channel-tile__brand {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.channel-tile__icon--brand .channel-tile__brand,
.channel-tile__icon--channel .channel-tile__brand {
  object-fit: contain;
}

#platform-light .channel-tile--circle .channel-tile__meta,
#platform .channel-tile--circle .channel-tile__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  min-width: 0;
}

#platform-light .channel-tile--circle .channel-tile__label,
#platform .channel-tile--circle .channel-tile__label {
  font-size: 0.8125rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  text-align: center;
  width: 100%;
}

#platform-light .channel-tile--circle .channel-tile__api,
#platform .channel-tile--circle .channel-tile__api {
  font-size: 0.5625rem;
  padding: 0.1rem 0.35rem;
}

#platform-light .channel-tile--circle .channel-tile__usp,
#platform .channel-tile--circle .channel-tile__usp {
  font-size: 0.5rem;
}

@media (min-width: 1024px) {
  #platform-light .channel-tile--circle .channel-tile__surface,
  #platform .channel-tile--circle .channel-tile__surface {
    width: clamp(5.75rem, 10vh, 7.75rem);
    height: clamp(5.75rem, 10vh, 7.75rem);
  }

  #platform-light .channel-tile--circle .channel-tile__label,
  #platform .channel-tile--circle .channel-tile__label {
    font-size: clamp(0.75rem, 1.25vh, 0.875rem);
  }
}

/* Channel button tiles (platform dark + suite light) */
.channel-tile--link {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.suite-channel-btn {
  display: block;
  flex: 0 0 auto;
  width: 5.75rem;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

@media (min-width: 640px) {
  .suite-channel-btn {
    width: 6.5rem;
  }
}

.channel-tile__surface {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: 100%;
  min-height: 6.5rem;
  padding: 0.65rem 0.45rem 0.55rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium);
}

.channel-tile--light .channel-tile__surface {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset, 0 4px 12px rgba(15, 23, 42, 0.06);
}

.channel-tile--dark .channel-tile__surface {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.channel-tile--highlight .channel-tile__surface {
  box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.45);
}

.channel-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
}

.channel-tile__surface[data-channel-type="atl"] .channel-tile__icon {
  background: linear-gradient(160deg, #e31e24 0%, #8f1519 100%);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.channel-tile__surface[data-channel-type="btl"] .channel-tile__icon {
  background: var(--grad-signal);
  box-shadow: 0 4px 12px rgb(var(--signal-rgb) / 0.22);
}

.channel-tile__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
  color: #fff;
}

.channel-tile__label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  min-height: 2.5em;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 640px) {
  .channel-tile__label {
    font-size: 0.8125rem;
  }
}

.channel-tile--light .channel-tile__label {
  color: var(--ink-900);
}

.channel-tile--dark .channel-tile__label {
  color: rgba(255, 255, 255, 0.92);
}

.channel-tile__api {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  line-height: 1;
}

.channel-tile--light .channel-tile__api {
  color: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
}

.channel-tile--dark .channel-tile__api {
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.channel-tile__usp {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  background: rgba(234, 179, 8, 0.22);
  color: #fde68a;
  line-height: 1;
}

.channel-tile--link:hover .channel-tile__surface,
.channel-tile--link:focus-visible .channel-tile__surface,
.suite-channel-btn:hover .channel-tile__surface,
.suite-channel-btn:focus-visible .channel-tile__surface {
  transform: translateY(-2px);
}

.channel-tile--light.channel-tile--link:hover .channel-tile__surface,
.channel-tile--light.channel-tile--link:focus-visible .channel-tile__surface,
.suite-channel-btn:hover .channel-tile__surface,
.suite-channel-btn:focus-visible .channel-tile__surface {
  border-color: rgb(var(--signal-rgb) / 0.2);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
}

.channel-tile--dark.channel-tile--link:hover .channel-tile__surface,
.channel-tile--dark.channel-tile--link:focus-visible .channel-tile__surface {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(var(--signal-rgb) / 0.35);
}

.channel-tile--link:active .channel-tile__surface,
.suite-channel-btn:active .channel-tile__surface {
  transform: translateY(0) scale(0.98);
}

.channel-tile--link:focus-visible,
.suite-channel-btn:focus-visible {
  outline: none;
}

.channel-tile--link:focus-visible .channel-tile__surface,
.suite-channel-btn:focus-visible .channel-tile__surface {
  outline: 2px solid var(--signal-600);
  outline-offset: 2px;
}

.suite-channel-btn:hover,
.suite-channel-btn:focus-within {
  z-index: 10;
}

/* Social proof (light trust section) */
.social-proof-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--surface-200);
}
@media (min-width: 640px) {
  .social-proof-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .social-proof-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.social-proof-logo-grid > * {
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.social-proof-stat-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3rem;
  pointer-events: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .glass-card,
  .glass-card:hover,
  .card-light,
  .card-light:hover,
  .btn-primary:hover,
  .btn-primary-solid:hover,
  .btn-outline-blue:hover,
  .suite-filter-btn:hover,
  .suite-filter-btn--active,
  .channel-tile--link:hover .channel-tile__surface,
  .suite-channel-btn:hover .channel-tile__surface,
  .suite-orbit__nav:hover:not(:disabled),
  .accordion-header,
  .accordion-header:hover {
    transition: none;
    transform: none;
  }
}

/* Utility: hide hero badges on small screens */
@media (max-width: 639px) {
  .hero-badges {
    display: none;
  }
}

/* Tablet: hide phone mockup per spec */
@media (min-width: 640px) and (max-width: 1023px) {
  .phone-mockup-col {
    display: none;
  }
}

/* Checkmark list */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgb(var(--signal-rgb) / 0.1);
  border: 1px solid var(--signal-600);
  color: var(--signal-800);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Business outcomes (#use-cases) */
.business-outcomes {
  background: linear-gradient(180deg, var(--surface-100) 0%, var(--surface-50) 100%);
  color: var(--ink-900);
}

.business-outcomes-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.business-outcomes-bg__dots {
  position: absolute;
  top: 2.5rem;
  left: 1.5rem;
  width: min(180px, 40vw);
  height: min(120px, 28vw);
  opacity: 0.4;
  background-image: radial-gradient(circle, rgb(var(--signal-rgb) / 0.14) 1px, transparent 1px);
  background-size: 10px 10px;
}

.business-outcomes-bg__lines {
  position: absolute;
  top: 2rem;
  right: 0;
  width: min(220px, 45vw);
  height: min(160px, 35vw);
  opacity: 0.18;
  background: repeating-linear-gradient(
    -35deg,
    transparent,
    transparent 8px,
    rgb(var(--signal-rgb) / 0.14) 8px,
    rgb(var(--signal-rgb) / 0.14) 9px
  );
}

.business-outcomes-bg__ring {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  width: min(200px, 42vw);
  height: min(200px, 42vw);
  border-radius: 50%;
  opacity: 0.5;
  background: radial-gradient(
    circle at 45% 40%,
    rgb(var(--signal-rgb) / 0.18) 0%,
    rgb(var(--ember-rgb) / 0.06) 42%,
    transparent 58%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), inset 0 0 40px rgb(var(--signal-rgb) / 0.1);
  filter: blur(0.5px);
}

.business-outcomes-subtitle {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.business-outcomes-icon-well {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: var(--grad-signal);
  border: 1px solid rgb(var(--signal-rgb) / 0.2);
  box-shadow: 0 6px 18px rgb(var(--signal-rgb) / 0.28), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.business-outcomes-icon-well svg {
  stroke: #fff;
  color: #fff;
}

.business-outcomes-icon-stack .business-outcomes-icon--stack-main {
  position: relative;
  z-index: 1;
}

.business-outcomes-icon-stack .business-outcomes-icon--stack-badge {
  position: absolute;
  bottom: -0.125rem;
  right: -0.125rem;
  z-index: 2;
  padding: 0.2rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgb(var(--signal-rgb) / 0.2);
  box-shadow: 0 2px 8px rgb(var(--signal-rgb) / 0.18);
  color: var(--signal-800);
  stroke: var(--signal-800);
}

.business-outcomes-icon-stack .business-outcomes-icon--stack-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (max-width: 639px) {
  .business-outcomes-bg__dots {
    opacity: 0.25;
  }
  .business-outcomes-bg__ring {
    opacity: 0.3;
  }
}

/* Product suite (#suite): Communication Suite — link-out catalogue */
.suite-section {
  color: var(--ink-900);
  position: relative;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.55) 0%, rgba(255, 255, 255, 0) min(48%, 28rem));
}

.suite-usp-strip {
  text-align: left;
}

.suite-usp-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  padding: 1.125rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgb(var(--signal-rgb) / 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 8px 26px rgb(var(--signal-rgb) / 0.07);
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium),
    transform 0.25s var(--ease-premium);
}

.suite-usp-card:hover {
  border-color: rgb(var(--signal-rgb) / 0.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset, 0 12px 32px rgb(var(--signal-rgb) / 0.11);
  transform: translateY(-2px);
}

.suite-usp-card:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 3px;
}

.suite-usp-card--accent {
  border-color: rgb(var(--ember-rgb) / 0.14);
  background: linear-gradient(145deg, rgb(var(--signal-rgb) / 0.04), rgb(var(--ember-rgb) / 0.06));
}

.suite-usp-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--grad-signal);
  color: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.06), 0 4px 14px rgb(var(--signal-rgb) / 0.1);
}

.suite-usp-card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: #fff;
  color: #fff;
}

.suite-usp-card--accent .suite-usp-card-icon {
  background: linear-gradient(145deg, #b3181d, #e31e24);
}

.suite-usp-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.suite-usp-card-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--signal-rgb) / 0.45);
}

.suite-usp-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink-900);
  line-height: 1.3;
}

.suite-usp-card-desc {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ink-600, #5c6578);
}

.suite-usp-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  flex-shrink: 0;
  align-self: center;
  border: 1px solid rgb(var(--signal-rgb) / 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--signal-800);
}

.suite-usp-card-cta svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
}

/* Channel catalogue shell: ATL/BTL filters + grids (Infobip-style) */
.suite-catalogue-shell {
  overflow: hidden;
  position: relative;
}

.suite-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
  margin-inline: -0.25rem;
  padding-inline: 0.25rem;
  mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
}

@media (min-width: 640px) {
  .suite-filter-bar {
    mask-image: none;
    -webkit-mask-image: none;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}

.suite-filter-bar .suite-filter-btn {
  flex-shrink: 0;
  scroll-snap-align: center;
}

.suite-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgb(var(--signal-rgb) / 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 4px 14px rgb(var(--signal-rgb) / 0.05);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s var(--ease-premium), box-shadow 0.2s var(--ease-premium),
    transform 0.2s var(--ease-premium), color 0.2s var(--ease-premium),
    background 0.2s var(--ease-premium);
}

.suite-filter-btn:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 3px;
}

.suite-filter-btn:hover {
  border-color: rgb(var(--signal-rgb) / 0.2);
  color: var(--signal-800);
  transform: translateY(-1px);
}

.suite-filter-btn--active {
  background: var(--grad-signal);
  border-color: var(--signal-800);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 8px 24px rgb(var(--signal-rgb) / 0.28);
}

.suite-filter-btn--active .suite-filter-count,
.suite-filter-btn--active .suite-filter-tag {
  color: rgba(255, 255, 255, 0.88);
}

.suite-filter-btn-label {
  font-weight: 700;
}

.suite-filter-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(var(--signal-rgb) / 0.45);
  letter-spacing: 0.03em;
}

.suite-filter-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 9999px;
  background: rgb(var(--signal-rgb) / 0.08);
  color: rgb(var(--signal-rgb) / 0.55);
}

.suite-filter-btn--active .suite-filter-count {
  background: rgba(255, 255, 255, 0.18);
}

.suite-catalogue {
  border-top: 1px solid rgb(var(--signal-rgb) / 0.06);
  padding-top: 1.25rem;
}

.suite-catalogue .suite-group + .suite-group {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgb(var(--signal-rgb) / 0.1);
}

.suite-group-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.suite-group-type-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.suite-group-type-pill--atl {
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
  border: 1px solid rgba(249, 115, 22, 0.28);
}

.suite-group-type-pill--btl {
  background: var(--grad-signal);
  color: #fff;
  border: 1px solid rgb(var(--signal-rgb) / 0.18);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06), 0 4px 12px rgb(var(--signal-rgb) / 0.1);
}

.suite-group-title {
  font-weight: 700;
}

.suite-group-hint {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-600, #5c6578);
}

/* ATL sub-bands inside #suite (Communication / Digital marketing / Development) */
.suite-group[data-suite-group="atl"] > .suite-atl-subgroup:not([hidden]):first-of-type {
  margin-top: 0.35rem;
}

.suite-atl-subgroup:not([hidden]) + .suite-atl-subgroup:not([hidden]) {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(var(--signal-rgb) / 0.07);
}

.suite-group[data-suite-group="atl"] > .suite-group-label[hidden] + .suite-atl-subgroup:not([hidden]) {
  margin-top: 0;
}

.suite-subgroup-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
  color: var(--ink-700, #334155);
}

.suite-subgroup-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.2rem 0.45rem;
  border-radius: 9999px;
  background: rgb(var(--signal-rgb) / 0.08);
  color: rgb(var(--signal-rgb) / 0.55);
  flex-shrink: 0;
}

.suite-subgroup-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink-900, #0a0a0a);
}

.suite-subgroup-hint {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--ink-600, #5c6578);
}

.suite-view-all-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--signal-800);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.suite-view-all-btn:hover {
  color: var(--signal-500, #ef4444);
}

.suite-view-all-btn:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.suite-detail-panel {
  scroll-margin-top: 5rem;
}

.suite-detail-panel[hidden] {
  display: none !important;
}

.suite-detail-panel:not([hidden]) {
  animation: suite-detail-reveal 0.26s ease-out;
}

@keyframes suite-detail-reveal {
  from {
    opacity: 0.88;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .suite-detail-panel:not([hidden]) {
    animation: none;
  }
}

.suite-detail-item {
  display: block;
}

.suite-detail-item[hidden] {
  display: none;
}

.suite-detail-type-row {
  margin: 0 0 0.35rem;
}

.suite-detail-type-pill {
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
}

.suite-detail-type-pill--atl {
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.suite-detail-type-pill--btl {
  background: rgb(var(--ember-rgb) / 0.1);
  color: var(--signal-800);
  border: 1px solid rgb(var(--ember-rgb) / 0.2);
}

/* Orbit product carousels (#suite) */
.suite-orbit {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.suite-orbit__viewport {
  position: relative;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.suite-orbit__track {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.75rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.35rem 0.75rem 1.25rem;
  outline: none;
}

.suite-orbit__track::-webkit-scrollbar {
  display: none;
}

.suite-orbit[data-suite-orbit-count="3"] .suite-orbit__track,
.suite-orbit[data-suite-orbit-count="2"] .suite-orbit__track,
.suite-orbit[data-suite-orbit-count="1"] .suite-orbit__track {
  justify-content: center;
}

.suite-orbit__nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgb(var(--signal-rgb) / 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--signal-800);
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset, 0 4px 12px rgb(var(--signal-rgb) / 0.08);
  transition: border-color 0.2s var(--ease-premium), box-shadow 0.2s var(--ease-premium),
    transform 0.2s var(--ease-premium), opacity 0.2s var(--ease-premium);
}

.suite-orbit__nav:hover:not(:disabled) {
  border-color: rgb(var(--signal-rgb) / 0.22);
  transform: translateY(-1px);
}

.suite-orbit__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.suite-orbit__nav:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 2px;
}

.suite-orbit__nav svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .channel-tile__surface {
    transition: none;
  }

  .channel-tile--link:hover .channel-tile__surface,
  .channel-tile--link:focus-visible .channel-tile__surface,
  .suite-channel-btn:hover .channel-tile__surface,
  .suite-channel-btn:focus-visible .channel-tile__surface,
  .channel-tile--link:active .channel-tile__surface,
  .suite-channel-btn:active .channel-tile__surface {
    transform: none;
  }
}

/* Standalone product.php layout */
.product-page-main {
  min-height: 70vh;
  background: #fff;
}

.product-page-main .max-w-7xl,
.product-page-main .product-hero__inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .product-page-main .max-w-7xl,
  .product-page-main .product-hero__inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .product-page-main .max-w-7xl,
  .product-page-main .product-hero__inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.product-page-breadcrumb a {
  text-decoration: none;
}

.product-page-breadcrumb a:hover {
  text-decoration: underline;
}

article.product-page {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 28px 64px -40px rgba(15, 23, 42, 0.2);
}

article.product-page .suite-product-head {
  border-radius: 0;
}

/* Expanded product panel (detail area) */
.suite-product-panel {
  padding: 0;
  overflow: hidden;
}

.suite-product-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgb(var(--signal-rgb) / 0.06);
  background: linear-gradient(180deg, rgb(var(--signal-rgb) / 0.02), transparent);
}

@media (min-width: 768px) {
  .suite-product-head {
    padding: 1.75rem 2rem 1.5rem;
  }
}

.suite-product-head-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 320px;
}

.suite-product-icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: var(--grad-signal);
  color: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.06), 0 4px 14px rgb(var(--signal-rgb) / 0.1), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}
.suite-product-icon-tile svg {
  width: 1.5rem;
  height: 1.5rem;
}

.suite-product-head-text {
  min-width: 0;
}

.suite-product-eyebrow {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-800);
}

.suite-product-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

@media (min-width: 768px) {
  .suite-product-title {
    font-size: 1.6rem;
  }
}

.suite-product-tagline {
  margin: 0.55rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 38rem;
}

.suite-product-subtypes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}

.suite-product-chip {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal-800);
  background: rgb(var(--signal-rgb) / 0.06);
  border: 1px solid rgb(var(--signal-rgb) / 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
}

.suite-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

@media (min-width: 768px) {
  .suite-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .suite-product-grid {
    padding: 1.75rem 2rem 0;
  }
}

.suite-product-card {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .suite-product-card {
    padding: 1.5rem;
  }
}

.suite-product-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgb(var(--signal-rgb) / 0.12);
}

.suite-product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  background: rgb(var(--signal-rgb) / 0.08);
  color: var(--signal-800);
  flex-shrink: 0;
}
.suite-product-card-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.suite-product-card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.suite-product-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.suite-product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.suite-product-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.4rem;
  background: rgb(var(--signal-rgb) / 0.08);
  color: var(--signal-800);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.suite-product-feature-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}
.suite-product-feature-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-700);
}

.suite-product-usecase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.suite-product-usecase-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgb(var(--signal-rgb) / 0.1);
  padding: 0.42rem 0.75rem;
  border-radius: 9999px;
  transition: background 0.2s var(--ease-premium), border-color 0.2s var(--ease-premium),
    color 0.2s var(--ease-premium);
}
.suite-product-usecase-pill:hover {
  background: var(--signal-600);
  border-color: var(--signal-800);
  color: #fff;
}

.suite-product-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.suite-product-benefit-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgb(var(--signal-rgb) / 0.04), rgb(var(--ember-rgb) / 0.04));
  border: 1px solid rgb(var(--signal-rgb) / 0.06);
}
.suite-product-benefit-value {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--signal-800);
  line-height: 1.1;
}
.suite-product-benefit-label {
  font-size: 0.78rem;
  color: var(--ink-500);
  line-height: 1.4;
}

.suite-product-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .suite-product-footer {
    padding: 1.75rem 2rem;
  }
}

.suite-product-secondary {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--signal-800);
  text-decoration: none;
  transition: color 0.2s var(--ease-premium);
}
.suite-product-secondary:hover {
  color: var(--signal-700);
  text-decoration: underline;
}
.suite-product-secondary:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Products overview — 12-channel grid (scoped; does not affect suite/platform tiles) */
.products-overview-section--clean {
  position: relative;
  background: #e8ecf4;
  --po-card: 168px;
  --po-gap-x: 12px;
  --po-gap-y: 12px;
  --po-radius: 20px;
  --po-pad-y: 12px;
  --po-pad-x: 12px;
  --po-inner-gap: 6px;
  --po-icon: 92px;
  --po-label: 11px;
  --po-label-lh: 1.35;
  --po-badge: 8px;
  --po-badge-pad-y: 3px;
  --po-badge-pad-x: 8px;
  --po-surface-bg: #ffffff;
  --po-surface-bg-hover: #f8f9fa;
  --po-surface-border: rgba(60, 64, 67, 0.12);
  --po-surface-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.06);
  --po-surface-shadow-hover: 0 2px 4px rgba(60, 64, 67, 0.1), 0 8px 20px rgba(60, 64, 67, 0.12);
}

@media (min-width: 640px) {
  .products-overview-section--clean {
    --po-card: 182px;
    --po-radius: 22px;
    --po-icon: 108px;
    --po-pad-y: 14px;
    --po-pad-x: 14px;
  }
}

@media (min-width: 1024px) {
  .products-overview-section--clean {
    --po-card: 198px;
    --po-gap-x: 14px;
    --po-gap-y: 14px;
    --po-radius: 24px;
    --po-icon: 118px;
    --po-label: 13px;
    --po-pad-y: 16px;
    --po-pad-x: 16px;
  }
}

.products-overview-intro .eyebrow {
  margin-inline: auto;
  margin-bottom: 0;
}

.products-overview-intro__lead {
  color: var(--ink-600);
}

.products-overview-categories {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .products-overview-categories {
    gap: 5rem;
    margin-top: 56px;
  }
}

.products-overview-category {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  scroll-margin-top: 5rem;
}

.products-overview-category + .products-overview-category {
  padding-top: 4rem;
  border-top: 1px solid rgb(var(--ink-rgb) / 0.08);
}

@media (min-width: 1024px) {
  .products-overview-category + .products-overview-category {
    padding-top: 5rem;
  }
}

.products-overview-category__title {
  margin: 0;
}

.products-overview-category__hint {
  margin: 0;
  color: var(--ink-600);
}

.products-overview-section--clean .products-overview-stage {
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .products-overview-section--clean .products-overview-stage {
    margin-top: 56px;
  }
}

.products-overview-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--po-gap-y);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.products-overview-grid__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: var(--po-gap-x);
  align-content: flex-start;
  row-gap: var(--po-gap-y);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .products-overview-grid__row {
    max-width: calc(3 * var(--po-card) + 2 * var(--po-gap-x));
  }
}

@media (min-width: 1024px) {
  .products-overview-grid__row {
    max-width: calc(
      var(--po-row-items, 5) * var(--po-card)
      + (var(--po-row-items, 5) - 1) * var(--po-gap-x)
    );
  }
}

.products-overview-grid__cell {
  position: relative;
  flex: 0 0 var(--po-card);
  width: var(--po-card);
  max-width: var(--po-card);
  min-width: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .products-overview-section.reveal.visible .products-overview-grid__cell {
    animation: products-overview-cell-in 0.55s var(--ease-premium) both;
    animation-delay: calc(0.01s + (var(--po-cell-index, 1) - 1) * 0.03s);
  }
}

@keyframes products-overview-cell-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-overview-section--clean .channel-tile--link {
  display: block;
  width: 100%;
  max-width: var(--po-card);
  height: var(--po-card);
  margin-inline: auto;
  text-decoration: none;
}

@media (min-width: 640px) {
  .products-overview-section--clean .channel-tile--link {
    width: var(--po-card);
  }
}

.channel-tile--premium .channel-tile__link-hint {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  background: rgba(60, 64, 67, 0.06);
  border: 1px solid rgba(60, 64, 67, 0.08);
  color: rgba(60, 64, 67, 0.52);
  pointer-events: none;
  z-index: 2;
  transition:
    background 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    color 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.channel-tile--premium .channel-tile__link-hint-icon {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
}

.products-overview-section--clean .channel-tile--link:hover .channel-tile__link-hint,
.products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__link-hint {
  background: rgb(var(--signal-rgb) / 0.1);
  border-color: rgb(var(--signal-rgb) / 0.16);
  color: var(--signal-600);
  transform: translate(2px, -2px);
}

.products-overview-section--clean .channel-tile__surface,
.channel-tile--premium .channel-tile__surface {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--po-inner-gap);
  box-sizing: border-box;
  width: var(--po-card);
  height: var(--po-card);
  aspect-ratio: 1 / 1;
  padding: var(--po-pad-y) var(--po-pad-x);
  border-radius: var(--po-radius);
  background: var(--po-surface-bg);
  border: 1px solid var(--po-surface-border);
  box-shadow: var(--po-surface-shadow);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateY(0) scale(1);
  transition:
    background 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

/* Product grid — flat icons only (no inner squircle) */
.products-overview-section--clean .channel-tile__icon,
.channel-tile--premium .channel-tile__icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: var(--po-icon);
  height: var(--po-icon);
  min-width: var(--po-icon);
  min-height: var(--po-icon);
  max-width: var(--po-icon);
  max-height: var(--po-icon);
  aspect-ratio: 1;
  padding: 0;
  margin-top: 0;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--signal-600);
  perspective: 700px;
  transform-style: preserve-3d;
  transform: translateZ(0) scale(1);
  transition: transform 0.32s var(--ease-premium), filter 0.32s var(--ease-premium);
  will-change: transform;
}

.products-overview-section--clean .channel-tile__icon .channel-tile__brand,
.channel-tile--premium .channel-tile__icon .channel-tile__brand {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center bottom;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
}

.products-overview-section--clean .channel-tile__icon svg,
.channel-tile--premium .channel-tile__icon svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
  stroke: currentColor;
  color: inherit;
  stroke-width: 1.45;
  transform-origin: center bottom;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.14));
}

.products-overview-section--clean .channel-tile__icon--brand .channel-tile__brand,
.channel-tile--premium .channel-tile__icon--brand .channel-tile__brand {
  object-fit: contain;
}

.products-overview-section--clean .channel-tile__icon-stack,
.channel-tile--premium .channel-tile__icon-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.products-overview-section--clean .channel-tile__brand--stack,
.channel-tile--premium .channel-tile__brand--stack {
  width: 28%;
  height: 100%;
  max-width: 18px;
  max-height: 100%;
  flex: 1 1 0;
  min-width: 0;
  object-fit: contain;
}

.products-overview-section--clean .channel-tile__label,
.channel-tile--premium .channel-tile__label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  flex: 0 1 auto;
  min-height: 0;
  max-height: calc(2 * var(--po-label-lh) * 1em);
  margin: 0;
  padding: 0 2px;
  font-size: var(--po-label);
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: 0;
  text-align: center;
  line-height: var(--po-label-lh);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  overflow: hidden;
}

.products-overview-section--clean .channel-tile__api,
.channel-tile--premium .channel-tile__api {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-top: 0;
  font-family: inherit;
  font-size: var(--po-badge);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-600);
  border: none;
  background: rgba(60, 64, 67, 0.08);
  padding: var(--po-badge-pad-y) var(--po-badge-pad-x);
  border-radius: 9999px;
}

.products-overview-section--clean .channel-tile__tags,
.channel-tile--premium .channel-tile__tags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  max-width: 100%;
}

.products-overview-section--clean .channel-tile__category,
.channel-tile--premium .channel-tile__category {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-top: 0;
  font-family: inherit;
  font-size: var(--po-badge);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-600);
  border: none;
  background: rgba(60, 64, 67, 0.08);
  padding: var(--po-badge-pad-y) var(--po-badge-pad-x);
  border-radius: 9999px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .products-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--po-gap-x);
    row-gap: var(--po-gap-y);
  }

  .products-overview-grid__row {
    display: contents;
  }

  .products-overview-section--clean .channel-tile--link {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .products-overview-section--clean .channel-tile__surface,
  .channel-tile--premium .channel-tile__surface {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .products-overview-grid__cell {
    width: 100%;
    max-width: none;
  }
}

.products-overview-section--clean .channel-tile--link:hover .channel-tile__surface,
.products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__surface {
  background: var(--po-surface-bg-hover);
  border-color: var(--po-surface-border);
  box-shadow: var(--po-surface-shadow-hover);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}

.products-overview-section--clean .channel-tile--link:hover,
.products-overview-section--clean .channel-tile--link:focus-visible {
  z-index: 1;
}

.products-overview-section--clean .channel-tile--link:hover .channel-tile__icon,
.products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__icon {
  transform: translateZ(18px) scale(1.12);
}

.products-overview-section--clean .channel-tile--link:hover .channel-tile__icon .channel-tile__brand,
.products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__icon .channel-tile__brand {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.products-overview-section--clean .channel-tile--link:hover .channel-tile__icon svg,
.products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__icon svg {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.14));
}

.products-overview-section--clean .channel-tile--link:active .channel-tile__surface {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.12s;
}

.products-overview-section--clean .channel-tile--link:active .channel-tile__icon {
  transform: translateZ(10px) scale(1.06);
  transition-duration: 0.12s;
}

.products-overview-section--clean .channel-tile--link:focus-visible {
  outline: none;
}

.products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__surface {
  outline: 2px solid var(--signal-600);
  outline-offset: 2px;
}

.products-overview-foot__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 0.22s var(--ease-premium),
    gap 0.28s var(--ease-premium);
}

.products-overview-foot__link.is-expanded .products-overview-foot__arrow {
  transform: rotate(90deg);
}

.products-overview-foot__arrow {
  font-size: 1.0625rem;
  line-height: 1;
  transition: transform 0.28s var(--ease-premium);
}

.products-overview-foot__link:hover {
  color: var(--signal-800);
  text-decoration: none;
  gap: 0.52rem;
}

.products-overview-foot__link:hover .products-overview-foot__arrow {
  transform: translateX(4px);
}

.products-overview-foot__link:focus-visible {
  outline: 2px solid var(--signal-600);
  outline-offset: 4px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .products-overview-section--clean .channel-tile__surface {
    transition: none;
  }
  .products-overview-section--clean .channel-tile__icon {
    transition: none;
    will-change: auto;
  }
  .products-overview-section--clean .channel-tile--link:hover .channel-tile__surface,
  .products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__surface,
  .products-overview-section--clean .channel-tile--link:active .channel-tile__surface {
    transform: none;
  }
  .products-overview-section--clean .channel-tile--link:hover .channel-tile__icon,
  .products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__icon,
  .products-overview-section--clean .channel-tile--link:active .channel-tile__icon {
    transform: none;
  }
  .products-overview-section--clean .channel-tile--link:hover .channel-tile__link-hint,
  .products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__link-hint {
    transform: none;
  }
}

/* ── Product page sections ─────────────────────────────────────────── */

/* Hero */
.product-hero {
  position: relative;
  overflow: hidden;
  text-align: left;
  --hero-media-radius: clamp(1.25rem, 4vw, 2rem);
}
.product-hero.hero-section--light {
  background: #fff;
}
.product-hero.hero-section--light::before {
  display: none;
}
.product-hero .hero-inner,
.product-hero__inner {
  position: relative;
  z-index: 1;
}
.product-hero__grid {
  align-items: center;
}
.product-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero__media {
  margin: 0;
  width: min(100%, 520px);
  border-radius: var(--hero-media-radius);
  overflow: hidden;
}
.product-hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}
.product-hero__wa {
  color: #25d366;
  font-style: normal;
}
.product-hero__eyebrow-icon {
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
  flex-shrink: 0;
}
.product-hero__eyebrow-icon--lucide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.product-hero__eyebrow-icon--lucide svg {
  width: 1.125rem;
  height: 1.125rem;
}
.product-channel-icon {
  object-fit: contain;
}
.product-channel-icon--channel {
  filter: none;
}
.product-hero__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
}
.product-hero__icon-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 520px;
  margin-inline: auto;
  will-change: transform;
}
.product-hero__icon-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}
.product-hero__icon-rings::before,
.product-hero__icon-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(227, 30, 36, 0.14);
}
.product-hero__icon-rings::before {
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0) 70%);
  animation: product-hero-icon-ring-float-a 7s ease-in-out infinite alternate;
}
.product-hero__icon-rings::after {
  width: 92%;
  aspect-ratio: 1;
  border-color: rgba(227, 30, 36, 0.1);
  animation: product-hero-icon-ring-float-b 9s ease-in-out infinite alternate;
}
.product-hero__icon-glow {
  position: absolute;
  z-index: 0;
  width: min(68%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 247, 248, 0.72) 38%, rgba(227, 30, 36, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 24px 64px rgba(227, 30, 36, 0.12),
    0 12px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  animation: product-hero-icon-glow-pulse 6.5s ease-in-out infinite alternate;
}
.product-hero__icon-large {
  position: relative;
  z-index: 1;
  width: min(72%, 340px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 44px rgba(15, 23, 42, 0.18));
}
@keyframes product-hero-icon-ring-float-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -10px, 0) scale(1.03);
  }
}
@keyframes product-hero-icon-ring-float-b {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, 8px, 0) scale(1.02);
  }
}
@keyframes product-hero-icon-glow-pulse {
  from {
    transform: scale(0.96);
    opacity: 0.88;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}
.product-hero-mock {
  position: relative;
  min-height: 420px;
  padding: 1.5rem;
}
.product-hero-mock__figure {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 2rem 2rem 0 0;
  background: linear-gradient(145deg, #dce8f5 0%, #b8c9de 55%, #9eb3cc 100%);
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.25);
}
.product-hero-mock__channel-badge {
  position: absolute;
  top: 12%;
  left: 8%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.product-hero-mock__channel-badge img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.product-hero-mock__channel-badge svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-signal-600, #e31e24);
}
.product-hero-mock__tag {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  font: 600 0.75rem "Google Sans Flex", system-ui, sans-serif;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}
.product-hero-mock__tag--vc {
  top: 28%;
  right: 6%;
  background: #dcfce7;
  color: #166534;
}
.product-hero-mock__tag--ai {
  top: 8%;
  right: 22%;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
}
.product-hero-mock__tag--ai svg {
  width: 0.9rem;
  height: 0.9rem;
}
.product-hero-mock__bubble {
  position: absolute;
  z-index: 5;
  max-width: 280px;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.product-hero-mock__bubble--welcome {
  top: 18%;
  left: 0;
}
.product-hero-mock__bubble--prompt {
  top: 48%;
  left: 4%;
  max-width: 240px;
}
.product-hero-mock__bubble--checkout {
  bottom: 8%;
  left: 12%;
  padding: 0;
  overflow: hidden;
}
.product-hero-mock__bubble-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-700);
}
.product-hero-mock__features {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--ink-600);
}
.product-hero-mock__features li {
  padding: 0.15rem 0;
}
.product-hero-mock__wave {
  position: absolute;
  top: 62%;
  right: 18%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: #dcfce7;
  border-radius: 9999px;
}
.product-hero-mock__wave-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
}
.product-hero-mock__wave-play svg {
  width: 0.75rem;
  height: 0.75rem;
}
.product-hero-mock__wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 1.25rem;
}
.product-hero-mock__wave-bars::before,
.product-hero-mock__wave-bars::after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: #25d366;
  border-radius: 2px;
  animation: product-hero-wave 1s ease-in-out infinite alternate;
}
.product-hero-mock__wave-bars::after {
  animation-delay: 0.2s;
  height: 70%;
}
@keyframes product-hero-wave {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}
.product-hero-mock__checkout-q {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-800);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.product-hero-mock__checkout-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-hero-mock__checkout-btns span {
  padding: 0.65rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--signal-700);
}
.product-hero-mock__checkout-btns span + span {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

@media (min-width: 1024px) {
  .product-hero__inner {
    padding-top: 8.5rem !important;
    /* padding-bottom: 2.5rem !important; */
  }
}

/* USP */
.product-usp-accordion-item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.product-usp-accordion-item:first-child {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.product-usp-accordion-header {
  padding: 1.35rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.product-usp-accordion-header:hover,
.product-usp-accordion-header.open {
  background: transparent;
  color: inherit;
  box-shadow: none;
  border-color: transparent;
}
.product-usp-accordion-title {
  font: 600 1.0625rem "Google Sans Flex", system-ui, sans-serif;
  color: var(--ink-900);
}
.product-usp-accordion-header:hover .product-usp-accordion-title,
.product-usp-accordion-header.open .product-usp-accordion-title {
  color: var(--ink-900);
}
.product-usp-accordion-header .chevron {
  color: var(--ink-500);
}
.product-usp-accordion-header.open .chevron {
  color: var(--signal-700);
}
.product-usp-accordion-body__inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-500);
}
.product-usp-image {
  margin: 0 auto;
  width: min(100%, 460px);
}
.product-usp-image__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-usp-visual {
  margin: 0 auto;
  width: min(100%, 420px);
}
.product-usp-visual__icon {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Industry results tabs */
.product-industry {
  position: relative;
  overflow: hidden;
}
.product-industry__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(236, 242, 249, 0.5) 0%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  pointer-events: none;
}
.product-industry__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 60 Q30 30 60 60 T120 60' fill='none' stroke='%23c7d2fe' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.product-industry__tabbar-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
  padding: 0.25rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .product-industry__tabbar-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    scroll-snap-type: none;
  }
}
.product-industry__tabbar-scroll::-webkit-scrollbar {
  display: none;
}
.product-industry-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  scroll-snap-align: start;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 6px 16px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}
.product-industry-tab:hover {
  border-color: rgba(227, 30, 36, 0.24);
  transform: translateY(-1px);
}
.product-industry-tab.active {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(249, 115, 22, 0.08));
  color: var(--ink-900);
  border-color: rgba(227, 30, 36, 0.45);
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.12);
}
.product-industry-panel__shell {
  border-radius: 1.25rem;
}
.product-industry-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0 1rem;
  margin-bottom: 0.25rem;
  min-height: 320px;
}
.product-industry-image-card {
  width: min(100%, 300px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}
.product-industry-image-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-industry-phone {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.product-industry-phone .industry-phone-wrap {
  max-width: 220px;
  margin: 0 auto;
}
.product-industry-phone__frame {
  padding: 0;
  border-radius: 0;
}
.product-industry-phone__screen-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.product-industry-phone__topbar {
  padding: 0.35rem 0.45rem;
}
.product-industry-phone__chat {
  padding: 0.35rem;
}
.product-industry-phone__bubble-in {
  padding: 0.35rem;
}
.product-industry-phone__thumb {
  font-size: 0.5rem;
}
.product-industry-phone__thumb svg {
  width: 0.65rem;
  height: 0.65rem;
}
.product-industry-phone__badge {
  display: inline-block;
  margin-bottom: 0.25rem;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  background: #dcfce7;
  color: #166534;
  font: 700 0.45rem "Google Sans Flex", system-ui, sans-serif;
}
.product-industry-phone .industry-phone-card-body--tg {
  font-size: 0.5rem;
  margin: 0.25rem 0 0.35rem;
}
.product-industry-phone .industry-phone-cta--tg {
  font-size: 0.48rem;
  padding: 0.32rem 0.4rem;
}
.product-industry-phone .industry-tg-bubble-text {
  font-size: 0.48rem;
}
.product-industry-phone .industry-phone-brand--tg {
  font-size: 0.54rem;
}
.product-industry-phone .industry-tg-status {
  font-size: 0.44rem;
}
.product-industry-phone .industry-tg-avatar {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0.52rem;
}
.product-industry-phone__quick-replies {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.35rem;
}
.product-industry-phone__qr {
  display: block;
  padding: 0.28rem 0.35rem;
  text-align: center;
  font: 600 0.44rem "Google Sans Flex", system-ui, sans-serif;
  color: #0d9488;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.35rem;
}
.product-industry-card--text-only {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  min-height: 180px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.product-industry-card--text-only .product-industry-card__text {
  flex: 1;
}
.product-industry-card--text-only .product-industry-card__title {
  margin: 0 0 0.5rem;
  font: 700 1rem/1.35 "Google Sans Flex", system-ui, sans-serif;
  color: var(--ink-900);
}
.product-industry-card--text-only .product-industry-card__caption {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.product-industry-card__caption {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-600);
  text-align: center;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .product-industry-card__visual {
    min-height: 360px;
  }
  .product-industry-image-card {
    width: min(100%, 340px);
  }
  .product-industry-phone {
    max-width: 240px;
  }
}

/* FAQ */
.product-faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.product-faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.35rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s var(--ease-premium);
}
.product-faq-header:hover,
.product-faq-header.open {
  background: transparent;
  color: inherit;
  box-shadow: none;
  border-color: transparent;
}
.product-faq-header__q {
  font: 600 1rem / 1.4 "Google Sans Flex", system-ui, sans-serif;
  color: var(--ink-900);
  flex: 1;
}
.product-faq-header__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
}
.product-faq-icon {
  width: 1rem;
  height: 1rem;
  color: #e91e63;
}
.product-faq-icon--minus {
  display: none;
}
.product-faq-header.open .product-faq-icon--plus {
  display: none;
}
.product-faq-header.open .product-faq-icon--minus {
  display: block;
}
.product-faq-body__inner {
  padding: 0 0 1.35rem 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-500);
}
.product-faq__show-more {
  min-width: 10rem;
}
.faq-filter-pill {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}
.faq-filter-pill.is-active {
  background: var(--signal-800);
  color: #fff;
  border-color: var(--signal-800);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 6px 18px rgb(var(--signal-rgb) / 0.2);
}
.faq-filter-pill.is-active:hover {
  background: var(--signal-700);
  border-color: var(--signal-700);
  color: #fff;
}
.section-band--dark .product-faq-header__q {
  color: #fff;
}

.faq-page {
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .faq-page {
    margin-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .faq-page {
    margin-top: 4.5rem;
  }
}

@media (max-width: 1023px) {
  .product-hero__icon-display {
    width: min(100%, 400px);
    min-height: 380px;
    margin-top: 1rem;
  }
  .product-hero__icon-glow {
    width: min(74%, 280px);
  }
  .product-hero__icon-large {
    width: min(68%, 260px);
  }
  .product-hero-mock {
    min-height: 360px;
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero__icon-rings::before,
  .product-hero__icon-rings::after,
  .product-hero__icon-glow {
    animation: none;
  }
  .product-hero-mock__wave-bars::before,
  .product-hero-mock__wave-bars::after {
    animation: none;
  }
}

/* ── dark-index: index page only dark theme ───────────── */
body.dark-index {
  --page-bg:    #000000;
  --ink-900:    #ffffff;
  --ink-700:    rgba(255,255,255,0.85);
  --ink-600:    rgba(255,255,255,0.72);
  --ink-500:    rgba(255,255,255,0.58);
  --ink-400:    rgba(255,255,255,0.42);
  /* Navbar mega-menu (reference) */
  --nav-mega-shell-bg: #1a1a1a;
  --nav-mega-col-bg: #252525;
  --nav-mega-border: #333333;
  --nav-mega-radius: 1.5rem;
  --nav-mega-pill-bg: var(--signal-600);
  /* Hero headline gradients — light stops so text reads on #000 */
  /* --grad-hero-primary: linear-gradient(105deg, #f5f5f4 0%, #d6d3d1 28%, #fca5a5 58%, #e31e24 100%); */
  --grad-hero-primary: linear-gradient(105deg, #fff 0%, #fff 28%, #fca5a5 58%, #e31e24 100%);

  --grad-hero-accent: linear-gradient(100deg, #fff 0%, #e31e24 24%, #e31e24 52%, #b3181d 78%, #e31e24 100%);  
  background:   #000000;
  color:        #ffffff;
}

/* band pseudo-element that paints the full-width strip */
body.dark-index .section-band--light::before { background: #000000 !important; }

/* hardcoded section backgrounds */
body.dark-index .products-overview-section { background: #000000 !important; }
body.dark-index .products-overview-category + .products-overview-category {
  border-top-color: rgba(255, 255, 255, 0.12);
}
body.dark-index .process-flow-section {
  background: #000000 !important;
  --pf-card-bg: #1e1f20;
  --pf-card-bg-hover: #2d2e30;
  --pf-card-border: rgba(255, 255, 255, 0.08);
  --pf-card-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.25);
  --pf-card-shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

body.dark-index .process-flow-step__media:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
body.dark-index .process-flow-section__title,
body.dark-index .process-flow-section__sub,
body.dark-index .process-flow-step__title,
body.dark-index .process-flow-step__body,
body.dark-index .process-flow-footer__item {
  color: #ffffff !important;
}
body.dark-index .process-flow-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}
body.dark-index .process-flow-footer__item:not(:last-child) {
  border-right-color: rgba(255, 255, 255, 0.12);
}
body.dark-index .hero-section              { background: #000000 !important; }

/* Tailwind text utilities that compile to literal hex */
body.dark-index .text-ink-900,
body.dark-index .text-ink-600,
body.dark-index .text-ink-500 { color: #ffffff !important; }

/* bright capsules stay consistent on dark-index */

/* social proof — logo panel and cells */
body.dark-index .social-proof-logos-stage.glass-panel,
body.dark-index .social-proof-logos-stage {
  background: #000000 !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
body.dark-index .social-proof-logos-stage::before {
  opacity: 0.25;
}
body.dark-index .social-proof-logos-stage__ambient {
  background: radial-gradient(ellipse 55% 45% at 18% 0%, rgb(var(--signal-rgb) / 0.12), transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgb(var(--ember-rgb) / 0.08), transparent 58%);
}
body.dark-index .social-proof-logo-cell,
body.dark-index .social-proof-marquee--primary .social-proof-logo-cell,
body.dark-index .social-proof-marquee--elite .social-proof-logo-cell {
  background: transparent !important;
  box-shadow: none;
}
body.dark-index .social-proof-logo-cell img {
  opacity: 0.92;
}
@media (prefers-reduced-motion: reduce) {
  body.dark-index .social-proof-marquee__group {
    background: #000000;
  }
}

/* industry section — dark card surfaces + white contrast text */
body.dark-index .industry-usecases-section {
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 38%, #0d0d0d 72%, #000000 100%) !important;
}
body.dark-index .industry-usecases-section.section-band--light::before {
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 38%, #0d0d0d 72%, #000000 100%) !important;
}
body.dark-index .industry-usecases-section--premium::before {
  background: radial-gradient(
    ellipse 75% 55% at 50% -15%,
    rgba(255, 255, 255, 0.04),
    transparent 72%
  );
}
body.dark-index .industry-unified-card {
  background: linear-gradient(180deg, #0a0a0a 0%, #2a2a2a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}
body.dark-index .industry-unified-card .industry-panel-shell {
  background:
    radial-gradient(ellipse 72% 55% at 92% 8%, rgba(255, 255, 255, 0.05), transparent 68%),
    radial-gradient(ellipse 58% 48% at 4% 92%, rgba(255, 255, 255, 0.03), transparent 62%);
}
body.dark-index .industry-device-shell__glow--a {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
}
body.dark-index .industry-device-shell__glow--b {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
}
body.dark-index .industry-vselector {
  /* background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%); */
  background: linear-gradient(180deg, #0d0d0d 0%, #343434 100%);
  border-right-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset -1px 0 0 rgb(var(--signal-rgb) / 0.06);
}
body.dark-index .industry-vtab {
  color: rgba(255, 255, 255, 0.85);
}
body.dark-index .industry-vtab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}
body.dark-index .industry-tab--pill {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}
body.dark-index .industry-tab--pill:hover {
  color: var(--industry-brand);
  border-color: rgb(var(--signal-rgb) / 0.35);
}
body.dark-index .industry-usecase-chip {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}
body.dark-index .industry-usecase-chip__icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgb(var(--signal-rgb) / 0.12));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
body.dark-index .industry-usecase-chip:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.12);
}
body.dark-index .industry-products-mega__pill {
  color: #fff;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.28) inset,
    0 -1px 0 rgb(0 0 0 / 0.12) inset,
    0 2px 10px rgb(var(--signal-rgb) / 0.48);
}
body.dark-index .industry-nav-product-link {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}
body.dark-index .industry-nav-product-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  transform: scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.12);
}
body.dark-index .industry-nav-product-link .site-nav-mega-link-icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgb(var(--signal-rgb) / 0.12));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
body.dark-index .industry-nav-product-link:hover .site-nav-mega-link-icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgb(var(--signal-rgb) / 0.16));
}
body.dark-index .industry-nav-product-link__badge {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}
body.dark-index .industry-col-title,
body.dark-index .industry-value-body,
body.dark-index .industry-subcopy {
  color: rgba(255, 255, 255, 0.92);
}
body.dark-index .industry-value-body,
body.dark-index .industry-subcopy {
  color: rgba(255, 255, 255, 0.72);
}

/* Navbar mega menus — dark panel + white link text (reference) */
body.dark-index .site-nav-dropdown-panel {
  background: var(--nav-mega-shell-bg);
  border: 1px solid var(--nav-mega-border);
  border-radius: var(--nav-mega-radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 24px 56px rgba(0, 0, 0, 0.35);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.dark-index .site-nav-dropdown-panel--mega-contained {
  border-radius: var(--nav-mega-radius);
}

body.dark-index .site-nav-dropdown-panel-inner--mega {
  padding: 1rem 1.25rem 1.15rem;
}

body.dark-index .site-nav-mega-row--products,
body.dark-index .site-nav-mega-row--combined,
body.dark-index .site-nav-mega-row--company {
  gap: 0.85rem;
}

body.dark-index .site-nav-mega-col {
  background: var(--nav-mega-col-bg);
  border: 1px solid var(--nav-mega-border);
  border-radius: var(--nav-mega-radius);
  padding: 1.25rem 1rem 1rem;
}

body.dark-index .site-nav-pill--column {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.75rem;
  padding: 0.38rem 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: var(--nav-mega-pill-bg);
  border: none;
  border-radius: 9999px;
  white-space: normal;
  text-align: center;
}

body.dark-index .site-nav-pill--column-title {
  text-transform: none;
  letter-spacing: 0.03em;
}

body.dark-index .site-nav-pill--column-long {
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-size: 0.58rem;
}

body.dark-index .site-nav-mega-col-hint {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: -0.35rem 0 0.65rem;
}

body.dark-index .site-nav .site-nav-mega-link:not(.site-nav-mega-link--rich) {
  color: rgba(255, 255, 255, 0.92);
}

body.dark-index .site-nav .site-nav-mega-link:not(.site-nav-mega-link--rich):hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: rgb(var(--signal-rgb) / 0.5);
}

body.dark-index .site-nav-mega-link-title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .site-nav-mega-badge--outline {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  border-radius: 9999px;
  padding: 0.06rem 0.45rem;
  margin-left: auto;
}

body.dark-index .site-nav .site-nav-mega-link--with-icon .site-nav-mega-link-icon:not(.site-nav-mega-link-icon--flat) {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

body.dark-index .site-nav .site-nav-mega-link--with-icon:hover .site-nav-mega-link-icon:not(.site-nav-mega-link-icon--flat) {
  background: rgb(var(--signal-rgb) / 0.22);
  color: var(--signal-400);
}

body.dark-index .site-nav-mega-link--rich,
body.dark-index .site-nav-mega-link--rich .site-nav-mega-link-title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .site-nav-mega-link--rich:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.dark-index .site-nav-mega-link-desc,
body.dark-index .site-nav-mega-eyebrow,
body.dark-index .site-nav-mega-cta-blurb,
body.dark-index .site-nav-mega-featured-kicker,
body.dark-index .site-nav-mega-featured-desc {
  color: rgba(255, 255, 255, 0.58);
}

body.dark-index .site-nav-mega-featured-title,
body.dark-index .site-nav-mega-featured-cta {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .site-nav-mega-featured-cta:hover {
  color: var(--signal-400);
}

body.dark-index .site-nav-mega-link--card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-index .site-nav .site-nav-mega-link--card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-index .site-nav-mega-divider {
  background: rgba(255, 255, 255, 0.1);
}

body.dark-index .site-nav-mega-section-label {
  color: var(--signal-400);
}

body.dark-index .site-nav-mega-col-heading {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

body.dark-index .site-nav-mega-featured {
  background:
    linear-gradient(145deg, rgb(var(--signal-rgb) / 0.12), rgb(var(--ember-rgb) / 0.1)) padding-box,
    linear-gradient(135deg, rgb(var(--signal-rgb) / 0.35), rgb(var(--ember-rgb) / 0.18), rgb(var(--signal-rgb) / 0.12))
      border-box;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

body.dark-index .site-nav-dropdown-panel--login {
  background: linear-gradient(180deg, #0c0c0c 0%, #000000 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-index .site-nav-login-panel__heading {
  color: rgba(255, 255, 255, 0.55);
}

body.dark-index .site-nav-login-link {
  color: rgba(255, 255, 255, 0.88);
}

body.dark-index .site-nav-login-link:hover,
body.dark-index .site-nav-login-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

body.dark-index .site-nav-login-link--selected {
  color: var(--signal-400);
  background: rgb(var(--signal-rgb) / 0.18);
}

body.dark-index .site-nav-login-link--with-icon .site-nav-mega-link-icon,
body.dark-index .site-nav-login-link--with-icon .site-nav-mega-link-icon--flat,
body.dark-index .site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon,
body.dark-index .site-nav-mobile-links--login .site-nav-mobile-link--with-icon .site-nav-mega-link-icon--flat {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Navbar bar — dark surface */
body.dark-index .site-nav.site-nav--dockable::before {
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 18px 44px rgba(0, 0, 0, 0.35);
}

body.dark-index .site-nav.site-nav--dockable.scrolled::before {
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 18px 44px rgba(0, 0, 0, 0.4);
}

body.dark-index .site-nav .site-nav-trigger {
  color: rgba(255, 255, 255, 0.88);
}

body.dark-index .site-nav .site-nav-trigger:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: transparent;
}

body.dark-index .site-nav .site-nav-dropdown--open > .site-nav-trigger {
  position: relative;
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body.dark-index .site-nav .site-nav-dropdown--open > .site-nav-trigger::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--signal-600);
}

body.dark-index .site-nav .site-nav-trigger-chevron {
  opacity: 0.65;
  color: #ffffff;
}

body.dark-index .site-nav .site-nav-trigger--link {
  color: rgba(255, 255, 255, 0.88);
}

body.dark-index .site-nav .site-nav-trigger--link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-index .site-nav .site-nav-menu-btn {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

body.dark-index .site-nav .site-nav-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.dark-index .site-nav-mobile-panel {
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-index .site-nav-mobile-summary__label,
body.dark-index .site-nav-mobile-flat-link {
  color: rgba(255, 255, 255, 0.92);
}

body.dark-index .site-nav-mobile-details {
  border-color: var(--nav-mega-border);
  background: var(--nav-mega-col-bg);
}

body.dark-index .site-nav-mobile-col-heading.site-nav-pill--column {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.65rem;
  color: #ffffff;
  background: var(--nav-mega-pill-bg);
  border: none;
  border-radius: 9999px;
  white-space: normal;
  text-align: center;
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link--product {
  color: rgba(255, 255, 255, 0.92);
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link--product .site-nav-mobile-link-title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link--product:hover,
body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link--product:focus-visible {
  transform: none;
  color: #ffffff;
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link-top {
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mega-link-icon,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-link-icon--brand,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-link-icon--channel,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-link-icon--cdn,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-link-icon--mdi,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-link-icon--flat {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link--product:hover .site-nav-mega-link-icon,
body.dark-index .site-nav-mobile-products--mega .site-nav-mobile-link--product:focus-visible .site-nav-mega-link-icon {
  box-shadow: none !important;
  background: transparent !important;
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mega-brand-icon,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-channel-icon,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-cdn-icon,
body.dark-index .site-nav-mobile-products--mega .site-nav-mega-mdi-icon {
  width: 20px;
  height: 20px;
}

body.dark-index .site-nav-mobile-products--mega .site-nav-mega-badge--outline,
body.dark-index .site-nav-mobile-link--product .site-nav-mega-badge--outline {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  background: transparent;
}

body.dark-index .site-nav-mobile-links--rich a.site-nav-mobile-link--rich {
  color: rgba(255, 255, 255, 0.92);
}

body.dark-index .site-nav-mobile-links--rich .site-nav-mobile-link-title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .site-nav-mobile-links--rich .site-nav-mobile-link-desc {
  color: rgba(255, 255, 255, 0.55);
}

body.dark-index .suite-filter-btn {
  background: linear-gradient(180deg, #ef3a40 0%, #e31e24 52%, #c91a21 100%);
  border-color: rgb(0 0 0 / 0.18);
  color: #fff;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.38) inset,
    0 -1px 0 rgb(0 0 0 / 0.12) inset,
    0 3px 12px rgb(227 30 36 / 0.4);
}

body.dark-index .suite-filter-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.42) inset,
    0 -1px 0 rgb(0 0 0 / 0.12) inset,
    0 6px 18px rgb(227 30 36 / 0.48);
}

body.dark-index .suite-filter-btn--active {
  background: linear-gradient(180deg, #ff4d52 0%, #e31e24 48%, #b8181e 100%);
  border-color: rgb(255 255 255 / 0.14);
  color: #fff;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.45) inset,
    0 -1px 0 rgb(0 0 0 / 0.14) inset,
    0 8px 22px rgb(227 30 36 / 0.52);
}

body.dark-index .suite-filter-tag,
body.dark-index .suite-filter-count {
  color: rgba(255, 255, 255, 0.82);
}

body.dark-index .suite-filter-btn--active .suite-filter-tag,
body.dark-index .suite-filter-btn--active .suite-filter-count {
  color: rgba(255, 255, 255, 0.92);
}

/* Products overview — tiles + copy on black */
body.dark-index .products-overview-section--clean {
  background: #000000 !important;
  --po-surface-bg: #1e1f20;
  --po-surface-bg-hover: #2d2e30;
  --po-surface-border: rgba(255, 255, 255, 0.08);
  --po-surface-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.25);
  --po-surface-shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

body.dark-index .products-overview-section--clean .channel-tile--link:hover .channel-tile__surface,
body.dark-index .products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__surface {
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-index .products-overview-section--clean .channel-tile--premium .channel-tile__link-hint {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
}

body.dark-index .products-overview-section--clean .channel-tile--link:hover .channel-tile__link-hint,
body.dark-index .products-overview-section--clean .channel-tile--link:focus-visible .channel-tile__link-hint {
  background: rgb(var(--signal-rgb) / 0.16);
  border-color: rgb(var(--signal-rgb) / 0.22);
  color: var(--signal-400);
}

/* Security showcase — gray product-style tiles on black */
body.dark-index .section-band--dark.security-showcase {
  background: #000000;
}

body.dark-index .products-overview-intro__lead,
body.dark-index .products-overview-category__hint {
  color: rgba(255, 255, 255, 0.72);
}

body.dark-index .products-overview-section--clean .channel-tile__label {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .products-overview-section--clean .channel-tile__api,
body.dark-index .products-overview-section--clean .channel-tile__category {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: none;
}

/* ── dark-index: product.php page overrides ───────────── */

/* Page shell */
body.dark-index .product-page-main {
  background: #000000;
}

body.dark-index .product-page.glass-panel {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}

body.dark-index .product-page code {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero */
body.dark-index .product-hero.hero-section--light {
  background: #000000 !important;
}

body.dark-index .product-hero.hero-section--light::before {
  display: block;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgb(var(--signal-rgb) / 0.08), transparent 52%),
    radial-gradient(ellipse 68% 52% at 50% 0%, rgb(var(--signal-rgb) / 0.06), transparent 58%),
    radial-gradient(ellipse 42% 34% at 88% 22%, rgb(var(--ember-rgb) / 0.05), transparent 54%),
    radial-gradient(ellipse 38% 32% at 10% 68%, rgba(255, 255, 255, 0.03), transparent 52%);
}

body.dark-index .product-hero__icon-glow {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12) 0%, rgba(227, 30, 36, 0.1) 38%, rgba(227, 30, 36, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(227, 30, 36, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-index .product-hero__icon-large {
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.45));
}

/* USP accordion */
body.dark-index .product-usp-accordion-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-index .product-usp-accordion-item:first-child {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-index .product-usp-accordion-header.open .chevron {
  color: var(--signal-400);
}

body.dark-index .product-usp-accordion-body__inner {
  color: rgba(255, 255, 255, 0.72);
}

/* Industry section */
body.dark-index .product-industry {
  background: #000000;
}

body.dark-index .product-industry__bg {
  background:
    radial-gradient(ellipse 72% 55% at 92% 8%, rgb(var(--signal-rgb) / 0.1), transparent 68%),
    radial-gradient(ellipse 58% 48% at 4% 92%, rgb(var(--ember-rgb) / 0.08), transparent 62%),
    linear-gradient(180deg, #000000 0%, #000000 100%);
}

body.dark-index .product-industry__bg::after {
  opacity: 0.15;
}

body.dark-index .product-industry-tab {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

body.dark-index .product-industry-tab:hover {
  border-color: rgb(var(--signal-rgb) / 0.35);
  color: #ffffff;
}

body.dark-index .product-industry-tab.active {
  background: linear-gradient(135deg, rgb(var(--signal-rgb) / 0.18), rgb(var(--ember-rgb) / 0.12));
  color: #ffffff;
  border-color: rgb(var(--signal-rgb) / 0.45);
  box-shadow: 0 10px 24px rgb(var(--signal-rgb) / 0.15);
}

body.dark-index .product-industry-panel__shell.glass-panel {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 0 1px rgb(var(--signal-rgb) / 0.08);
}

body.dark-index .product-industry-card--text-only {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

body.dark-index .product-industry-card--text-only .product-industry-card__title {
  color: rgba(255, 255, 255, 0.95);
}

body.dark-index .product-industry-card--text-only .product-industry-card__caption,
body.dark-index .product-industry-card__caption {
  color: rgba(255, 255, 255, 0.72);
}

body.dark-index .product-industry-image-card {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

/* FAQ */
body.dark-index .product-faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-index .product-faq-header__toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

body.dark-index .product-faq-body__inner {
  color: rgba(255, 255, 255, 0.72);
}

body.dark-index .product-faq .btn-outline-blue {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

body.dark-index .product-faq .btn-outline-blue:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--signal-400);
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 8px 22px rgb(var(--signal-rgb) / 0.12);
}

/* ── Contact form ─────────────────────────────────────────────────────────── */

.contact-page {
  min-height: calc(100vh - 5rem);
}

.contact-elite {
  --contact-ink: #ffffff;
  --contact-body: rgba(255, 255, 255, 0.82);
  --contact-muted: rgba(255, 255, 255, 0.62);
  position: relative;
}

.contact-elite__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.contact-elite__header .eyebrow {
  margin-bottom: 1rem;
}

.contact-elite__title {
  color: var(--contact-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-elite__lead {
  margin-top: 1rem;
  color: var(--contact-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.contact-elite-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.5rem;
  background: #000000;
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.35);
}

.contact-elite-card__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgb(var(--signal-rgb) / 0.08), transparent 62%),
    radial-gradient(ellipse 50% 42% at 88% 82%, rgb(var(--ember-rgb) / 0.06), transparent 58%);
  z-index: 0;
}

.contact-elite-card__glow {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
}

.contact-elite-card__glow--left {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -40px;
  background: rgb(var(--signal-rgb) / 0.14);
}

.contact-elite-card__glow--right {
  width: 280px;
  height: 280px;
  bottom: -80px;
  right: -60px;
  background: rgb(var(--ember-rgb) / 0.1);
}

.contact-elite-card__inner {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .contact-elite-card__inner {
    padding: 2.5rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-elite-card__inner {
    padding: 3rem 3.25rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form__grid .contact-field--full {
    grid-column: 1 / -1;
  }
}

.contact-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-field__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.contact-field__label span {
  color: var(--signal-400);
}

.contact-field__input,
.contact-field__select,
.contact-field__textarea {
  width: 100%;
  appearance: none;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.04);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.875rem 1rem;
  transition:
    border-color 0.2s var(--ease-premium),
    box-shadow 0.2s var(--ease-premium),
    background-color 0.2s var(--ease-premium);
}

.contact-field__input::placeholder,
.contact-field__textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-field__select {
  padding-right: 2.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-field__select option {
  color: #0a0a0a;
  background: #ffffff;
}

.contact-field__textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-field__input:hover,
.contact-field__select:hover,
.contact-field__textarea:hover {
  border-color: rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.06);
}

.contact-field__input:focus,
.contact-field__select:focus,
.contact-field__textarea:focus {
  outline: none;
  border-color: rgb(var(--signal-rgb) / 0.65);
  box-shadow: 0 0 0 3px rgb(var(--signal-rgb) / 0.18);
  background: rgb(255 255 255 / 0.07);
}

.contact-field.is-invalid .contact-field__input,
.contact-field.is-invalid .contact-field__select,
.contact-field.is-invalid .contact-field__textarea {
  border-color: var(--error);
  animation: contact-shake 0.35s ease;
}

.contact-field__error {
  display: none;
  font-size: 0.8125rem;
  color: #fca5a5;
}

.contact-field.is-invalid .contact-field__error {
  display: block;
}

@keyframes contact-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__consent-wrap {
  margin-top: 0.25rem;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.contact-form__consent-input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--signal-500);
  cursor: pointer;
}

.contact-form__consent-text {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--contact-muted);
}

.contact-form__legal-note {
  margin: 0.75rem 0 0 1.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form__legal-note a {
  color: #f87171;
  text-decoration: none;
}

.contact-form__legal-note a:hover {
  color: #fca5a5;
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .contact-form__actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-form__note {
  font-size: 0.8125rem;
  color: var(--contact-muted);
  line-height: 1.5;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 11rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--signal-600) 0%, var(--signal-700) 100%);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 24px rgb(var(--signal-rgb) / 0.22);
  transition:
    transform 0.2s var(--ease-premium),
    box-shadow 0.2s var(--ease-premium),
    opacity 0.2s var(--ease-premium);
}

.contact-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 28px rgb(var(--signal-rgb) / 0.28);
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-form__submit-arrow {
  transition: transform 0.2s var(--ease-premium);
}

.contact-form__submit:hover:not(:disabled) .contact-form__submit-arrow {
  transform: translateX(3px);
}

.contact-form__alert {
  display: none;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-form__alert.is-visible {
  display: block;
}

.contact-form__alert--error {
  background: rgb(239 68 68 / 0.12);
  border: 1px solid rgb(239 68 68 / 0.35);
  color: #fecaca;
}

.contact-form__alert--success {
  background: rgb(16 185 129 / 0.12);
  border: 1px solid rgb(16 185 129 / 0.35);
  color: #a7f3d0;
}

.contact-form.is-success .contact-form__fields {
  display: none;
}

.contact-form.is-success .contact-form__actions {
  display: none;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.contact-form.is-success .contact-success {
  display: block;
}

.contact-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgb(16 185 129 / 0.15);
  color: #6ee7b7;
  font-size: 1.5rem;
}

.contact-success__title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-success__text {
  color: var(--contact-body);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto;
}

/* ── About page ───────────────────────────────────────────────────────────── */

.about-page {
  min-height: calc(100vh - 5rem);
}

.about-elite {
  --about-ink: #ffffff;
  --about-body: rgba(255, 255, 255, 0.82);
  --about-muted: rgba(255, 255, 255, 0.62);
  position: relative;
  overflow: hidden;
}

.about-elite__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 15% 0%, rgb(227 30 36 / 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 20%, rgb(245 130 32 / 0.08), transparent 50%);
}

.about-elite__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.about-elite__header .eyebrow {
  margin-bottom: 1rem;
}

.about-elite__title {
  color: var(--about-ink);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-elite__lead {
  margin-top: 1.25rem;
  color: var(--about-body);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.about-elite__lead strong {
  color: var(--about-ink);
  font-weight: 600;
}

.about-elite-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 2.5rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgb(255 255 255 / 0.08);
}

.about-elite-stats__item {
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgb(0 0 0 / 0.35);
}

.about-elite-stats__value {
  color: var(--about-ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-elite-stats__label {
  margin-top: 0.5rem;
  color: var(--about-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.about-elite-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .about-elite-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    align-items: start;
  }
}

.about-elite-card,
.about-elite-aside,
.about-elite-panel,
.about-elite-vision {
  border-radius: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(0 0 0 / 0.35);
}

.about-elite-card {
  padding: 1.75rem 1.5rem;
}

.about-elite-card--accent {
  background:
    linear-gradient(145deg, rgb(227 30 36 / 0.08) 0%, rgb(0 0 0 / 0.35) 42%),
    rgb(0 0 0 / 0.35);
}

.about-elite-card__eyebrow,
.about-elite-panel__eyebrow,
.about-elite-vision__eyebrow,
.about-elite-aside__heading {
  color: var(--signal-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-elite-card__title,
.about-elite-panel__title {
  margin-top: 0.75rem;
  color: var(--about-ink);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.about-elite-card__body,
.about-elite-panel__body,
.about-elite-vision__body {
  margin-top: 1rem;
  color: var(--about-body);
  font-size: 1rem;
  line-height: 1.7;
}

.about-elite-card__body p + p,
.about-elite-panel__body + .about-elite-cities {
  margin-top: 1rem;
}

.about-elite-aside {
  padding: 1.75rem 1.5rem;
}

.about-elite-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-elite-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
  color: var(--about-ink);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.about-elite-aside__note {
  margin-top: 1.25rem;
  color: var(--about-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.about-elite-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-elite-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
}

.about-elite-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.about-elite-city {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(227 30 36 / 0.28);
  background: rgb(227 30 36 / 0.08);
  color: var(--about-ink);
  font-size: 0.875rem;
  font-weight: 500;
}

.about-elite-split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .about-elite-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-elite-vision {
  padding: 1.75rem 1.5rem;
}

.about-elite-vision__quote {
  margin-top: 1rem;
  color: var(--about-ink);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.about-elite-vision__quote::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.35rem;
  color: var(--signal-400);
  font-size: 2rem;
  line-height: 1;
}

.about-elite-vision__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.04);
  color: var(--about-ink);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-elite-vision__cta:hover {
  border-color: var(--signal-400);
  background: rgb(227 30 36 / 0.12);
  color: #ffffff;
}

@media (max-width: 640px) {
  .about-elite-stats {
    grid-template-columns: 1fr;
  }

  .about-elite-card,
  .about-elite-aside,
  .about-elite-panel,
  .about-elite-vision {
    padding: 1.35rem 1.15rem;
  }
}

/* Swup page transitions */
.transition-main {
  position: relative;
  outline: none;
}

html.is-swup-transitioning {
  background-color: var(--swup-backdrop, var(--page-bg));
}

html.is-swup-transitioning body {
  background-color: var(--swup-backdrop, var(--page-bg));
}

html.is-swup-transitioning .transition-main {
  pointer-events: none;
  min-height: 100vh;
}

/* ── Blog pages ───────────────────────────────────────────────────────────── */

/* Stable first paint — blog has no entrance motion; avoid reveal/JS opacity flash */
#swup .blog-page .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.blog-page {
  margin-top: 3.5rem;
  min-height: calc(100vh - 5rem);
}

@media (min-width: 768px) {
  .blog-page {
    margin-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .blog-page {
    margin-top: 4.5rem;
  }
}

.blog-listing,
.blog-post {
  position: relative;
  overflow: hidden;
}

.blog-listing__ambient,
.blog-post__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 15% 0%, rgb(227 30 36 / 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 20%, rgb(245 130 32 / 0.08), transparent 50%);
}

.blog-listing__header,
.blog-post__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.blog-listing__header .eyebrow,
.blog-post__header .eyebrow {
  margin-bottom: 1rem;
}

.blog-listing__title,
.blog-post__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.blog-listing__lead {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.blog-listing__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-listing__filter {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.blog-listing__filter:hover {
  border-color: rgba(227, 30, 36, 0.45);
  background: rgba(227, 30, 36, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.blog-listing__filter.is-active {
  border-color: rgb(227 30 36 / 0.55);
  background: rgb(227 30 36 / 0.18);
  color: #ffffff;
}

.blog-listing__empty {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

.blog-listing__empty-hint {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(227, 30, 36, 0.35);
  transform: translateY(-2px);
}

.blog-card__media-link {
  display: block;
  text-decoration: none;
}

.blog-card__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #141414;
}

.blog-card__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #141414, #2a080a);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.blog-card__category {
  display: inline-flex;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  background: rgba(227, 30, 36, 0.18);
  color: #fca5a5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
}

.blog-card__title a {
  color: #ffffff;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #fca5a5;
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-card__read-more:hover {
  color: #fca5a5;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.blog-pagination__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-pagination__btn:hover {
  border-color: rgba(227, 30, 36, 0.45);
  background: rgba(227, 30, 36, 0.12);
  text-decoration: none;
}

.blog-pagination__btn--disabled {
  opacity: 0.35;
  pointer-events: none;
}

.blog-pagination__status {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.blog-post__back {
  margin-bottom: 1.5rem;
}

.blog-post__back a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-post__back a:hover {
  color: #f87171;
}

.blog-post__category {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  background: rgba(227, 30, 36, 0.18);
  color: #fca5a5;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.blog-post__cover-wrap {
  margin: 0 auto 2rem;
  max-width: 56rem;
}

.blog-post__cover {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prose-blog {
  max-width: 46rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.prose-blog > :first-child {
  margin-top: 0;
}

.prose-blog > :last-child {
  margin-bottom: 0;
}

.prose-blog h2,
.prose-blog h3 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.prose-blog h2 {
  font-size: 1.5rem;
}

.prose-blog h3 {
  font-size: 1.25rem;
}

.prose-blog p,
.prose-blog ul,
.prose-blog ol {
  margin: 0 0 1rem;
}

.prose-blog ul,
.prose-blog ol {
  padding-left: 1.25rem;
}

.prose-blog a {
  color: #f87171;
}

.prose-blog a:hover {
  color: #fca5a5;
}

.prose-blog img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prose-blog blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid rgb(227 30 36 / 0.65);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 0.75rem 0.75rem 0;
  color: rgba(255, 255, 255, 0.72);
}

.blog-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-related__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.blog-related__grid {
  display: grid;
  gap: 0.75rem;
}

.blog-related__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-related__item:hover {
  border-color: rgba(227, 30, 36, 0.35);
  background: rgba(227, 30, 36, 0.08);
  text-decoration: none;
}

.blog-related__item-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.blog-related__item-date {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}

/* ── Group companies page ─────────────────────────────────────────────────── */

.group-companies-page {
  min-height: calc(100vh - 5rem);
}

.group-companies-elite {
  --group-ink: #ffffff;
  --group-body: rgba(255, 255, 255, 0.82);
  --group-muted: rgba(255, 255, 255, 0.62);
  position: relative;
  overflow: hidden;
}

.group-companies-elite__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 15% 0%, rgb(227 30 36 / 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 20%, rgb(245 130 32 / 0.08), transparent 50%);
}

.group-companies-elite__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.group-companies-elite__header .eyebrow {
  margin-bottom: 1rem;
}

.group-companies-elite__title {
  color: var(--group-ink);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.group-companies-elite__lead {
  margin-top: 1.25rem;
  color: var(--group-body);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.group-companies-elite__lead strong {
  color: var(--group-ink);
  font-weight: 600;
}

.group-companies-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .group-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.group-company-card {
  border-radius: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(0 0 0 / 0.35);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.group-company-card:hover {
  border-color: rgb(227 30 36 / 0.35);
  background: rgb(227 30 36 / 0.06);
  transform: translateY(-2px);
}

.group-company-card__link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 1.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
}

.group-company-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  border: 1px solid rgb(227 30 36 / 0.28);
  background: rgb(227 30 36 / 0.1);
  color: var(--signal-400);
}

.group-company-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.group-company-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.group-company-card__eyebrow {
  color: var(--signal-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-company-card__title {
  color: var(--group-ink);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.group-company-card__body {
  color: var(--group-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.group-company-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--group-ink);
  font-size: 0.875rem;
  font-weight: 600;
}

.group-company-card__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.group-company-card:hover .group-company-card__cta svg {
  transform: translate(2px, -2px);
}

.group-companies-elite__footer {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(0 0 0 / 0.35);
  text-align: center;
}

.group-companies-elite__footer-text {
  color: var(--group-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.group-companies-elite__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--group-ink);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.group-companies-elite__footer-link:hover {
  color: var(--signal-400);
  text-decoration: none;
}

/* Valuable clients page */
.clients-page {
  min-height: calc(100vh - 5rem);
}

.clients-elite {
  --clients-ink: #ffffff;
  --clients-body: rgba(255, 255, 255, 0.82);
  --clients-muted: rgba(255, 255, 255, 0.62);
  --clients-surface: rgba(255, 255, 255, 0.06);
  --clients-border: rgba(255, 255, 255, 0.1);
  position: relative;
}

.clients-elite__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(59, 130, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(99, 102, 241, 0.1), transparent 50%);
}

.clients-elite__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.clients-elite__header .eyebrow {
  margin-bottom: 1rem;
}

.clients-elite__title {
  color: var(--clients-ink);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.clients-elite__lead {
  margin-top: 1.25rem;
  color: var(--clients-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.clients-elite__stat {
  margin-top: 1.25rem;
  color: var(--clients-muted);
  font-size: 0.9375rem;
}

.clients-elite__stat strong {
  color: var(--clients-ink);
  font-weight: 600;
}

.clients-elite__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.clients-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--clients-border);
  background: var(--clients-surface);
  color: var(--clients-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.clients-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--clients-ink);
}

.clients-filter-pill.is-active {
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(59, 130, 246, 0.18);
  color: var(--clients-ink);
}

.clients-filter-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.6875rem;
  font-weight: 600;
}

.clients-filter-pill.is-active .clients-filter-pill__count {
  background: rgba(59, 130, 246, 0.35);
}

.clients-industry-block + .clients-industry-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--clients-border);
}

.clients-industry-block__header,
.clients-panel__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.clients-industry-block__icon,
.clients-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--signal-400);
}

.clients-industry-block__icon svg,
.clients-panel__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.clients-industry-block__title {
  color: var(--clients-ink);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.clients-panel__title {
  color: var(--clients-ink);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.clients-panel__subtitle {
  margin-top: 0.25rem;
  color: var(--clients-muted);
  font-size: 0.9375rem;
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .clients-logo-grid,
  .clients-logo-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .clients-logo-grid,
  .clients-logo-grid--featured {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.clients-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid var(--clients-border);
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.clients-logo-cell:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.clients-logo-cell img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 8.75rem);
  max-height: 2.75rem;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
  transition: transform 0.2s ease;
}

.clients-logo-cell:hover img {
  transform: scale(1.03);
}

.clients-elite__footer {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--clients-border);
  background: var(--clients-surface);
  text-align: center;
}

.clients-elite__footer-text {
  color: var(--clients-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.clients-elite__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  color: var(--signal-400);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clients-elite__footer-link:hover {
  color: var(--signal-300);
  text-decoration: none;
}

/* ── Floating contact (WhatsApp + Enquiry) ─────────────────────────────── */

.floating-contact {
  --floating-contact-size: 3.25rem;
  --floating-contact-icon: 1.375rem;
  position: fixed;
  right: 0;
  bottom: clamp(5.5rem, 14vh, 8.5rem);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  padding-right: 0;
  pointer-events: none;
}

.floating-contact__action {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: var(--floating-contact-size);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  box-shadow: var(--shadow-float);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.floating-contact__action--whatsapp {
  background: linear-gradient(135deg, #1ebe57 0%, #25d366 55%, #128c7e 100%);
}

.floating-contact__action--whatsapp:hover,
.floating-contact__action--whatsapp:focus-visible {
  box-shadow:
    0 10px 28px rgb(18 140 126 / 0.28),
    0 2px 12px rgb(0 0 0 / 0.12);
  filter: brightness(1.04);
}

.floating-contact__action--enquiry {
  background: linear-gradient(135deg, var(--signal-700) 0%, var(--signal-600) 58%, var(--signal-500) 100%);
}

.floating-contact__action--enquiry:hover,
.floating-contact__action--enquiry:focus-visible {
  box-shadow:
    0 10px 28px rgb(var(--signal-rgb) / 0.28),
    0 2px 12px rgb(0 0 0 / 0.12);
  filter: brightness(1.05);
}

.floating-contact__action:focus-visible {
  outline: 2px solid rgb(255 255 255 / 0.85);
  outline-offset: 2px;
}

.floating-contact__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  color: #fff;
}

.floating-contact__icon--whatsapp {
  background: rgb(255 255 255 / 0.2);
}

.floating-contact__whatsapp-svg {
  display: block;
  width: var(--floating-contact-icon);
  height: var(--floating-contact-icon);
}

.floating-contact__icon svg:not(.floating-contact__whatsapp-svg) {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.1;
}

.floating-contact__label {
  padding-right: 0.75rem;
  white-space: nowrap;
}

/* Desktop: slide-in labels on hover */
@media (hover: hover) and (pointer: fine) {
  .floating-contact__action {
    transform: translateX(calc(100% - var(--floating-contact-size)));
    will-change: transform;
  }

  .floating-contact__action:hover,
  .floating-contact__action:focus-visible {
    transform: translateX(0);
    text-decoration: none;
    color: #fff;
  }
}

/* Mobile & touch: round FABs, icon-only, safe-area aware */
@media (max-width: 767px), (hover: none) {
  .floating-contact {
    right: calc(0.875rem + env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    gap: 0.625rem;
  }

  .floating-contact__action {
    transform: none;
    width: var(--floating-contact-size);
    height: var(--floating-contact-size);
    min-height: var(--floating-contact-size);
    padding: 0;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.22);
  }

  .floating-contact__action:active {
    transform: scale(0.96);
    filter: brightness(0.98);
  }

  .floating-contact__icon {
    width: 2.125rem;
    height: 2.125rem;
    background: transparent;
  }

  .floating-contact__whatsapp-svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .floating-contact__icon svg:not(.floating-contact__whatsapp-svg) {
    width: 1.3125rem;
    height: 1.3125rem;
  }

  .floating-contact__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact__action {
    transform: none;
    transition: box-shadow 0.2s ease, filter 0.2s ease;
  }

  .floating-contact__action:active {
    transform: none;
  }
}

/* Legal pages (Privacy Policy, Terms & Conditions) */
.legal-document {
  position: relative;
  overflow: hidden;
}

.legal-document__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(227, 30, 36, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(59, 130, 246, 0.06), transparent 55%);
  pointer-events: none;
}

.legal-document__header {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.legal-document__title {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: #ffffff;
}

.legal-document__updated {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.legal-document__section {
  margin-top: 2rem;
}

.legal-document__contact {
  font-style: normal;
  margin: 0 0 1rem;
}

.legal-document__contact p {
  margin: 0 0 0.35rem;
}

.prose-legal {
  max-width: 46rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.prose-legal > :first-child {
  margin-top: 0;
}

.prose-legal > :last-child {
  margin-bottom: 0;
}

.prose-legal h2,
.prose-legal h3 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.prose-legal h2 {
  font-size: 1.5rem;
}

.prose-legal h3 {
  font-size: 1.125rem;
}

.prose-legal p,
.prose-legal ul,
.prose-legal ol {
  margin: 0 0 1rem;
}

.prose-legal ul,
.prose-legal ol {
  padding-left: 1.25rem;
}

.prose-legal li + li {
  margin-top: 0.35rem;
}

.prose-legal a {
  color: #f87171;
}

.prose-legal a:hover {
  color: #fca5a5;
}
