
:root {
  --ink: #f3efe6;
  --muted: #98a7b8;
  --night: #07111f;
  --panel: rgba(11, 24, 40, 0.82);
  --line: rgba(83, 116, 143, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 42%, rgba(30, 54, 73, 0.36), transparent 38%),
    radial-gradient(circle at 9% 67%, rgba(103, 183, 197, 0.07), transparent 28%),
    linear-gradient(145deg, #050d17 0%, #07111f 52%, #040b14 100%);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.masthead {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(230px, 0.72fr) minmax(560px, 1.6fr);
  align-items: center;
  min-height: 118px;
  padding: 26px clamp(24px, 3vw, 52px);
  border-bottom: 1px solid rgba(119, 145, 166, 0.14);
  background: linear-gradient(180deg, rgba(4, 11, 19, 0.78), rgba(4, 11, 19, 0));
}

.brand {
  width: max-content;
  color: #f6f0e3;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  letter-spacing: 0.29em;
  text-decoration: none;
}

.baseline {
  margin: 0;
  color: #b3aea5;
  font-size: 0.88rem;
  letter-spacing: 0.075em;
}

.navigation-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.theme-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 38px);
}

.service-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8795a2;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-label {
  margin: 0 4px 0 8px;
  color: #b6a47b;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.service-coming,
.service-nav a {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(145, 161, 173, 0.22);
  border-radius: 3px;
  background: rgba(8, 19, 32, 0.42);
  white-space: nowrap;
}

.service-coming {
  color: #64737f;
  border-style: dashed;
}

.service-coming small {
  color: #94865f;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.service-nav a {
  color: #aeb9c2;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-nav a:hover,
.service-nav a:focus-visible {
  border-color: #d0b456;
  color: #f4cf58;
  background: rgba(244, 207, 88, 0.07);
  outline: none;
}

.service-nav a span {
  color: #d0b456;
  font-size: 0.72rem;
}

.theme-nav button {
  position: relative;
  padding: 12px 0;
  border: 0;
  color: color-mix(in srgb, var(--theme), #f3efe6 22%);
  background: transparent;
  font-size: 0.88rem;
  letter-spacing: 0.045em;
  cursor: pointer;
}

.theme-nav button::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--theme);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.theme-nav button:hover::after,
.theme-nav button:focus-visible::after {
  transform: scaleX(1);
}

.atlas {
  position: relative;
  width: min(1540px, 100%);
  min-height: calc(100vh - 110px);
  height: 820px;
  margin: 0 auto;
  isolation: isolate;
}

.connections {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connections path {
  fill: none;
  stroke: rgba(91, 123, 148, 0.34);
  stroke-width: 1;
  stroke-dasharray: 3 7;
  vector-effect: non-scaling-stroke;
}

.connections circle {
  fill: #d9c79f;
  stroke: rgba(217, 199, 159, 0.22);
  stroke-width: 7;
}

.orbital {
  position: absolute;
  z-index: -4;
  border: 1px solid rgba(92, 123, 146, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbital-one {
  top: 48px;
  left: 17%;
  width: 690px;
  height: 690px;
  transform: rotate(-9deg);
}

.orbital-two {
  top: 190px;
  left: 32%;
  width: 640px;
  height: 370px;
  transform: rotate(19deg);
}

.feature {
  --signal: #c96f5c;
  position: absolute;
  top: 14%;
  left: 27%;
  z-index: 3;
  width: 46%;
  min-height: 545px;
  overflow: hidden;
  border-color: #593b2b;
  border-style: solid;
  border-width: 12px 12px 30px;
  border-radius: 24px;
  background: #0b1725;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px #8d6848,
    0 0 0 3px #241a15,
    0 0 42px color-mix(in srgb, var(--signal), transparent 91%),
    inset 0 0 0 2px rgba(226, 183, 127, 0.13),
    inset 0 0 60px color-mix(in srgb, var(--signal), transparent 94%);
  outline: none;
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.feature-art,
.feature-shade,
.signal-glow,
.signal-scan {
  position: absolute;
  inset: 0;
}

.feature-art {
  background:
    none 80% center / cover no-repeat,
    radial-gradient(circle at 78% 42%, color-mix(in srgb, var(--signal), transparent 76%), transparent 47%);
  opacity: 0.66;
  filter: saturate(0.8) contrast(1.12);
  transform: scale(1);
  transition:
    opacity 420ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.feature:hover .feature-art {
  transform: scale(1.025);
}

.feature-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.91) 46%, rgba(7, 17, 31, 0.18) 88%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.9), transparent 55%);
}

.signal-screen::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(222, 234, 242, 0.1) 4px
  );
  mix-blend-mode: soft-light;
  border-radius: 12px;
}

.signal-screen::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  width: 0;
  height: 1px;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: color-mix(in srgb, var(--signal), white 32%);
  box-shadow: 0 0 18px 5px color-mix(in srgb, var(--signal), transparent 45%);
}

