@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/Metropolis-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/Metropolis-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/Metropolis-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/Metropolis-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/Metropolis-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --spm-blue: #003b73;
  --spm-blue-2: #07589f;
  --spm-gray: #9d9d9c;
  --ink: #020407;
  --navy-950: #04070d;
  --navy-900: #07101d;
  --navy-850: #091725;
  --navy-800: #0c1e31;
  --text: #f7fbff;
  --text-soft: #dce7f4;
  --muted: #9daabb;
  --muted-2: #687789;
  --cyan: #28e6ff;
  --violet: #6a4cff;
  --line: rgba(157, 157, 156, 0.2);
  --line-strong: rgba(40, 230, 255, 0.28);
  --surface: rgba(5, 13, 24, 0.68);
  --surface-strong: rgba(7, 16, 29, 0.9);
  --radius-card: 8px;
  --radius-panel: 14px;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-blue: 0 0 54px rgba(40, 230, 255, 0.16);
  --font-body: "Metropolis", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-heading: "Metropolis", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 59, 115, 0.28), transparent 26rem),
    radial-gradient(circle at 18% 42%, rgba(40, 230, 255, 0.06), transparent 22rem),
    linear-gradient(180deg, #020407 0%, #04070d 44%, #07101d 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(157, 157, 156, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 157, 156, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../img/pattern.png");
  background-size: 420px 420px;
  background-repeat: repeat;
  opacity: 0.022;
  mix-blend-mode: screen;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(40, 230, 255, 0.22);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--cyan);
  color: #00111c;
  font-weight: 800;
}

.skip-link:focus {
  left: 14px;
}

.page-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 18px 0;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(2, 4, 7, 0.78);
  border-bottom: 1px solid rgba(157, 157, 156, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(40, 230, 255, 0.13));
}

.brand-text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.brand-name {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-tagline {
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.86rem;
  color: rgba(247, 251, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(40, 230, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 42px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 13, 24, 0.72);
  border: 1px solid rgba(157, 157, 156, 0.18);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.92rem 1.18rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.field input:focus,
.field select:focus,
.field textarea:focus,
.faq-item summary:focus-visible {
  outline: 3px solid rgba(40, 230, 255, 0.2);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--spm-blue), var(--spm-blue-2));
  box-shadow:
    0 18px 34px rgba(0, 59, 115, 0.34),
    0 0 0 1px rgba(40, 230, 255, 0.16) inset;
}

.button-primary:hover {
  box-shadow:
    0 24px 48px rgba(0, 59, 115, 0.42),
    0 0 0 1px rgba(40, 230, 255, 0.28) inset;
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(2, 8, 16, 0.42);
  border: 1px solid rgba(157, 157, 156, 0.26);
}

.hero-journey .button-secondary::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 9px solid var(--cyan);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(40, 230, 255, 0.42);
  background: rgba(40, 230, 255, 0.08);
}

.hero-journey {
  position: relative;
  min-height: 100svh;
  padding: clamp(104px, 12vh, 132px) 0 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-vignette,
.hero-map-system,
.hero-atlas-motion {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-media {
  z-index: -4;
  background-image: url("../img/atlas-compass-journey-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.012);
  filter: saturate(1.02) contrast(1.04);
  animation: heroMapDrift 18s ease-in-out infinite alternate;
}

.hero-map-system {
  z-index: -3;
  opacity: 0.36;
  background:
    linear-gradient(rgba(40, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 230, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 69% 48%, rgba(40, 230, 255, 0.12), transparent 18rem);
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 31%, black 64%, black 100%);
  animation: atlasGridDrift 16s ease-in-out infinite alternate;
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.98) 0%, rgba(2, 4, 7, 0.88) 32%, rgba(2, 4, 7, 0.28) 66%, rgba(2, 4, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(2, 4, 7, 0.52) 0%, transparent 32%, rgba(2, 4, 7, 0.82) 100%),
    radial-gradient(circle at 72% 47%, rgba(40, 230, 255, 0.08), transparent 19rem);
  animation: heroGlowBreath 7s ease-in-out infinite;
}

.hero-vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(40, 230, 255, 0.06) 46%, transparent 58%);
  opacity: 0;
  transform: translateX(-18%);
  animation: heroLightSweep 9s ease-in-out infinite;
}

.hero-atlas-motion {
  z-index: -1;
  overflow: hidden;
}

