/* =========================================================================
   AiOO — one-pager
   Premium animations & interactions
   ========================================================================= */

:root {
  --bg:           #0A0E10;
  --bg-2:         #141416;
  --bg-3:         #0B1218;
  --bg-seam:      #0B1218;
  --surface:      rgba(255, 255, 255, 0.02);
  --surface-2:    rgba(255, 255, 255, 0.04);
  --border:       rgba(255, 255, 255, 0.08);
  --border-hi:    rgba(255, 255, 255, 0.14);
  --border-cyan:  rgba(74, 243, 248, 0.30);

  --text:         #FFFFFF;
  --text-dim:     rgba(255, 255, 255, 0.62);
  --text-soft:    rgba(255, 255, 255, 0.78);
  --text-mute:    rgba(255, 255, 255, 0.45);

  --cyan:         #4AF3F8;
  --cyan-deep:    #2EC9D0;
  --cyan-glow:    rgba(74, 243, 248, 0.55);

  --container:    1124px;
  --side-pad:     32px;

  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono:    'Manrope', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius:       16px;
  --radius-lg:    28px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

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

html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: #0B1218;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Soft cross-section bleed — hides seams between section gradients */
.hero, .journeys, .engine, .opportunity, .page {
  position: relative;
}
.hero::after,
.journeys::before, .journeys::after,
.engine::before,  .engine::after,
.opportunity::before, .opportunity::after,
.page::before,    .page::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 140px;
  z-index: 2;
  pointer-events: none;
}
.hero::after,
.journeys::after,
.engine::after,
.opportunity::after,
.page::after {
  bottom: 0;
  background: linear-gradient(0deg, #0B1218 0%, rgba(11, 18, 24, 0) 100%);
}
.journeys::before,
.engine::before,
.opportunity::before,
.page::before {
  top: 0;
  background: linear-gradient(180deg, #0B1218 0%, rgba(11, 18, 24, 0) 100%);
}
.hero__inner,
.journeys > .container,
.engine__inner,
.opportunity__inner,
.page__inner { position: relative; z-index: 3; }

::selection { background: var(--cyan); color: #001214; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--side-pad);
}

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  /* room for descenders (g, y, p) + italic overhang */
  padding: 0.16em 0.08em 0.18em;
  margin: -0.16em -0.08em -0.18em;
}
.reveal-words .word__in {
  display: inline-block;
  transform: translate3d(0, 110%, 0);
  transition: transform 0.9s var(--ease-out);
}
.reveal-words.is-visible .word__in {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .reveal-words .word__in { transform: none; transition: none; }
}

/* -------------------------------------------------------------------------
   Eyebrows
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 12px;
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  background: rgba(74, 243, 248, 0.04);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.eyebrow::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(74, 243, 248, 0.18), transparent);
  transform: translateX(-100%);
  animation: eyebrowShimmer 3.4s var(--ease-in-out) infinite;
}
@keyframes eyebrowShimmer {
  0%, 60%, 100% { transform: translateX(-100%); }
  80% { transform: translateX(100%); }
}
.eyebrow--center { margin: 0 auto; align-self: center; }
.eyebrow--row {
  border: none; background: transparent; padding: 0;
  color: var(--cyan); letter-spacing: 0.2em; overflow: visible;
}
.eyebrow--row::before { display: none; }
.eyebrow--sm {
  font-size: 10px;
  letter-spacing: 0.22em;
  border: none; background: transparent;
  padding: 0; color: var(--text-soft); overflow: visible;
}
.eyebrow--sm::before { display: none; }
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
  flex-shrink: 0;
  animation: dotPulse 2.4s var(--ease-in-out) infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--cyan-glow), 0 0 14px var(--cyan-glow); }
  50%      { box-shadow: 0 0 0 8px rgba(74, 243, 248, 0), 0 0 24px var(--cyan-glow); }
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms var(--ease-out),
              background 200ms ease,
              border-color 200ms ease,
              box-shadow 300ms ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn--pill {
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--border-hi);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}
.btn--pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.btn--pill-lg {
  font-size: 15px;
  padding: 9px 9px 9px 22px;
}
.btn__icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  transition: transform 300ms var(--ease-out), background 200ms ease;
}
.btn--pill-lg .btn__icon { width: 38px; height: 38px; }
.btn__icon--cyan {
  background: var(--cyan);
  color: #001214;
  box-shadow: 0 0 28px rgba(74, 243, 248, 0.35);
}
.btn:hover .btn__icon { transform: translateX(3px); }
.btn:hover .btn__icon--cyan {
  box-shadow: 0 0 40px rgba(74, 243, 248, 0.55);
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}
.btn--shimmer:hover::after {
  transform: translateX(130%);
  transition: transform 900ms var(--ease-out);
}

/* -------------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding-block: 22px;
  transition: padding-block 280ms var(--ease-out),
              background 280ms ease,
              backdrop-filter 280ms ease,
              transform 380ms var(--ease-out),
              border-color 280ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(10, 14, 16, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.site-header.is-hidden { transform: translateY(-110%); }

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.header__logo img { height: 32px; width: auto; }
.header__nav { justify-self: center; }
.header__nav ul {
  display: flex;
  gap: 32px;
}
.header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.92;
  position: relative;
  transition: color 180ms ease;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease-out);
}
.header__nav a:hover { color: var(--cyan); }
.header__nav a:hover::after { transform: scaleX(1); }
.caret {
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.header__menu { display: none; }

/* -------------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
  background: #0B1218;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 92% 8%, rgba(34, 110, 145, 0.55), transparent 60%),
    radial-gradient(800px 600px at 8% 92%, rgba(40, 120, 160, 0.45), transparent 60%),
    radial-gradient(600px 400px at 50% 28%, rgba(74, 243, 248, 0.10), transparent 70%),
    linear-gradient(180deg, #0E1518 0%, #0B1218 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(60% 70% at 50% 35%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(60% 70% at 50% 35%, #000 0%, transparent 100%);
  opacity: 0.55;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
  transition: transform 1200ms var(--ease-out);
  will-change: transform;
}
.glow--tl {
  width: 700px; height: 700px;
  top: -240px; left: -260px;
  background: radial-gradient(circle, rgba(40, 90, 130, 0.55), transparent 65%);
}
.glow--br {
  width: 780px; height: 780px;
  bottom: -220px; right: -180px;
  background: radial-gradient(circle, rgba(50, 130, 180, 0.55), transparent 65%);
}
.glow--cr {
  width: 560px; height: 560px;
  top: 30%; right: 8%;
  background: radial-gradient(circle, rgba(74, 243, 248, 0.20), transparent 60%);
  filter: blur(140px);
  animation: glowFloat 14s var(--ease-in-out) infinite alternate;
}
@keyframes glowFloat {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  100% { transform: translate3d(-40px, 60px, 0) scale(1.1); opacity: 0.7; }
}

.hero__inner { position: relative; z-index: 2; }

.hero__headline {
  margin-top: 28px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 1000px;
}
.hero__headline .accent {
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 32px rgba(74, 243, 248, 0.28);
}
.hero__lede {
  margin-top: 28px;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.hero__bottom {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trusted-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Partners marquee */
.partners {
  margin-top: 26px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.partners__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.partners__track img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(1.05);
  opacity: 0.95;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners:hover .partners__track { animation-play-state: paused; }

.hero__video {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 1124 / 632;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}
.hero__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(10,14,16,0.4) 100%);
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   3 x CUSTOMER JOURNEYS
   ------------------------------------------------------------------------- */
.journeys {
  position: relative;
  background:
    radial-gradient(900px 500px at 95% 0%, rgba(34, 110, 145, 0.40), transparent 65%),
    radial-gradient(900px 500px at 5% 100%, rgba(40, 120, 160, 0.35), transparent 65%),
    #0B1218;
  padding-block: 80px 60px;
  overflow: hidden;
}
.journeys__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.journey-card {
  display: block;
  background:
    radial-gradient(380px circle at var(--mx, -100%) var(--my, -100%), rgba(74, 243, 248, 0.10), transparent 40%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px 28px;
  position: relative;
  transition: transform 380ms var(--ease-out),
              border-color 280ms ease,
              background 380ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.journey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 243, 248, 0.30);
}
.journey-card h3 {
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.journey-card h3 .accent-white {
  font-weight: 700;
  color: var(--text);
}
.journey-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-soft);
}
.journey-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 16px;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.journey-card:hover .journey-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.press-strip {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  padding: 20px 24px;
  transition: border-color 280ms ease, background 280ms ease;
}
.press-strip:hover {
  border-color: rgba(74, 243, 248, 0.25);
  background: rgba(74, 243, 248, 0.025);
}
.press-strip__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}
.press-strip__title {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.press-strip__link {
  color: var(--cyan);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: gap 240ms ease;
  display: inline-flex; gap: 6px;
}
.press-strip__link:hover { gap: 12px; }
.rss-icon { color: var(--cyan); }

/* -------------------------------------------------------------------------
   ABOUT THE ENGINE
   ------------------------------------------------------------------------- */
.engine {
  position: relative;
  padding-block: 120px;
  background:
    radial-gradient(1100px 700px at 95% 15%, rgba(34, 110, 145, 0.55), transparent 60%),
    radial-gradient(900px 600px at 5% 85%, rgba(40, 120, 160, 0.40), transparent 65%),
    radial-gradient(600px 400px at 50% 50%, rgba(74, 243, 248, 0.06), transparent 70%),
    #0B1218;
  overflow: hidden;
}
.engine__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-headline {
  margin-top: 26px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.12;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  max-width: 980px;
}
.section-headline .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 500;
}
.section-sub {
  margin-top: 22px;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.engine__grid {
  margin-top: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.engine-card {
  background:
    radial-gradient(420px circle at var(--mx, -100%) var(--my, -100%), rgba(74, 243, 248, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 30px 34px;
  text-align: left;
  min-height: 386px;
  display: flex;
  flex-direction: column;
  transition: transform 380ms var(--ease-out),
              border-color 280ms ease;
  position: relative;
  overflow: hidden;
}
.engine-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(74, 243, 248, 0.45), transparent 70%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.engine-card:hover {
  transform: translateY(-4px);
}
.engine-card:hover::before { opacity: 1; }

.engine-card__icon {
  width: 70px; height: 70px;
  margin-bottom: 60px;
}
.engine-card__icon img {
  width: 70px; height: 70px;
  object-fit: contain;
}
.engine-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.engine-card h3 .accent {
  color: var(--cyan);
  font-weight: 600;
}
.engine-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: auto;
}

/* -------------------------------------------------------------------------
   GLOBAL OPPORTUNITY
   ------------------------------------------------------------------------- */
.opportunity {
  position: relative;
  padding-block: 110px;
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(34, 110, 145, 0.55), transparent 60%),
    radial-gradient(900px 700px at 5% 100%, rgba(40, 120, 160, 0.40), transparent 60%),
    radial-gradient(700px 500px at 50% 80%, rgba(74, 243, 248, 0.08), transparent 70%),
    #0B1218;
  overflow: hidden;
}
.opportunity__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.opportunity .section-headline {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 300;
}
.opportunity .section-headline .accent {
  color: var(--cyan);
  font-weight: 500;
  font-style: normal;
}

.opportunity__stats {
  margin-top: 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
  position: relative;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-inline: 60px;
}
.stat--divider {
  border-left: 1px solid var(--border);
}
.stat__value {
  font-size: clamp(60px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  font-feature-settings: 'tnum' 1;
}
.stat__copy {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 350px;
}

/* -------------------------------------------------------------------------
   FINAL CTA
   ------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  padding-block: 140px 160px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.final-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(0deg, #0B1218 0%, rgba(11, 18, 24, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.final-cta::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 140px;
  background: linear-gradient(180deg, #0B1218 0%, rgba(11, 18, 24, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.final-cta__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.final-cta__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(10, 14, 16, 0.45), rgba(10, 14, 16, 0.75)),
    linear-gradient(180deg, rgba(10, 14, 16, 0.6), rgba(10, 14, 16, 0.4));
  z-index: -1;
}
.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
}
.final-cta__row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta__logo {
  display: inline-block;
  height: 0.85em;
  width: auto;
  vertical-align: -0.05em;
}
.final-cta__lede {
  margin-top: 22px;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
.final-cta .btn--pill {
  margin-top: 32px;
}

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-3);
  padding-block: 64px 28px;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer__brand img { width: 127px; height: auto; margin-bottom: 18px; }
.footer__brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}
.footer__col a {
  position: relative;
  transition: color 120ms ease;
}
.footer__col a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--cyan);
  transition: right 380ms var(--ease-out);
}
.footer__col a:hover { color: var(--cyan); }
.footer__col a:hover::after { right: 0; }

.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-hi);
  color: var(--text);
  transition: background 200ms var(--ease-out),
              color 200ms ease,
              border-color 200ms ease,
              transform 240ms var(--ease-out);
}
.socials a:hover {
  background: var(--cyan);
  color: #001012;
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.cities {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 84px;
  padding-block: 36px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  text-transform: lowercase;
}
.cities li {
  position: relative;
}
.cities li:not(:last-child)::after {
  content: '';
  width: 3px; height: 3px;
  background: var(--text-mute);
  border-radius: 50%;
  position: absolute;
  right: -42px; top: 50%;
  transform: translateY(-50%);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer__legal { display: inline-flex; gap: 12px; align-items: center; }
.footer__legal .sep { color: var(--text-mute); }
.footer__legal a { transition: color 160ms ease; }
.footer__legal a:hover { color: var(--cyan); }

/* -------------------------------------------------------------------------
   PAGE STUBS (for /platform, /about, etc.)
   ------------------------------------------------------------------------- */
.page {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.page__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 95% 10%, rgba(34, 110, 145, 0.55), transparent 60%),
    radial-gradient(900px 600px at 5% 90%, rgba(40, 120, 160, 0.40), transparent 65%),
    radial-gradient(600px 400px at 50% 50%, rgba(74, 243, 248, 0.08), transparent 70%),
    #0B1218;
}
.page__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
}
.page__eyebrow { margin-bottom: 22px; }
.page__title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
}
.page__title .accent {
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 32px rgba(74, 243, 248, 0.28);
}
.page__lede {
  margin-top: 26px;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.page__cta { margin-top: 38px; }
.page__note {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page__note .dot { animation: dotPulse 2.4s var(--ease-in-out) infinite; background: var(--cyan); width: 7px; height: 7px; border-radius: 50%; box-shadow: 0 0 12px var(--cyan-glow); }

/* -------------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --side-pad: 24px; }
  .header__nav { display: none; }
  .opportunity__stats { gap: 8px; }
  .stat { padding-inline: 24px; }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }
  .footer__socials { grid-column: 1 / -1; }
  .cities { gap: 56px; flex-wrap: wrap; }
  .cities li:not(:last-child)::after { right: -30px; }
}

@media (max-width: 768px) {
  .site-header { padding-block: 16px; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .header__cta span:not(.btn__icon) { display: none; }
  .header__cta { padding-left: 14px; }

  .hero { padding-top: 120px; padding-bottom: 80px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__bottom .btn { align-self: flex-end; }

  .journeys__grid { grid-template-columns: 1fr; }
  .press-strip { flex-direction: column; align-items: flex-start; }

  .engine__grid { grid-template-columns: 1fr; }
  .engine { padding-block: 80px; }
  .engine-card { min-height: auto; }
  .engine-card__icon { margin-bottom: 24px; }

  .opportunity__stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat--divider { border-left: none; border-top: 1px solid var(--border); padding-top: 40px; }

  .final-cta { padding-block: 100px 110px; }
  .final-cta__lede br { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .cities {
    gap: 24px 36px;
    justify-content: center;
  }
  .cities li:not(:last-child)::after { right: -20px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  :root { --side-pad: 18px; }
  .header__logo img { height: 26px; }
  .hero__video { aspect-ratio: 16 / 10; }
  .footer__grid { grid-template-columns: 1fr; }
  .stat { padding-inline: 0; }
}

/* =========================================================================
   V2 SECTIONS — D_Home new feedback
   ========================================================================= */

/* -------- Caption (Search. Social. Retail media.) ----------------------- */
.caption {
  padding-block: 80px;
  text-align: center;
  position: relative;
  background: #0B1218;
}
.caption__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: -0.01em;
}
.caption__text .accent {
  color: var(--cyan);
  font-weight: 600;
}

/* -------- Black Box (retail media chart) -------------------------------- */
.black-box {
  position: relative;
  padding-block: 100px 120px;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(34, 110, 145, 0.45), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(40, 120, 160, 0.35), transparent 65%),
    #0B1218;
}
.black-box__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.chart {
  margin-top: 60px;
  width: 100%;
  max-width: 880px;
  position: relative;
}
.chart__label {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
  font-feature-settings: 'tnum' 1;
}
.chart__bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  align-items: end;
  height: 220px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.chart__bars .bar {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.chart__bars .bar > span {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: height;
}
.chart__bars .bar--accent > span {
  background: linear-gradient(180deg, var(--cyan), rgba(74, 243, 248, 0.35));
  box-shadow: 0 0 24px rgba(74, 243, 248, 0.30);
}
.chart__bars.is-visible .bar > span {
  height: var(--h);
}
.chart__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

.bb-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 760px;
  padding-block: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bb-stat__value {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  font-feature-settings: 'tnum' 1;
}
.bb-stat--dim .bb-stat__value { color: var(--text-mute); }
.bb-stat__copy {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 280px;
  text-align: center;
}

.bb-note {
  margin-top: 56px;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.bb-note .accent-soft { color: var(--cyan); }

/* -------- Capabilities (3 icon cards) ----------------------------------- */
.capabilities {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 95% 15%, rgba(34, 110, 145, 0.40), transparent 60%),
    radial-gradient(900px 600px at 5% 85%, rgba(40, 120, 160, 0.30), transparent 65%),
    #0B1218;
}
.capabilities__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cap__grid {
  margin-top: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}
.cap-card {
  background:
    radial-gradient(420px circle at var(--mx, -100%) var(--my, -100%), rgba(74, 243, 248, 0.10), transparent 45%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: transform 380ms var(--ease-out), border-color 280ms ease;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(74, 243, 248, 0.45), transparent 70%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.cap-card:hover { transform: translateY(-4px); }
.cap-card:hover::before { opacity: 1; }
.cap-card__icon {
  width: 64px; height: 64px;
  margin-bottom: 48px;
}
.cap-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.cap-card h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.cap-card h3 .accent { color: var(--cyan); font-weight: 600; }
.cap-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: auto;
}

/* -------- Physical Advantage -------------------------------------------- */
.physical {
  position: relative;
  padding-block: 110px 130px;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(34, 110, 145, 0.50), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(40, 120, 160, 0.35), transparent 65%),
    radial-gradient(700px 500px at 50% 80%, rgba(74, 243, 248, 0.08), transparent 70%),
    #0B1218;
}
.physical__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.physical__quote {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 960px;
  border: 1px solid var(--border-hi);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 48px;
}
.physical__quote-left {
  text-align: left;
}
.physical__quote-h {
  font-size: clamp(24px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.physical__quote-from {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--text-mute);
}
.physical__quote-divider {
  width: 1px;
  height: 100%;
  min-height: 80px;
  background: var(--border-hi);
}
.physical__quote-body {
  text-align: left;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  font-style: italic;
}

/* -------- Built for the people who own the shelf ----------------------- */
.built {
  position: relative;
  padding-block: 110px;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 95% 15%, rgba(34, 110, 145, 0.45), transparent 60%),
    radial-gradient(900px 600px at 5% 85%, rgba(40, 120, 160, 0.35), transparent 65%),
    #0B1218;
}
.built__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.built__grid {
  margin-top: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}
.built-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: transform 380ms var(--ease-out), border-color 280ms ease, background 280ms ease;
  position: relative;
}
.built-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 243, 248, 0.30);
  background: rgba(74, 243, 248, 0.025);
}
.built-card .eyebrow {
  margin-bottom: 6px;
  color: var(--cyan);
}
.built-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.built-card h3 .accent { color: var(--cyan); font-weight: 600; }
.built-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: auto;
}

