/* =========================================================================
   Infinity Browsers — Landing page
   Built on the Infinity design system (dark, glassmorphism, neon gradients)
   ========================================================================= */

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: var(--inf-deep-space);
  color: var(--inf-fg-1);
  font-family: var(--inf-font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   Tweakable hooks
   ============================================================ */
:root {
  --tw-ambient-strength: 0.32;
  --tw-show-grid: 1;
  --tw-density: 1; /* 1 = comfortable, 0.85 = compact */
  --tw-cta-pulse: 1;
}

/* ============================================================
   Ambient page background (purple + blue blobs, fixed)
   ============================================================ */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 9999px;
  filter: blur(140px);
  opacity: var(--tw-ambient-strength);
}
.page-bg::before {
  background: radial-gradient(circle, var(--inf-deep-nebula), transparent 60%);
  top: -260px;
  left: -300px;
}
.page-bg::after {
  background: radial-gradient(circle, var(--inf-electric-blue), transparent 60%);
  top: 30%;
  right: -300px;
}
.page-bg .blob-3 {
  position: absolute;
  bottom: -300px;
  left: 20%;
  width: 800px;
  height: 800px;
  border-radius: 9999px;
  filter: blur(140px);
  opacity: calc(var(--tw-ambient-strength) * 0.7);
  background: radial-gradient(circle, var(--inf-hyper-pink), transparent 60%);
}
.page-bg .grid {
  position: absolute;
  inset: 0;
  opacity: calc(var(--tw-show-grid) * 0.04);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center top, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center top, #000 30%, transparent 75%);
}

/* ============================================================
   Layout
   ============================================================ */
.shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(3, 3, 5, 0.55);
  border-bottom: 1px solid var(--inf-hairline-soft);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-brand .word {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  color: var(--inf-fg-2);
  font-weight: 500;
}
.nav-links a {
  transition: color 200ms ease;
  position: relative;
}
.nav-links a:hover {
  color: #fff;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--inf-hairline-soft);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-toggle-bars {
  position: relative;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 200ms ease,
    background 200ms ease,
    top 200ms ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 9999px;
  font-family: var(--inf-font-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
  border: 0;
  line-height: 1;
  white-space: nowrap;
}
.btn .ph,
.btn i {
  font-size: 16px;
}

.btn-primary {
  background: var(--inf-gradient-brand);
  color: #fff;
  box-shadow: 0 0 24px rgba(122, 40, 203, 0.45);
  position: relative;
  isolation: isolate;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--inf-gradient-brand-hover);
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(0, 210, 255, 0.6);
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background:
    linear-gradient(var(--inf-deep-space), var(--inf-deep-space)) padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  color: #fff;
}
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}

/* ============================================================
   Section primitives
   ============================================================ */
section {
  position: relative;
  padding: calc(120px * var(--tw-density)) 0;
}
section + section {
  padding-top: calc(48px * var(--tw-density));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--inf-font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inf-electric-blue);
  margin-bottom: 24px;
}
.eyebrow.muted {
  color: var(--inf-electric-blue);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--inf-electric-blue);
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.7);
}

.section-title {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 20px 0;
  text-wrap: balance;
  max-width: 900px;
}
.section-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  max-width: 720px;
  margin: 0 0 56px 0;
  text-wrap: pretty;
}
.section-head {
  display: flex;
  flex-direction: column;
}
.section-head > *:last-child {
  margin-bottom: 0;
}
.section-head + * {
  margin-top: 48px;
}
.section-head.center {
  align-items: center;
  text-align: center;
}
.section-head.center .section-title,
.section-head.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    background 250ms ease;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 30, 0.65);
}
.card.featured {
  background:
    linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.85)) padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 40px rgba(122, 40, 203, 0.3);
}

.tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.tile.gradient {
  background: var(--inf-gradient-brand);
  box-shadow: 0 0 18px rgba(122, 40, 203, 0.4);
  border: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 13px;
  color: var(--inf-fg-2);
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-pill .live {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--inf-electric-blue);
  box-shadow: 0 0 10px var(--inf-electric-blue);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.hero-pill .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-title {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 28px 0;
  text-wrap: balance;
  max-width: 1100px;
}
.hero-title .grad {
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--inf-fg-2);
  max-width: 720px;
  margin: 0 0 44px 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions .meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--inf-fg-1);
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-actions .meta .ok {
  color: var(--inf-electric-blue);
  font-size: 15px;
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.7));
}

/* ============================================================
   HERO CTA BRIDGE — links the second sentence of the lede
   ("A complete platform for...") to the "Book a strategy call"
   button. Four variants, switched via [data-cta-style].
   ============================================================ */