.atlas-radar {
  position: absolute;
  top: 50%;
  right: clamp(24px, 8vw, 132px);
  width: clamp(310px, 38vw, 590px);
  aspect-ratio: 1;
  translate: 0 -49%;
  border-radius: 50%;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.atlas-radar::before,
.atlas-radar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.atlas-radar::before {
  background:
    radial-gradient(circle, transparent 0 20%, rgba(40, 230, 255, 0.11) 20.3% 20.8%, transparent 21.2% 37%),
    radial-gradient(circle, transparent 0 42%, rgba(157, 157, 156, 0.13) 42.2% 42.7%, transparent 43% 58%),
    radial-gradient(circle, transparent 0 67%, rgba(40, 230, 255, 0.1) 67.2% 67.7%, transparent 68% 100%);
  filter: drop-shadow(0 0 22px rgba(40, 230, 255, 0.12));
  animation: atlasPulse 5.4s ease-in-out infinite;
}

.atlas-radar::after {
  background: conic-gradient(from 220deg, transparent 0deg, rgba(40, 230, 255, 0.02) 16deg, rgba(40, 230, 255, 0.16) 31deg, transparent 54deg, transparent 360deg);
  clip-path: circle(49% at 50% 50%);
  transform-origin: 50% 50%;
  animation: atlasSweep 8.8s linear infinite;
}

.atlas-orbit {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(40, 230, 255, 0.12);
  border-radius: 50%;
  transform: rotate(var(--rotate));
  animation: atlasOrbit 18s linear infinite;
}

.atlas-orbit:nth-child(2) {
  inset: 25%;
  border-color: rgba(157, 157, 156, 0.13);
  animation-duration: 24s;
  animation-direction: reverse;
}

.atlas-node {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(40, 230, 255, 0.72), 0 0 44px rgba(0, 59, 115, 0.46);
}

.atlas-route {
  position: absolute;
  right: clamp(40px, 8vw, 150px);
  bottom: clamp(120px, 18vh, 220px);
  width: min(55vw, 680px);
  height: 290px;
  opacity: 0.78;
}

.atlas-route path {
  fill: none;
  stroke: rgba(40, 230, 255, 0.42);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 7 13;
  filter: drop-shadow(0 0 10px rgba(40, 230, 255, 0.18));
  animation: atlasRouteFlow 5.8s linear infinite;
}

.atlas-route path:nth-child(2) {
  stroke: rgba(157, 157, 156, 0.24);
  stroke-dasharray: 2 16;
  animation-duration: 8.2s;
  animation-direction: reverse;
}

.atlas-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(40, 230, 255, 0.84);
  box-shadow: 0 0 0 0 rgba(40, 230, 255, 0.3), 0 0 18px rgba(40, 230, 255, 0.5);
  animation: atlasPinPulse 4.2s ease-in-out infinite;
}

.atlas-pin:nth-of-type(1) {
  top: 34%;
  right: 29%;
}

.atlas-pin:nth-of-type(2) {
  top: 58%;
  right: 42%;
  animation-delay: 1.1s;
}

.atlas-pin:nth-of-type(3) {
  top: 70%;
  right: 19%;
  animation-delay: 2.2s;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.hero-copy-stack {
  max-width: 650px;
  animation: heroCopyRise 760ms ease both;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(40, 230, 255, 0.5);
}

.hero-title {
  margin: 18px 0 0;
  max-width: 14.6ch;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(2.9rem, 4.95vw, 4.85rem);
  font-weight: 900;
  line-height: 0.89;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.58);
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 58ch;
  color: rgba(220, 231, 244, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.76;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-direction-note {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 7px;
  max-width: 210px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
  animation: heroCopyRise 900ms 120ms ease both;
}

.hero-direction-note::before {
  content: "";
  justify-self: end;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.hero-protocol-path {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  margin-top: clamp(26px, 5vh, 54px);
  padding: 18px 22px;
  border: 1px solid rgba(157, 157, 156, 0.16);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.72), rgba(3, 7, 13, 0.82)),
    radial-gradient(circle at 20% 0%, rgba(40, 230, 255, 0.08), transparent 24rem);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  animation: heroCopyRise 900ms 180ms ease both;
}

.path-heading {
  display: grid;
  gap: 6px;
}

.path-heading span {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.path-heading small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.path-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.path-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 9%;
  right: 9%;
  height: 1px;
  background:
    repeating-linear-gradient(90deg, rgba(40, 230, 255, 0.58) 0 4px, transparent 4px 10px);
  animation: atlasStepFlow 3.6s linear infinite;
}

.protocol-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--text-soft);
  text-align: center;
}

.protocol-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(40, 230, 255, 0.28), transparent 54%),
    rgba(0, 59, 115, 0.55);
  border: 1px solid rgba(40, 230, 255, 0.22);
  color: #eafbff;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(40, 230, 255, 0.12);
  animation: atlasStepPulse 5s ease-in-out infinite;
}