/* -------- Manifesto ----------------------------------------------------- */
.manifesto {
  position: relative;
  padding-block: 140px;
  text-align: center;
  background: #0B1218;
  overflow: hidden;
}
.manifesto::before, .manifesto::after {
  content: '';
  position: absolute; left: 50%;
  width: 1200px; height: 1200px;
  border-radius: 50%;
  pointer-events: none;
}
.manifesto::before {
  top: -300px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(34, 110, 145, 0.35), transparent 60%);
  filter: blur(80px);
}
.manifesto::after {
  bottom: -300px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(74, 243, 248, 0.08), transparent 60%);
  filter: blur(80px);
}
.manifesto__inner { position: relative; z-index: 1; }
.manifesto__headline {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto;
}
.manifesto__headline .accent { color: var(--cyan); font-weight: 500; }

/* -------- Contact form -------------------------------------------------- */
.contact {
  position: relative;
  padding-block: 110px 130px;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(34, 110, 145, 0.40), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(40, 120, 160, 0.30), transparent 65%),
    #0B1218;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact__left { padding-top: 20px; }
.contact__left .eyebrow { margin-bottom: 20px; }
.contact__left .section-headline {
  font-size: clamp(34px, 4vw, 52px);
  text-align: left;
}
.contact__left .section-headline .accent {
  color: var(--cyan);
  font-weight: 500;
  font-style: normal;
}
.contact__left .section-sub {
  text-align: left;
  margin-left: 0;
  max-width: 460px;
  margin-top: 20px;
}