.hero-cta-wrap {
  max-width: 720px;
}
.cta-bridge-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.cta-bridge-mark {
  display: none;
}
.cta-bridge {
  margin: 0;
  color: var(--inf-fg-2);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
}

/* ---- default: looks like a continuation of the lede ---- */
.hero-cta-wrap[data-cta-style="default"] .cta-bridge-wrap {
  margin-top: -32px; /* tighten to read as one paragraph */
  margin-bottom: 36px;
}

/* ---- bridge: smaller CTA preamble with a gradient bar on the left ---- */
.hero-cta-wrap[data-cta-style="bridge"] .cta-bridge-wrap {
  align-items: stretch;
  margin-bottom: 28px;
  padding-left: 4px;
}
.hero-cta-wrap[data-cta-style="bridge"] .cta-bridge-mark {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--inf-gradient-brand);
  box-shadow: 0 0 12px rgba(122, 40, 203, 0.55);
  flex-shrink: 0;
  align-self: stretch;
}
.hero-cta-wrap[data-cta-style="bridge"] .cta-bridge {
  font-size: 15px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  max-width: 560px;
  padding: 4px 0 4px 14px;
}

/* ---- card: glass panel groups the sentence + button ---- */
.hero-cta-wrap[data-cta-style="card"] {
  display: inline-block;
  margin-top: 8px;
  padding: 22px 22px 22px 22px;
  border-radius: var(--inf-radius-xl, 16px);
  background:
    linear-gradient(
        var(--inf-glass-bg, rgba(10, 10, 15, 0.6)),
        var(--inf-glass-bg, rgba(10, 10, 15, 0.6))
      )
      padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 50px rgba(122, 40, 203, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  isolation: isolate;
  max-width: 640px;
}
.hero-cta-wrap[data-cta-style="card"]::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  border-radius: var(--inf-radius-xl, 16px) var(--inf-radius-xl, 16px) 0 0;
  opacity: 0.7;
  z-index: 2;
}
.hero-cta-wrap[data-cta-style="card"] .cta-bridge-wrap {
  margin-bottom: 18px;
}
.hero-cta-wrap[data-cta-style="card"] .cta-bridge {
  font-size: 16px;
  line-height: 1.55;
  color: var(--inf-fg-1);
}
.hero-cta-wrap[data-cta-style="card"] .hero-actions .meta {
  color: var(--inf-fg-2);
}

/* ---- inline: sentence sits next to the button, divided by a vertical gradient rule ---- */
.hero-cta-wrap[data-cta-style="inline"] {
  max-width: none;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-cta-wrap[data-cta-style="inline"] .hero-actions {
  order: 1;
}
.hero-cta-wrap[data-cta-style="inline"] .cta-bridge-wrap {
  order: 2;
  position: relative;
  margin: 0;
  padding-left: 22px;
  align-items: center;
}
.hero-cta-wrap[data-cta-style="inline"] .cta-bridge-mark {
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(122, 40, 203, 0.9),
    rgba(255, 0, 127, 0.7),
    transparent
  );
  box-shadow: 0 0 10px rgba(122, 40, 203, 0.5);
}
.hero-cta-wrap[data-cta-style="inline"] .cta-bridge {
  font-size: 13px;
  line-height: 1.5;
  max-width: 340px;
  margin: 0;
}
.hero-cta-wrap[data-cta-style="inline"] .hero-actions .meta {
  margin-left: 0;
}

/* ---- lead-in: sentence above button, smaller, with a corner ↳ connector ---- */
.hero-cta-wrap[data-cta-style="leadin"] .cta-bridge-wrap {
  position: relative;
  margin-bottom: 18px;
  padding-left: 20px;
}
.hero-cta-wrap[data-cta-style="leadin"] .cta-bridge-mark {
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  bottom: -10px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 210, 255, 0.6),
    rgba(122, 40, 203, 0.9),
    rgba(255, 0, 127, 0.7)
  );
  box-shadow: 0 0 10px rgba(122, 40, 203, 0.5);
}
.hero-cta-wrap[data-cta-style="leadin"] .cta-bridge-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 0, 127, 0.7), transparent);
}
.hero-cta-wrap[data-cta-style="leadin"] .cta-bridge {
  font-size: 15px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  max-width: 520px;
}

/* Hero browser morph */
.hero-stage {
  margin-top: 80px;
  position: relative;
}
.hero-stage-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(122, 40, 203, 0.18);
  overflow: hidden;
}
.hero-stage-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 210, 255, 0.4),
    rgba(122, 40, 203, 0),
    rgba(255, 0, 127, 0.3)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