.protocol-step:nth-child(2) .protocol-icon {
  animation-delay: 0.4s;
}

.protocol-step:nth-child(3) .protocol-icon {
  animation-delay: 0.8s;
}

.protocol-step:nth-child(4) .protocol-icon {
  animation-delay: 1.2s;
}

.protocol-step:nth-child(5) .protocol-icon {
  animation-delay: 1.6s;
}

.protocol-step strong {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 900;
}

.protocol-step em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid rgba(157, 157, 156, 0.1);
  scroll-margin-top: 96px;
}

.section:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(7, 16, 29, 0.18), rgba(2, 4, 7, 0));
}

.section-shell {
  display: grid;
  gap: 30px;
}

.section-header {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.section-header .section-label {
  justify-self: center;
}

.section-header .section-copy {
  margin-inline: auto;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.1rem, 4.6vw, 4.45rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.section-copy {
  margin: 0;
  max-width: 74ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.78;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.proof-tile,
.timeline-item,
.journey-card,
.sidebar-tile,
.form-panel,
.faq-item,
.legal-card,
.testimonial,
.metric-card,
.step-card,
.problem-box,
.surface-panel,
.insight-panel {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid rgba(157, 157, 156, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.72), rgba(5, 12, 22, 0.86));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.card,
.service-card,
.proof-tile,
.journey-card,
.sidebar-tile,
.form-panel,
.legal-card,
.testimonial,
.problem-box,
.surface-panel,
.insight-panel {
  padding: 22px;
}

.card::before,
.service-card::before,
.proof-tile::before,
.journey-card::before,
.sidebar-tile::before,
.form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(40, 230, 255, 0.08), transparent 36%);
  opacity: 0.55;
}

.card-title,
.problem-title,
.timeline-item h3,
.journey-card h3,
.service-card h3,
.proof-tile h3,
.sidebar-tile h3,
.mini-card h3 {
  position: relative;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.card-copy,
.problem-text,
.timeline-item p,
.journey-card p,
.service-card p,
.proof-tile p,
.sidebar-tile p,
.narrative-card p,
.compliance-note,
.manifesto-band,
.footer-copy,
.footer-note,
.faq-content,
.field-note,
.legal-card p,
.legal-card li,
.testimonial blockquote,
.testimonial footer,
.card-list li,
.arrow-list li,
.mini-card p,
.insight-copy {
  color: var(--muted);
  line-height: 1.72;
}

.card-copy,
.timeline-item p,
.journey-card p,
.service-card p,
.proof-tile p,
.sidebar-tile p,
.mini-card p {
  position: relative;
  margin: 11px 0 0;
  font-size: 0.95rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.timeline-item {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
}

.timeline-letter,
.journey-index,
.step-index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #effcff;
  background:
    radial-gradient(circle at 35% 25%, rgba(40, 230, 255, 0.34), transparent 58%),
    linear-gradient(145deg, var(--spm-blue), #031b34);
  border: 1px solid rgba(40, 230, 255, 0.28);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.callout-quote,
.manifesto-band {
  padding: 22px 24px;
  border-radius: var(--radius-card);
  border-left: 3px solid var(--cyan);
  background:
    linear-gradient(90deg, rgba(0, 59, 115, 0.28), rgba(40, 230, 255, 0.04)),
    rgba(5, 13, 24, 0.64);
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.45;
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journey-card h3,
.service-card h3,
.proof-tile h3 {
  font-size: 1.02rem;
}

.journey-index {
  margin-bottom: 16px;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0, 59, 115, 0.36);
  border: 1px solid rgba(40, 230, 255, 0.22);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: start;
}

.sidebar-panel {
  display: grid;
  gap: 14px;
}

.arrow-list,
.card-list {
  position: relative;
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.arrow-list li,
.card-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.arrow-list li::before,
.card-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.66em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(40, 230, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.required {
  color: #ff9f9f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 0.95rem;
  border-radius: 6px;
  border: 1px solid rgba(157, 157, 156, 0.2);
  color: var(--text);
  background: rgba(1, 6, 12, 0.72);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(157, 170, 187, 0.62);
}

.field select {
  appearance: none;
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  color: #06101d;
  background: #eef6ff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(40, 230, 255, 0.58);
  background: rgba(2, 9, 18, 0.92);
  box-shadow: 0 0 0 4px rgba(40, 230, 255, 0.1);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

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

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(157, 157, 156, 0.14);
  background: rgba(40, 230, 255, 0.045);
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--cyan);
}

.consent-row span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-state="success"] {
  color: #83f1bd;
}

.form-status[data-state="error"] {
  color: #ff9f9f;
}

.proof-label {
  position: relative;
  display: inline-flex;
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-slot[hidden] {
  display: none !important;
}

.compliance-note {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(157, 157, 156, 0.12);
  font-size: 0.92rem;
}

.narrative-card {
  display: grid;
  gap: 13px;
}

.narrative-card p {
  position: relative;
  margin: 0;
}

.values-grid .card {
  min-height: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-proof-section {
  background:
    radial-gradient(circle at 72% 22%, rgba(40, 230, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(7, 16, 29, 0.26), rgba(2, 4, 7, 0));
}

.testimonial-showcase {
  display: block;
}

.video-proof-card,
.result-print-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(157, 157, 156, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.72), rgba(5, 12, 22, 0.88));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.video-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.72fr);
  gap: 0;
  min-height: 360px;
  align-items: center;
}

.proof-media-slot {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px;
  overflow: hidden;
  color: var(--text);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 59, 115, 0.3), rgba(40, 230, 255, 0.05)),
    linear-gradient(rgba(157, 157, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 157, 156, 0.06) 1px, transparent 1px),
    rgba(2, 8, 16, 0.88);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.proof-media-slot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(40, 230, 255, 0.24);
  border-radius: 6px;
  pointer-events: none;
}

.proof-media-slot.has-media {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.88), rgba(1, 4, 8, 0.96));
}

