:root {
  --bg: #05070b;
  --panel: rgba(10, 15, 25, 0.75);
  --text: #ffffff;
  --muted: #b8c0cc;
  --blue: #2684ff;
  --violet: #7c3aed;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --header-h: 4.75rem;
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

body.nav-open {
  overflow: hidden;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.85rem var(--gutter);
  background: transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.7rem;
  z-index: 3;
}

.brand img {
  width: 1.75rem;
  height: 1.75rem;
}

.brand span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.7rem;
}

.site-nav > a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s var(--ease);
}

.site-nav > a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  min-width: 2.6rem;
  margin-left: auto;
  position: relative;
  z-index: 3;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle span {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 1.75px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle span:nth-child(1) { top: 0.85rem; }
.nav-toggle span:nth-child(2) { top: 1.2rem; }
.nav-toggle span:nth-child(3) { top: 1.55rem; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.35rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.35rem) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-nav {
  padding: 0.52rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.03);
}

.btn-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-primary {
  padding: 0.9rem 1.25rem;
  border-radius: 11px;
  font-size: 0.94rem;
  color: var(--text);
  background: linear-gradient(90deg, var(--blue), var(--violet));
  box-shadow: 0 8px 24px rgba(38, 132, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  box-shadow: 0 12px 32px rgba(38, 132, 255, 0.28);
}

.btn-ghost {
  padding: 0.9rem 0.35rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-ghost svg {
  transition: transform 0.25s var(--ease);
}

.btn-ghost:hover svg {
  transform: translateY(2px);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.82) 0%, rgba(5, 7, 11, 0.48) 38%, rgba(5, 7, 11, 0.22) 62%, rgba(5, 7, 11, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0.12) 28%, rgba(5, 7, 11, 0.18) 58%, rgba(5, 7, 11, 0.88) 100%);
}

.cv-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cv-brackets {
  position: absolute;
  left: 46%;
  top: 36%;
  width: min(28vw, 320px);
  height: min(24vw, 230px);
  will-change: transform;
}

.cv-brackets i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.72);
  border-style: solid;
}

.cv-brackets .tl { top: 0; left: 0; border-width: 1.5px 0 0 1.5px; }
.cv-brackets .tr { top: 0; right: 0; border-width: 1.5px 1.5px 0 0; }
.cv-brackets .bl { bottom: 0; left: 0; border-width: 0 0 1.5px 1.5px; }
.cv-brackets .br { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }

.rec-chip {
  display: none;
  position: absolute;
  top: calc(var(--header-h) + 0.6rem);
  right: var(--gutter);
  z-index: 3;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 1.5rem;
}

.hero-copy {
  max-width: 38rem;
  animation: fade-up 0.9s var(--ease) 0.08s both;
}