/* Split hero — copy left, browser mockup right */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.hero-split .hero-stage {
  min-width: 0;
  margin-top: 0;
}
.hero-split .hero-stage-frame {
  max-width: none;
}
.hero-split .hero-title {
  font-size: clamp(38px, 3.4vw, 56px);
  margin-bottom: 22px;
  max-width: none;
}
.hero-split .hero-lede {
  margin-bottom: 30px;
  max-width: 460px;
}
.hero-meta-below {
  margin: 18px 0 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--inf-fg-1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.hero-meta-below .ok {
  color: var(--inf-electric-blue);
  font-size: 15px;
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.7));
}
@media (max-width: 820px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-split .hero-lede {
    max-width: 640px;
  }
}

/* Platform section — statement full-width, then 30/70 CTA + mockup */
.platform-divider {
  width: 100%;
  margin-bottom: 8px;
}
.platform-head {
  margin-bottom: 40px;
}
.platform-head .platform-kicker {
  margin-bottom: 14px;
}
.platform-head .platform-lead {
  margin: 0;
  max-width: 900px;
  font-size: clamp(28px, 2.9vw, 40px);
}
.hero-split--platform {
  align-items: center;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
}
.hero-copy--cta {
  text-align: center;
}
.hero-copy--cta .hero-actions {
  margin-top: 0;
  justify-content: center;
}
.hero-copy--cta .hero-meta-below {
  margin-top: 16px;
}
@media (max-width: 820px) {
  .hero-split--platform {
    grid-template-columns: 1fr;
  }
}

/* Fixed design canvas: laid out once at 1280×720, then scaled to fit the
   frame via --scale (set by main.js). Everything inside keeps its desktop
   proportions and just shrinks, so the mockup reads as a static image on
   mobile instead of reflowing. 720 = 1280 × 9/16, matching the frame's
   aspect-ratio, so the scaled canvas fills the frame with no gap. */
.morph-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 720px;
  transform-origin: top left;
  transform: scale(var(--scale, 1));
}
.morph-layer {
  position: absolute;
  inset: 0;
}
.morph-full {
  clip-path: inset(0 100% 0 0);
  animation: morph-reveal 10s cubic-bezier(0.65, 0.05, 0.35, 1) 1.5s infinite;
  will-change: clip-path;
}
@keyframes morph-reveal {
  0%,
  6% {
    clip-path: inset(0 100% 0 0);
  }
  46%,
  92% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}