.contact__form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field__label em {
  color: var(--cyan);
  font-style: normal;
  margin-left: 6px;
}
.field input,
.field textarea {
  font: inherit;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }
.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  background: rgba(74, 243, 248, 0.04);
}
.contact__note {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 4px;
}
.btn--cta {
  align-self: flex-start;
  margin-top: 8px;
  position: relative;
}
.btn__loader {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #001214;
  border-radius: 50%;
  margin-left: 4px;
  animation: spin 0.8s linear infinite;
}
.btn--cta.is-loading .btn__loader { display: inline-block; }
.btn--cta.is-loading .btn__icon { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact__result {
  font-size: 13px;
  min-height: 20px;
  margin-top: 4px;
}
.contact__result.is-success { color: var(--cyan); }
.contact__result.is-error { color: #ff7373; }

/* -------- Footer V2 ------------------------------------------------------ */
.site-footer .footer__inner { display: block; padding: 0; }
.site-footer .footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-block: 48px 36px;
  border-bottom: none;
}
.footer__brand { display: inline-block; }
.footer__tag {
  color: var(--text-dim);
  font-size: 13px;
  max-width: 480px;
  line-height: 1.6;
}
.site-footer .cities {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.site-footer .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 22px;
  margin-top: 0;
  border-top: none;
}
.footer__legal a {
  color: var(--text-dim);
  transition: color 160ms ease;
}
.footer__legal a:hover { color: var(--cyan); }
.footer__socials {
  display: inline-flex;
  gap: 8px;
}

/* -------- Responsive — V2 ------------------------------------------------ */
@media (max-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .built__grid, .cap__grid { grid-template-columns: 1fr 1fr; }
  .cap__grid > .cap-card:nth-child(3) { grid-column: 1 / -1; }
  .physical__quote { grid-template-columns: 1fr; padding: 32px; }
  .physical__quote-divider { display: none; }
  .physical__quote-body { padding-top: 24px; border-top: 1px solid var(--border-hi); }
}
@media (max-width: 768px) {
  .built__grid, .cap__grid { grid-template-columns: 1fr; }
  .cap__grid > .cap-card:nth-child(3) { grid-column: auto; }
  .bb-stats { grid-template-columns: 1fr; gap: 28px; }
  .chart__bars { height: 160px; gap: 6px; }
  .field-row { grid-template-columns: 1fr; }
  .black-box, .capabilities, .physical, .built, .manifesto, .contact { padding-block: 80px; }
  .caption { padding-block: 56px; }
  .site-footer .footer__bottom { justify-content: center; text-align: center; }
}

/* -------- Privacy / Legal pages ----------------------------------------- */
.legal {
  padding-top: 130px;
  padding-bottom: 100px;
  min-height: 100vh;
}
.legal__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 40px;
}
.legal__head {
  text-align: center;
  margin-bottom: 60px;
}
.legal__head .eyebrow { margin-bottom: 22px; }
.legal__head .page__title {
  font-size: clamp(40px, 5.5vw, 76px);
  margin-bottom: 18px;
  font-weight: 500;
}
.legal__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal__body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 44px;
}
.legal__body section {
  padding-block: 22px;
  border-bottom: 1px solid var(--border);
}
.legal__body section:first-child { padding-top: 6px; }
.legal__body section:last-child { border-bottom: none; padding-bottom: 6px; }
.legal__body h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.legal__body p,
.legal__body li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.legal__body p:last-child,
.legal__body li:last-child { margin-bottom: 0; }
.legal__body ul {
  margin: 4px 0 14px;
  padding-left: 0;
  list-style: none;
}
.legal__body li {
  position: relative;
  padding-left: 22px;
}
.legal__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__link {
  color: var(--cyan);
  border-bottom: 1px solid rgba(74, 243, 248, 0.4);
  transition: border-color 200ms ease, color 200ms ease;
}
.legal__link:hover { border-bottom-color: var(--cyan); }
.legal__back {
  margin: 50px auto 0;
  display: inline-flex;
  align-self: center;
}
.legal__inner > .legal__back {
  display: block;
  width: max-content;
  margin: 50px auto 0;
}