.signal-screen.is-booting::after {
  animation: signal-boot 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.signal-screen.is-booting .feature-copy {
  opacity: 0;
}

.signal-glow {
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 72% 48%, color-mix(in srgb, var(--signal), transparent 78%), transparent 42%),
    linear-gradient(135deg, color-mix(in srgb, var(--signal), transparent 96%), transparent 55%);
  transition:
    opacity 420ms ease,
    background 420ms ease;
}

.signal-scan {
  z-index: 4;
  right: auto;
  width: 22%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--signal), transparent 68%),
    transparent
  );
  transform: translateX(-140%);
}

.signal-screen.is-switching .signal-scan {
  animation: signal-sweep 620ms ease-out;
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 545px;
  padding: clamp(34px, 4vw, 62px);
  opacity: 1;
  transition: opacity 260ms ease;
}

.signal-topline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-live,
.signal-count,
.signal-channel {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b8c1ca;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px 2px color-mix(in srgb, var(--signal), transparent 38%);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.signal-count {
  color: #788a99;
}

.signal-channel {
  margin-top: 18px;
  color: color-mix(in srgb, var(--signal), white 24%);
}

.signal-message {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.is-switching .signal-message,
.is-switching .signal-bottom {
  opacity: 0;
  transform: translateY(8px);
}

.feature h1,
.theme-node h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
}

.feature h1 {
  width: min(620px, 92%);
  margin: 0 0 22px;
  font-size: clamp(3rem, 4.7vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.feature-deck {
  max-width: 535px;
  margin: 0 0 26px;
  color: #c0c7ce;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.52;
}

.signal-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.signal-controls {
  display: flex;
  gap: 8px;
}

.signal-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--signal), transparent 35%);
  border-radius: 50%;
  color: #d9e0e5;
  background: rgba(4, 12, 21, 0.68);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.signal-controls button:hover,
.signal-controls button:focus-visible {
  color: #07111f;
  background: var(--signal);
  outline: none;
  transform: scale(1.06);
}

.signal-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--signal);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.signal-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

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

.signal-progress {
  width: 100%;
  height: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(148, 166, 181, 0.16);
}

.signal-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--signal);
  box-shadow: 0 0 8px color-mix(in srgb, var(--signal), transparent 36%);
}

.signal-screen.is-paused .signal-dot {
  animation-play-state: paused;
  opacity: 0.5;
}

.signal-screen:focus-visible {
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--signal), white 10%),
    0 34px 86px rgba(0, 0, 0, 0.42);
}

.tv-hardware {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  color: #c5a171;
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tv-screw,
.tv-dial {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 43%, rgba(24, 17, 13, 0.9) 44% 56%, transparent 57%),
    radial-gradient(circle at 35% 30%, #d0a978, #61432f 48%, #211713 76%);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    inset 0 1px 1px rgba(255, 235, 197, 0.28);
}

.tv-screw {
  width: 8px;
  height: 8px;
}

.tv-screw-nw {
  top: -9px;
  left: -9px;
}

.tv-screw-ne {
  top: -9px;
  right: -9px;
}

.tv-screw-sw {
  bottom: -23px;
  left: -9px;
}

.tv-screw-se {
  right: -9px;
  bottom: -23px;
}

.tv-model {
  position: absolute;
  right: 86px;
  bottom: -21px;
  color: #c2a078;
  text-shadow: 0 1px 0 #241812;
}

.tv-dial {
  bottom: -25px;
  width: 17px;
  height: 17px;
}

.tv-dial-one {
  right: 42px;
}

.tv-dial-two {
  right: 14px;
  transform: rotate(42deg);
}

.theme-node {
  --theme: #c96f5c;
  position: absolute;
  z-index: 5;
  width: 260px;
  min-height: 226px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme), transparent 42%);
  border-radius: 13px;
  background: var(--panel);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  cursor: default;
  outline: none;
  transform: translateZ(0);
  transition:
    width 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
    min-height 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease,
    box-shadow 360ms ease;
}

.theme-node::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease;
}

.theme-node:focus-visible::before {
  border-color: var(--theme);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme), transparent 64%);
}

.node-emprise {
  top: 37%;
  right: 0.5%;
  transform-origin: right center;
}