.hero-copy h1 {
  font-size: clamp(2.45rem, 5.6vw, 4.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.accent {
  background: linear-gradient(90deg, var(--blue) 0%, #5b8cff 42%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin-top: 1.15rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
  margin-top: 1.85rem;
}

/* Metadata panel */

.meta-panel {
  width: min(100%, 272px);
  flex-shrink: 0;
  padding: 1rem 1.1rem 0.85rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  animation: fade-up 1s var(--ease) 0.28s both;
  will-change: transform;
}

.meta-rec {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.45);
  animation: rec-pulse 1.8s ease-in-out infinite;
}

.meta-list {
  display: grid;
  gap: 0.55rem;
}

.meta-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.meta-list dt {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.78);
}

.meta-list dt svg {
  width: 13px;
  height: 13px;
  opacity: 0.8;
}

.meta-list dd {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Bottom band */

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 1.15rem;
  animation: fade-up 1s var(--ease) 0.46s both;
}

.audience-band {
  padding: 1.05rem 1.35rem 1.2rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.audience-kicker {
  margin-bottom: 0.95rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.audience-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.35rem;
  min-width: 0;
}

.audience-grid svg {
  width: 22px;
  height: 22px;
  color: #9ec2ff;
  margin-bottom: 0.2rem;
}

.audience-grid h2 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.audience-grid p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-epigraph {
  margin-top: 1.05rem;
  text-align: center;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #8eb8ff 0%, #c4b5fd 38%, var(--blue) 72%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Motion */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rec-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.45);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 6px rgba(255, 59, 59, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-copy,
  .meta-panel,
  .hero-bottom,
  .rec-dot {
    animation: none !important;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .site-nav {
    gap: 1.15rem;
  }

  .cv-brackets {
    left: 42%;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.35rem;
    background: rgba(5, 7, 11, 0.97);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.btn) {
    font-size: 1.2rem;
  }

  .btn-nav {
    margin-top: 0.5rem;
    padding: 0.8rem 1.3rem;
  }

  .hero-stage {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 1.25rem;
  }

  .meta-panel {
    display: none;
  }

  .rec-chip {
    display: inline-flex;
  }

  .cv-layer {
    display: none;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem 1.25rem;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .lede br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .rec-chip {
    display: none;
  }

  .hero-bottom {
    padding-bottom: 1.4rem;
  }

  .hero-epigraph {
    letter-spacing: 0.08em;
    font-size: 0.64rem;
    line-height: 1.7;
    padding: 0 0.5rem;
  }
}

@media (max-height: 820px) and (min-width: 961px) {
  .hero-copy h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  }

  .lede {
    margin-top: 0.85rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-stage {
    padding-top: calc(var(--header-h) + 0.85rem);
    padding-bottom: 0.85rem;
  }

  .audience-band {
    padding: 0.85rem 1.2rem 1rem;
  }
}

@media (max-width: 520px) {
  .audience-band {
    padding: 1rem 1rem 1.1rem;
  }

  .audience-grid {
    gap: 1rem 0.9rem;
  }

  .audience-grid h2 {
    font-size: 0.86rem;
  }

  .audience-grid p {
    font-size: 0.76rem;
  }
}

/* Data Gap */

.data-gap {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter) clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(ellipse 55% 45% at 78% 58%, rgba(38, 132, 255, 0.07), transparent 62%),
    radial-gradient(ellipse 40% 40% at 18% 30%, rgba(124, 58, 237, 0.04), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.data-gap-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.data-gap-intro,
.world--digital,
.world--physical,
.data-gap-capture,
.data-gap-close {
  opacity: 1;
  transform: none;
}

.data-gap.is-ready .data-gap-intro,
.data-gap.is-ready .world--digital,
.data-gap.is-ready .world--physical,
.data-gap.is-ready .data-gap-capture,
.data-gap.is-ready .data-gap-close {
  opacity: 0;
  transform: translateY(22px);
}

.data-gap.is-inview .data-gap-intro {
  animation: fade-up 0.85s var(--ease) 0.05s both;
}

.data-gap.is-inview .world--digital {
  animation: fade-up 0.85s var(--ease) 0.28s both;
}

.data-gap.is-inview .world--physical {
  animation: fade-up 0.85s var(--ease) 0.58s both;
}

.data-gap.is-inview .data-gap-capture {
  animation: fade-up 0.9s var(--ease) 0.92s both;
}

.data-gap.is-inview .data-gap-close {
  animation: fade-up 0.85s var(--ease) 1.12s both;
}

.data-gap-intro {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.data-gap-kicker {
  margin-bottom: 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.data-gap-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.data-gap-lead {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--muted);
}

.data-gap-emphasis {
  display: block;
}

.data-gap-copy {
  margin-top: 1.35rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.worlds {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.world {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.world--digital {
  background: rgba(10, 15, 25, 0.52);
  border-color: rgba(255, 255, 255, 0.08);
}

.world--physical {
  border-color: rgba(38, 132, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(38, 132, 255, 0.07);
}

.world-kicker {
  margin-bottom: 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.82);
}

.world-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}

.world-sources li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(184, 192, 204, 0.92);
}

.world-sources svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}

.world--digital .world-sources li {
  color: rgba(184, 192, 204, 0.72);
  background: rgba(255, 255, 255, 0.02);
}

.world--physical .world-sources li {
  color: rgba(230, 236, 245, 0.96);
  border-color: rgba(38, 132, 255, 0.16);
  background: rgba(38, 132, 255, 0.06);
}

.world--physical .world-sources svg {
  color: #9ec2ff;
  opacity: 1;
}

.world-flow {
  display: block;
  width: 100%;
  height: 68px;
  margin: 0.85rem 0 0.35rem;
  color: rgba(184, 192, 204, 0.22);
}

.world-flow path {
  stroke-width: 1;
  fill: none;
}

.world--physical .world-flow {
  color: rgba(38, 132, 255, 0.38);
}

.world-target {
  align-self: center;
  margin-top: 0.15rem;
  padding: 0.62rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.88);
}

.world-target--accent {
  border-color: rgba(38, 132, 255, 0.35);
  background: linear-gradient(90deg, rgba(38, 132, 255, 0.16), rgba(124, 58, 237, 0.16));
  color: var(--text);
  letter-spacing: 0.14em;
}

.world-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  margin-top: 1rem;
  list-style: none;
}

.world-signals li {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(158, 194, 255, 0.72);
}

.worlds-join {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  position: relative;
}

.worlds-join span {
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.data-gap-capture {
  margin: clamp(2.6rem, 5.5vw, 3.8rem) 0 0;
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(90deg, var(--blue) 0%, #5b8cff 42%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.data-gap-close {
  margin: 2.1rem auto 0;
  max-width: 36rem;
  text-align: center;
}

.data-gap-close p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.55;
}

.data-gap-close .data-gap-close-accent {
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

@media (max-width: 900px) {
  .worlds {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .worlds-join {
    width: 100%;
    height: 2.1rem;
  }

  .worlds-join span {
    width: 1px;
    height: 100%;
  }

  .worlds-join span::after {
    content: "↓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: rgba(184, 192, 204, 0.7);
    background: var(--bg);
    padding: 0.15rem 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .data-gap-intro,
  .world--digital,
  .world--physical,
  .data-gap-capture,
  .data-gap-close {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* What We Collect */

.collect {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter) clamp(2rem, 4vw, 3.25rem);
  background: var(--bg);
}

.collect-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.collect-intro,
.collect-card,
.collect-custom {
  opacity: 1;
  transform: none;
}

.collect.is-ready .collect-intro,
.collect.is-ready .collect-card,
.collect.is-ready .collect-custom {
  opacity: 0;
  transform: translateY(22px);
}

.collect.is-inview .collect-intro {
  animation: fade-up 0.85s var(--ease) both;
}

.collect.is-inview .collect-card:nth-child(1) {
  animation: fade-up 0.8s var(--ease) 0.16s both;
}

.collect.is-inview .collect-card:nth-child(2) {
  animation: fade-up 0.8s var(--ease) 0.28s both;
}

.collect.is-inview .collect-card:nth-child(3) {
  animation: fade-up 0.8s var(--ease) 0.4s both;
}

.collect.is-inview .collect-card:nth-child(4) {
  animation: fade-up 0.8s var(--ease) 0.52s both;
}

.collect.is-inview .collect-custom {
  animation: fade-up 0.85s var(--ease) 0.7s both;
}

.collect-intro {
  max-width: 42rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

.collect-kicker {
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.collect-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.collect-copy {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.collect-spec {
  margin-top: 1.05rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.collect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.collect-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.collect-visual {
  position: relative;
  height: 108px;
  margin-bottom: 1.05rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 9, 16, 0.85);
}

.collect-index {
  margin-bottom: 0.55rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(158, 194, 255, 0.82);
}

.collect-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.collect-card > p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.collect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  list-style: none;
}

.collect-tags li {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.86);
}

.pov-frame {
  position: absolute;
  inset: 12px 14px;
}

.pov-frame i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(255, 255, 255, 0.7);
  border-style: solid;
}

.pov-frame .tl { top: 0; left: 0; border-width: 1.4px 0 0 1.4px; }
.pov-frame .tr { top: 0; right: 0; border-width: 1.4px 1.4px 0 0; }
.pov-frame .bl { bottom: 0; left: 0; border-width: 0 0 1.4px 1.4px; }
.pov-frame .br { bottom: 0; right: 0; border-width: 0 1.4px 1.4px 0; }

.pov-rec {
  position: absolute;
  top: 6px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pov-hand {
  position: absolute;
  bottom: 10px;
  width: 38px;
  height: 22px;
  border-radius: 16px 16px 8px 8px;
  background: rgba(184, 192, 204, 0.22);
}

.pov-hand--l { left: 28%; transform: rotate(-12deg); }
.pov-hand--r { right: 22%; transform: rotate(16deg); }

.pov-object {
  position: absolute;
  left: 46%;
  bottom: 18px;
  width: 28px;
  height: 16px;
  border-radius: 3px;
  background: rgba(38, 132, 255, 0.28);
  border: 1px solid rgba(38, 132, 255, 0.4);
}

.manip-scene,
.telemetry {
  width: 100%;
  height: 100%;
}

.manip-scene {
  color: rgba(158, 194, 255, 0.85);
}

.manip-contact {
  transform-origin: 128px 46px;
}

.collect.is-inview .manip-contact {
  animation: rec-pulse 1.8s ease-in-out infinite 0.4s;
}

.telemetry-grid {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.telemetry-wave {
  stroke: rgba(38, 132, 255, 0.7);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
}

.telemetry-wave--b {
  stroke: rgba(124, 58, 237, 0.45);
  stroke-width: 1.1;
}

.collect.is-inview .telemetry-wave {
  stroke-dasharray: 8 10;
  animation: telemetry-drift 9s linear infinite;
}

.collect.is-inview .telemetry-wave--b {
  animation-duration: 12s;
  animation-direction: reverse;
}

.mini-meta {
  padding: 0.7rem 0.85rem 0.55rem;
}

.mini-meta-rec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.mini-meta dl {
  display: grid;
  gap: 0.28rem;
}

.mini-meta dl div {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.mini-meta dt {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.7);
}

.mini-meta dd {
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.collect-custom {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.collect-custom h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.collect-custom > p:not(.collect-kicker):not(.collect-spec) {
  margin-top: 0.7rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes telemetry-drift {
  to { stroke-dashoffset: -120; }
}

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

@media (prefers-reduced-motion: reduce) {
  .collect-intro,
  .collect-card,
  .collect-custom,
  .collect.is-inview .telemetry-wave,
  .collect.is-inview .manip-contact {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Environments */

.environments {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter) clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(ellipse 50% 40% at 12% 18%, rgba(124, 58, 237, 0.045), transparent 60%),
    var(--bg);
}

.env-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.env-intro,
.env-card,
.env-custom {
  opacity: 1;
  transform: none;
}

.environments.is-ready .env-intro,
.environments.is-ready .env-card,
.environments.is-ready .env-custom {
  opacity: 0;
  transform: translateY(22px);
}

.environments.is-inview .env-intro {
  animation: fade-up 0.85s var(--ease) both;
}

.environments.is-inview .env-card:nth-child(1) { animation: fade-up 0.8s var(--ease) 0.12s both; }
.environments.is-inview .env-card:nth-child(2) { animation: fade-up 0.8s var(--ease) 0.22s both; }
.environments.is-inview .env-card:nth-child(3) { animation: fade-up 0.8s var(--ease) 0.32s both; }
.environments.is-inview .env-card:nth-child(4) { animation: fade-up 0.8s var(--ease) 0.42s both; }
.environments.is-inview .env-card:nth-child(5) { animation: fade-up 0.8s var(--ease) 0.52s both; }
.environments.is-inview .env-card:nth-child(6) { animation: fade-up 0.8s var(--ease) 0.62s both; }

.environments.is-inview .env-custom {
  animation: fade-up 0.85s var(--ease) 0.78s both;
}

.env-intro {
  max-width: 42rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem);
}

.env-kicker {
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.env-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.env-copy {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.env-spec {
  margin-top: 1.05rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.env-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.env-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #080c14;
  isolation: isolate;
  transition: border-color 0.4s var(--ease);
}

.env-card--wide {
  min-height: 300px;
}

.env-card:nth-child(1),
.env-card:nth-child(4),
.env-card:nth-child(5) {
  grid-column: span 3;
}

.env-card:nth-child(2),
.env-card:nth-child(3),
.env-card:nth-child(6) {
  grid-column: span 2;
}

.env-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 0.45s var(--ease);
}

.env-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.12) 20%, rgba(5, 7, 11, 0.55) 62%, rgba(5, 7, 11, 0.88) 100%);
  transition: background 0.4s var(--ease);
}

.env-tech {
  position: absolute;
  inset: 14px 16px 72px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease);
}

.env-tech-rec,
.env-tech-time,
.env-tech-label {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.env-tech-rec {
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.env-tech-time {
  top: 0;
  right: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: rgba(184, 192, 204, 0.8);
}

.env-tech-label {
  top: 0;
  left: 0;
  color: rgba(158, 194, 255, 0.85);
}

.env-br {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(255, 255, 255, 0.55);
  border-style: solid;
}

.env-br.tl { top: 22px; left: 0; border-width: 1.2px 0 0 1.2px; }
.env-br.tr { top: 22px; right: 0; border-width: 1.2px 1.2px 0 0; }
.env-br.bl { bottom: 8px; left: 0; border-width: 0 0 1.2px 1.2px; }
.env-br.br { bottom: 8px; right: 0; border-width: 0 1.2px 1.2px 0; }

.env-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2684ff;
  box-shadow: 0 0 0 3px rgba(38, 132, 255, 0.18);
}

.env-caption {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 1.05rem 1.1rem 1.1rem;
}

.env-id {
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(158, 194, 255, 0.88);
}

.env-caption h3 {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.env-caption p:last-child {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.env-card:hover {
  border-color: rgba(38, 132, 255, 0.42);
}

.env-card:hover img {
  transform: scale(1.07);
}

.env-card:hover .env-tech {
  opacity: 0.9;
}

.env-custom {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.env-custom h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.env-custom > p:not(.env-kicker):not(.env-spec) {
  margin-top: 0.7rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

  .env-card,
  .env-card--wide,
  .env-card:nth-child(1),
  .env-card:nth-child(2),
  .env-card:nth-child(3),
  .env-card:nth-child(4),
  .env-card:nth-child(5),
  .env-card:nth-child(6) {
    grid-column: span 1;
    min-height: 240px;
  }
}

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

  .env-card,
  .env-card--wide {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .env-intro,
  .env-card,
  .env-custom {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .env-card img,
  .env-card:hover img {
    transform: none;
    transition: none;
  }
}

/* How It Works */

.process {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter) clamp(4.25rem, 9vw, 7.75rem);
  background:
    radial-gradient(ellipse 45% 40% at 80% 30%, rgba(38, 132, 255, 0.05), transparent 62%),
    var(--bg);
}

.process-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.process-intro,
.process-step,
.process-loop,
.process-pilot {
  opacity: 1;
  transform: none;
}

.process.is-ready .process-intro,
.process.is-ready .process-step,
.process.is-ready .process-loop,
.process.is-ready .process-pilot {
  opacity: 0;
  transform: translateY(22px);
}

.process.is-inview .process-intro {
  animation: fade-up 0.85s var(--ease) both;
}

.process.is-inview .process-step:nth-child(1) { animation: fade-up 0.75s var(--ease) 0.18s both; }
.process.is-inview .process-step:nth-child(2) { animation: fade-up 0.75s var(--ease) 0.38s both; }
.process.is-inview .process-step:nth-child(3) { animation: fade-up 0.75s var(--ease) 0.56s both; }
.process.is-inview .process-step:nth-child(4) { animation: fade-up 0.75s var(--ease) 0.74s both; }
.process.is-inview .process-step:nth-child(5) { animation: fade-up 0.75s var(--ease) 0.92s both; }

.process.is-inview .process-loop {
  animation: fade-up 0.85s var(--ease) 1.08s both;
}

.process.is-inview .process-pilot {
  animation: fade-up 0.85s var(--ease) 1.22s both;
}

.process-intro {
  max-width: 42rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem);
}

.process-kicker {
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.process-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.process-lead {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--muted);
}

.process-emphasis {
  display: block;
}

.process-copy {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.process-spec {
  margin-top: 1.05rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-flow {
  --process-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--process-gap);
  list-style: none;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0.35rem 0.35rem 1.05rem;
  text-align: center;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.35rem;
  left: calc(50% + 1.45rem);
  width: calc(100% - 2.9rem + var(--process-gap));
  height: 1px;
  background: linear-gradient(90deg, rgba(38, 132, 255, 0.55), rgba(124, 58, 237, 0.5));
  transform: scaleX(1);
  transform-origin: left;
  pointer-events: none;
}

.process.is-ready .process-step:not(:last-child)::after {
  transform: scaleX(0);
}

.process.is-inview .process-step:nth-child(1)::after {
  animation: process-line 0.45s var(--ease) 0.32s both;
}

.process.is-inview .process-step:nth-child(2)::after {
  animation: process-line 0.45s var(--ease) 0.5s both;
}

.process.is-inview .process-step:nth-child(3)::after {
  animation: process-line 0.45s var(--ease) 0.68s both;
}

.process.is-inview .process-step:nth-child(4)::after {
  animation: process-line 0.45s var(--ease) 0.86s both;
}

.process-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(158, 194, 255, 0.82);
}

.process-node {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0.45rem 0 0.7rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 15, 25, 0.8);
  color: #9ec2ff;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.process-node svg {
  width: 1.15rem;
  height: 1.15rem;
}

.process-label {
  margin-bottom: 0.45rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.88);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.process-step > p:last-of-type {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.32rem;
  margin-top: 0.75rem;
  list-style: none;
}

.process-tags li {
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.82);
}

.process-step:hover {
  border-color: rgba(38, 132, 255, 0.28);
  background: rgba(10, 15, 25, 0.35);
}

.process-step:hover .process-node {
  border-color: rgba(38, 132, 255, 0.7);
  background: rgba(38, 132, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(38, 132, 255, 0.08);
}

.process-step:hover::after {
  filter: brightness(1.35);
}

.process-loop {
  margin-top: clamp(2.2rem, 4.5vw, 3.2rem);
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-loop ol {
  display: grid;
  justify-items: center;
  gap: 0;
  margin-top: 0.35rem;
  list-style: none;
}

.process-loop li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.55rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 20, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.92);
}

.process-loop li + li {
  margin-top: 1.55rem;
}

.process-loop li + li::before {
  content: "↓";
  position: absolute;
  top: -1.35rem;
  color: rgba(184, 192, 204, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.process-loop .is-accent {
  border-color: rgba(38, 132, 255, 0.4);
  background: linear-gradient(90deg, rgba(38, 132, 255, 0.16), rgba(124, 58, 237, 0.16));
  color: var(--text);
}

.process-pilot {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 44rem;
}

.process-pilot h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.process-pilot > p:first-of-type {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.process-scale {
  margin-top: 1.25rem;
  font-size: clamp(0.72rem, 1.35vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue) 0%, #5b8cff 42%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes process-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 32rem;
    margin: 0 auto;
  }

  .process-step {
    align-items: flex-start;
    text-align: left;
    padding: 0.85rem 0 1.15rem 0.2rem;
    border-left: 1px solid rgba(38, 132, 255, 0.22);
    border-radius: 0;
    padding-left: 1.15rem;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step:hover {
    background: transparent;
    border-color: transparent;
    border-left-color: rgba(38, 132, 255, 0.55);
  }

  .process-node {
    margin: 0.35rem 0 0.55rem;
  }

  .process-tags {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-intro,
  .process-step,
  .process-loop,
  .process-pilot,
  .process-step:not(:last-child)::after {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Why Latin America */

.latam {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter) clamp(4.25rem, 9vw, 7.75rem);
  background:
    radial-gradient(ellipse 50% 45% at 18% 28%, rgba(124, 58, 237, 0.06), transparent 58%),
    radial-gradient(ellipse 40% 40% at 88% 70%, rgba(38, 132, 255, 0.05), transparent 60%),
    var(--bg);
}

.latam-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.latam-intro,
.latam-realities,
.latam-card,
.latam-geo,
.latam-advantage,
.latam-bridge {
  opacity: 1;
  transform: none;
}

.latam.is-ready .latam-intro,
.latam.is-ready .latam-realities,
.latam.is-ready .latam-card,
.latam.is-ready .latam-geo,
.latam.is-ready .latam-advantage,
.latam.is-ready .latam-bridge {
  opacity: 0;
  transform: translateY(22px);
}

.latam.is-inview .latam-intro { animation: fade-up 0.85s var(--ease) both; }
.latam.is-inview .latam-realities { animation: fade-up 0.85s var(--ease) 0.16s both; }
.latam.is-inview .latam-card:nth-child(1) { animation: fade-up 0.8s var(--ease) 0.28s both; }
.latam.is-inview .latam-card:nth-child(2) { animation: fade-up 0.8s var(--ease) 0.38s both; }
.latam.is-inview .latam-card:nth-child(3) { animation: fade-up 0.8s var(--ease) 0.48s both; }
.latam.is-inview .latam-card:nth-child(4) { animation: fade-up 0.8s var(--ease) 0.58s both; }
.latam.is-inview .latam-geo { animation: fade-up 0.85s var(--ease) 0.68s both; }
.latam.is-inview .latam-advantage { animation: fade-up 0.85s var(--ease) 0.82s both; }
.latam.is-inview .latam-bridge { animation: fade-up 0.85s var(--ease) 0.96s both; }

.latam-intro {
  max-width: 44rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.2rem);
}

.latam-kicker {
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.latam-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.latam-copy {
  margin-top: 1.25rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.latam-spec {
  margin-top: 1.05rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.latam-realities {
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  padding: 1.25rem 1.1rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.latam-orbit {
  position: relative;
  height: 320px;
  margin-top: 0.4rem;
}

.latam-orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.latam-orbit-lines path {
  stroke: rgba(38, 132, 255, 0.28);
  stroke-width: 1;
}

.latam-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(38, 132, 255, 0.4);
  background: linear-gradient(90deg, rgba(38, 132, 255, 0.18), rgba(124, 58, 237, 0.18));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.latam-sat {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.78);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.latam.is-inview .latam-sat {
  animation: fade-up 0.7s var(--ease) both;
}

.latam.is-inview .latam-sat:nth-of-type(1) { animation-delay: 0.28s; }
.latam.is-inview .latam-sat:nth-of-type(2) { animation-delay: 0.36s; }
.latam.is-inview .latam-sat:nth-of-type(3) { animation-delay: 0.44s; }
.latam.is-inview .latam-sat:nth-of-type(4) { animation-delay: 0.52s; }
.latam.is-inview .latam-sat:nth-of-type(5) { animation-delay: 0.6s; }
.latam.is-inview .latam-sat:nth-of-type(6) { animation-delay: 0.68s; }

.latam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.latam-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.2rem 1.2rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.latam-index {
  margin-bottom: 0.55rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(158, 194, 255, 0.82);
}

.latam-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.latam-card > p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.latam-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  list-style: none;
}

.latam-tags li {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.86);
}

.latam-geo {
  margin-top: clamp(1.8rem, 3.5vw, 2.5rem);
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
}

.latam-geo-canvas {
  position: relative;
  height: 220px;
}

.latam-geo-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.geo-line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.latam.is-inview .geo-line {
  stroke-dashoffset: 40;
  animation: geo-draw 1.6s var(--ease) 0.95s both;
}

.geo-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

.geo-node span,
.geo-node strong {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-node span {
  color: rgba(184, 192, 204, 0.7);
  padding-left: 0.9rem;
}

.geo-node span::before,
.geo-node--ec strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(184, 192, 204, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.geo-node span::before {
  top: 0.15rem;
}

.geo-node--ec {
  z-index: 2;
}

.geo-node--ec strong {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  font-size: 0.82rem;
}

.geo-node--ec strong::before {
  top: 0.28rem;
  width: 9px;
  height: 9px;
  background: #2684ff;
  box-shadow: 0 0 0 5px rgba(38, 132, 255, 0.16);
}

.geo-node--ec em {
  margin-left: 1rem;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(158, 194, 255, 0.9);
}

.latam.is-inview .geo-node--ec {
  animation: fade-up 0.7s var(--ease) 0.75s both;
}

.latam.is-inview .geo-node:not(.geo-node--ec) {
  animation: fade-up 0.7s var(--ease) 1.15s both;
}

.latam-geo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.6rem;
  margin-top: 0.85rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.latam-geo-legend p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.legend-ec,
.legend-pot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-ec {
  background: #2684ff;
  box-shadow: 0 0 0 4px rgba(38, 132, 255, 0.16);
}

.legend-pot {
  background: rgba(184, 192, 204, 0.45);
}

.latam-advantage {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  padding: 1.4rem 1.4rem 1.45rem;
  border-radius: 16px;
  border: 1px solid rgba(38, 132, 255, 0.2);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.latam-advantage h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.latam-advantage > p:not(.latam-kicker):not(.latam-opportunity) {
  margin-top: 0.7rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.latam-variation {
  display: grid;
  gap: 0.28rem;
  margin: 1.2rem 0 0;
  list-style: none;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.latam-opportunity {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.latam-bridge {
  margin-top: 1.8rem;
  text-align: center;
  font-size: clamp(0.68rem, 1.15vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue) 0%, #5b8cff 42%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes geo-draw {
  from { stroke-dashoffset: 40; opacity: 0.2; }
  to { stroke-dashoffset: 0; opacity: 1; }
}

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

  .latam-orbit {
    height: 280px;
  }

  .latam-geo-canvas {
    height: 260px;
  }

  .geo-node span,
  .geo-node--ec strong {
    font-size: 0.62rem;
  }
}

@media (max-width: 560px) {
  .latam-orbit {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0 0.2rem;
  }

  .latam-orbit-lines {
    display: none;
  }

  .latam-sat,
  .latam-core {
    position: static;
    transform: none;
  }

  .latam-core {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .latam-geo-canvas {
    height: auto;
    display: grid;
    gap: 0.7rem;
    padding: 0.2rem 0;
  }

  .latam-geo-lines {
    display: none;
  }

  .geo-node {
    position: static;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .latam-intro,
  .latam-realities,
  .latam-card,
  .latam-geo,
  .latam-advantage,
  .latam-bridge,
  .latam-sat,
  .geo-node,
  .geo-line {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Pilot */

.pilot {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter) clamp(1.35rem, 2.4vw, 1.85rem);
  background:
    radial-gradient(ellipse 55% 50% at 78% 18%, rgba(38, 132, 255, 0.09), transparent 58%),
    radial-gradient(ellipse 40% 40% at 12% 80%, rgba(124, 58, 237, 0.07), transparent 60%),
    var(--bg);
  scroll-margin-top: calc(var(--header-h) + 0.6rem);
}

.pilot-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pilot-intro,
.pilot-path,
.pilot-objectives,
.pilot-contact,
.pilot-impact,
.pilot-foot {
  opacity: 1;
  transform: none;
}

.pilot.is-ready .pilot-intro,
.pilot.is-ready .pilot-path,
.pilot.is-ready .pilot-objectives,
.pilot.is-ready .pilot-contact,
.pilot.is-ready .pilot-impact,
.pilot.is-ready .pilot-foot {
  opacity: 0;
  transform: translateY(22px);
}

.pilot.is-inview .pilot-intro { animation: fade-up 0.85s var(--ease) both; }
.pilot.is-inview .pilot-path { animation: fade-up 0.85s var(--ease) 0.14s both; }
.pilot.is-inview .pilot-objectives { animation: fade-up 0.8s var(--ease) 0.28s both; }
.pilot.is-inview .pilot-contact { animation: fade-up 0.8s var(--ease) 0.4s both; }
.pilot.is-inview .pilot-impact { animation: fade-up 0.85s var(--ease) 0.54s both; }
.pilot.is-inview .pilot-foot { animation: fade-up 0.85s var(--ease) 0.66s both; }

.pilot-intro {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

.pilot-kicker {
  margin-bottom: 1.05rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.9);
}

.pilot-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.pilot-lead {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--muted);
}

.pilot-emphasis {
  display: block;
}

.pilot-copy {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.pilot-spec {
  margin-top: 1.05rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pilot-path {
  margin-bottom: clamp(2rem, 4vw, 2.6rem);
}

.pilot-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.35rem;
  list-style: none;
}

.pilot-flow li {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 25, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pilot-flow li:not(:last-child)::after {
  content: "→";
  margin-left: 0.55rem;
  color: rgba(184, 192, 204, 0.45);
  letter-spacing: 0;
}

.pilot.is-inview .pilot-flow li:nth-child(1) { animation: fade-up 0.55s var(--ease) 0.18s both; }
.pilot.is-inview .pilot-flow li:nth-child(2) { animation: fade-up 0.55s var(--ease) 0.28s both; }
.pilot.is-inview .pilot-flow li:nth-child(3) { animation: fade-up 0.55s var(--ease) 0.38s both; }
.pilot.is-inview .pilot-flow li:nth-child(4) { animation: fade-up 0.55s var(--ease) 0.48s both; }
.pilot.is-inview .pilot-flow li:nth-child(5) { animation: fade-up 0.55s var(--ease) 0.58s both; }
.pilot.is-inview .pilot-flow li:nth-child(6) { animation: fade-up 0.55s var(--ease) 0.68s both; }

.pilot-flow .is-accent {
  border-color: rgba(38, 132, 255, 0.4);
  background: linear-gradient(90deg, rgba(38, 132, 255, 0.18), rgba(124, 58, 237, 0.18));
  color: var(--text);
}

.pilot-path-note {
  margin-top: 1.05rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pilot-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.pilot-objectives,
.pilot-contact {
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pilot-contact {
  border-color: rgba(38, 132, 255, 0.22);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.pilot-objectives h3,
.pilot-contact h3,
.pilot-impact h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.pilot-objectives ol {
  display: grid;
  gap: 1.05rem;
  margin: 1.25rem 0 0;
  list-style: none;
}

.pilot-objectives li span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(158, 194, 255, 0.88);
}

.pilot-objectives li p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pilot-contact-copy {
  margin: 0.7rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pilot-form {
  display: grid;
  gap: 0.95rem;
  position: relative;
}

.pilot-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pilot-field {
  display: grid;
  gap: 0.4rem;
}

.pilot-field label {
  font-size: 0.78rem;
  font-weight: 600;
}

.pilot-field label span {
  font-weight: 500;
  color: var(--muted);
}

.pilot-field input,
.pilot-field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 16, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  resize: vertical;
  transition: border-color 0.25s var(--ease);
}

.pilot-field input::placeholder,
.pilot-field textarea::placeholder {
  color: rgba(184, 192, 204, 0.48);
}

.pilot-field input:focus,
.pilot-field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-color: rgba(38, 132, 255, 0.45);
}

.pilot-field input[aria-invalid="true"],
.pilot-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 120, 120, 0.7);
}

.pilot-error {
  font-size: 0.75rem;
  color: #ffb4b4;
}

.pilot-submit {
  width: 100%;
  margin-top: 0.2rem;
}

.pilot-form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.pilot-success h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.pilot-success p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pilot-status {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ffb4b4;
}

.pilot-status a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid rgba(38, 132, 255, 0.45);
}

.pilot-impact {
  display: grid;
  justify-items: start;
  gap: 1rem;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
  padding: clamp(1.6rem, 4vw, 2.4rem) 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(38, 132, 255, 0.28);
  background:
    linear-gradient(120deg, rgba(38, 132, 255, 0.12), rgba(124, 58, 237, 0.1) 55%, rgba(10, 15, 25, 0.4)),
    var(--panel);
  backdrop-filter: blur(20px);
}

.pilot-impact h3 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.pilot-foot {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

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

@media (max-width: 720px) {
  .pilot-flow {
    flex-direction: column;
    align-items: flex-start;
  }

  .pilot-flow li:not(:last-child)::after {
    content: "↓";
  }

  .pilot-submit,
  .pilot-impact .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-intro,
  .pilot-path,
  .pilot-objectives,
  .pilot-contact,
  .pilot-impact,
  .pilot-foot,
  .pilot-flow li {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070b;
  padding: 2.35rem var(--gutter) 1.35rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr) minmax(0, 0.9fr);
  gap: 1.75rem 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.footer-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-tag {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-blurb {
  margin-top: 0.7rem;
  max-width: 22rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.footer-geo {
  margin-top: 0.95rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(184, 192, 204, 0.78);
}

.footer-label {
  margin-bottom: 0.85rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 192, 204, 0.88);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.48rem;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--text);
}

.footer-cta {
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(38, 132, 255, 0.45);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer-cta:hover {
  color: #9ec2ff;
  border-bottom-color: rgba(158, 194, 255, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.5rem;
  max-width: 1120px;
  margin: 1.85rem auto 0;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  color: var(--muted);
}

/* Privacy Policy */

.page-legal .site-header {
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.legal {
  padding: calc(var(--header-h) + 2.25rem) var(--gutter) 3.25rem;
}

.legal-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.legal-updated {
  margin-top: 0.85rem;
  margin-bottom: 2.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-inner section + section {
  margin-top: 1.85rem;
}

.legal-inner h2 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-inner p,
.legal-inner li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-inner p + p,
.legal-inner p + ul {
  margin-top: 0.75rem;
}

.legal-inner ul {
  margin: 0.7rem 0 0 1.1rem;
}

.legal-inner li + li {
  margin-top: 0.28rem;
}

.legal-inner a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid rgba(38, 132, 255, 0.45);
}

.legal-inner a:hover {
  color: #9ec2ff;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    gap: 0.45rem;
  }

  .legal {
    padding-top: calc(var(--header-h) + 1.6rem);
  }
}