@media (max-width: 768px) {
  .legal__body { padding: 28px 24px; }
  .legal { padding-top: 100px; padding-bottom: 80px; }
}

/* =========================================================================
   V2.1 — Faithful design fidelity
   ========================================================================= */

/* -------- Outlined/stroke text effect ----------------------------------- */
.hero__headline-stroke,
.section-headline .hero__headline-stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
  text-stroke: 1px rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Hero CTA pair */
.hero__ctas {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__ctas .btn--pill {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
}

/* Trusted label below CTAs */
.hero .trusted-label {
  margin-top: 64px;
  display: block;
}

/* Hide old hero__bottom layout */
.hero__bottom { display: none; }

/* -------- Video section (separate from hero) --------------------------- */
.video-section {
  background: #0B1218;
  padding-block: 0 80px;
  position: relative;
}
.video-section .hero__video {
  margin-top: 0;
}

/* -------- Caption "A NEW CATEGORY / Search. Social. Retail media." ------ */
.caption {
  padding-block: 100px 80px;
  text-align: center;
  background: #0B1218;
}
.caption__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.caption__text {
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.caption__faded {
  color: rgba(255, 255, 255, 0.28);
}
.caption__text .accent {
  color: var(--cyan);
  font-weight: 600;
}

/* -------- €200B Chart Card ---------------------------------------------- */
.chart-card {
  margin-top: 56px;
  width: 100%;
  max-width: 880px;
  background:
    radial-gradient(60% 60% at 90% 0%, rgba(74, 243, 248, 0.06), transparent 70%),
    radial-gradient(60% 60% at 10% 100%, rgba(34, 110, 145, 0.10), transparent 70%),
    #0E1518;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 48px 36px;
}
.chart-card__value {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  font-feature-settings: 'tnum' 1;
}
.chart-card__sub {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-bottom: 30px;
}
.chart-card__bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: end;
  height: 160px;
}
.chart-card__bars .bar {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.chart-card__bars .bar > span {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: height;
}
.chart-card__bars .bar--accent > span {
  background: linear-gradient(180deg, var(--cyan), rgba(74, 243, 248, 0.30));
  box-shadow: 0 0 24px rgba(74, 243, 248, 0.25);
}
.chart-card__bars.is-visible .bar > span { height: var(--h); }
.chart-card__axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  text-align: center;
}

/* -------- Black Box stats (V2.1 card style) ----------------------------- */
.bb-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
  max-width: 880px;
  border: none;
  padding: 0;
}
.bb-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  text-align: left;
}
.bb-stat__value {
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
  font-feature-settings: 'tnum' 1;
}
.bb-stat__value--dim { color: var(--text); }
.bb-stat__label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
}
.bb-stat__copy {
  font-size: 12.5px;
  color: var(--cyan);
  line-height: 1.55;
  max-width: none;
  text-align: left;
}