.proof-media-slot-video.has-media {
  padding: clamp(14px, 2vw, 22px);
  align-items: center;
  justify-items: center;
}

.proof-media-slot.has-media::before {
  display: none;
}

.proof-video,
.proof-media-slot img {
  position: relative;
  z-index: 1;
  display: block;
}

.proof-video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(72vh, 520px);
  object-fit: contain;
  background: #000;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.proof-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: none;
  border: 0;
}

.proof-media-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05080d;
}

.proof-media-slot strong {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-media-slot small {
  position: relative;
  z-index: 1;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.proof-media-slot-video {
  min-height: 0;
}

.proof-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 59, 115, 0.58);
  border: 1px solid rgba(40, 230, 255, 0.28);
  box-shadow: 0 0 34px rgba(40, 230, 255, 0.18);
}

.proof-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 16px solid var(--cyan);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.proof-card-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(0, 59, 115, 0.18), transparent 58%),
    rgba(2, 8, 16, 0.28);
}

.proof-card-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.06;
}

.proof-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-stack {
  display: grid;
  gap: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.result-print-card .proof-media-slot {
  min-height: var(--proof-card-height, 380px);
}

.result-print-card {
  --proof-card-height: clamp(360px, 32vw, 420px);
  display: block;
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.64), rgba(2, 8, 16, 0.92));
}

.result-print-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 230, 255, 0.34), transparent);
  opacity: 0.78;
}

.proof-disclaimer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(40, 230, 255, 0.18);
  background: rgba(5, 13, 24, 0.72);
}

.proof-disclaimer p {
  margin: 0;
  max-width: 74ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial footer {
  margin-top: 16px;
  font-size: 0.9rem;
}

.founder-section {
  background:
    linear-gradient(180deg, rgba(2, 4, 7, 0), rgba(7, 16, 29, 0.22)),
    radial-gradient(circle at 68% 38%, rgba(40, 230, 255, 0.05), transparent 26rem);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.founder-copy {
  display: grid;
  gap: 20px;
}

.founder-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-list li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.5;
}

.founder-list li::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 30%, rgba(40, 230, 255, 0.34), transparent 58%),
    rgba(0, 59, 115, 0.38);
  border: 1px solid rgba(40, 230, 255, 0.18);
}

.founder-quote {
  margin: 8px 0 0;
  padding: 20px 0 20px 22px;
  border-left: 2px solid var(--cyan);
  color: var(--text-soft);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.72;
}

.founder-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.founder-photo-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-panel);
  border: 1px solid rgba(157, 157, 156, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.46), rgba(2, 8, 16, 0.94)),
    url("../img/atlas-compass-journey-hero.png") center right / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.founder-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 4, 7, 0.04) 0%, rgba(2, 4, 7, 0.24) 48%, rgba(2, 4, 7, 0.76) 100%),
    linear-gradient(90deg, rgba(2, 4, 7, 0.22) 0%, transparent 34%, rgba(2, 4, 7, 0.18) 100%);
  pointer-events: none;
}

.founder-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.1);
  transform-origin: center 38%;
  filter: saturate(0.94) contrast(1.04);
}

.founder-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(157, 157, 156, 0.18);
  background: rgba(2, 8, 16, 0.76);
  backdrop-filter: blur(16px);
}

.founder-badge span {
  color: var(--text);
  font-weight: 900;
}

.founder-badge small {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: clip;
}

