:root {
  --carbon: #0c1110;
  --carbon-soft: #18211e;
  --ink: #101714;
  --paper: #edf1ee;
  --white: #f8fbf9;
  --mineral: #6f7a75;
  --line: rgba(12, 17, 16, 0.18);
  --solar: #8d7dff;
  --sky: #70d3a2;
  --amber: #b9b0ff;
  --shell: min(88vw, 1540px);
  --display: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--carbon);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-nav-open="true"] {
  overflow: hidden;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  color: var(--carbon);
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5.5vw, 96px);
  color: var(--white);
  background: rgba(15, 15, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header--solid {
  position: relative;
  background: var(--carbon);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 320;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.2vw, 62px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 254, 250, 0.86);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 380;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--solar);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-5px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  height: 100svh;
  max-height: 1080px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.91) 0%, rgba(6, 7, 7, 0.70) 35%, rgba(6, 7, 7, 0.18) 70%, rgba(6, 7, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 7, 7, 0.52), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 96px auto 0;
}

.hero h1 {
  width: min(820px, 72vw);
  margin: 0 0 42px;
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 112px);
  font-weight: 280;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  width: min(900px, 76vw);
  margin-top: 10px;
  font-weight: 720;
  letter-spacing: -0.062em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  padding: 8px 0 12px;
  color: var(--ink);
  border-bottom: 2px solid var(--solar);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--sky);
  font-size: 25px;
  font-weight: 300;
  line-height: 0;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(7px);
}

.text-link--light {
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5.5vw, 96px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.42);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-light {
  background: var(--white);
}

.section-paper {
  background: var(--paper);
}

.eyebrow {
  margin: 0;
  color: var(--solar);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--amber);
}

.mission {
  padding: clamp(120px, 14vw, 230px) 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.7fr 3.3fr;
  gap: 8vw;
}

.mission-copy {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(260px, 0.85fr);
  gap: 7vw;
  align-items: end;
}

.mission h2,
.section-heading h2,
.planet-copy h2,
.node-panel h2,
.partner-content h2,
.detail-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 590;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.mission h2 {
  max-width: 1000px;
  font-size: clamp(52px, 6.6vw, 106px);
}

.mission-summary {
  padding-bottom: 8px;
}

.mission-summary p {
  margin: 0 0 34px;
  color: #464849;
  font-size: 18px;
}

.system-story {
  padding: clamp(110px, 12vw, 190px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  max-width: 1080px;
  grid-template-columns: 1fr 2.4fr;
  gap: 50px;
  align-items: start;
}

.section-heading h2 {
  grid-column: 2;
  font-size: clamp(54px, 6.3vw, 100px);
}

.section-heading > p:last-child {
  grid-column: 2;
  max-width: 650px;
  margin: 10px 0 0;
  color: #555758;
}

.system-sequence {
  display: grid;
  margin-top: clamp(70px, 9vw, 140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.system-sequence article {
  min-height: 330px;
  padding: 42px clamp(28px, 3vw, 58px) 48px;
}

.system-sequence article + article {
  border-left: 1px solid var(--line);
}

.sequence-index {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--carbon);
  font-family: var(--utility);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.system-sequence h3 {
  margin: 72px 0 20px;
  font-family: var(--display);
  font-size: clamp(30px, 2.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.system-sequence p {
  max-width: 390px;
  margin: 0;
  color: #57595a;
}

.section-link {
  margin-top: 54px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 52px;
}

.planet-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 45%, rgba(91, 122, 132, 0.17), transparent 42%),
    var(--carbon);
}

.planet-layout {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1.26fr);
  gap: 6vw;
  align-items: center;
}

.planet-copy {
  position: relative;
  z-index: 2;
}

.planet-copy h2 {
  margin: 26px 0 36px;
  font-size: clamp(54px, 6vw, 96px);
}

.planet-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.66);
}

.planet-visual {
  position: relative;
  width: min(100%, 780px);
  justify-self: end;
}

.planet-launch {
  color: inherit;
  text-decoration: none;
}

.planet-visual svg {
  width: 100%;
}

.globe-ring,
.globe-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
}

.land {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
}