/* -------- Black Box quote ----------------------------------------------- */
.bb-quote {
  margin-top: 48px;
  width: 100%;
  max-width: 880px;
  text-align: left;
  padding-left: 24px;
  border-left: 3px solid var(--cyan);
  box-shadow: -8px 0 24px rgba(74, 243, 248, 0.08);
}
.bb-quote p {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.bb-quote p .accent {
  color: var(--cyan);
  font-weight: 600;
}
.bb-quote footer {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.bb-quote footer span {
  color: var(--text-soft);
  font-weight: 500;
}

/* -------- Built for: eyebrow inside card uses dot too -------------------- */
.built-card .eyebrow {
  align-self: flex-start;
  background: rgba(74, 243, 248, 0.06);
  padding: 6px 12px;
  border: 1px solid var(--border-cyan);
}

/* -------- Footer V2.1 (brand left, socials right, then cities, then bottom) */
.site-footer { padding-block: 0; background: #0B1218; }
.site-footer .footer__inner { display: block; padding: 0; }
.site-footer .footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 48px 36px;
  text-align: left;
  border-bottom: none;
}
.footer__brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand img { margin: 0; }
.footer__tag {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
  max-width: 320px;
}
.footer__socials {
  display: inline-flex;
  gap: 10px;
}
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hi);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 240ms var(--ease-out);
}
.footer__socials a:hover {
  background: var(--cyan);
  color: #001214;
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.site-footer .cities {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 24px;
}
.site-footer .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 22px 26px;
  margin: 0;
  border-top: none;
  font-size: 12px;
  color: var(--text-dim);
}
.footer__copy { color: var(--text-soft); }