.node-corps {
  right: 4.2%;
  bottom: 0.5%;
  transform-origin: right bottom;
}

.node-ia {
  top: 1.5%;
  left: 3.5%;
  transform-origin: left top;
}

.node-pouvoir {
  top: 1.5%;
  right: 3.5%;
  transform-origin: right top;
}

.node-geopolitique {
  top: 37%;
  left: 0.5%;
  transform-origin: left center;
}

.theme-node.is-expanded {
  z-index: 30;
  width: 370px;
  min-height: 330px;
  border-color: color-mix(in srgb, var(--theme), white 15%);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.52),
    0 0 0 1px color-mix(in srgb, var(--theme), transparent 70%);
  transform: translateZ(0) scale(1.035);
}

.node-art,
.node-overlay {
  position: absolute;
  inset: 0;
}

.node-art {
  background-position: center;
  background-size: cover;
  opacity: 0.48;
  filter: saturate(0.7) contrast(1.05);
  transition:
    opacity 360ms ease,
    transform 600ms ease;
}

.node-overlay {
  background:
    linear-gradient(0deg, rgba(7, 17, 31, 0.98) 6%, rgba(7, 17, 31, 0.5) 72%, rgba(7, 17, 31, 0.2)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.74), transparent);
}

.is-expanded .node-art {
  opacity: 0.62;
  transform: scale(1.04);
}

.node-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 226px;
  padding: 19px 20px 20px;
  animation: article-in 440ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.is-expanded .node-content {
  min-height: 330px;
  padding: 24px 26px;
}

.node-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.node-symbol {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--theme), white 16%);
  border-radius: 50%;
  color: #fff7e8;
  background: color-mix(in srgb, var(--theme), transparent 28%);
}

.node-theme,
.node-count {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.node-theme {
  color: color-mix(in srgb, var(--theme), white 27%);
}

.node-count {
  color: #a9b4bd;
}

.node-short {
  margin: 23px 0 5px;
  color: #b3bec8;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-node h2 {
  max-width: 95%;
  margin: auto 0 0;
  font-size: 1.75rem;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.is-expanded h2 {
  margin-top: 28px;
  font-size: 2.45rem;
}

.node-deck {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #bdc5cc;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.42;
  opacity: 0;
  transition:
    max-height 300ms ease,
    margin 300ms ease,
    opacity 220ms ease;
}

.is-expanded .node-deck {
  max-height: 100px;
  margin-top: 14px;
  opacity: 1;
}

.node-views {
  margin: 4px 0 0;
  color: #7c8896;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.node-pagination {
  display: none;
}

.node-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 300ms ease,
    margin 300ms ease,
    opacity 250ms ease;
}

.is-expanded .node-actions {
  max-height: 48px;
  margin-top: 20px;
  opacity: 1;
}

.node-arrows {
  display: flex;
  gap: 8px;
}

.node-arrows button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--theme), transparent 28%);
  border-radius: 50%;
  background: rgba(4, 12, 21, 0.72);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.node-arrows button:hover,
.node-arrows button:focus-visible {
  color: #07111f;
  background: var(--theme);
  outline: none;
  transform: scale(1.07);
}

.node-actions > a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--theme);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.atlas-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  margin: 0;
  color: rgba(179, 190, 200, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.095em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 27px clamp(24px, 3vw, 52px);
  border-top: 1px solid rgba(119, 145, 166, 0.16);
  color: #718292;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@keyframes article-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signal-boot {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  62% {
    width: 94%;
    opacity: 1;
  }
  100% {
    width: 94%;
    opacity: 0;
  }
}