.morph-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  left: 0;
  background: linear-gradient(180deg, transparent, #00d2ff 20%, #7a28cb 80%, transparent);
  box-shadow:
    0 0 24px 6px rgba(0, 210, 255, 0.55),
    0 0 60px 18px rgba(122, 40, 203, 0.4);
  transform: translateX(-50%);
  opacity: 0;
  animation: morph-scan 10s cubic-bezier(0.65, 0.05, 0.35, 1) 1.5s infinite;
  pointer-events: none;
}
@keyframes morph-scan {
  0%,
  5% {
    left: 0;
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  46% {
    left: 100%;
    opacity: 1;
  }
  50%,
  92% {
    left: 100%;
    opacity: 0;
  }
  96%,
  100% {
    left: 0;
    opacity: 0;
  }
}

/* Browser chrome (shared by wire + designed) */
.b-chrome {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.b-dots {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}
.b-dot {
  width: 11px;
  height: 11px;
  border-radius: 9999px;
}
.b-tabs {
  display: flex;
  gap: 6px;
  margin-left: 8px;
}
.b-tab {
  height: 32px;
  padding: 0 12px;
  min-width: 140px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.b-addr {
  flex: 1;
  height: 32px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  font-size: 12px;
}
.b-icons {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.b-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Wireframe */
.morph-wire {
  background: rgba(10, 10, 15, 0.85);
}
.morph-wire .b-chrome {
  background: rgba(255, 255, 255, 0.02);
}
.morph-wire .b-dot {
  border: 1.5px dashed rgba(255, 255, 255, 0.32);
}
.morph-wire .b-tab,
.morph-wire .b-addr,
.morph-wire .b-icon {
  border: 1.5px dashed rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.35);
  background: transparent;
}
.morph-wire .b-body {
  position: relative;
  height: calc(100% - 48px);
  display: flex;
  padding: 16px;
  gap: 14px;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.02) 18px 19px
  );
}
.morph-wire .ntp-side {
  width: 14%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.morph-wire .w-widget {
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  height: 78px;
}
.morph-wire .ntp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 5%;
  align-items: center;
}
.morph-wire .w-brand {
  width: 200px;
  height: 56px;
  border: 1.5px dashed rgba(255, 255, 255, 0.32);
  border-radius: 10px;
}
.morph-wire .w-search {
  width: 60%;
  height: 36px;
  border: 1.5px dashed rgba(255, 255, 255, 0.32);
  border-radius: 9999px;
}
.morph-wire .w-shortcuts {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.morph-wire .w-shortcut {
  width: 44px;
  height: 44px;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: 14px;
}
.morph-wire .w-news {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
.morph-wire .w-news-card {
  height: 60px;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}
.morph-wire .ntp-rail {
  width: 12%;
  border-left: 1.5px dashed rgba(255, 255, 255, 0.2);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.morph-wire .w-rail-item {
  height: 28px;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}
.morph-wire .w-rail-head {
  height: 22px;
  width: 70%;
  border: 1.5px dashed rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  margin-bottom: 6px;
}
.morph-wire .w-rail-chat {
  margin-top: auto;
  height: 38px;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* Designed */
.morph-full {
  background: linear-gradient(180deg, #0b0814, #0e0b1a);
}
.morph-full .b-chrome {
  background: linear-gradient(180deg, rgba(20, 16, 30, 0.92), rgba(14, 10, 22, 0.92));
}
.morph-full .b-dot.r {
  background: #ff5f57;
}
.morph-full .b-dot.y {
  background: #febc2e;
}
.morph-full .b-dot.g {
  background: #28c840;
}
.morph-full .b-tab {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}
.morph-full .b-tab.active {
  background: rgba(122, 40, 203, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 210, 255, 0.25);
}
.morph-full .b-tab .fav {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--fill);
}
.morph-full .b-addr {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.62);
}
.morph-full .b-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}
.morph-full .b-icon.askai {
  width: auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(122, 40, 203, 0.4), rgba(0, 210, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  box-shadow: 0 0 12px rgba(122, 40, 203, 0.4);
  gap: 5px;
  white-space: nowrap;
}
.morph-full .b-icon.profile {
  background: var(--inf-gradient-brand);
  color: #fff;
  box-shadow: 0 0 12px rgba(122, 40, 203, 0.5);
}
.morph-full .b-body {
  position: relative;
  height: calc(100% - 48px);
  display: flex;
  padding: 16px;
  gap: 14px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(122, 40, 203, 0.28), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 210, 255, 0.2), transparent 55%);
}
.morph-full .ntp-side {
  width: 14%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.morph-full .f-widget {
  background: linear-gradient(180deg, rgba(28, 22, 42, 0.92), rgba(18, 14, 28, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.morph-full .f-widget .lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.morph-full .f-widget .num {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.morph-full .f-widget .num sup {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.morph-full .f-widget .num i {
  font-size: 16px;
}
.morph-full .f-widget .num .weather {
  color: #ffb31a;
}
.morph-full .f-widget .cap {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
.morph-full .f-widget .sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.morph-full .ntp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4%;
  align-items: center;
}
.morph-full .f-brand img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}
.morph-full .f-search {
  width: 60%;
  height: 38px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 6px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(0, 210, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.morph-full .f-search i {
  font-size: 12px;
}
.morph-full .f-search .grow {
  flex: 1;
}
.morph-full .f-search .go {
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: var(--inf-gradient-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 0 12px rgba(122, 40, 203, 0.5);
}
.morph-full .f-shortcuts {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.morph-full .f-shortcut {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
}
.morph-full .f-shortcut.c1 {
  background: linear-gradient(160deg, #ff3b30, #b00020);
}
.morph-full .f-shortcut.c2 {
  background: linear-gradient(160deg, #1877f2, #0b4faf);
}
.morph-full .f-shortcut.c3 {
  background: linear-gradient(160deg, #ff4500, #c2410c);
}
.morph-full .f-shortcut.c4 {
  background: linear-gradient(160deg, #00b894, #007f62);
}
.morph-full .f-shortcut.c5 {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px dashed rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.75);
}
.morph-full .f-news {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
.morph-full .f-news-card {
  height: 90px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.morph-full .f-news-card .thumb {
  height: 50%;
  position: relative;
  filter: saturate(0.7) brightness(0.85);
  background: var(--fill);
}
.morph-full .f-news-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.morph-full .f-news-card .meta {
  flex: 1;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.morph-full .f-news-card .src {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.morph-full .f-news-card .src .dot {
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--inf-gradient-brand);
}
.morph-full .f-news-card .hl1 {
  height: 5px;
  width: 92%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
}
.morph-full .f-news-card .hl2 {
  height: 5px;
  width: 70%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.morph-full .ntp-rail {
  width: 17%;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, rgba(20, 16, 30, 0.4), rgba(12, 8, 20, 0.6));
  margin: -16px -16px -16px 0;
  padding: 16px 12px;
}
.morph-full .r-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.morph-full .r-logo {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: conic-gradient(
    from 215deg,
    #ff3b30 0 90deg,
    #1877f2 90deg 180deg,
    #7a28cb 180deg 270deg,
    #febc2e 270deg 360deg
  );
}
.morph-full .r-item {
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  gap: 6px;
}
.morph-full .r-item.active {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.2);
  color: var(--inf-electric-blue);
}
.morph-full .r-chat {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
}
.morph-full .r-chat .grow {
  flex: 1;
}
.morph-full .r-chat .send {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: var(--inf-gradient-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  box-shadow: 0 0 8px rgba(122, 40, 203, 0.5);
}

/* Floating stat badges around the hero stage */
.hero-stage .float {
  position: absolute;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}
.hero-stage .float .v {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 24px;
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stage .float .l {
  font-size: 12px;
  color: var(--inf-fg-2);
  line-height: 1.3;
  max-width: 130px;
}
.hero-stage .float.tl {
  top: -20px;
  left: -30px;
}
.hero-stage .float.br {
  bottom: -20px;
  right: -30px;
}

/* ============================================================
   Trusted by
   ============================================================ */
.trusted {
  padding: 60px 0 0 0;
  text-align: center;
}
.trusted-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--inf-fg-3);
  margin-bottom: 32px;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.logo-chip {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  transition: transform 250ms ease;
}
.logo-chip:hover {
  transform: translateY(-3px);
}
.logo-chip img {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
}
.logo-chip.wide img {
  max-height: 28px;
  max-width: 75%;
}
.logo-chip.tall img {
  max-height: 48px;
}
.logo-chip.icon img {
  max-height: 40px;
  max-width: 40px;
}

/* ============================================================
   Why Now / 3-up card grid
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.card h3 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 20px 0 10px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}
.card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  margin: 0;
}

/* ============================================================
   Strategic figures (numbered)
   ============================================================ */
.figure-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.figure-row:last-child {
  border-bottom: none;
}
.figure-row .n {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  min-width: 56px;
}
.figure-row .tile:not(.gradient) {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.16), rgba(122, 40, 203, 0.18));
  border: 1px solid rgba(0, 210, 255, 0.22);
  box-shadow: inset 0 0 12px rgba(0, 210, 255, 0.1);
  color: #fff;
}
.figure-row h4 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.figure-row p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  margin: 0;
}

/* ============================================================
   Pillars row (5 across)
   ============================================================ */
.pillar {
  position: relative;
  background: rgba(10, 10, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(12px);
  transition:
    transform 250ms ease,
    border-color 250ms ease;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
}
.pillar .pnum {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.pillar h3 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.pillar p {
  margin: 0;
  font-size: 13px;
  color: var(--inf-fg-2);
  line-height: 1.5;
}
.pillar.featured {
  background:
    linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.85)) padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 30px rgba(122, 40, 203, 0.3);
}
.pillar.featured .pnum {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}

/* Hero platform intro — demoted subheading with hairline separator */
.hero-platform-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.platform-rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.08) 80%,
    rgba(255, 255, 255, 0)
  );
}
.platform-lead {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  max-width: 820px;
  text-wrap: balance;
}
.platform-subhead {
  font-family: var(--inf-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--inf-fg-2);
  margin: 0;
  max-width: 760px;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.platform-subhead-text strong {
  color: #fff;
  font-weight: 600;
}
.platform-kicker {
  display: block;
  font-family: var(--inf-font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inf-electric-blue);
  margin-bottom: 0;
}

/* Compact pillars row — hero introduction strip */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 36px;
}
.pillar.compact {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
}
.pillar.compact .pnum {
  font-size: 24px;
  flex-shrink: 0;
}
.pillar.compact h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .pillars-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .pillars-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AI + Browser convergence
   ============================================================ */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}
.ai-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(122, 40, 203, 0.5) 18%,
    rgba(0, 210, 255, 0.5) 82%,
    transparent
  );
  box-shadow: 0 0 14px rgba(122, 40, 203, 0.35);
  pointer-events: none;
}
.ai-divider .pulse {
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #fff;
}
.ai-divider .pulse.p1 {
  box-shadow:
    0 0 12px 3px rgba(255, 255, 255, 0.65),
    0 0 24px 6px rgba(122, 40, 203, 0.55);
  animation: pulse-down 5.2s ease-in-out 0s infinite;
}
.ai-divider .pulse.p2 {
  background: #dcfbff;
  box-shadow:
    0 0 12px 3px rgba(0, 210, 255, 0.65),
    0 0 24px 6px rgba(0, 210, 255, 0.45);
  animation: pulse-up 5.2s ease-in-out -1.6s infinite;
}
.ai-divider .pulse.p3 {
  box-shadow:
    0 0 12px 3px rgba(255, 255, 255, 0.65),
    0 0 24px 6px rgba(122, 40, 203, 0.55);
  animation: pulse-down 5.2s ease-in-out -3.2s infinite;
}
@keyframes pulse-down {
  0% {
    top: 4%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 96%;
    opacity: 0;
  }
}
@keyframes pulse-up {
  0% {
    top: 96%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 4%;
    opacity: 0;
  }
}

.ai-side h3 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px 0;
}
.ai-side h3 .grad-purple {
  background: linear-gradient(90deg, #b584f5, #7a28cb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-side h3 .grad-cyan {
  background: linear-gradient(90deg, #5cc9ff, #00d2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-side .ai-lede {
  font-size: 16px;
  line-height: 1.5;
  color: var(--inf-fg-2);
  margin: 0 0 24px 0;
}
.ai-side .ai-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ai-side .ai-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
}
.ai-side .ai-eyebrow.action {
  color: #c9b4f8;
}
.ai-side .ai-eyebrow.action::before {
  background: linear-gradient(to right, transparent, #b584f5);
  box-shadow: 0 0 10px rgba(181, 132, 245, 0.7);
}
.ai-side .ai-eyebrow.memory {
  color: #9fe5ff;
}
.ai-side .ai-eyebrow.memory::before {
  background: linear-gradient(to right, transparent, #5cc9ff);
  box-shadow: 0 0 10px rgba(92, 201, 255, 0.7);
}

.action-flow,
.memory-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.action-row {
  position: relative;
  padding: 12px 18px 12px 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(122, 40, 203, 0.12), rgba(122, 40, 203, 0));
  border: 1px solid rgba(181, 132, 245, 0.16);
  overflow: hidden;
}
.action-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #b584f5, #7a28cb);
  box-shadow: 0 0 10px rgba(122, 40, 203, 0.6);
}
.action-row .verb {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.action-row .desc {
  font-size: 13px;
  color: var(--inf-fg-2);
  line-height: 1.45;
  margin-top: 2px;
}
.memory-layer {
  position: relative;
  padding: 12px 18px 12px 22px;
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 210, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(92, 201, 255, 0.18);
  overflow: hidden;
}
.memory-layer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #5cc9ff, #00d2ff);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.55);
}
.memory-layer .m-label {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.memory-layer .m-sub {
  font-size: 13px;
  color: var(--inf-fg-2);
  line-height: 1.45;
  margin-top: 2px;
}

/* ============================================================
   Case study stats
   ============================================================ */
.case-wrap {
  background:
    linear-gradient(rgba(10, 10, 15, 0.65), rgba(10, 10, 15, 0.65)) padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 56px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(122, 40, 203, 0.18);
}
.case-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 24px;
}
.stat-card .v {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-card .v.grad {
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .l {
  font-size: 13px;
  color: var(--inf-fg-2);
  margin-top: 8px;
  line-height: 1.4;
}
.case-side .rating {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.case-side .rating .stars {
  color: var(--inf-electric-blue);
  font-size: 18px;
  display: inline-flex;
  gap: 2px;
}
.case-side .rating .num {
  font-family: var(--inf-font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.case-side .rating .of {
  font-size: 13px;
  color: var(--inf-fg-3);
}
.case-side h3 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.case-side p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  margin: 0 0 24px;
}
.case-side .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.case-side .meta .tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 12px;
  color: var(--inf-fg-2);
}

/* ============================================================
   Testimonials carousel
   ============================================================ */
.testimonials-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 56px;
  background:
    linear-gradient(rgba(10, 10, 15, 0.78), rgba(10, 10, 15, 0.78)) padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(122, 40, 203, 0.18);
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}
.t-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.t-glow-1 {
  background: var(--inf-deep-nebula);
  top: -120px;
  left: -120px;
}
.t-glow-2 {
  background: var(--inf-electric-blue);
  bottom: -160px;
  right: -120px;
  opacity: 0.22;
}

.testimonials-track {
  display: grid;
  z-index: 1;
  min-height: 460px;
}
.testimonial-slide {
  /* All slides share one grid cell so the track is always as tall as the
     tallest slide — keeps the bottom-pinned author row at the same level
     regardless of which slide (and how much text) is active. */
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}
.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.t-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 16px;
}
.t-eyebrow {
  font-family: var(--inf-font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inf-fg-3);
}
.t-quote {
  font-family: var(--inf-font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.t-mark {
  font-family: var(--inf-font-display);
  font-weight: 700;
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.t-name {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.005em;
}
.t-role {
  font-size: 13px;
  color: var(--inf-fg-3);
  margin-top: 4px;
}
.t-brand {
  flex-shrink: 0;
  height: 44px;
  display: flex;
  align-items: center;
}
.t-brand img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
}

.t-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(12px);
}
.t-block h4 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.t-block p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--inf-fg-2);
  margin: 0;
}
.t-block p i {
  margin: 0 2px;
  font-size: 16px;
  vertical-align: -2px;
}

.t-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.t-dot {
  width: 28px;
  height: 6px;
  border-radius: 9999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  transition:
    background 250ms ease,
    width 350ms ease;
}
.t-dot.is-active {
  width: 44px;
  background: var(--inf-gradient-brand);
}
.t-dot:hover {
  background: rgba(255, 255, 255, 0.22);
}
.t-dot.is-active:hover {
  background: var(--inf-gradient-brand);
}

@media (max-width: 900px) {
  .testimonials-card {
    padding: 32px;
  }
  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .testimonials-track {
    min-height: 0;
  }
  .testimonial-slide {
    position: relative;
  }
  .testimonial-slide:not(.is-active) {
    display: none;
  }
  .t-quote {
    font-size: 22px;
  }
}

/* ============================================================
   Comparison table
   ============================================================ */
.cmp-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
table.cmp {
  width: 100%;
  border-collapse: collapse;
}
table.cmp th,
table.cmp td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
table.cmp th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inf-fg-3);
}
table.cmp th.us {
  color: #fff;
  background: linear-gradient(180deg, rgba(122, 40, 203, 0.2), transparent);
}
table.cmp td {
  font-size: 14px;
  color: var(--inf-fg-2);
}
table.cmp td.feat {
  color: #fff;
  font-weight: 500;
  width: 36%;
}
table.cmp td.us {
  background: linear-gradient(180deg, rgba(122, 40, 203, 0.08), rgba(0, 210, 255, 0.03));
}
table.cmp tr:last-child td {
  border-bottom: none;
}
.score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.score .bar {
  width: 88px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.score .bar > i {
  display: block;
  height: 100%;
  border-radius: 9999px;
  background: var(--inf-gradient-brand);
}
.score.muted .bar > i {
  background: rgba(255, 255, 255, 0.3);
}
.score .pct {
  font-size: 12px;
  color: #fff;
  min-width: 36px;
  font-variant-numeric: tabular-nums;
}
.score.muted .pct {
  color: var(--inf-fg-2);
}

/* ============================================================
   Team
   ============================================================ */
.person {
  background: rgba(10, 10, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  transition:
    transform 250ms ease,
    border-color 250ms ease;
}
.person:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}
.person .avatar {
  width: 110px;
  height: 110px;
  border-radius: 9999px;
  margin: 0 auto 16px;
  background: var(--inf-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.person .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop ~2% from each edge to hide a faint white halo on the source PNGs */
  transform: scale(1.04);
  transform-origin: center center;
}
.person .name {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.person .role {
  font-size: 13px;
  color: var(--inf-fg-3);
  margin: 4px 0 0 0;
}

.bg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}
.bg-pills .pill {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 13px;
  color: var(--inf-fg-2);
}

/* ============================================================
   CTA section
   ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
  padding: 56px 0 96px;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(122, 40, 203, 0.6), transparent);
  box-shadow: 0 0 10px rgba(122, 40, 203, 0.5);
}
.cta-title {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 auto 20px;
  max-width: 1000px;
  text-wrap: balance;
}
.cta-title .grad {
  background: var(--inf-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-section .cta-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--inf-fg-2);
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 48px auto 0;
  text-align: left;
}
.cta-steps .step {
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  text-align: center;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    transform 200ms ease;
}
.cta-steps .step:hover {
  border-color: rgba(0, 210, 255, 0.22);
  background: rgba(16, 16, 24, 0.7);
  transform: translateY(-2px);
}
.cta-steps .step .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.16), rgba(122, 40, 203, 0.18));
  border: 1px solid rgba(0, 210, 255, 0.22);
  box-shadow: inset 0 0 14px rgba(0, 210, 255, 0.1);
  margin: 0 auto 18px;
}
.cta-steps .step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--inf-fg-1);
  margin: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--inf-hairline-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  color: var(--inf-fg-3);
  max-width: 280px;
  line-height: 1.5;
  margin: 0;
}
.footer .shell {
  position: relative;
}
.footer-powered {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--inf-fg-2);
  text-decoration: none;
  padding: 6px 12px 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}
.footer-powered::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--inf-gradient-brand);
  box-shadow: 0 0 8px rgba(122, 40, 203, 0.6);
}
.footer-powered:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--inf-fg-3);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 14px;
  color: var(--inf-fg-2);
  transition: color 200ms ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: none;
}

/* ============================================================
   The Hard Problem grid (6 cards)
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-grid .card {
  padding: 24px;
}

/* Compact chip variant: icon left, title right, no description */
.problem-grid.compact {
  gap: 12px;
  margin-bottom: 48px;
}
.problem-grid.compact .card.chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(20, 20, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.problem-grid.compact .card.chip:hover {
  background: rgba(28, 28, 42, 0.85);
  border-color: rgba(0, 210, 255, 0.25);
}
.problem-grid.compact .card.chip .tile {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.16), rgba(122, 40, 203, 0.18));
  border: 1px solid rgba(0, 210, 255, 0.22);
  color: #fff;
  box-shadow: inset 0 0 12px rgba(0, 210, 255, 0.1);
}
.problem-grid.compact .card.chip.featured {
  background:
    linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.85)) padding-box,
    var(--inf-gradient-brand) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 40px rgba(122, 40, 203, 0.3);
}
.problem-grid.compact .card.chip.featured:hover {
  background:
    linear-gradient(rgba(14, 14, 22, 0.85), rgba(14, 14, 22, 0.85)) padding-box,
    var(--inf-gradient-brand) border-box;
}
.problem-grid.compact .card.chip.featured .tile {
  background: var(--inf-gradient-brand);
  border: 0;
  box-shadow: 0 0 18px rgba(122, 40, 203, 0.4);
}
.problem-grid.compact .card.chip h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
}

.bridge-lede {
  font-family: var(--inf-font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  color: var(--inf-fg-2);
  margin: 0 0 32px;
  max-width: 760px;
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.problem-grid .card h4 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 14px 0 8px;
  color: #fff;
  letter-spacing: -0.005em;
}
.problem-grid .card p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--inf-fg-2);
  margin: 0;
}

/* ============================================================
   Reveal animations on scroll
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Section dividers (glowing line)
   ============================================================ */
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(122, 40, 203, 0.4),
    rgba(0, 210, 255, 0.4),
    transparent
  );
  margin: 0 auto;
  max-width: 60%;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: rgba(3, 3, 5, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--inf-hairline-soft);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px;
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .cta-steps {
    grid-template-columns: 1fr;
  }
  .case-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-divider {
    display: none;
  }
  .trusted-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stage .float {
    display: none;
  }
  .case-wrap {
    padding: 28px;
  }
  section {
    padding: 80px 0;
  }
}

/* ============================================================
   Accessibility — skip link (visible only on keyboard focus)
   ============================================================ */

/* Visually-hidden utility (for h1 on pages with no visible hero title) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Heading-hierarchy shims
   Preserve visual sizes when tags are promoted from h4 → h3
   to fix outline skips, while the design stays at h4 dimensions.
   ============================================================ */

/* figure-row titles (was h4 @ 20px, now h3) */
.figure-row h3 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* chip titles in compact problem-grid (was h4 @ 16px, now h3) */
.problem-grid.compact .card.chip h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
}