/* -------- Contact form V2.1 -------------------------------------------- */
.contact { padding-block: 110px 0; }
.contact__inner {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
}
.contact__left {
  position: sticky;
  top: 110px;
}
.contact__left .section-headline {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}
.contact__left .section-headline .accent { color: var(--text); font-weight: 500; font-style: normal; }
.contact__left .section-sub { color: var(--text-soft); }

.contact__form {
  background: #15171A;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 28px 28px 30px;
  gap: 14px;
}
.field__label {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.field__label em {
  color: var(--text-mute);
  font-style: normal;
  font-weight: 400;
  margin-left: 4px;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  padding: 12px 14px;
  background: #1C1F23;
  border: 1px solid #2A2E33;
  border-radius: 10px;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2.5 4.5l3.5 3.5 3.5-3.5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field select option {
  background: #15171A;
  color: var(--text);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.30); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  background: #1F2326;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 4px;
  position: relative;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox__box {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1px solid #2E3338;
  background: #1C1F23;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease;
}
.checkbox input:checked + .checkbox__box {
  background: var(--cyan);
  border-color: var(--cyan);
}
.checkbox input:checked + .checkbox__box::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #001214;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox__text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-soft);
}

/* Solid cyan CTA button (Request Demo) */
.btn--cta-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--cyan);
  color: #001214;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  transition: background 180ms ease, transform 200ms var(--ease-out), box-shadow 280ms ease;
}
.btn--cta-solid::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.30) 50%, transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}
.btn--cta-solid:hover {
  background: #6BFAFE;
  box-shadow: 0 8px 30px rgba(74, 243, 248, 0.35);
  transform: translateY(-1px);
}
.btn--cta-solid:hover::after {
  transform: translateX(130%);
  transition: transform 900ms var(--ease-out);
}
.btn--cta-solid .btn__loader {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #001214;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn--cta-solid.is-loading .btn__loader { display: inline-block; }
.btn--cta-solid.is-loading .btn__text { opacity: 0.6; }
.btn--cta-solid:disabled { cursor: not-allowed; opacity: 0.85; }

/* -------- Responsive V2.1 ----------------------------------------------- */
@media (max-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__left { position: static; }
  .caption__text { gap: 14px; font-size: clamp(32px, 6vw, 56px); }
}
@media (max-width: 768px) {
  .hero__ctas .btn--pill { flex: 1 1 auto; justify-content: space-between; }
  .chart-card { padding: 28px 24px; }
  .bb-stats { grid-template-columns: 1fr; }
  .site-footer .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .site-footer .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .caption__text { flex-direction: column; gap: 8px; align-items: center; }
}

/* =========================================================================
   V2.2 — Feedback-driven fixes
   ========================================================================= */

/* 1. Header — logo left / button far right */
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .header__nav { display: none; }
.site-header .header__menu { display: none; }
.site-header .header__cta { margin-left: auto; }

/* 2. Eyebrow — switch font from JetBrains Mono to Manrope */
.eyebrow,
.eyebrow--row,
.eyebrow--sm {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.16em;
}
.field__label { font-family: var(--font-display); }

/* 3. Big numbers in bold */
.chart-card__value,
.bb-stat__value,
.bb-stat__value--dim {
  font-weight: 700;
}
.hero__headline { font-weight: 600; }
.hero__headline .accent { font-weight: 700; }
.section-headline { font-weight: 600; }
.section-headline .accent { font-weight: 700; font-style: normal; }
.manifesto__headline { font-weight: 500; }
.manifesto__headline .accent { font-weight: 700; }

/* 4. Caption — size like other section headlines, all words white except accent */
.caption {
  padding-block: 110px 80px;
}
.caption__text {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  display: block;
  text-align: center;
}
.caption__text .accent {
  color: var(--cyan);
  font-weight: 700;
}
/* Reset the old caption span styles */
.caption__faded { color: var(--text) !important; }
.caption__inner .section-sub {
  max-width: 620px;
  margin-top: 22px;
}

/* 5. Cross-section gradient bleed using user colors:
      #4AF3F8 (cyan)  #0025CE (blue)  #4AF3F8 ~51% alpha */
:root {
  --grad-cyan:      #4AF3F8;
  --grad-cyan-soft: rgba(74, 243, 248, 0.51);
  --grad-blue:      #0025CE;
}

/* Subtle full-page background overlay using the 3 colors */
body {
  background:
    radial-gradient(1400px 800px at 100% 0%, rgba(74, 243, 248, 0.10), transparent 55%),
    radial-gradient(1200px 800px at 0% 25%, rgba(0, 37, 206, 0.18), transparent 60%),
    radial-gradient(1400px 800px at 100% 55%, rgba(74, 243, 248, 0.08), transparent 60%),
    radial-gradient(1200px 700px at 0% 80%, rgba(0, 37, 206, 0.14), transparent 60%),
    #0A0E10;
  background-attachment: fixed;
}

/* Make section bases transparent so the body gradient shows through */
.hero,
.video-section,
.caption,
.black-box,
.capabilities,
.physical,
.built,
.manifesto,
.contact,
.site-footer {
  background-color: transparent;
}

/* Overrride section gradient backgrounds — keep them but tint with user colors */
.hero {
  background:
    radial-gradient(900px 600px at 92% 8%, rgba(74, 243, 248, 0.18), transparent 60%),
    radial-gradient(900px 600px at 8% 92%, rgba(0, 37, 206, 0.32), transparent 60%),
    radial-gradient(700px 500px at 50% 50%, rgba(74, 243, 248, 0.06), transparent 70%),
    transparent;
}
.black-box {
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(74, 243, 248, 0.14), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(0, 37, 206, 0.30), transparent 60%),
    transparent;
}
.capabilities {
  background:
    radial-gradient(1100px 700px at 95% 15%, rgba(74, 243, 248, 0.12), transparent 60%),
    radial-gradient(900px 600px at 5% 85%, rgba(0, 37, 206, 0.28), transparent 60%),
    transparent;
}
.physical {
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(74, 243, 248, 0.16), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(0, 37, 206, 0.30), transparent 60%),
    radial-gradient(700px 500px at 50% 80%, rgba(74, 243, 248, 0.08), transparent 70%),
    transparent;
}
.built {
  background:
    radial-gradient(1100px 700px at 95% 15%, rgba(74, 243, 248, 0.14), transparent 60%),
    radial-gradient(900px 600px at 5% 85%, rgba(0, 37, 206, 0.28), transparent 60%),
    transparent;
}
.contact {
  background:
    radial-gradient(1100px 700px at 95% 0%, rgba(74, 243, 248, 0.12), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(0, 37, 206, 0.26), transparent 60%),
    transparent;
}

