:root {
  --bg: #060706;
  --bg-raised: #0d1110;
  --panel: rgba(12, 15, 14, 0.74);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f5f7f5;
  --muted: #b7c0b9;
  --quiet: #7f8b84;
  --line: rgba(245, 247, 245, 0.16);
  --line-strong: rgba(245, 247, 245, 0.28);
  --ice: #a8efff;
  --navy: #174a7c;
  --navy-bright: #2d6caa;
  --pine: #63c79d;
  --ember: #f2a13b;
  --danger: #ff7e6d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --font-display: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

@view-transition {
  navigation: auto;
}

@keyframes site-fade-out {
  to { opacity: 0; transform: scale(0.995); }
}

@keyframes site-fade-in {
  from { opacity: 0; transform: scale(1.005); }
}

::view-transition-old(root) {
  animation: site-fade-out 140ms ease-out both;
}

::view-transition-new(root) {
  animation: site-fade-in 220ms ease-out both;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent, black 28%, black 72%, transparent);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: #060706;
  background: var(--ice);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  border-bottom: 1px solid transparent;
}

@keyframes page-progress {
  to { transform: scaleX(1); }
}

@supports (animation-timeline: scroll()) {
  .site-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, var(--navy-bright), var(--ice), var(--pine));
    box-shadow: 0 0 14px rgba(168, 239, 255, 0.42);
    transform: scaleX(0);
    transform-origin: left center;
    animation: page-progress linear both;
    animation-timeline: scroll(root block);
  }
}

.site-nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(6, 7, 6, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 740;
  letter-spacing: 0;
  view-transition-name: snowshack-brand;
}

.brand picture,
.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand picture {
  display: block;
}

.heritage-mark {
  border-radius: 50%;
  object-fit: cover;
  background: #eef6f7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: rgba(245, 247, 245, 0.78);
  text-decoration: none;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.nav-toggle .menu-line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav.nav-open .menu-line-top {
  transform: translateY(4px) rotate(45deg);
}

.site-nav.nav-open .menu-line-middle {
  opacity: 0;
}

.site-nav.nav-open .menu-line-bottom {
  transform: translateY(-4px) rotate(-45deg);
}

.icon-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.1);
}

.icon-link svg,
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  --hero-base-x: 50%;
  --hero-pointer-x: 34%;
  --hero-pointer-y: 42%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding: 112px 32px 52px;
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(6, 7, 6, 0.76), rgba(6, 7, 6, 0.38) 41%, rgba(6, 7, 6, 0.04) 74%),
    linear-gradient(0deg, var(--bg) 0%, rgba(6, 7, 6, 0) 26%),
    url("../assets/snowshack-hero.png");
  background-image:
    linear-gradient(90deg, rgba(6, 7, 6, 0.76), rgba(6, 7, 6, 0.38) 41%, rgba(6, 7, 6, 0.04) 74%),
    linear-gradient(0deg, var(--bg) 0%, rgba(6, 7, 6, 0) 26%),
    image-set(
      url("../assets/snowshack-hero.avif") type("image/avif"),
      url("../assets/snowshack-hero.webp") type("image/webp"),
      url("../assets/snowshack-hero.png") type("image/png")
    );
  background-size: cover;
  background-position:
    calc(var(--hero-base-x) + var(--hero-shift-x)) calc(50% + var(--hero-shift-y));
  transition: background-position 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(168, 239, 255, 0.1), transparent 25%),
    radial-gradient(circle at 82% 40%, rgba(242, 161, 59, 0.08), transparent 21%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero.hero-cinematic::before {
  opacity: 1;
}

.hero-atmosphere {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.6) 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.6) 68%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.hero h1,
.section-heading h2,
.studio-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: 82px;
  text-wrap: balance;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(245, 247, 245, 0.82);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 740;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button svg {
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: linear-gradient(180deg, var(--navy-bright), var(--navy));
  color: var(--text);
  border-color: rgba(245, 247, 245, 0.18);
  box-shadow: 0 18px 44px rgba(23, 74, 124, 0.34);
}