.faq-item summary {
  min-height: 64px;
  padding: 18px 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--cyan);
  border: 1px solid rgba(40, 230, 255, 0.28);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-content {
  padding: 0 20px 20px;
}

.final-cta {
  padding-bottom: clamp(84px, 11vw, 130px);
}

.final-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-panel);
  border: 1px solid rgba(40, 230, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.96), rgba(2, 4, 7, 0.62)),
    url("../img/atlas-compass-journey-hero.png") center right / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.final-banner .section-title {
  max-width: 760px;
}

.final-banner .section-copy {
  max-width: 680px;
}

.final-copy {
  margin-top: 16px;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(157, 157, 156, 0.12);
  background: rgba(1, 4, 8, 0.68);
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 30px;
}

.footer-brand-image {
  width: min(220px, 100%);
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.footer-note {
  margin: 0;
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 90;
  display: grid;
  gap: 14px;
  width: min(340px, calc(100vw - 32px));
  padding: 14px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(157, 157, 156, 0.18);
  background: rgba(4, 10, 18, 0.96);
  box-shadow: var(--shadow-soft);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.84rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-legal {
  min-height: 100vh;
  padding: 128px 0 70px;
}

.legal-card {
  max-width: 980px;
}

.legal-card h1 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.legal-card ul {
  padding-left: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--cyan);
  font-weight: 800;
}

.back-link::before {
  content: "<";
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible,
.hero-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes heroMapDrift {
  0% {
    transform: scale(1.012) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.035) translate3d(-14px, 8px, 0);
  }
}

@keyframes heroGlowBreath {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes heroLightSweep {
  0%,
  34%,
  100% {
    opacity: 0;
    transform: translateX(-22%);
  }

  52% {
    opacity: 0.52;
  }

  68% {
    opacity: 0;
    transform: translateX(22%);
  }
}

@keyframes heroCopyRise {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes atlasGridDrift {
  0% {
    background-position: 0 0, 0 0, center;
    opacity: 0.26;
  }

  100% {
    background-position: 38px -24px, -30px 20px, center;
    opacity: 0.42;
  }
}

@keyframes atlasPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.985);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.025);
  }
}

@keyframes atlasSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes atlasOrbit {
  to {
    transform: rotate(calc(var(--rotate) + 360deg));
  }
}

@keyframes atlasRouteFlow {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes atlasPinPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(40, 230, 255, 0), 0 0 16px rgba(40, 230, 255, 0.28);
  }

  45% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(40, 230, 255, 0.08), 0 0 28px rgba(40, 230, 255, 0.58);
  }
}

@keyframes atlasStepFlow {
  to {
    background-position: 84px 0;
  }
}