@keyframes signal-sweep {
  0% {
    opacity: 0;
    transform: translateX(-140%);
  }
  28% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    transform: translateX(620%);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes card-swipe-next {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes card-swipe-previous {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .baseline {
    display: none;
  }

  .navigation-stack {
    align-items: flex-end;
  }

  .atlas {
    height: auto;
    min-height: 0;
    padding: 42px 28px 72px;
  }

  .connections,
  .orbital {
    display: none;
  }

  .feature {
    position: relative;
    top: auto;
    left: auto;
    width: min(780px, 100%);
    min-height: 500px;
    margin: 0 auto 28px;
  }

  .signal-screen,
  .theme-node {
    touch-action: pan-y;
  }

  .feature-copy {
    min-height: 500px;
  }

  .theme-node {
    position: relative;
    inset: auto;
    display: inline-block;
    width: min(330px, 78vw);
    margin-right: 16px;
    vertical-align: top;
    transform-origin: center;
  }

  .theme-node.is-expanded {
    width: min(390px, 82vw);
    transform: none;
  }

  .atlas {
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x proximity;
  }

  .feature,
  .theme-node,
  .atlas-hint {
    white-space: normal;
  }

  .theme-node {
    scroll-snap-align: center;
  }

  .atlas-hint {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 32px 0 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .site-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .masthead {
    display: block;
    min-height: 0;
    padding: 23px 20px 18px;
  }

  .brand {
    display: block;
    margin-bottom: 16px;
    font-size: 1.7rem;
  }

  .navigation-stack {
    width: 100%;
    align-items: stretch;
  }

  .theme-nav {
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .theme-nav button {
    flex: 0 0 auto;
  }

  .service-nav {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto auto;
    gap: 6px;
    overflow: visible;
    padding: 2px 0 3px;
  }

  .service-coming {
    width: max-content;
    grid-column: 1 / -1;
  }

  .service-coming,
  .service-nav a {
    min-height: 30px;
  }

  .service-label {
    align-self: center;
    margin: 0;
  }

  .atlas {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    white-space: normal;
    padding: 24px 18px 54px;
    scroll-snap-type: none;
  }

  .feature {
    width: 100%;
    min-height: 440px;
    border: 1px solid color-mix(in srgb, var(--signal), transparent 22%);
    border-radius: 16px;
    box-shadow:
      0 24px 54px rgba(0, 0, 0, 0.34),
      inset 0 0 50px color-mix(in srgb, var(--signal), transparent 95%);
  }

  .feature-copy {
    min-height: 440px;
    padding: 28px 25px;
  }

  .tv-hardware,
  .signal-screen::before,
  .signal-scan {
    display: none;
  }

  .feature h1 {
    width: 100%;
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

  .feature-shade {
    background:
      linear-gradient(0deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.36)),
      linear-gradient(90deg, rgba(7, 17, 31, 0.9), transparent);
  }

  .feature-deck {
    font-size: 1rem;
  }

  .signal-topline {
    gap: 10px;
  }

  .signal-live,
  .signal-count,
  .signal-channel {
    font-size: 0.59rem;
  }

  .signal-controls button,
  .node-arrows button {
    width: 44px;
    height: 44px;
  }

  .signal-progress {
    height: 7px;
    margin-top: 17px;
    background: repeating-linear-gradient(
      90deg,
      rgba(244, 207, 88, 0.17) 0 9px,
      transparent 9px 14px
    );
  }

  .signal-progress span {
    background: repeating-linear-gradient(
      90deg,
      #f4cf58 0 9px,
      transparent 9px 14px
    );
    box-shadow: 0 0 10px rgba(244, 207, 88, 0.42);
  }

  #theme-nodes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .theme-node,
  .theme-node.is-expanded {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    white-space: normal;
    transform: none;
    transform-origin: center;
    scroll-snap-align: none;
  }

  .theme-node {
    min-height: 230px;
  }

  .theme-node.is-expanded {
    min-height: 350px;
  }

  .theme-node h2 {
    font-size: 1.9rem;
  }

  .theme-node.is-expanded h2 {
    font-size: 2.3rem;
  }

  .node-content {
    min-height: 230px;
  }

  .is-expanded .node-content {
    min-height: 350px;
  }

  .node-pagination {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 13px;
  }

  .node-swipe-label {
    color: #f4cf58;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 0 9px rgba(244, 207, 88, 0.36);
  }

  .node-pages {
    display: flex;
    align-items: center;
    gap: 1px;
  }

  .node-page {
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .node-page::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(244, 207, 88, 0.62);
    border-radius: 1px;
    content: "";
    background: rgba(244, 207, 88, 0.08);
    box-shadow: inset 0 0 4px rgba(244, 207, 88, 0.15);
    transform: translate(-50%, -50%);
    transition:
      width 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
  }

  .node-page.is-current::before,
  .node-page:focus-visible::before {
    width: 15px;
    background: #f4cf58;
    box-shadow:
      0 0 10px rgba(244, 207, 88, 0.7),
      inset 0 0 0 1px rgba(48, 35, 8, 0.38);
  }

  .node-page:focus-visible {
    outline: 1px dashed #f4cf58;
    outline-offset: -2px;
  }

  .theme-node[data-swipe-direction="next"] .node-content {
    animation: card-swipe-next 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .theme-node[data-swipe-direction="previous"] .node-content {
    animation: card-swipe-previous 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .is-expanded .node-actions {
    max-height: 54px;
  }

  .atlas-hint {
    display: none;
  }

  footer {
    display: block;
    padding: 24px 20px;
  }

  footer p + p {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