.button-secondary {
  border-color: rgba(245, 247, 245, 0.52);
  color: var(--text);
  background: rgba(8, 10, 9, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(245, 247, 245, 0.76);
  background: rgba(245, 247, 245, 0.08);
}

.section {
  padding: 108px 32px;
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.products-section {
  padding-top: 72px;
  background:
    linear-gradient(180deg, rgba(6, 7, 6, 0), rgba(13, 17, 16, 0.92) 14%, #0d1110 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-heading h2,
.studio-copy h2,
.contact-inner h2 {
  font-size: 50px;
}

.section-heading p {
  width: min(360px, 100%);
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(440px, 1.04fr);
  gap: 52px;
  align-items: center;
}

.constellation {
  --constellation-x: 50%;
  --constellation-y: 50%;
  --constellation-far-x: 0px;
  --constellation-far-y: 0px;
  --constellation-near-x: 0px;
  --constellation-near-y: 0px;
  position: relative;
  min-height: 570px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(168, 239, 255, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(99, 199, 157, 0.08), transparent 46%),
    #080a09;
  box-shadow: var(--shadow);
}

.constellation::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--constellation-x) var(--constellation-y), rgba(168, 239, 255, 0.15), transparent 24%),
    linear-gradient(118deg, transparent 30%, rgba(255, 255, 255, 0.045) 49%, transparent 67%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 240ms ease;
}

.constellation.constellation-cinematic::after {
  opacity: 1;
}

.terrain-lines,
.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.constellation-cinematic .terrain-lines {
  transform: translate3d(var(--constellation-far-x), var(--constellation-far-y), 0) scale(1.025);
}

.constellation-cinematic .network-lines {
  transform: translate3d(var(--constellation-near-x), var(--constellation-near-y), 0) scale(1.012);
}

.terrain-lines {
  opacity: 0.2;
}

.terrain-lines path {
  fill: none;
  stroke: rgba(245, 247, 245, 0.32);
  stroke-width: 1;
}

.network-lines {
  opacity: 0.95;
}

.network-lines circle {
  fill: none;
  stroke: rgba(245, 247, 245, 0.16);
  stroke-dasharray: 6 9;
}

.network-lines .line {
  fill: none;
  stroke: rgba(245, 247, 245, 0.24);
  stroke-width: 2;
  stroke-dasharray: 7 8;
  transition: stroke 180ms ease, stroke-width 180ms ease;
}

.network-lines .line.active-line {
  stroke: var(--navy-bright);
  stroke-width: 3;
  filter: drop-shadow(0 0 5px rgba(168, 239, 255, 0.38));
  animation: signal-flow 2.6s linear infinite;
}

.network-lines .line-spell.active-line {
  stroke: var(--ember);
}

@keyframes signal-flow {
  to { stroke-dashoffset: -60; }
}

.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 10px;
  width: 118px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  letter-spacing: 0;
}

.orbit-node::before {
  content: "";
  width: 92px;
  height: 92px;
  grid-area: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 247, 245, 0.24);
  background: rgba(8, 10, 9, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.orbit-node picture,
.orbit-node img,
.future-mark {
  grid-area: 1 / 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.orbit-node picture {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.orbit-node span:last-child {
  font-size: 13px;
  font-weight: 740;
  color: rgba(245, 247, 245, 0.76);
}

.orbit-node.active::before,
.orbit-node:hover::before {
  transform: scale(1.04);
  border-color: var(--ice);
  box-shadow: 0 0 34px rgba(168, 239, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.company-node {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: default;
}

.company-node::before {
  width: 152px;
  height: 152px;
  border-color: rgba(168, 239, 255, 0.64);
}

.company-node img {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(245, 247, 245, 0.24);
}

.company-node picture {
  width: 118px;
  height: 118px;
}

.ski-node {
  top: 54px;
  right: 44px;
}

.spell-node {
  top: 164px;
  left: 18px;
}

.breaker-node {
  right: 14px;
  bottom: 34px;
}

.future-node {
  left: 44px;
  bottom: 22px;
}

.future-mark {
  display: grid;
  place-items: center;
  color: var(--text);
  background: linear-gradient(180deg, var(--navy-bright), var(--navy));
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}

.constellation-copy {
  position: absolute;
  left: 28px;
  top: 28px;
  right: 210px;
  display: grid;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.constellation-copy strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
}

.constellation-copy span {
  color: var(--muted);
  font-size: 15px;
}

.product-list {
  display: grid;
  gap: 0;
}

.product-row {
  width: 100%;
  display: grid;
  grid-template-columns: 126px 1fr 20px;
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: 24px 0;
  color: var(--text);
  text-align: left;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.product-row:last-child {
  border-bottom: 1px solid var(--line);
}

.product-row picture,
.future-thumbnail {
  width: 126px;
  height: 126px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(245, 247, 245, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.product-row picture {
  display: block;
  overflow: hidden;
}

.product-row img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: none;
  transition: transform 260ms ease, filter 260ms ease;
}

.product-row:hover img,
.product-row.active img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.02);
}

.future-thumbnail {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(168, 239, 255, 0.12), rgba(99, 199, 157, 0.1)), #0b0e0d;
}

.future-thumbnail svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: var(--ice);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.future-thumbnail circle {
  fill: var(--navy-bright);
  stroke: none;
}

.product-text {
  display: grid;
  gap: 5px;
}

.product-type {
  width: fit-content;
  margin-bottom: 5px;
  padding: 3px 8px;
  color: var(--ice);
  border: 1px solid rgba(168, 239, 255, 0.32);
  border-radius: 999px;
  background: rgba(168, 239, 255, 0.08);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.1;
  text-transform: uppercase;
}

.game-type {
  color: #ffd69a;
  border-color: rgba(242, 161, 59, 0.36);
  background: rgba(242, 161, 59, 0.1);
}

.product-text strong {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
}

.product-text span {
  color: rgba(245, 247, 245, 0.82);
  font-size: 19px;
}

.product-text small {
  max-width: 460px;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.45;
}

.status-ring {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(245, 247, 245, 0.28);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.product-row.active .status-ring,
.product-row:hover .status-ring {
  border-color: var(--navy-bright);
  background: var(--navy-bright);
  box-shadow: 0 0 20px rgba(45, 108, 170, 0.42);
}

.studio-section {
  background: #060706;
  border-top: 1px solid rgba(245, 247, 245, 0.08);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 62px;
  align-items: center;
}

.studio-copy p {
  margin: 24px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.studio-copy .studio-meta {
  margin-top: 18px;
  padding-left: 14px;
  color: rgba(245, 247, 245, 0.82);
  border-left: 2px solid var(--pine);
  font-size: 15px;
  font-weight: 680;
}

.principles {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principles strong {
  color: var(--ice);
  font-family: var(--font-display);
  font-size: 18px;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.studio-image {
  margin: 0;
  position: relative;
}

.studio-image::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(245, 247, 245, 0.14);
  border-radius: var(--radius);
  pointer-events: none;
}

.studio-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.studio-image picture {
  display: block;
}

.contact-section {
  padding: 0 32px 72px;
  background: #060706;
}

.contact-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-inner img {
  width: 58px;
  height: 58px;
}

.contact-inner > picture {
  display: block;
  width: 58px;
  height: 58px;
}

.contact-inner h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.contact-inner a {
  color: var(--ice);
  font-size: 24px;
  font-weight: 720;
  text-decoration: none;
  word-break: break-word;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px 34px;
  color: var(--quiet);
  border-top: 1px solid rgba(245, 247, 245, 0.08);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  text-decoration: none;
}

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

.compact-nav {
  background: rgba(6, 7, 6, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-main {
  min-height: 72svh;
  padding-top: 84px;
  background:
    linear-gradient(180deg, rgba(13, 17, 16, 0.86), #060706 34%),
    #060706;
}

.page-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.page-hero {
  padding: 96px 32px 52px;
  border-bottom: 1px solid rgba(245, 247, 245, 0.08);
}

.page-kicker {
  margin: 0 0 18px;
  color: var(--ice);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.page-hero a,
.legal-copy a {
  color: var(--ice);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page-section {
  padding: 58px 32px 92px;
}

.page-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.page-grid article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.page-grid h2,
.legal-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.page-grid p,
.legal-copy p {
  margin: 0;
  color: var(--muted);
}

.legal-copy {
  color: var(--muted);
}

.legal-copy h2 {
  margin-top: 42px;
  margin-bottom: 12px;
}

.legal-copy p + p {
  margin-top: 16px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-ready .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-nav {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    min-height: 82svh;
    padding-left: 22px;
    padding-right: 22px;
    --hero-base-x: 62%;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero p {
    font-size: 19px;
  }

  .section {
    padding: 86px 22px;
  }

  .products-section {
    padding-top: 62px;
  }

  .section-heading {
    display: grid;
    gap: 14px;
  }

  .section-heading h2,
  .studio-copy h2,
  .page-hero h1 {
    font-size: 42px;
  }

  .products-layout,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .constellation {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-nav {
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-ready .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 2px;
    padding: 10px;
    background: rgba(8, 10, 9, 0.96);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transform-origin: top center;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-ready .nav-links {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 16px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    color: var(--text);
    background: rgba(168, 239, 255, 0.08);
  }

  .nav-ready .site-nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .brand span {
    font-size: 16px;
  }

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

  .hero {
    min-height: 74svh;
    padding-top: 112px;
    padding-bottom: 42px;
    --hero-base-x: 68%;
  }

  .hero h1 {
    max-width: 430px;
    font-size: 46px;
  }

  .hero p {
    max-width: 390px;
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .studio-copy h2,
  .page-hero h1 {
    font-size: 36px;
  }

  .section-heading p,
  .studio-copy p {
    font-size: 17px;
  }

  .constellation {
    display: none;
  }

  .company-node::before {
    width: 116px;
    height: 116px;
  }

  .company-node img {
    width: 88px;
    height: 88px;
  }

  .orbit-node {
    width: 94px;
  }

  .orbit-node::before {
    width: 72px;
    height: 72px;
  }

  .orbit-node img,
  .future-mark {
    width: 60px;
    height: 60px;
  }

  .ski-node {
    top: 36px;
    right: 12px;
  }

  .spell-node {
    top: 126px;
    left: 8px;
  }

  .breaker-node {
    right: 8px;
    bottom: 26px;
  }

  .future-node {
    left: 18px;
    bottom: 18px;
  }

  .constellation-copy {
    left: 18px;
    top: 18px;
    right: 112px;
  }

  .product-row {
    grid-template-columns: 92px 1fr;
    min-height: auto;
    gap: 16px;
    padding: 22px 0;
  }

  .product-row picture,
  .future-thumbnail {
    width: 92px;
    height: 92px;
  }

  .product-text strong {
    font-size: 26px;
  }

  .product-type {
    font-size: 10px;
  }

  .product-text span {
    font-size: 16px;
  }

  .product-text small {
    display: none;
  }

  .status-ring {
    display: none;
  }

  .principles article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner h2 {
    font-size: 30px;
  }

  .contact-inner a {
    font-size: 19px;
  }

  .footer {
    display: grid;
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-main {
    padding-top: 76px;
  }

  .page-hero,
  .page-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-hero {
    padding-top: 72px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .page-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 39px;
  }

  .hero p {
    font-size: 16px;
  }

  .brand span {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .constellation {
    min-height: 380px;
  }
}

@media (max-width: 340px) {
  .brand span {
    display: none;
  }
}

@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;
  }

  .reveal,
  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .site-nav::after {
    display: none;
  }

  .network-lines .line.active-line,
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  .hero-atmosphere {
    display: none;
  }

  .hero::before {
    opacity: 0 !important;
  }

  .constellation::after {
    opacity: 0 !important;
  }

  .hero,
  .constellation .terrain-lines,
  .constellation .network-lines {
    transform: none !important;
    transition: none !important;
  }
}

/* --- Product CTAs + waitlist page (task #48) --- */

.product-item {
  display: block;
}

.product-cta-row {
  padding: 0 0 24px 150px;
  display: flex;
  gap: 10px;
}

.button-cta {
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 740;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-cta:hover {
  transform: translateY(-2px);
  border-color: var(--ice);
  background: rgba(168, 239, 255, 0.1);
}

.button-cta-soon {
  color: var(--muted);
  cursor: default;
}

.button-cta-soon:hover {
  transform: none;
  border-color: var(--line-strong);
  background: var(--panel-soft);
}

@media (max-width: 720px) {
  .product-cta-row {
    padding-left: 0;
  }
}

/* Waitlist capture form -- lives on its own page (waitlist.html), styled as a
   card within the shared .page-section/.page-shell system used by the legal
   pages, so it needs no modal/overlay chrome of its own. */
.waitlist-card {
  width: min(440px, 100%);
  padding: 32px 30px 26px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg-raised);
  box-shadow: var(--shadow);
}

.waitlist-field {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted);
}

.waitlist-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
}

.waitlist-input:focus {
  outline: 2px solid var(--ice);
  outline-offset: 1px;
}

.waitlist-input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 126, 109, 0.12);
}

/* Honeypot: invisible to real visitors, present in the DOM for bots that
   fill every field. Not display:none, so unsophisticated scrapers that skip
   hidden fields still see a "normal" field to fill. */
.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-submit {
  width: 100%;
  justify-content: center;
  display: flex;
}

.waitlist-submit.is-loading {
  opacity: 0.7;
  cursor: progress;
}

.waitlist-status {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 14px;
}

.waitlist-status-success {
  color: var(--pine);
}

.waitlist-status-error {
  color: var(--danger);
}

.waitlist-fineprint {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--quiet);
}

.waitlist-fineprint a {
  color: var(--quiet);
}

.waitlist-textarea {
  resize: vertical;
  min-height: 84px;
  font-family: var(--font-body);
}

.waitlist-charcount {
  margin: -10px 0 16px;
  text-align: right;
  font-size: 12px;
  color: var(--quiet);
}

.waitlist-confirm h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.waitlist-confirm p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .waitlist-card {
    padding: 26px 22px 22px;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #d2d9d4;
    --quiet: #aeb8b1;
    --line: rgba(245, 247, 245, 0.34);
    --line-strong: rgba(245, 247, 245, 0.58);
  }
}

@media (forced-colors: active) {
  .heritage-mark,
  .product-row img,
  .studio-image img {
    forced-color-adjust: none;
  }

  .button,
  .icon-link,
  .nav-toggle,
  .waitlist-input,
  .constellation {
    border: 1px solid ButtonText;
  }
}