@keyframes atlasStepPulse {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(40, 230, 255, 0.12);
    border-color: rgba(40, 230, 255, 0.22);
  }

  42% {
    box-shadow: 0 0 42px rgba(40, 230, 255, 0.28);
    border-color: rgba(40, 230, 255, 0.45);
  }
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-direction-note {
    justify-self: start;
    text-align: left;
  }

  .hero-direction-note::before {
    justify-self: start;
    background: linear-gradient(90deg, var(--cyan), transparent);
  }

  .hero-protocol-path,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-showcase,
  .video-proof-card,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo-card {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(157, 157, 156, 0.18);
    background: rgba(3, 8, 15, 0.98);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .testimonial-grid,
  .journey-strip,
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(2, 4, 7, 0.98), rgba(2, 4, 7, 0.68) 58%, rgba(2, 4, 7, 0.32)),
      linear-gradient(180deg, rgba(2, 4, 7, 0.58), transparent 32%, rgba(2, 4, 7, 0.9));
  }

  .atlas-radar {
    right: clamp(16px, 4vw, 72px);
  }

  .atlas-route {
    right: clamp(18px, 4vw, 92px);
    width: min(68vw, 640px);
  }

  .path-track {
    overflow-x: auto;
    grid-template-columns: repeat(5, 128px);
    padding-bottom: 4px;
  }

  .path-track::before {
    left: 64px;
    right: 64px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-tagline,
  .header-cta {
    display: none;
  }

  .hero-journey {
    min-height: 100svh;
    padding: 104px 0 20px;
  }

  .hero-media {
    background-position: 67% center;
    opacity: 0.82;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(2, 4, 7, 0.68), rgba(2, 4, 7, 0.2) 24%, rgba(2, 4, 7, 0.96) 82%),
      linear-gradient(90deg, rgba(2, 4, 7, 0.96), rgba(2, 4, 7, 0.66) 72%, rgba(2, 4, 7, 0.42));
  }

  .hero-map-system {
    opacity: 0.24;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), black 34%, transparent 92%);
  }

  .atlas-radar {
    top: 36%;
    right: -16%;
    width: 92vw;
    opacity: 0.42;
  }

  .atlas-route {
    right: -18%;
    bottom: 32%;
    width: 100vw;
    opacity: 0.42;
  }

  .atlas-pin {
    opacity: 0.7;
  }

  .hero-title {
    max-width: 10.8ch;
    font-size: clamp(2.2rem, 12.5vw, 3.5rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    inset: auto 12px 12px;
    width: auto;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 0.7rem;
    font-size: 0.74rem;
  }

  .hero-direction-note {
    display: none;
  }

  .hero-protocol-path {
    padding: 16px;
    gap: 16px;
  }

  .path-track {
    grid-template-columns: repeat(5, 92px);
  }

  .protocol-icon {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 36px 0;
  }

  .section-title {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .testimonial-grid,
  .journey-strip,
  .timeline-list,
  .form-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .video-proof-card {
    min-height: 0;
  }

  .proof-media-slot-video {
    min-height: 260px;
  }

  .proof-media-slot-video.has-media {
    padding: 12px;
  }

  .proof-video {
    max-height: min(62svh, 460px);
  }

  .proof-embed {
    max-height: none;
  }

  .result-print-card .proof-media-slot {
    min-height: var(--proof-card-height, 240px);
  }

  .result-print-card,
  .result-print-card:nth-child(1),
  .result-print-card:nth-child(2),
  .result-print-card:nth-child(3),
  .result-print-card:nth-child(4) {
    --proof-card-height: 240px;
  }

  .proof-card-copy {
    padding: 20px;
  }

  .proof-card-copy h3 {
    font-size: 1.28rem;
  }

  .proof-disclaimer {
    display: grid;
  }

  .founder-photo-card {
    min-height: 320px;
  }

  .founder-photo-image {
    transform: scale(1.06);
    transform-origin: center 34%;
  }

  .founder-badge {
    right: 22px;
    left: 22px;
    bottom: 22px;
    border-radius: 10px;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .final-banner {
    background:
      linear-gradient(180deg, rgba(2, 4, 7, 0.94), rgba(2, 4, 7, 0.72)),
      url("../img/atlas-compass-journey-hero.png") center / cover no-repeat;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-legal {
    flex-direction: column;
  }

}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.35rem, 14vw, 3.4rem);
  }

  .path-heading span {
    font-size: 0.95rem;
  }

  .card,
  .service-card,
  .proof-tile,
  .journey-card,
  .sidebar-tile,
  .form-panel,
  .legal-card,
  .testimonial {
    padding: 18px;
  }
}

.method-atlas {
  position: relative;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 59, 115, 0.4), transparent 56%),
    radial-gradient(circle at 50% 92%, rgba(40, 230, 255, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.96), rgba(2, 6, 12, 1));
  overflow: hidden;
}

.method-atlas .section-header {
  text-align: center;
  margin-inline: auto;
}

.method-atlas .section-title em {
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
}

.method-atlas .section-title {
  font-weight: 600;
  color: rgba(234, 251, 255, 0.78);
}

.card-carousel {
  position: relative;
  width: 100%;
  margin: 28px 0 8px;
}

.card-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}

.card-carousel__track {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-padding: 0 8px;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.card-carousel__track::-webkit-scrollbar {
  display: none;
}

.card-carousel__slide {
  list-style: none;
  display: flex;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  transition: transform 380ms ease, opacity 380ms ease;
}

.card-carousel__slide > .card,
.card-carousel__slide > .service-card,
.card-carousel__slide > .result-print-card {
  flex: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.card-carousel__slide.is-active > .card,
.card-carousel__slide.is-active > .service-card,
.card-carousel__slide.is-active > .result-print-card {
  border-color: rgba(40, 230, 255, 0.6);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(40, 230, 255, 0.22);
  transform: translateY(-4px);
}

.card-carousel--results .card-carousel__track {
  grid-auto-columns: calc((100% - 32px) / 3);
}

.card-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.card-carousel__arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(40, 230, 255, 0.32);
  background: rgba(3, 10, 22, 0.84);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.card-carousel__arrow:hover,
.card-carousel__arrow:focus-visible {
  background: rgba(40, 230, 255, 0.14);
  border-color: rgba(40, 230, 255, 0.6);
  outline: none;
  transform: translateY(-2px);
}

.card-carousel__dots {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-carousel__dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  background: rgba(157, 170, 187, 0.32);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: transform 240ms ease, background 240ms ease, width 240ms ease;
}

.card-carousel__dot:hover {
  background: rgba(40, 230, 255, 0.5);
}

.card-carousel__dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: rgba(157, 170, 187, 0.18);
}

.card-carousel__dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan), var(--spm-blue-2));
  transform-origin: left center;
  animation: carouselDotFill var(--carousel-interval, 10000ms) linear forwards;
}