/* Cross-section linear fade (replaces #0B1218 with transparent so the body gradient flows) */
.hero::after,
.journeys::before, .journeys::after,
.engine::before,  .engine::after,
.opportunity::before, .opportunity::after,
.page::before,    .page::after {
  background: none !important;
}

/* Footer transparent so body gradient flows */
.site-footer { background: transparent; }
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
  z-index: 0;
  pointer-events: none;
}
.site-footer .footer__inner { position: relative; z-index: 1; }
.site-footer { position: relative; }

/* 6. Hero solid white headline (no stroke) — already set, just enforce */
.hero__headline { color: var(--text); }

/* 7. Reduce caption padding spec since size shrunk */
.caption__inner { gap: 24px; }

/* =========================================================================
   V2.3 — Truly seamless gradient + footer match + manifesto eyebrow
   ========================================================================= */

/* Kill ALL per-section radial-gradient layers — body owns the entire gradient */
.hero, .video-section, .caption, .black-box, .capabilities,
.physical, .built, .manifesto, .contact, .page, .legal {
  background: transparent !important;
}

/* Remove any seam-fade overlays */
.hero::after,
.journeys::before, .journeys::after,
.engine::before,  .engine::after,
.opportunity::before, .opportunity::after,
.page::before,    .page::after,
.final-cta::before, .final-cta::after {
  display: none !important;
}

/* Manifesto pseudo glows — keep subtle but transparent base */
.manifesto::before, .manifesto::after { display: block; }