/* testimonial block titles (was h4 @ 18px, now h3) */
.t-block h3 {
  font-family: var(--inf-font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

/* ============================================================
   Extracted-from-inline layout classes
   ============================================================ */

/* Hero title variant: slightly narrower clamp than section-title default */
.hero-title--home {
  font-size: clamp(42px, 5vw, 64px);
}

/* Platform divider scroll target */
.platform-divider--anchor {
  margin-top: 32px;
  scroll-margin-top: 80px;
}

/* Pillars row top margin override */
.pillars-row--hero {
  margin: 18px 0 0;
}

/* Platform subhead spacing override */
.platform-subhead--spaced {
  margin-top: 84px;
  margin-bottom: 0;
  max-width: 860px;
}

/* Section scroll target */
.section--scroll-target {
  scroll-margin-top: 80px;
}

/* Eyebrow centered with bottom margin */
.eyebrow--centered {
  margin: 0 auto 24px;
}

/* CTA actions row */
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* Address bar flex spacer */
.b-addr-grow {
  flex: 1;
}

/* Inline icon tint colors */
.icon-green {
  color: #28c840;
}
.icon-cyan {
  color: #00d2ff;
}

/* Hero actions top margin (404 page) */
.hero-actions--mt {
  margin-top: 32px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--inf-void, #0a0a0f);
  color: var(--inf-fg-1, #fff);
  border: 1px solid var(--inf-border-core, #1f1f2e);
  font:
    600 14px/1 var(--inf-font-sans, system-ui),
    sans-serif;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--inf-electric-blue, #00d2ff);
  outline-offset: 2px;
}