@keyframes carouselDotFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (max-width: 980px) {
  .card-carousel__track,
  .card-carousel--results .card-carousel__track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .card-carousel__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  }
  .card-carousel__track,
  .card-carousel--results .card-carousel__track {
    grid-auto-columns: 100%;
    gap: 0;
    scroll-padding: 0;
  }
  .card-carousel__nav {
    gap: 10px;
    margin-top: 16px;
  }
  .card-carousel__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    background: rgba(3, 10, 22, 0.92);
    border-color: rgba(40, 230, 255, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-carousel__track {
    scroll-behavior: auto;
  }
  .card-carousel__slide.is-active > .card,
  .card-carousel__slide.is-active > .service-card {
    transform: none;
  }
  .card-carousel__dot.is-active::after {
    animation: none;
    transform: scaleX(1);
  }
}

.method-stage {
  position: relative;
  width: min(100%, 1100px);
  margin: 40px auto 24px;
  display: grid;
  grid-template-columns: 1fr clamp(320px, 42vw, 540px) 1fr;
  grid-template-rows: 1fr 1fr auto;
  align-items: center;
  column-gap: clamp(16px, 4vw, 56px);
}

.method-compass {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0;
  z-index: 2;
}

.method-compass::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 230, 255, 0.32) 0%, rgba(0, 59, 115, 0.24) 44%, transparent 72%);
  filter: blur(14px);
  z-index: 0;
}

.method-compass img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 59, 115, 0.6))
    drop-shadow(0 0 48px rgba(40, 230, 255, 0.32));
  animation: methodCompassFloat 7s ease-in-out infinite;
}

@keyframes methodCompassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Connector lines emanate from each badge toward the compass */
.method-step__badge::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  border-top: 1px dashed rgba(40, 230, 255, 0.55);
  transform-origin: 0 0;
  opacity: 0;
  transition: opacity 600ms ease 200ms;
}

.method-stage.is-visible .method-step__badge::after {
  opacity: 1;
}

.method-step--tl .method-step__badge::after {
  left: 100%;
  width: clamp(60px, 8vw, 130px);
  transform: translateY(-50%) rotate(28deg);
}
.method-step--tr .method-step__badge::after {
  right: 100%;
  left: auto;
  width: clamp(60px, 8vw, 130px);
  transform-origin: 100% 0;
  transform: translateY(-50%) rotate(-28deg);
}
.method-step--ml .method-step__badge::after {
  left: 100%;
  width: clamp(60px, 8vw, 130px);
  transform: translateY(-50%) rotate(-28deg);
}
.method-step--mr .method-step__badge::after {
  right: 100%;
  left: auto;
  width: clamp(60px, 8vw, 130px);
  transform-origin: 100% 0;
  transform: translateY(-50%) rotate(28deg);
}
.method-step--bc .method-step__badge::after {
  display: none;
}

.method-steps {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 14px;
  align-items: center;
  align-self: center;
  z-index: 3;
  opacity: 0;
  transform: scale(0.86);
  transform-origin: center center;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.34, 1.36, 0.64, 1);
}

.method-stage.is-visible .method-step {
  opacity: 1;
  transform: scale(1);
}