/* Restore body gradient with the 3 user colors — fixed, full page */
body {
  background:
    radial-gradient(1500px 900px at 100% 0%,  rgba(74, 243, 248, 0.14) 0%, transparent 55%),
    radial-gradient(1200px 800px at 0% 18%,   rgba(0, 37, 206, 0.28)  0%, transparent 55%),
    radial-gradient(1300px 800px at 100% 40%, rgba(74, 243, 248, 0.10) 0%, transparent 55%),
    radial-gradient(1200px 800px at 0% 60%,   rgba(0, 37, 206, 0.24)  0%, transparent 55%),
    radial-gradient(1500px 900px at 100% 80%, rgba(74, 243, 248, 0.12) 0%, transparent 55%),
    radial-gradient(1200px 700px at 0% 100%,  rgba(0, 37, 206, 0.20)  0%, transparent 55%),
    #0A0E10 !important;
  background-attachment: fixed !important;
}

/* Manifesto inner spacing for the new eyebrow + sub text */
.manifesto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.manifesto .section-sub {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
}
.manifesto .section-sub .accent-soft { color: var(--cyan); }

/* ---- FOOTER V2.3 — match section 9 PNG exactly --------------------------- */
.site-footer {
  background: transparent !important;
  padding-block: 0 !important;
  margin-top: 80px;
  position: relative;
}
.site-footer::before { display: none; }

.site-footer .footer__inner {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.site-footer .footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px 40px;
  border-bottom: none;
  text-align: left;
}
.footer__brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer__brand img { height: 28px; width: auto; }
.footer__tag {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 260px;
  margin: 0;
}

/* Black filled socials */
.footer__socials {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__socials li { margin: 0; }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease, transform 240ms var(--ease-out);
}
.footer__socials a:hover {
  background: var(--cyan) !important;
  color: #001214 !important;
  transform: translateY(-2px);
}

/* Bottom row: cities left, © + Privacy right, single line */
.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.site-footer .cities {
  display: flex;
  gap: 36px;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0;
  list-style: none;
}
.site-footer .cities li { position: relative; padding-right: 0; }
.site-footer .cities li:not(:last-child)::after {
  content: '';
  width: 3px; height: 3px;
  background: var(--text-mute);
  border-radius: 50%;
  position: absolute;
  right: -22px; top: 50%;
  transform: translateY(-50%);
}
.footer__legal-row {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  color: var(--text-dim);
}
.footer__copy { color: var(--text-dim); }
.footer__legal-link {
  color: var(--text-dim);
  transition: color 160ms ease;
}
.footer__legal-link:hover { color: var(--cyan); }

@media (max-width: 768px) {
  .site-footer .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__bottom-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-footer .cities { flex-wrap: wrap; gap: 16px 36px; }
}

/* =========================================================================
   V2.4 — Kill ALL section-bound glows (true seamless)
   ========================================================================= */

/* Hero internal glows clipped by hero's overflow:hidden create visible cuts */
.hero__bg,
.hero__bg .glow,
.hero__bg .glow--tl,
.hero__bg .glow--br,
.hero__bg .glow--cr,
.hero__grid {
  display: none !important;
}

/* Manifesto pseudo-glows also clipped — kill them */
.manifesto,
.manifesto::before,
.manifesto::after {
  /* don't break content, just remove the glow */
}
.manifesto::before,
.manifesto::after {
  display: none !important;
}

/* Remove overflow:hidden from sections — they only existed to clip the inner glows */
.hero,
.manifesto,
.capabilities,
.physical,
.built,
.contact,
.black-box,
.journeys,
.engine,
.opportunity {
  overflow: visible !important;
}

/* Keep partners marquee + chart bars contained */
.partners,
.chart-card,
.chart-card__bars {
  overflow: hidden;
}

/* Manifesto inner spacing tweak with new content */
.manifesto { padding-block: 140px; }
.manifesto__inner { gap: 24px; }

/* =========================================================================
   V2.5 — Custom video controls (mute + fullscreen)
   ========================================================================= */
.hero__video { position: relative; }

.video-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
  pointer-events: none;
}
.hero__video:hover .video-controls,
.hero__video:focus-within .video-controls,
.video-controls.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (hover: none) {
  .video-controls { opacity: 1; transform: none; pointer-events: auto; }
}

.video-controls__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 200ms var(--ease-out);
}
.video-controls__btn:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-1px);
}
.video-controls__btn .vc-icon { display: none; }
.video-controls__btn[data-action="mute"] .vc-icon--muted { display: block; }
.video-controls__btn[data-action="mute"].is-unmuted .vc-icon--muted { display: none; }
.video-controls__btn[data-action="mute"].is-unmuted .vc-icon--unmuted { display: block; }
.video-controls__btn[data-action="fullscreen"] .vc-icon--enter { display: block; }
.video-controls__btn[data-action="fullscreen"].is-fs .vc-icon--enter { display: none; }
.video-controls__btn[data-action="fullscreen"].is-fs .vc-icon--exit { display: block; }

/* When in native fullscreen, scale controls up so they're tappable */
.hero__video:-webkit-full-screen .video-controls,
.hero__video:fullscreen .video-controls {
  right: 28px; bottom: 28px; opacity: 1; transform: none; pointer-events: auto;
}
.hero__video:-webkit-full-screen .video-controls__btn,
.hero__video:fullscreen .video-controls__btn {
  width: 48px; height: 48px;
}
.hero__video:-webkit-full-screen video,
.hero__video:fullscreen video {
  width: 100%; height: 100%; object-fit: contain;
  background: #000;
}