.route {
  fill: none;
  stroke: url(#route-glow);
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.grid-node circle:first-child {
  fill: var(--amber);
}

.grid-node circle:last-child {
  fill: none;
  stroke: rgba(228, 163, 106, 0.45);
  stroke-width: 1.5;
}

.node-jeju circle:first-child {
  fill: var(--sky);
}

.node-jeju circle:last-child {
  stroke: rgba(95, 181, 213, 0.56);
}

.planet-caption {
  position: absolute;
  right: 9%;
  bottom: 9%;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.node-section {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: 63% 37%;
  align-items: stretch;
  overflow: hidden;
}

.node-image {
  min-height: 820px;
  background: #9da5aa url("/node-infrastructure.jpg") center center / cover no-repeat;
}

.node-panel {
  z-index: 2;
  align-self: center;
  width: min(620px, calc(100% + 150px));
  margin-left: -150px;
  padding: clamp(58px, 6vw, 110px);
  background: var(--white);
}

.node-panel h2 {
  margin: 28px 0 32px;
  font-size: clamp(46px, 5vw, 82px);
}

.node-panel p:not(.eyebrow) {
  margin: 0 0 42px;
  color: #4d4f50;
}

.evidence-section {
  padding: clamp(110px, 12vw, 190px) 0;
}

.section-heading--split {
  max-width: none;
  grid-template-columns: 1.65fr 0.65fr;
  gap: 10vw;
}

.section-heading--split h2,
.section-heading--split > div {
  grid-column: 1;
}

.section-heading--split h2 {
  margin-top: 24px;
}

.section-heading--split > p:last-child {
  grid-column: 2;
  align-self: end;
}

.evidence-numbers {
  display: grid;
  margin: clamp(70px, 8vw, 120px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.evidence-numbers div {
  padding: 52px clamp(24px, 3vw, 56px) 46px;
}

.evidence-numbers div + div {
  border-left: 1px solid var(--line);
}

.evidence-numbers dt {
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 132px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.evidence-numbers dd {
  margin: 24px 0 0;
  color: #555758;
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.evidence-principles dt {
  max-width: 9ch;
  font-size: clamp(40px, 4.8vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.evidence-principles dd {
  max-width: 27ch;
  line-height: 1.55;
}

.partner-section {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.partner-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 11, 0.94), rgba(10, 11, 11, 0.55) 50%, rgba(10, 11, 11, 0.45)),
    url("/hero-poster.jpg") center 64% / cover no-repeat;
  filter: saturate(0.55);
  transform: scale(1.02);
}

.partner-content {
  position: relative;
  z-index: 2;
}

.partner-content h2 {
  max-width: 1100px;
  margin: 26px 0 34px;
  font-size: clamp(62px, 8vw, 130px);
}

.partner-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.7);
}

.button-link {
  display: inline-flex;
  min-width: 246px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 24px;
  color: var(--carbon);
  background: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--white);
  background: var(--solar);
}

.site-footer {
  display: grid;
  min-height: 210px;
  align-items: center;
  padding: 52px clamp(24px, 5.5vw, 96px);
  color: rgba(255, 255, 255, 0.7);
  background: #0a0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 1fr 1fr 1fr;
}

.brand--footer {
  justify-self: start;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer > p:nth-child(2) {
  justify-self: center;
}

.footer-boundary {
  justify-self: end;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--utility);
  font-size: 9px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal][data-visible="true"] {
  opacity: 1;
  transform: none;
}

.detail-page {
  background: var(--paper);
}

.detail-hero {
  position: relative;
  display: flex;
  min-height: 730px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.detail-hero-media,
.detail-hero-shade {
  position: absolute;
  inset: 0;
}

.detail-hero-media {
  background: url("/hero-poster.jpg") center center / cover no-repeat;
}

.detail-hero-media[data-variant="node"] {
  background-image: url("/node-infrastructure.jpg");
  background-position: center;
}

.detail-hero-media[data-variant="grid"] {
  background:
    radial-gradient(circle at 68% 44%, rgba(112, 211, 162, 0.24), transparent 30%),
    radial-gradient(circle at 68% 44%, #263a33, #0d1210 54%, #080b0a);
}

.detail-hero-media[data-variant="research"] {
  background:
    linear-gradient(120deg, rgba(141, 125, 255, 0.16), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px),
    #101112;
}

.detail-hero-media[data-variant="intelligence"] {
  background:
    radial-gradient(circle at 75% 35%, rgba(141, 125, 255, 0.34), transparent 23%),
    radial-gradient(circle at 60% 65%, rgba(112, 211, 162, 0.2), transparent 28%),
    #101112;
}

.detail-hero-media[data-variant="partners"] {
  filter: saturate(0.65);
  background-position: center 58%;
}

.detail-hero-shade {
  background: linear-gradient(90deg, rgba(6, 7, 7, 0.95), rgba(6, 7, 7, 0.54) 58%, rgba(6, 7, 7, 0.2));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(70px, 8vw, 126px);
}

.detail-hero h1 {
  max-width: 1120px;
  margin: 28px 0 30px;
  font-family: var(--display);
  font-size: clamp(58px, 7.6vw, 124px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.detail-hero-content > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.detail-intro {
  padding: clamp(110px, 13vw, 210px) 0;
}

.detail-intro-grid {
  display: grid;
  grid-template-columns: 2fr 0.75fr;
  gap: 10vw;
  align-items: end;
}

.detail-intro h2 {
  font-size: clamp(56px, 7vw, 112px);
}

.detail-intro p {
  margin: 0 0 10px;
  color: #4f5152;
}

.detail-points {
  padding: clamp(100px, 11vw, 170px) 0;
  border-top: 1px solid var(--line);
}

.detail-point-grid {
  display: grid;
  margin-bottom: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.detail-point-grid article {
  min-height: 330px;
  padding: 42px clamp(28px, 3vw, 54px);
}

.detail-point-grid article + article {
  border-left: 1px solid var(--line);
}

.detail-point-index {
  color: var(--solar);
  font-family: var(--utility);
  font-size: 11px;
}

.detail-point-grid h3 {
  margin: 90px 0 22px;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.detail-point-grid p {
  margin: 0;
  color: #565859;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 50px;
}

.workspace-page {
  color: var(--white);
  background: var(--carbon);
}

.workspace-intro {
  display: grid;
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(42px, 4vw, 64px) 0 clamp(28px, 3vw, 42px);
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: 8vw;
  align-items: end;
}

.workspace-intro h1 {
  max-width: 980px;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.3vw, 78px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.workspace-intro-copy p {
  margin: 0 0 18px;
  color: rgba(248, 251, 249, 0.66);
}

.dataset-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(248, 251, 249, 0.72);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dataset-badge i {
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(112, 211, 162, 0.12);
}

.atlas-workspace,
.agent-workspace {
  width: min(94vw, 1780px);
  margin: 0 auto clamp(80px, 9vw, 150px);
  overflow: hidden;
  border: 1px solid rgba(248, 251, 249, 0.14);
}

.atlas-workspace {
  color: var(--ink);
  background: var(--white);
}

.atlas-toolbar {
  display: grid;
  min-height: 118px;
  padding: 24px clamp(24px, 3vw, 52px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(280px, 1fr) minmax(220px, 0.68fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.atlas-toolbar .control-group {
  min-width: 0;
}

.control-label,
.card-label {
  display: block;
  margin-bottom: 16px;
  color: #69736e;
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.segmented-control {
  display: grid;
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.segmented-control button {
  padding: 12px 8px;
  color: #59625e;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
}

.segmented-control button + button {
  border-left: 1px solid var(--line);
}

.segmented-control button[aria-pressed="true"] {
  color: var(--white);
  background: var(--carbon);
}

.atlas-toolbar input[type="range"] {
  width: 100%;
  accent-color: var(--solar);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #7b847f;
  font-family: var(--utility);
  font-size: 9px;
}

.range-labels strong {
  color: var(--ink);
}

.atlas-status {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.atlas-status strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 560;
}

.workspace-boundary {
  margin: 38px 0 0;
  color: #737d78;
  font-family: var(--utility);
  font-size: 9px;
  line-height: 1.6;
}

.atlas-stage {
  position: relative;
  padding: clamp(36px, 3.8vw, 64px);
  background:
    radial-gradient(circle at 68% 38%, rgba(112, 211, 162, 0.07), transparent 27%),
    radial-gradient(circle at 31% 63%, rgba(141, 125, 255, 0.055), transparent 24%),
    #080c0b;
}

.atlas-heading {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: start;
}

.atlas-heading span {
  display: block;
  color: rgba(248, 251, 249, 0.48);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas-heading h2 {
  max-width: 830px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.atlas-heading p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(248, 251, 249, 0.54);
  font-size: 14px;
}

.atlas-heading a {
  align-self: start;
  color: var(--white);
  border-bottom: 1px solid var(--solar);
  font-size: 12px;
  text-decoration: none;
}

.atlas-globe {
  position: relative;
  width: min(100%, 1280px);
  margin: clamp(38px, 4vw, 68px) auto 26px;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.26));
}

.atlas-globe svg {
  display: block;
  width: 100%;
  height: auto;
}

.atlas-sphere {
  fill: url(#atlas-ocean);
  filter: url(#atlas-shadow);
}

.atlas-sphere-edge {
  fill: none;
  stroke: rgba(248, 251, 249, 0.23);
  stroke-width: 1.4;
}

.atlas-graticule {
  fill: none;
  stroke: rgba(248, 251, 249, 0.075);
  stroke-width: 1;
}

.atlas-land path {
  fill: rgba(217, 232, 224, 0.12);
  stroke: rgba(224, 240, 231, 0.21);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.atlas-globe-label {
  position: absolute;
  z-index: 5;
  top: 10.5%;
  left: 8.2%;
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(7, 11, 10, 0.74);
  border-left: 2px solid var(--sky);
  backdrop-filter: blur(12px);
}

.atlas-globe-label span,
.atlas-globe-label small,
.atlas-layer-key {
  font-family: var(--utility);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.atlas-globe-label span {
  color: rgba(248, 251, 249, 0.48);
  font-size: 8px;
}

.atlas-globe-label strong {
  margin: 3px 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.atlas-globe-label small {
  color: rgba(248, 251, 249, 0.54);
  font-size: 8px;
}

.atlas-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: rgba(248, 251, 249, 0.72);
  background: rgba(7, 11, 10, 0.82);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.atlas-node i {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(112, 211, 162, 0.11);
}

.atlas-node[aria-pressed="true"] {
  color: var(--white);
  background: rgba(7, 11, 10, 0.96);
  border-color: var(--sky);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.atlas-node[aria-pressed="true"] i::after {
  position: absolute;
  inset: -10px;
  border: 1px solid var(--solar);
  border-radius: 50%;
  content: "";
  animation: atlas-pulse 2.6s ease-out infinite;
}

.atlas-globe[data-layer="compute"] .atlas-node i {
  background: var(--solar);
  box-shadow: 0 0 0 7px rgba(141, 125, 255, 0.12);
}

.atlas-globe[data-layer="risk"] .atlas-node i {
  background: #d7e8df;
  box-shadow: 0 0 0 7px rgba(215, 232, 223, 0.1);
}

.atlas-layer-key {
  position: absolute;
  right: 8.2%;
  bottom: 9.5%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(248, 251, 249, 0.55);
  font-size: 8px;
}

.atlas-layer-key i {
  width: 22px;
  height: 2px;
  background: var(--sky);
}

.atlas-globe[data-layer="compute"] .atlas-layer-key i {
  background: var(--solar);
}

.atlas-globe[data-layer="risk"] .atlas-layer-key i {
  background: #d7e8df;
}

.atlas-decision-path {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) auto minmax(280px, 1.5fr) auto minmax(220px, 0.9fr);
  gap: clamp(15px, 2vw, 32px);
  align-items: stretch;
  padding: 1px;
  background: rgba(248, 251, 249, 0.13);
}

.atlas-decision-path section {
  min-width: 0;
  padding: 22px 24px;
  background: #0d1311;
}

.atlas-decision-path > i {
  align-self: center;
  color: rgba(248, 251, 249, 0.28);
  font-size: 21px;
  font-style: normal;
}

.atlas-decision-path span,
.atlas-facts span {
  display: block;
  color: rgba(248, 251, 249, 0.43);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas-decision-path strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.atlas-decision-path p {
  margin: 8px 0 0;
  color: rgba(248, 251, 249, 0.48);
  font-size: 10px;
}

.atlas-decision-path__proposal {
  box-shadow: inset 2px 0 var(--solar);
}

.atlas-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 0.7fr)) minmax(260px, 1.4fr);
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(248, 251, 249, 0.13);
}

.atlas-facts > div {
  padding: 20px 24px 0 0;
}

.atlas-facts strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 14px;
}

.atlas-facts .workspace-boundary {
  align-self: end;
  margin: 18px 0 0;
  text-align: right;
}

@keyframes atlas-pulse {
  0% { opacity: 0.85; transform: scale(0.55); }
  78%, 100% { opacity: 0; transform: scale(1.45); }
}

.agent-workspace {
  display: grid;
  min-height: 780px;
  color: var(--ink);
  background: var(--white);
  grid-template-columns: minmax(340px, 0.64fr) minmax(0, 1.36fr);
}

.agent-composer {
  padding: clamp(34px, 4vw, 68px);
  border-right: 1px solid var(--line);
}

.agent-identity {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 38px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.agent-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--carbon);
  border-right: 7px solid var(--solar);
  font-family: var(--utility);
  font-size: 11px;
}

.agent-identity strong,
.agent-identity small {
  display: block;
}

.agent-identity small {
  margin-top: 3px;
  color: #737c78;
  font-size: 11px;
}

.agent-composer label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.agent-composer textarea {
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  resize: vertical;
}

.agent-composer textarea[aria-invalid="true"] {
  border-color: #a33155;
}

.prompt-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 34px;
}

.prompt-examples button {
  padding: 8px 10px;
  color: #5f6964;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 10px;
}

.agent-run {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--white);
  background: var(--carbon);
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.agent-run:hover,
.agent-run:focus-visible {
  background: #5146a5;
}

.agent-run:disabled {
  cursor: wait;
  opacity: 0.58;
}

.agent-result {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 88px);
  background: var(--paper);
}

.agent-empty {
  max-width: 560px;
}

.agent-empty > span {
  color: var(--solar);
  font-family: var(--utility);
  font-size: 11px;
}

.agent-empty h2 {
  margin: 22px 0;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.agent-empty p {
  color: #5d6762;
}

.evidence-card {
  width: min(100%, 850px);
  background: var(--white);
  border: 1px solid var(--line);
}

.evidence-card > header,
.evidence-card > section,
.evidence-card > footer,
.card-grid > section {
  padding: clamp(24px, 3vw, 42px);
}

.evidence-card > header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.evidence-card header span,
.evidence-card header strong {
  display: block;
}

.evidence-card header > div > span {
  color: #737c78;
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.evidence-card header strong {
  margin-top: 4px;
  font-family: var(--utility);
  font-size: 12px;
}

.verified-pill {
  align-self: start;
  padding: 7px 9px;
  color: #1f503a;
  background: rgba(112, 211, 162, 0.2);
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.evidence-card p,
.evidence-card ul {
  margin: 0;
}

.card-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.card-grid > section + section {
  border-left: 1px solid var(--line);
}

.card-grid ul {
  padding-left: 18px;
  color: #59635f;
  font-size: 13px;
}

.card-decision h2 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.card-decision p {
  color: #59635f;
}

.evidence-card > footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  color: #737c78;
  background: #e6ece8;
  font-family: var(--utility);
  font-size: 8px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 90px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 100px 9vw;
    background: rgba(13, 14, 14, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(34px, 7vw, 64px);
    font-weight: 500;
    letter-spacing: -0.035em;
  }

  .hero h1 {
    width: min(860px, 90vw);
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mission-copy {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .mission-summary {
    max-width: 540px;
  }

  .planet-layout {
    min-height: auto;
    padding: 120px 0 80px;
    grid-template-columns: 1fr;
  }

  .planet-visual {
    width: min(100%, 720px);
    justify-self: center;
  }

  .node-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .node-image {
    min-height: 620px;
  }

  .node-panel {
    width: min(88vw, 780px);
    margin: -120px auto 80px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading--split > p:last-child {
    grid-column: 1;
  }

  .detail-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .workspace-intro {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .workspace-intro-copy {
    max-width: 620px;
  }

  .atlas-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .atlas-status {
    grid-column: 1 / -1;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .agent-workspace {
    grid-template-columns: 1fr;
  }

  .agent-composer {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 44px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 78px;
    padding: 0 22px;
  }

  .brand {
    gap: 9px;
    font-size: 24px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 720px;
    max-height: none;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 7, 7, 0.9), rgba(6, 7, 7, 0.44)),
      linear-gradient(0deg, rgba(6, 7, 7, 0.58), transparent 55%);
  }

  .hero-content {
    margin-top: 52px;
  }

  .hero h1 {
    width: 100%;
    margin-bottom: 36px;
    font-size: clamp(47px, 13.7vw, 68px);
    line-height: 0.96;
  }

  .hero h1 strong {
    width: 100%;
    margin-top: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .mission,
  .system-story,
  .evidence-section,
  .detail-intro,
  .detail-points {
    padding: 92px 0;
  }

  .mission h2,
  .section-heading h2,
  .planet-copy h2,
  .node-panel h2,
  .partner-content h2,
  .detail-intro h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 24px;
  }

  .section-heading > p:last-child {
    margin-top: 30px;
  }

  .system-sequence,
  .evidence-numbers,
  .detail-point-grid {
    grid-template-columns: 1fr;
  }

  .system-sequence article,
  .detail-point-grid article {
    min-height: 290px;
  }

  .system-sequence article + article,
  .evidence-numbers div + div,
  .detail-point-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .system-sequence h3,
  .detail-point-grid h3 {
    margin-top: 62px;
  }

  .planet-layout {
    padding-top: 94px;
  }

  .planet-copy {
    padding-right: 10px;
  }

  .planet-visual {
    width: 112%;
    margin-left: -6%;
  }

  .planet-caption {
    right: 12%;
    bottom: 5%;
  }

  .node-image {
    min-height: 470px;
    background-position: 42% center;
  }

  .node-panel {
    width: calc(100% - 32px);
    margin-top: -72px;
    padding: 50px 28px 56px;
  }

  .evidence-numbers div {
    padding: 38px 10px 36px;
  }

  .partner-section {
    min-height: 680px;
  }

  .partner-content h2 {
    font-size: clamp(52px, 15vw, 74px);
  }

  .site-footer {
    min-height: 260px;
    align-content: center;
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .site-footer > p,
  .brand--footer,
  .footer-boundary {
    justify-self: start !important;
  }

  .detail-hero {
    min-height: 650px;
  }

  .detail-hero h1 {
    font-size: clamp(54px, 15vw, 76px);
  }

  .detail-hero-content {
    padding-bottom: 70px;
  }

  .workspace-intro {
    padding: 34px 0 28px;
    gap: 22px;
  }

  .workspace-intro h1 {
    font-size: clamp(44px, 12.5vw, 56px);
  }

  .workspace-intro-copy p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .workspace-page.atlas-view .workspace-intro {
    padding: 24px 0 20px;
    gap: 14px;
  }

  .workspace-page.atlas-view .workspace-intro-copy p {
    display: none;
  }

  .atlas-workspace,
  .agent-workspace {
    width: 100%;
    margin-bottom: 70px;
    border-right: 0;
    border-left: 0;
  }

  .atlas-toolbar {
    display: grid;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .atlas-toolbar .control-label {
    margin-bottom: 10px;
  }

  .atlas-status {
    grid-column: 1;
    min-height: 0;
    padding-top: 15px;
  }

  .atlas-view .atlas-status {
    display: none;
  }

  .atlas-status strong {
    margin-top: 5px;
    font-size: 17px;
  }

  .atlas-stage {
    padding: 38px 18px;
  }

  .atlas-heading {
    flex-direction: column;
    gap: 18px;
  }

  .atlas-heading h2 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .atlas-heading p {
    display: none;
  }

  .atlas-globe {
    width: 136%;
    margin: 28px 0 20px -18%;
  }

  .atlas-globe-label {
    display: none;
  }

  .atlas-node {
    padding: 4px 6px;
    font-size: 7px;
  }

  .atlas-node i {
    width: 7px;
    height: 7px;
  }

  .atlas-layer-key {
    right: 7%;
    bottom: 5%;
    font-size: 7px;
  }

  .atlas-decision-path {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .atlas-decision-path > i {
    display: none;
  }

  .atlas-decision-path section {
    padding: 20px;
  }

  .atlas-facts {
    grid-template-columns: 1fr;
  }

  .atlas-facts > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(248, 251, 249, 0.1);
  }

  .atlas-facts strong {
    margin: 0;
  }

  .atlas-facts .workspace-boundary {
    margin-top: 22px;
    text-align: left;
  }

  .agent-composer,
  .agent-result {
    padding: 38px 22px;
  }

  .agent-result {
    min-height: 520px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid > section + section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* FLEX Atlas V6: one projection, one evidence boundary, one decision view. */
.workspace-page.atlas-view .workspace-intro {
  display: none;
}

.atlas-view .atlas-workspace {
  width: 100%;
  margin: 0;
  overflow: visible;
  color: var(--white);
  background: #080c0b;
  border: 0;
}

.atlas-view .atlas-stage {
  min-height: calc(100vh - 88px);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 4vw, 72px) clamp(54px, 6vw, 96px);
  background:
    radial-gradient(circle at 74% 13%, rgba(115, 214, 161, 0.1), transparent 26%),
    radial-gradient(circle at 18% 48%, rgba(140, 124, 255, 0.08), transparent 25%),
    #080c0b;
}

.atlas-view .atlas-heading {
  max-width: 1640px;
  margin: 0 auto 24px;
  align-items: end;
}

.atlas-view .atlas-heading h2 {
  max-width: 980px;
  margin-top: 8px;
  color: #f8fbf9;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 0.95;
}

.atlas-view .atlas-heading p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(248, 251, 249, 0.68);
  line-height: 1.55;
}

.atlas-view .atlas-heading a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 0 3px;
  white-space: nowrap;
}

.atlas-view .atlas-toolbar {
  display: grid;
  width: min(100%, 1640px);
  min-height: 0;
  margin: 0 auto 18px;
  padding: 0;
  grid-template-columns: minmax(280px, 390px) minmax(260px, 430px);
  justify-content: end;
  gap: 16px;
  color: var(--white);
  border: 0;
}

.atlas-view .atlas-toolbar fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.atlas-view .control-label {
  margin-bottom: 7px;
  color: rgba(248, 251, 249, 0.55);
}

.atlas-view .segmented-control {
  min-height: 44px;
  background: rgba(13, 19, 17, 0.88);
  border-color: rgba(248, 251, 249, 0.18);
}

.atlas-view .segmented-control button {
  min-height: 44px;
  color: rgba(248, 251, 249, 0.68);
}

.atlas-view .segmented-control button + button {
  border-color: rgba(248, 251, 249, 0.14);
}

.atlas-view .segmented-control button[aria-pressed="true"] {
  color: #08100d;
  background: #73d6a1;
}

.atlas-view .atlas-toolbar input[type="range"] {
  min-height: 24px;
  margin: 0;
}

.atlas-view .range-labels {
  color: rgba(248, 251, 249, 0.42);
}

.atlas-view .range-labels output {
  color: #f8fbf9;
  font-weight: 700;
}

.atlas-layout {
  display: grid;
  width: min(100%, 1640px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.68fr);
  gap: 1px;
  background: rgba(248, 251, 249, 0.14);
  border: 1px solid rgba(248, 251, 249, 0.14);
}

.atlas-map-shell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #090e0c;
}

.atlas-map-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 45%, rgba(0, 0, 0, 0.15));
  content: "";
  pointer-events: none;
}

.atlas-map-meta {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(248, 251, 249, 0.5);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.atlas-map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}

.atlas-map .atlas-sphere {
  fill: url(#atlas-ocean);
}

.atlas-map .atlas-sphere-edge {
  fill: none;
  stroke: rgba(248, 251, 249, 0.22);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}

.atlas-map .atlas-graticule {
  fill: none;
  stroke: rgba(248, 251, 249, 0.085);
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.atlas-map .atlas-land {
  fill: #25312e;
  stroke: #61716a;
  stroke-opacity: 0.56;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.atlas-site {
  cursor: pointer;
  outline: none;
}

.atlas-site__hit {
  fill: transparent;
  pointer-events: all;
}

.atlas-site__energy,
.atlas-site__compute,
.atlas-site__risk {
  vector-effect: non-scaling-stroke;
  transition: opacity 160ms ease, transform 160ms ease;
}

.atlas-site__energy {
  fill: rgba(115, 214, 161, 0.72);
  stroke: #b8f0d1;
  stroke-width: 1.5;
}

.atlas-site__compute {
  fill: rgba(140, 124, 255, 0.74);
  stroke: #c7bdff;
  stroke-width: 1.5;
}

.atlas-site__risk {
  fill: rgba(224, 170, 104, 0.16);
  stroke: #e0aa68;
  stroke-width: 2;
}

.atlas-map-shell[data-layer="energy"] .atlas-site__compute,
.atlas-map-shell[data-layer="energy"] .atlas-site__risk,
.atlas-map-shell[data-layer="compute"] .atlas-site__energy,
.atlas-map-shell[data-layer="compute"] .atlas-site__risk,
.atlas-map-shell[data-layer="risk"] .atlas-site__energy,
.atlas-map-shell[data-layer="risk"] .atlas-site__compute {
  opacity: 0;
  pointer-events: none;
}

.atlas-site.is-selected .atlas-site__energy,
.atlas-site.is-selected .atlas-site__compute,
.atlas-site.is-selected .atlas-site__risk {
  filter: url(#atlas-selected-glow);
}

.atlas-site:focus-visible .atlas-site__hit {
  fill: rgba(248, 251, 249, 0.12);
  stroke: #f8fbf9;
  stroke-width: 2;
}

.atlas-site__label {
  opacity: 0;
  fill: #f8fbf9;
  paint-order: stroke;
  stroke: #080c0b;
  stroke-width: 5px;
  stroke-linejoin: round;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.atlas-site.is-selected .atlas-site__label {
  opacity: 1;
}

.atlas-legend {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 18px;
  display: grid;
  min-width: 255px;
  padding: 12px 14px;
  color: #f8fbf9;
  background: rgba(8, 12, 11, 0.88);
  border: 1px solid rgba(248, 251, 249, 0.13);
  grid-template-columns: 28px 1fr;
  gap: 3px 9px;
  backdrop-filter: blur(12px);
}

.atlas-legend-glyph {
  width: 13px;
  height: 13px;
  align-self: center;
  background: #73d6a1;
  border: 1px solid #b8f0d1;
  border-radius: 50%;
  grid-row: 1 / 3;
}

.atlas-map-shell[data-layer="compute"] .atlas-legend-glyph {
  background: #8c7cff;
  border-color: #c7bdff;
  border-radius: 1px;
}

.atlas-map-shell[data-layer="risk"] .atlas-legend-glyph {
  background: rgba(224, 170, 104, 0.2);
  border-color: #e0aa68;
  border-radius: 0;
  transform: rotate(45deg);
}

.atlas-legend strong {
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.atlas-legend small {
  color: rgba(248, 251, 249, 0.5);
  font-family: var(--utility);
  font-size: 8px;
}

.atlas-map-rejected .atlas-map {
  opacity: 0.18;
}

.atlas-dossier {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 38px);
  color: #101714;
  background: #f8fbf9;
}

.atlas-dossier__status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  color: #51605a;
  border-bottom: 1px solid #d9dfdb;
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-dossier__status span {
  color: #3c7156;
  font-weight: 800;
}

.atlas-dossier__title {
  padding: 23px 0 20px;
}

.atlas-dossier__title > span {
  color: #69736e;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas-dossier__title h3 {
  margin: 5px 0 7px;
  font-family: var(--display);
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 620;
  letter-spacing: -0.055em;
}

.atlas-dossier__title p {
  margin: 0;
  color: #5c6762;
  font-size: 11px;
  line-height: 1.55;
}

.atlas-dossier .atlas-decision-path {
  display: grid;
  padding: 0;
  margin: 0;
  background: transparent;
  border-top: 1px solid #d9dfdb;
  list-style: none;
  grid-template-columns: 1fr;
  gap: 0;
}

.atlas-dossier .atlas-decision-path li {
  position: relative;
  padding: 15px 0 15px 19px;
  border-bottom: 1px solid #d9dfdb;
}

.atlas-dossier .atlas-decision-path li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #73d6a1;
  border-radius: 50%;
  content: "";
}

.atlas-dossier .atlas-decision-path__proposal {
  box-shadow: none;
}

.atlas-dossier .atlas-decision-path__proposal::before {
  background: #8c7cff;
  border-radius: 1px;
}

.atlas-dossier .atlas-decision-path span {
  color: #6a746f;
  font-size: 8px;
}

.atlas-dossier .atlas-decision-path strong {
  margin-top: 4px;
  color: #101714;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.18;
}

.atlas-dossier .atlas-decision-path p {
  margin-top: 4px;
  color: #69736e;
}

.atlas-provenance {
  display: grid;
  margin: auto 0 0;
  padding-top: 18px;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.atlas-provenance div {
  min-width: 0;
}

.atlas-provenance dt {
  color: #6c7671;
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-provenance dd {
  overflow: hidden;
  margin: 4px 0 0;
  color: #17201c;
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atlas-site-list {
  display: grid;
  width: min(100%, 1640px);
  margin: 1px auto 0;
  background: rgba(248, 251, 249, 0.12);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
}

.atlas-site-list button {
  display: flex;
  min-width: 0;
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 14px;
  color: rgba(248, 251, 249, 0.66);
  background: #0d1311;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.atlas-site-list button:hover,
.atlas-site-list button:focus-visible,
.atlas-site-list button[aria-pressed="true"] {
  color: #f8fbf9;
  background: #17231f;
  box-shadow: inset 0 -2px #73d6a1;
}

.atlas-site-list button strong {
  font-family: var(--display);
  font-size: 14px;
}

.atlas-site-list button span {
  overflow: hidden;
  max-width: 100%;
  margin-top: 3px;
  color: rgba(248, 251, 249, 0.43);
  font-family: var(--utility);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atlas-boundary {
  display: grid;
  width: min(100%, 1640px);
  margin: 18px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: rgba(248, 251, 249, 0.56);
  font-family: var(--utility);
  font-size: 9px;
  line-height: 1.55;
}

.atlas-boundary p {
  margin: 0;
}

.atlas-boundary strong {
  color: rgba(248, 251, 249, 0.84);
}

@media (max-width: 1050px) {
  .atlas-layout {
    grid-template-columns: 1fr;
  }

  .atlas-dossier {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 0 28px;
  }

  .atlas-dossier__status {
    grid-column: 1 / -1;
  }

  .atlas-dossier__title {
    grid-column: 1;
  }

  .atlas-dossier .atlas-decision-path {
    grid-row: 2 / 4;
    grid-column: 2;
  }

  .atlas-provenance {
    margin: 0;
    grid-column: 1;
  }

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

@media (max-width: 700px) {
  .atlas-view .atlas-stage {
    min-height: 0;
    padding: 26px 14px 64px;
  }

  .atlas-view .atlas-heading {
    display: block;
    margin-bottom: 22px;
  }

  .atlas-view .atlas-heading h2 {
    max-width: 355px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .atlas-view .atlas-heading p {
    display: block;
    max-width: 360px;
    font-size: 13px;
  }

  .atlas-view .atlas-heading a {
    margin-top: 18px;
  }

  .atlas-view .atlas-toolbar {
    grid-template-columns: 1fr;
  }

  .atlas-map-meta {
    top: 10px;
    right: 12px;
    left: 12px;
    font-size: 7px;
  }

  .atlas-map-meta span:last-child {
    display: none;
  }

  .atlas-legend {
    right: 9px;
    bottom: 8px;
    min-width: 0;
    padding: 8px 9px;
  }

  .atlas-legend small {
    display: none;
  }

  .atlas-site__label {
    display: none;
  }

  .atlas-site {
    pointer-events: none;
  }

  .atlas-dossier {
    display: block;
    padding: 24px 20px;
  }

  .atlas-dossier .atlas-decision-path {
    display: grid;
  }

  .atlas-provenance {
    margin-top: 20px;
  }

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

  .atlas-site-list button {
    min-height: 58px;
  }

  .atlas-boundary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-site__energy,
  .atlas-site__compute,
  .atlas-site__risk {
    animation: none !important;
    transition: none !important;
  }
}