.method-step__badge {
  position: relative;
  width: clamp(64px, 6.4vw, 92px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(40, 230, 255, 0.45);
  background:
    radial-gradient(circle at 32% 28%, rgba(40, 230, 255, 0.24), transparent 56%),
    linear-gradient(160deg, rgba(0, 59, 115, 0.82), rgba(3, 12, 24, 0.96));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(40, 230, 255, 0.55);
  box-shadow:
    inset 0 0 26px rgba(40, 230, 255, 0.22),
    0 22px 48px rgba(0, 0, 0, 0.55);
  animation: methodBadgePulse 5s ease-in-out infinite;
}

.method-step:nth-child(1) .method-step__badge { animation-delay: 0s; }
.method-step:nth-child(2) .method-step__badge { animation-delay: 0.6s; }
.method-step:nth-child(3) .method-step__badge { animation-delay: 1.2s; }
.method-step:nth-child(4) .method-step__badge { animation-delay: 1.8s; }
.method-step:nth-child(5) .method-step__badge { animation-delay: 2.4s; }

@keyframes methodBadgePulse {
  0%, 100% {
    box-shadow: inset 0 0 26px rgba(40, 230, 255, 0.22), 0 22px 48px rgba(0, 0, 0, 0.55);
    border-color: rgba(40, 230, 255, 0.45);
  }
  50% {
    box-shadow: inset 0 0 34px rgba(40, 230, 255, 0.4), 0 22px 48px rgba(0, 0, 0, 0.55), 0 0 28px rgba(40, 230, 255, 0.35);
    border-color: rgba(40, 230, 255, 0.78);
  }
}

.method-step__label {
  color: var(--text-soft);
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Grid placement — the stage is a 3-column grid (left steps | compass | right steps),
   two equal rows beside the compass, so alignment is exact by construction. */

.method-step--tl {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}
.method-step--tl .method-step__badge { order: 2; }
.method-step--tl .method-step__label { order: 1; justify-self: end; }

.method-step--tr {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  text-align: left;
}
.method-step--tr .method-step__badge { order: 1; }
.method-step--tr .method-step__label { order: 2; justify-self: start; }

.method-step--ml {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  text-align: right;
}
.method-step--ml .method-step__badge { order: 2; }
.method-step--ml .method-step__label { order: 1; justify-self: end; }

.method-step--mr {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  text-align: left;
}
.method-step--mr .method-step__badge { order: 1; }
.method-step--mr .method-step__label { order: 2; justify-self: start; }

.method-step--bc {
  grid-column: 1 / 4;
  grid-row: 3;
  justify-self: center;
  margin-top: 26px;
  padding: 10px 24px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(40, 230, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 59, 115, 0.96), rgba(7, 88, 159, 0.86));
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(40, 230, 255, 0.22);
}

.method-step--bc .method-step__badge {
  width: clamp(48px, 4.2vw, 62px);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  animation: none;
  box-shadow: inset 0 0 18px rgba(40, 230, 255, 0.32);
}

.method-step--bc .method-step__label {
  color: #eafbff;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.method-stage.is-visible .method-step--tl { transition-delay: 720ms; }
.method-stage.is-visible .method-step--tr { transition-delay: 900ms; }
.method-stage.is-visible .method-step--ml { transition-delay: 1080ms; }
.method-stage.is-visible .method-step--mr { transition-delay: 1260ms; }
.method-stage.is-visible .method-step--bc { transition-delay: 1440ms; }

@media (max-width: 980px) {
  .method-stage {
    grid-template-columns: 1fr clamp(240px, 38vw, 380px) 1fr;
    column-gap: clamp(10px, 2.5vw, 28px);
  }
  .method-step__label { font-size: 0.78rem; }
  .method-step__badge { width: clamp(54px, 7vw, 72px); font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
}

@media (max-width: 720px) {
  .method-stage {
    display: block;
    min-height: 0;
    width: 100%;
    margin: 24px auto 0;
    padding: 0 6px;
  }
  .method-step__badge::after { display: none; }

  .method-compass {
    position: relative;
    inset: auto;
    transform: none;
    margin: 0 auto 28px;
    width: min(82%, 320px);
    animation: none;
  }
  .method-compass img {
    animation: methodCompassFloat 7s ease-in-out infinite;
  }

  .method-steps {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 360px;
    margin: 0 auto;
    padding-left: 36px;
  }

  .method-steps::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 14px;
    width: 1px;
    background: repeating-linear-gradient(
      180deg,
      rgba(40, 230, 255, 0.55) 0 6px,
      transparent 6px 14px
    );
    pointer-events: none;
  }

  .method-step {
    position: relative;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "letter label";
    column-gap: 16px;
    align-items: center;
    text-align: left !important;
    justify-items: start !important;
    transform: translateX(-14px) scale(0.9);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(40, 230, 255, 0.16);
    background: rgba(3, 10, 22, 0.62);
    backdrop-filter: blur(8px);
  }
  .method-step::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 230, 255, 0.6));
  }
  .method-stage.is-visible .method-step {
    transform: translateX(0) scale(1);
  }
  .method-step__badge {
    grid-area: badge;
    width: 52px;
    font-size: 1.35rem;
    animation: none;
  }
  .method-step__label {
    grid-area: label;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    white-space: normal;
  }
  .method-step {
    grid-template-areas: "badge label";
    grid-template-columns: auto 1fr;
  }
  .method-step--bc {
    background: linear-gradient(135deg, rgba(0, 59, 115, 0.96), rgba(7, 88, 159, 0.86));
    border-color: rgba(40, 230, 255, 0.45);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5), 0 0 22px rgba(40, 230, 255, 0.22);
  }
  .method-step--bc .method-step__badge {
    box-shadow: inset 0 0 14px rgba(40, 230, 255, 0.32);
  }
  .method-step--bc .method-step__label { color: #eafbff; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
