:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-2: #070707;
  --panel: #090909;
  --panel-2: #0d0d0d;
  --panel-3: #121212;
  --text: #f4f4f4;
  --muted: #a1a1a1;
  --dim: #6b6b6b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --soft: rgba(255, 255, 255, 0.05);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1280px;
  --shadow:
    0 20px 70px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(
    to bottom,
    #000000 0%,
    rgba(0, 0, 0, 0.5) 52%,
    transparent 88%
  );
}
body::after {
  content: "";
  position: fixed;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  left: 14vw;
  top: -55vw;
  box-shadow: 0 0 150px rgba(255, 255, 255, 0.025);
  z-index: -2;
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  max-width: 100%;
  display: block;
}
::selection {
  background: #eeeeee;
  color: #050505;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 999;
  background: #ffffff;
  color: #000000;
  padding: 10px 14px;
  border-radius: 10px;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 18px;
}
.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.section {
  padding: 92px 0;
}
.section-tight {
  padding: 58px 0;
}
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-size: clamp(45px, 5vw, 104px);
  line-height: 0.93;
  letter-spacing: -0.058em;
  font-weight: 540;
}
.h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.052em;
  font-weight: 550;
}
.h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 0.99;
  letter-spacing: -0.043em;
  font-weight: 550;
}
.small-h2 {
  font-size: clamp(30px, 3.3vw, 47px);
}
.h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 580;
}
.big-title {
  font-size: clamp(25px, 2.5vw, 36px);
  max-width: 18ch;
}
.body-lg {
  margin: 20px 0 0;
  color: #b8b8b8;
  font-size: clamp(17px, 1.55vw, 20px);
  max-width: 760px;
}
.small {
  font-size: 13px;
  color: var(--muted);
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.muted-word {
  color: #666666;
}
.legal-note,
.legal-date {
  margin: 20px 0 0;
  color: #7a7a7a;
  font-size: 13px;
}
.legal-note {
  max-width: 700px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(3, 3, 3, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 650;
  letter-spacing: -0.012em;
  font-size: 14px;
  white-space: nowrap;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #0b0b0b;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}
.brand-mark.mini {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}
.brand-sub {
  color: #6d6d6d;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-links a {
  color: #9c9c9c;
  font-size: 13px;
  padding: 9px 9px;
  border-radius: 999px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.052);
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #eeeeee;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  line-height: 1;
  vertical-align: middle;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}
.nav-links a:hover .nav-pill,
.nav-links a[aria-current="page"] .nav-pill {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
}
.footer-grid a .nav-pill {
  font-size: 8px;
  padding: 1px 5px;
  margin-left: 5px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-language-switcher select {
  min-height: 36px;
  max-width: 132px;
  padding: 0 27px 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #d7d7d7;
  background: #0b0b0b;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  appearance: auto;
}
.site-language-switcher select:hover,
.site-language-switcher select:focus-visible {
  border-color: var(--line-strong);
  outline: none;
  background: #141414;
}
.footer-language-switcher {
  margin-left: 10px;
  vertical-align: middle;
}
.footer-language-switcher select {
  min-height: 28px;
  max-width: 118px;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 28px;
  font-size: 10px;
}
.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;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0d0d0d;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 650;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #141414;
}
.btn-primary {
  background: #f2f2f2;
  color: #090909;
  border-color: #f2f2f2;
}
.btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.btn-quiet {
  background: transparent;
}
.menu-btn {
  display: none;
  width: 42px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  width: 17px;
  height: 1px;
  background: #ffffff;
  display: block;
}

/* Quiet network field base. Motion is opt-in for the requested page heroes. */
.network-field {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.network-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.45;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000000 8%,
    #000000 92%,
    transparent 100%
  );
}
.network-field::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 48%;
  height: 1px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 18%,
    rgba(255, 255, 255, 0.22) 19%,
    rgba(255, 255, 255, 0) 19.45%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.14) 38.4%,
    rgba(255, 255, 255, 0) 38.8%,
    transparent 100%
  );
  opacity: 0.16;
}
.hero.network-field::after {
  top: 34%;
}
.cta-section.network-field::after {
  top: 52%;
}

/* Fast hero rails: multiple independent scans, scoped to the seven page heroes. */
.page-hero.network-field::before,
.studio-hero.network-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 160px 160px;
  background-position: 0 0;
  opacity: 0.86;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 44%,
    #000 18%,
    rgba(0, 0, 0, 0.92) 52%,
    rgba(0, 0, 0, 0.48) 78%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at 50% 44%,
    #000 18%,
    rgba(0, 0, 0, 0.92) 52%,
    rgba(0, 0, 0, 0.48) 78%,
    transparent 100%
  );
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.page-hero.network-field::after,
.studio-hero.network-field::after {
  display: none;
}

@keyframes heroRailTravelA {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
}
@keyframes heroRailTravelB {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
}
@keyframes heroRailTravelC {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
}
@keyframes heroRailTravelD {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
}
@keyframes heroRailTravelE {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
}
@keyframes heroRailTravelF {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
}

.hero-field-rails {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 48%,
    #000 12%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.25) 68%,
    transparent 92%
  );
  mask-image: radial-gradient(
    ellipse at 50% 48%,
    #000 12%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.25) 68%,
    transparent 92%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.hero-field-rails i {
  position: absolute;
  left: 0;
  height: 0.5px;
  opacity: 0.9;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: screen;
}

.hero-rail-a {
  top: 18%;
  width: clamp(520px, 68vw, 1100px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 92, 246, 0) 4%,
    rgba(139, 92, 246, 0.55) 24%,
    rgba(99, 102, 241, 0.75) 50%,
    rgba(6, 182, 212, 0.8) 76%,
    rgba(6, 182, 212, 0) 96%,
    transparent 100%
  );
  animation: heroRailTravelA 4.6s linear -1.8s infinite;
}
.hero-rail-b {
  top: 31%;
  width: clamp(600px, 78vw, 1300px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(6, 182, 212, 0) 4%,
    rgba(6, 182, 212, 0.7) 22%,
    rgba(16, 185, 129, 0.82) 50%,
    rgba(245, 158, 11, 0.76) 78%,
    rgba(245, 158, 11, 0) 96%,
    transparent 100%
  );
  animation: heroRailTravelB 5.8s linear -3.7s infinite;
}
.hero-rail-c {
  top: 44%;
  width: clamp(680px, 88vw, 1500px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0) 3%,
    rgba(6, 182, 212, 0.75) 16%,
    rgba(16, 185, 129, 0.85) 36%,
    rgba(245, 158, 11, 0.88) 56%,
    rgba(236, 72, 153, 0.82) 76%,
    rgba(139, 92, 246, 0.75) 88%,
    rgba(59, 130, 246, 0) 97%,
    transparent 100%
  );
  animation: heroRailTravelC 3.9s linear -0.8s infinite;
}
.hero-rail-d {
  top: 58%;
  width: clamp(560px, 72vw, 1200px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 158, 11, 0) 4%,
    rgba(245, 158, 11, 0.72) 22%,
    rgba(16, 185, 129, 0.82) 48%,
    rgba(6, 182, 212, 0.78) 75%,
    rgba(59, 130, 246, 0) 96%,
    transparent 100%
  );
  animation: heroRailTravelD 6.8s linear -4.5s infinite;
}
.hero-rail-e {
  top: 71%;
  width: clamp(500px, 64vw, 1050px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(236, 72, 153, 0) 4%,
    rgba(236, 72, 153, 0.7) 24%,
    rgba(139, 92, 246, 0.78) 50%,
    rgba(45, 212, 191, 0.75) 76%,
    rgba(45, 212, 191, 0) 96%,
    transparent 100%
  );
  animation: heroRailTravelE 4.8s linear -2.3s infinite;
}
.hero-rail-f {
  top: 84%;
  width: clamp(580px, 74vw, 1250px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 158, 11, 0) 4%,
    rgba(245, 158, 11, 0.68) 22%,
    rgba(52, 211, 153, 0.8) 50%,
    rgba(96, 165, 250, 0.75) 76%,
    rgba(96, 165, 250, 0) 96%,
    transparent 100%
  );
  animation: heroRailTravelF 6.2s linear -5.4s infinite;
}

.studio-hero .hero-rail-a {
  top: 16%;
}
.studio-hero .hero-rail-b {
  top: 29%;
}
.studio-hero .hero-rail-c {
  top: 43%;
}
.studio-hero .hero-rail-d {
  top: 57%;
}
.studio-hero .hero-rail-e {
  top: 71%;
}
.studio-hero .hero-rail-f {
  top: 84%;
}
@keyframes packetTravel {
  from {
    transform: translateX(-16%);
  }
  to {
    transform: translateX(16%);
  }
}

@media (max-width: 620px) {
  .hero-field-rails i {
    width: clamp(160px, 58vw, 320px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-field-rails i {
    animation: none !important;
    opacity: 0.08 !important;
    transform: none !important;
  }
}
.page-hero.network-field > .shell,
.studio-hero.network-field > .shell {
  position: relative;
  z-index: 3;
}
.page-hero.network-field .planet-dot {
  animation: none;
}
.studio-hero.network-field .studio-orbit-field i {
  animation: none;
  opacity: 0.28;
}

/* Hero */
.hero {
  padding: 58px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  gap: 18px;
  align-items: stretch;
}
.hero-copy {
  padding: 34px 0;
}
.release-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #bbbbbb;
  margin-bottom: 25px;
}
.release-star {
  font-size: 15px;
  animation: spinSlow 12s linear infinite;
}
.hero-copy .body-lg {
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.metric strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.025em;
}
.metric span {
  font-size: 12px;
  color: var(--muted);
}
.page-hero {
  padding: 112px 0 52px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 22px;
  align-items: center;
}
.page-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 10px;
}
.page-visual .birth-wheel,
.page-visual .planet-system {
  width: min(100%, 560px);
}

/* Cards / liquid surface */
.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0c0c0c, #070707);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.12s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.105),
    rgba(255, 255, 255, 0.035) 26%,
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.72;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.25s ease;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.card:hover::before {
  opacity: 1;
}
.card:hover::after {
  transform: scale(1.018);
  opacity: 1;
}
.card-inner {
  position: relative;
  z-index: 2;
  padding: 28px;
  height: 100%;
}
.card-label {
  margin: 0 0 10px;
  color: #a8a8a8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-copy {
  color: var(--muted);
  font-size: 14px;
  max-width: 54ch;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: #eeeeee;
}
.card-link::after {
  content: "↗";
  color: #6e6e6e;
}
.card-topline {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  color: #707070;
  font-size: 10px;
  letter-spacing: 0.08em;
  z-index: 4;
}
.min-h-300 {
  min-height: 300px;
}
.min-h-340 {
  min-height: 340px;
}
.min-h-360 {
  min-height: 360px;
}
.min-h-400 {
  min-height: 400px;
}
.min-h-420 {
  min-height: 420px;
}
.min-h-520 {
  min-height: 520px;
}
.card[data-surface="grid"]::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000000, transparent 82%);
}
.card[data-surface="orbit"]::after {
  background:
    radial-gradient(
      circle at 72% 36%,
      transparent 0 66px,
      rgba(255, 255, 255, 0.06) 67px 68px,
      transparent 69px 112px,
      rgba(255, 255, 255, 0.036) 113px 114px,
      transparent 115px 165px,
      rgba(255, 255, 255, 0.025) 166px 167px,
      transparent 168px
    ),
    radial-gradient(
      circle at 18% 82%,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1.7px
    );
  background-size:
    auto,
    18px 18px;
}
.card[data-surface="lanes"]::after {
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 47px,
      rgba(255, 255, 255, 0.03) 48px 49px,
      transparent 50px 96px
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 48%,
      rgba(255, 255, 255, 0.09) 50%,
      rgba(255, 255, 255, 0.04) 52%,
      transparent 100%
    );
}
.card[data-surface="plot"]::after {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1.4px
  );
  background-size: 22px 22px;
  mask-image: linear-gradient(
    135deg,
    #000000 0%,
    rgba(0, 0, 0, 0.9) 45%,
    transparent 92%
  );
}
.card[data-surface="rings"]::after {
  background: repeating-radial-gradient(
    circle at 60% 50%,
    transparent 0 44px,
    rgba(255, 255, 255, 0.035) 45px 46px,
    transparent 47px 88px
  );
  mask-image: linear-gradient(to left, #000000, transparent 90%);
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.span-12 {
  grid-column: span 12;
}
.span-8 {
  grid-column: span 8;
}
.span-7 {
  grid-column: span 7;
}
.span-6 {
  grid-column: span 6;
}
.span-5 {
  grid-column: span 5;
}
.span-4 {
  grid-column: span 4;
}
.span-3 {
  grid-column: span 3;
}
.metrics-bento .card {
  min-height: 210px;
}
.stat-card .card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.number {
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 520;
}
.stat-card .number {
  font-size: clamp(39px, 4.3vw, 60px);
  overflow-wrap: anywhere;
}
.stat-foot {
  font-size: 13px;
  color: var(--muted);
  padding-top: 50px;
}
.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(240px, 1.14fr);
  gap: 20px;
  align-items: center;
}
.visual {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card-inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-planet-card {
  background: radial-gradient(
    circle at 50% 52%,
    #141414 0%,
    #090909 40%,
    #060606 72%
  );
}

/* Planet / astronomy visuals */
.planet-system {
  width: 100%;
  height: auto;
  overflow: visible;
}
.planet-system .orbit-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}
.planet-system .orbit-line.faint {
  stroke: rgba(255, 255, 255, 0.075);
}
.planet-system .sun circle,
.planet-system .sun path {
  fill: none;
  stroke: #eeeeee;
  stroke-width: 1;
}
.planet-system .sun circle:not(.sun-halo) {
  fill: #eeeeee;
}
.planet-system .sun-halo {
  stroke: rgba(255, 255, 255, 0.22);
  filter: url(#soft);
}
.planet-system .planet {
  fill: #eeeeee;
}
.planet-system .planet-ring {
  fill: none;
  stroke: #858585;
}
.planet-system .orbiter-a {
  transform-origin: 305px 260px;
  animation: orbitA 12s linear infinite;
}
.planet-system .orbiter-b {
  transform-origin: 305px 260px;
  animation: orbitB 19s linear infinite;
}
.planet-system .orbiter-c {
  transform-origin: 305px 260px;
  animation: orbitC 27s linear infinite;
}
.planet-system .orbiter-d {
  transform-origin: 305px 260px;
  animation: orbitD 34s linear infinite;
}
.planet-system .orbiter path {
  fill: none;
  stroke: #9f9f9f;
}
.planet-system .constellation path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
}
.planet-system .constellation circle {
  fill: #aaaaaa;
}
.route-label rect {
  fill: #0b0b0b;
  stroke: rgba(255, 255, 255, 0.16);
}
.route-label circle {
  fill: #ebebeb;
}
.route-label text {
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  fill: #9a9a9a;
  letter-spacing: 0.05em;
}
.route-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  animation: dash 11s linear infinite;
}
.hero-card-footer {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #727272;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@keyframes orbitA {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitB {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes orbitC {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitD {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.birth-wheel {
  width: 100%;
}
.wheel-ring,
.house-lines line,
.aspect-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
}
.wheel-ring:nth-child(2) {
  stroke: rgba(255, 255, 255, 0.23);
}
.wheel-core {
  fill: #eeeeee;
  stroke: #eeeeee;
}
.aspect-lines path {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-dasharray: 2 6;
}
.zodiac-labels text {
  font-size: 16px;
  font-family: "DejaVu Sans", "Arial Unicode MS", serif;
  font-variant-emoji: text;
  fill: #aaaaaa;
  text-anchor: middle;
}
.planet-dot {
  fill: #ffffff;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.42));
}
.p1 {
  animation: planetPulse 2.4s ease-in-out infinite;
}
.p2 {
  animation: planetPulse 3.1s ease-in-out infinite 0.4s;
}
.p3 {
  animation: planetPulse 3.7s ease-in-out infinite 0.8s;
}
@keyframes planetPulse {
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}
.number-matrix {
  width: 100%;
}
.matrix-grid rect,
.matrix-grid line {
  fill: rgba(0, 0, 0, 0.15);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}
.matrix-numbers text {
  fill: #cecece;
  font:
    48px "Helvetica Neue",
    sans-serif;
  text-anchor: middle;
  dominant-baseline: middle;
}
.matrix-flow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  animation: dash 8s linear infinite;
}
.matrix-node {
  fill: #ffffff;
}
.matrix-node.n2 {
  filter: drop-shadow(0 0 7px #ffffff);
}
.network-map {
  width: 100%;
}
.network-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
}
.network-node circle {
  fill: #0b0b0b;
  stroke: rgba(255, 255, 255, 0.2);
}
.network-node.core circle:first-child {
  stroke: rgba(255, 255, 255, 0.35);
}
.network-node text {
  fill: #aaaaaa;
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  text-anchor: middle;
}
.network-node.core text {
  font-size: 12px;
  fill: #ffffff;
}
.packet {
  fill: #ffffff;
  filter: drop-shadow(0 0 4px #ffffff);
}
.packet-a {
  animation: packetA 4s linear infinite;
}
.packet-b {
  animation: packetB 5.5s linear infinite;
}
.packet-c {
  animation: packetC 4.7s linear infinite;
}
@keyframes packetA {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(160px);
  }
}
@keyframes packetB {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(78px);
  }
}
@keyframes packetC {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-160px);
  }
}
.planet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 20px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 30px;
  color: #777777;
}
.planet-row span:nth-child(3) {
  color: #ffffff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}
.tarot-stack {
  position: relative;
  height: 190px;
  margin-top: 34px;
}
.tarot {
  position: absolute;
  width: 118px;
  height: 170px;
  left: 50%;
  top: 8px;
  margin-left: -59px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #0b0b0b;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}
.tarot span {
  position: absolute;
  bottom: 12px;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #777777;
}
.t1 {
  transform: translateX(-62px) rotate(-9deg);
}
.t2 {
  z-index: 2;
}
.t3 {
  transform: translateX(62px) rotate(9deg);
}
.tarot-card:hover .t1 {
  transform: translateX(-78px) rotate(-13deg);
}
.tarot-card:hover .t3 {
  transform: translateX(78px) rotate(13deg);
}
.tarot-mini {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}
.tarot-mini span {
  width: 62px;
  height: 94px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0a0a;
  display: grid;
  place-items: center;
  font-size: 22px;
  transform: rotate(-5deg);
}
.tarot-mini span:nth-child(2) {
  transform: translateY(-9px);
}
.tarot-mini span:nth-child(3) {
  transform: rotate(5deg);
}
.mini-wheel {
  width: 180px;
  height: 180px;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin: 22px auto 0;
  position: relative;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.015);
}
.mini-wheel i {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.mini-wheel i:nth-child(2) {
  inset: 42px;
}
.mini-wheel i:nth-child(3) {
  inset: 68px;
}
.mini-wheel b {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  left: 84px;
  top: 20px;
  transform-origin: 6px 70px;
  animation: orbitA 8s linear infinite;
}
.endpoint-stack,
.contract-lines {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}
.endpoint-stack span,
.contract-lines span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.26);
  font-size: 11px;
  color: #999999;
}
.precision-ring {
  position: relative;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  margin: 42px auto 0;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow:
    0 0 0 32px rgba(255, 255, 255, 0.018),
    0 0 0 64px rgba(255, 255, 255, 0.01);
}
.precision-ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: spinSlow 16s linear infinite;
}
.precision-ring span {
  display: block;
}
.precision-value {
  font-size: 46px;
  letter-spacing: -0.05em;
}
.precision-ring > span:nth-child(2) {
  position: absolute;
  top: 136px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #777777;
  text-transform: uppercase;
}
.precision-ring i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  top: 0;
  left: 106px;
  transform-origin: 4px 110px;
  animation: orbitA 7s linear infinite;
}
.simple-planet {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  margin: 35px auto 0;
}
.simple-planet i {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.simple-planet b {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  top: 14px;
  left: 69px;
  transform-origin: 6px 61px;
  animation: orbitA 8s linear infinite;
}
.speed-lines {
  display: grid;
  gap: 14px;
  margin-top: 58px;
}
.speed-lines i {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  animation: speedLine 4s ease-in-out infinite;
}
.speed-lines i:nth-child(2) {
  width: 75%;
  animation-delay: 0.8s;
}
.speed-lines i:nth-child(3) {
  width: 56%;
  animation-delay: 1.4s;
}
@keyframes speedLine {
  50% {
    transform: translateX(32%);
    opacity: 0.25;
  }
}
.uptime-glyph {
  margin-top: 43px;
  font-size: 72px;
  letter-spacing: -0.07em;
}
.uptime-glyph span {
  color: #777777;
}
.uptime-glyph small {
  font-size: 20px;
  color: #777777;
}
.core-seal {
  position: relative;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  margin: 38px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.core-seal::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: spinSlow 18s linear infinite;
}
.core-seal span {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #777777;
}
.core-seal strong {
  font-size: 52px;
  letter-spacing: -0.05em;
}
.core-seal i {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  top: -3px;
  left: 107px;
  transform-origin: 3px 113px;
  animation: orbitA 9s linear infinite;
}
.core-seal i:last-child {
  top: 17px;
  transform-origin: 3px 93px;
  animation: orbitB 14s linear infinite;
}
/* Planetary Core - Globe with Flowing 3D Rotating Orb Lines */
.planetary-core-card {
  position: relative;
  overflow: hidden;
}
.planetary-core-card .card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: inherit;
}
.planetary-core-content {
  position: relative;
  z-index: 6;
}
.core-globe-stage {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 2;
}
.core-planet-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}
.orbit-stream-a {
  stroke-dasharray: 120 280;
  animation: streamFlowA 8s linear infinite;
}
.orbit-stream-b {
  stroke-dasharray: 100 240;
  animation: streamFlowB 11s linear infinite reverse;
}
@keyframes streamFlowA {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -400;
  }
}
@keyframes streamFlowB {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -340;
  }
}
.core-bg-dust {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px #ffffff;
}
.core-bg-dust.d1 {
  width: 2px;
  height: 2px;
  top: 90px;
  left: 80px;
  opacity: 0.65;
  animation: dustTwinkle 3.2s ease-in-out infinite;
}
.core-bg-dust.d2 {
  width: 3px;
  height: 3px;
  top: 165px;
  left: 45px;
  opacity: 0.85;
  animation: dustTwinkle 4.5s ease-in-out infinite 1.2s;
}
.core-bg-dust.d3 {
  width: 2px;
  height: 2px;
  top: 45px;
  right: 210px;
  opacity: 0.55;
  animation: dustTwinkle 3.8s ease-in-out infinite 0.6s;
}
.core-bg-dust.d4 {
  width: 2.5px;
  height: 2.5px;
  top: 110px;
  right: 130px;
  opacity: 0.75;
  animation: dustTwinkle 3s ease-in-out infinite 0.8s;
}
@keyframes dustTwinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Code */
.code-shell {
  overflow: hidden;
}
.code-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.code-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 0;
}
.code-label {
  display: block;
  font-size: 12px;
  color: #c6c6c6;
}
.code-sub {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: #676767;
}
.copy-btn {
  min-height: 34px;
  padding: 0 11px;
  font-size: 12px;
}
.code-block {
  margin: 14px;
  padding: 22px;
  min-height: 300px;
  overflow: auto;
  background: #040404;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #d6d6d6;
  font:
    12px/1.75 ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}
.code-block .dim {
  color: #6f6f6f;
}
.code-block .bright {
  color: #efefef;
}
.json-preview {
  display: grid;
  gap: 9px;
  margin: 26px 0 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #050505;
  color: #848484;
  font-size: 12px;
}
.json-preview b {
  color: #dbdbdb;
  font-weight: 500;
}

/* Locales */
.locale-keys {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
}
.locale-key {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: #080808;
  color: #777777;
  font:
    12px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  transition: 0.18s ease;
}
.locale-key:hover,
.locale-key.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: #111111;
}
.locale-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.locale-panel code {
  color: #9a9a9a;
  font-size: 11px;
}
.coverage-numbers {
  display: grid;
  gap: 24px;
  margin: 28px 0;
}
.coverage-numbers div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.coverage-numbers strong {
  display: block;
  font-size: 36px;
  letter-spacing: -0.04em;
}
.coverage-numbers span {
  display: block;
  color: #777777;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Pricing */
.pricing-teaser .card-inner {
  display: flex;
  flex-direction: column;
}
.pricing-teaser .btn {
  margin-top: auto;
  align-self: flex-start;
}
.pricing-master {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px;
}
.pricing-master > div {
  position: relative;
  z-index: 2;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}
.pricing-master > div:last-child {
  border: 0;
}
.pricing-master strong {
  display: block;
  font-size: 40px;
  letter-spacing: -0.045em;
}
.pricing-master span {
  color: #8a8a8a;
  font-size: 13px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.price-card {
  min-height: 570px;
}
.price-card .card-inner {
  display: flex;
  flex-direction: column;
}
.price-card.flagship {
  border-color: rgba(255, 255, 255, 0.22);
}
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaaaaa;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card h3 {
  margin: 20px 0 8px;
  font-size: 19px;
}
.price-card p {
  margin: 0;
  color: #848484;
  font-size: 13px;
  min-height: 46px;
}
.studio-plans-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.studio-period-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0 24px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #090909;
}
.studio-period-toggle button {
  border: 0;
  background: transparent;
  color: #777777;
  cursor: pointer;
  padding: 10px 14px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.studio-period-toggle button:hover,
.studio-period-toggle button:focus-visible,
.studio-period-toggle button[aria-selected="true"] {
  background: #f0f0f0;
  color: #080808;
}
.studio-plan-card {
  min-height: 520px;
}
.studio-plan-card .card-inner {
  display: flex;
  flex-direction: column;
}
.studio-plan-label {
  color: #6e6e6e;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.studio-plan-description {
  min-height: 66px;
}
.studio-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 30px;
}
.studio-plan-price-row strong {
  font-size: 58px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.studio-plan-price-row span {
  color: #777777;
  font-size: 12px;
}
.studio-plan-benefits {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
  color: #9f9f9f;
  font-size: 12px;
}
.studio-plan-benefits li::before {
  content: "—";
  color: #555555;
  margin-right: 8px;
}
.price-value {
  font-size: 58px;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-top: 30px;
}
.price-note {
  font-size: 11px;
  color: #777777;
  margin-top: 5px;
}
.credit-value {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin-top: 23px;
}
.credit-label {
  font-size: 11px;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.feature-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
  color: #9f9f9f;
  font-size: 12px;
}
.feature-list li::before {
  content: "—";
  color: #555555;
  margin-right: 8px;
}
.full {
  width: 100%;
  margin-top: auto;
}
.switch-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.switch-label input {
  position: absolute;
  opacity: 0;
}
.switch-label i {
  width: 34px;
  height: 19px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  position: relative;
  background: #080808;
}
.switch-label i::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #777777;
  transition: 0.2s ease;
}
.switch-label input:checked + i::after {
  transform: translateX(15px);
  background: #ffffff;
}
.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  align-items: end;
  gap: 20px;
}
.calculator label {
  display: block;
  font-size: 12px;
  color: #aaaaaa;
}
.calculator input {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  outline: none;
  font-size: 40px;
  letter-spacing: -0.04em;
}
.calculator input:focus {
  border-color: #ffffff;
}
.calculator p {
  color: #6e6e6e;
  font-size: 12px;
}
.calculator-grid > div:not(:first-child) {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.calculator-grid > div:not(:first-child) span {
  display: block;
  color: #777777;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calculator-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 36px;
  letter-spacing: -0.04em;
}
.billing-row .card-inner {
  display: flex;
  flex-direction: column;
}
.billing-row .role-stack {
  margin-top: auto;
  padding-top: 28px;
}
.billing-row .cta-pin .btn {
  margin-top: auto;
}
.estimate-bento {
  margin-top: 16px;
}
.procurement-bento .card-inner {
  display: flex;
  flex-direction: column;
}
.procurement-bento .card-link {
  margin-top: auto;
  align-self: flex-start;
}
.link-pin .card-inner {
  display: flex;
  flex-direction: column;
}
.link-pin .card-link {
  margin-top: auto;
  align-self: flex-start;
}
.locale-card .card-inner {
  display: flex;
  flex-direction: column;
}
.locale-card .locale-panel {
  margin-top: auto;
}
.estimate-bento .card-inner {
  display: flex;
  flex-direction: column;
}
.estimate-list {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  display: grid;
  gap: 9px;
  color: #ffffff;
  font-size: 13px;
}
.estimate-list li {
  position: relative;
  padding-left: 22px;
}
.estimate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #ffffff;
}

/* Process / roles */
.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}
.process-line > div {
  padding: 22px 20px 0;
  border-right: 1px solid var(--line);
}
.process-line > div:last-child {
  border: 0;
}
.process-line span {
  display: block;
  color: #555555;
  font:
    11px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.process-line b {
  display: block;
  margin-top: 13px;
  font-size: 15px;
}
.process-line small {
  display: block;
  margin-top: 5px;
  color: #777777;
}
.role-stack {
  display: grid;
  gap: 10px;
  margin-top: 45px;
}
.role-stack > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}
.role-stack span {
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #777777;
}
.role-stack b {
  font-size: 12px;
  font-weight: 500;
  color: #aaaaaa;
}
.role-stack.compact {
  margin-top: 28px;
}

/* Trust */
.status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
  color: #aaaaaa;
  font-size: 11px;
}
.node-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dddddd;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.65);
  animation: planetPulse 2s ease-in-out infinite;
}
.status-chart {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 4px;
  height: 104px;
  align-items: end;
  margin-top: 34px;
}
.status-chart i {
  display: block;
  height: 54%;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 2px;
}
.status-chart i:nth-child(4n) {
  height: 76%;
}
.status-chart i:nth-child(5n) {
  height: 90%;
}
.status-chart i:nth-child(7n) {
  height: 64%;
}
.status-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
}
.status-services > div {
  padding: 17px 10px 4px 0;
}
.status-services span {
  display: block;
  color: #666666;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.status-services b {
  display: block;
  margin-top: 4px;
  color: #aaaaaa;
  font-size: 12px;
  font-weight: 500;
}
.trust-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.trust-feed-head .card-label {
  margin-bottom: 0;
}
.trust-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.14em;
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.03);
}
.trust-feed-card .card-inner {
  min-height: 360px;
}
.trust-feed-card .card-copy {
  margin-top: 14px;
  max-width: 26ch;
}
.trust-feed-card .card-link {
  margin-top: auto;
}
.trust-orbit {
  position: relative;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 28px auto 38px;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.013);
}
.trust-orbit span {
  font:
    12px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.12em;
}
.trust-orbit i {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: spinSlow 15s linear infinite;
}
.trust-orbit i:nth-child(3) {
  inset: 50px;
  animation-direction: reverse;
  animation-duration: 11s;
}
.trust-orbit i:nth-child(4) {
  inset: 78px;
  animation-duration: 8s;
}

/* Contact */
.contact-bento-visual {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(92px, auto));
  gap: 8px;
  margin-top: 28px;
}
.contact-bento-cell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 98px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #737373;
  overflow: hidden;
}
.contact-bento-cell span {
  position: absolute;
  left: 10px;
  bottom: 9px;
  color: #626262;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-bento-main {
  grid-row: span 2;
  grid-column: span 2;
  place-items: stretch;
  background: #070707;
}
.contact-bento-main svg {
  width: 100%;
  height: 100%;
  min-height: 196px;
  padding: 16px;
}
.contact-bento-code {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #626262;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.contact-bento-cell:not(.contact-bento-main) svg {
  width: 48px;
  height: 48px;
}
.contact-line {
  fill: none;
  stroke: #bdbdbd;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-line-soft {
  stroke: #555555;
  stroke-dasharray: 3 7;
  animation: contactLineDrift 8s linear infinite;
}
.contact-node {
  fill: #d8d8d8;
}
.contact-node-pulse {
  animation: contactNodePulse 2.8s ease-in-out infinite;
  transform-origin: center;
}
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #060606;
  color: #eeeeee;
  padding: 13px 14px;
  outline: none;
  text-transform: none;
  letter-spacing: normal;
}
.contact-form select:focus {
  border-color: rgba(255, 255, 255, 0.35);
}
.contact-consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
  color: #707070 !important;
  font-size: 10px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.contact-consent input {
  width: 14px;
  height: 14px;
  accent-color: #eeeeee;
}
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.contact-form-status {
  min-height: 18px;
  margin: 0;
  color: #919191;
  font-size: 11px;
  line-height: 1.5;
}
.contact-form-status[data-state="success"] {
  color: #d7d7d7;
}
.contact-form-status[data-state="error"] {
  color: #c9a7a7;
}
@keyframes contactLineDrift {
  to { stroke-dashoffset: -40; }
}
@keyframes contactNodePulse {
  0%, 100% { opacity: .55; transform: scale(.86); }
  50% { opacity: 1; transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-line-soft, .contact-node-pulse { animation: none; }
}
.contact-form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #898989;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #060606;
  color: #eeeeee;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  text-transform: none;
  letter-spacing: normal;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
}
.contact-form .btn {
  justify-self: start;
}

/* Changelog */
.release-list {
  display: grid;
  gap: 16px;
  position: relative;
}
.release {
  display: grid;
  grid-template-columns: 42px 1fr;
  overflow: visible;
}
.release .card-inner {
  padding-left: 16px;
}
.release-rail {
  position: relative;
}
.release-rail::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -18px;
  bottom: -18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
}
.release:first-child .release-rail::before {
  top: 28px;
}
.release:last-child .release-rail::before {
  bottom: 28px;
}
.release-rail span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #aaaaaa;
  top: 34px;
  left: 16px;
  box-shadow:
    0 0 0 6px #090909,
    0 0 0 7px rgba(255, 255, 255, 0.13);
}
.release-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.release-meta > div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.version {
  font:
    12px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #dddddd;
}
.release-meta em {
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px 7px;
  color: #888888;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.release-meta time {
  color: #666666;
  font-size: 11px;
}
.release h2 {
  margin: 13px 0 8px;
  font-size: 28px;
  letter-spacing: -0.035em;
}
.release > div > .card-inner > p {
  color: #919191;
  max-width: 850px;
}
.release-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.release-block {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.release-block h4 {
  margin: 0 0 10px;
  font-size: 12px;
}
.release-block h4 span {
  color: #666666;
  font-weight: 400;
}
.release-block ul {
  margin: 0;
  padding-left: 16px;
  color: #808080;
  font-size: 12px;
}
.release-block li {
  margin: 6px 0;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq button {
  width: 100%;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: 16px;
}
.faq button span:last-child {
  color: #666666;
  font-size: 20px;
  transition: transform 0.2s ease;
}
.faq button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
  color: #ffffff;
}
.faq > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq > div > p {
  overflow: hidden;
  margin: 0;
  color: #8e8e8e;
  max-width: 850px;
}
.faq button[aria-expanded="true"] + div {
  grid-template-rows: 1fr;
}
.faq button[aria-expanded="true"] + div > p {
  padding: 0 0 24px;
}

/* CTA */
.cta-panel {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
}
.cta-copy {
  position: relative;
  z-index: 3;
  padding: 44px;
}
.cta-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  justify-self: center;
}
.cta-orbit::before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  animation: spinSlow 18s linear infinite;
}
.cta-orbit span {
  font-size: 54px;
  letter-spacing: -0.05em;
}
.cta-orbit b {
  position: absolute;
  right: 47px;
  bottom: 52px;
  color: #777777;
  font-size: 22px;
}
.cta-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  top: -4px;
  left: 136px;
  transform-origin: 4px 144px;
  animation: orbitA 8s linear infinite;
}
.cta-orbit i:nth-child(3) {
  top: 30px;
  transform-origin: 4px 110px;
  animation: orbitB 12s linear infinite;
}
.cta-orbit i:nth-child(4) {
  top: 65px;
  transform-origin: 4px 75px;
  animation-duration: 6s;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 4px;
}
.legal-toc b {
  margin-bottom: 10px;
  color: #cfcfcf;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.legal-toc a {
  color: #777777;
  font-size: 13px;
  padding: 5px 0;
}
.legal-toc a:hover {
  color: #ffffff;
}
.legal-copy {
  overflow: visible;
}
.legal-copy .card-inner {
  padding: 40px 46px;
}
.legal-copy h2 {
  scroll-margin-top: 100px;
  margin: 40px 0 12px;
  font-size: 26px;
  letter-spacing: -0.025em;
}
.legal-copy h2:first-child {
  margin-top: 0;
}
.legal-copy h3 {
  margin: 22px 0 8px;
  font-size: 16px;
}
.legal-copy p,
.legal-copy li {
  color: #969696;
  font-size: 14px;
}
.legal-copy a {
  color: #dddddd;
  text-decoration: underline;
  text-decoration-color: #555555;
  text-underline-offset: 3px;
}
.legal-copy ul {
  padding-left: 20px;
}
.legal-copy li {
  margin: 7px 0;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.75fr);
  gap: 40px;
}
.footer-grid h3 {
  margin: 0 0 14px;
  color: #aaaaaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid > div:not(:first-child) a {
  color: #777777;
  font-size: 13px;
}
.footer-grid > div:not(:first-child) a:hover {
  color: #ffffff;
}
.footer-brand p {
  max-width: 360px;
  color: #777777;
  font-size: 13px;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.footer-socials a {
  display: grid !important;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #777 !important;
  background: #080808;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}
.footer-socials a:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  background: #111;
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.footer-socials a:focus-visible {
  outline: 2px solid #f2f2f2;
  outline-offset: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #5e5e5e;
  font-size: 11px;
}
.made-with {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-variant-caps: all-small-caps;
}
.made-with svg {
  width: 12px;
  height: 12px;
  color: #fff;
  fill: #fff;
  flex: none;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.lost-orbit {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 58px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.lost-orbit span {
  font-size: 80px;
  letter-spacing: -0.06em;
  color: #777777;
}
.lost-orbit i {
  position: absolute;
  inset: 35px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: spinSlow 17s linear infinite;
}
.lost-orbit i:nth-child(2) {
  inset: 80px;
  animation-direction: reverse;
}
.lost-orbit i:nth-child(3) {
  inset: 130px;
  animation-duration: 9s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-planet-card {
    min-height: 560px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .span-3 {
    grid-column: span 6;
  }
  .split-card {
    grid-template-columns: 1fr;
  }
  .matrix-visual {
    min-height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
  .locale-keys {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 820px) {
  .desktop-only {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #090909;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .brand-sub {
    display: none;
  }
  .hero {
    padding-top: 70px;
  }
  .display {
    font-size: clamp(48px, 13vw, 82px);
  }
  .section {
    padding: 70px 0;
  }
  .span-8,
  .span-7,
  .span-6,
  .span-5,
  .span-4,
  .span-3 {
    grid-column: span 12;
  }
  .metrics-bento .span-4 {
    grid-column: span 4;
  }
  .pricing-master {
    grid-template-columns: 1fr;
  }
  .pricing-master > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pricing-master > div:last-child {
    border: 0;
  }
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .cta-orbit {
    margin: 0 0 40px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .legal-toc b {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
  .release-columns {
    grid-template-columns: 1fr;
  }
  .locale-keys {
    grid-template-columns: repeat(5, 1fr);
  }
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .calculator-grid > div:not(:first-child) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
  }
  .nav {
    min-height: 64px;
  }
  .brand {
    font-size: 12px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .hero,
  .page-hero {
    padding-top: 54px;
  }
  .display,
  .h1 {
    font-size: clamp(43px, 15vw, 68px);
  }
  .h2 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .metric strong {
    font-size: 18px;
  }
  .hero-planet-card {
    min-height: 440px;
  }
  .planet-system .route-label,
  .planet-system .route-path {
    display: none;
  }
  .metrics-bento .span-4 {
    grid-column: span 12;
  }
  .card-inner {
    padding: 22px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    min-height: auto;
  }
  .studio-plan-card {
    min-height: auto;
  }
  .price-card .full {
    margin-top: 18px;
  }
  .locale-keys {
    grid-template-columns: repeat(4, 1fr);
  }
  .locale-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-line > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  .process-line > div:last-child {
    border: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .status-head {
    flex-direction: column;
  }
  .status-services {
    grid-template-columns: 1fr;
  }
  .release {
    grid-template-columns: 28px 1fr;
  }
  .release-rail::before {
    left: 12px;
  }
  .release-rail span {
    left: 8px;
  }
  .release .card-inner {
    padding-left: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .legal-copy .card-inner {
    padding: 28px 22px;
  }
  .legal-toc {
    grid-template-columns: 1fr;
  }
  .card-topline {
    font-size: 8px;
  }
  .hero-card-footer {
    display: none;
  }
  .cta-copy {
    padding: 28px;
  }
  .cta-orbit {
    width: 220px;
    height: 220px;
  }
  .cta-orbit i {
    left: 106px;
    transform-origin: 4px 114px;
  }
  .cta-orbit i:nth-child(3) {
    transform-origin: 4px 80px;
  }
  .cta-orbit i:nth-child(4) {
    transform-origin: 4px 45px;
  }
  .planetary-core-content {
    max-width: 100%;
  }
  .core-globe-stage {
    width: 340px;
    height: 340px;
    right: -40px;
    bottom: -40px;
  }
  .number {
    font-size: 48px;
  }
}

@media (hover: none), (pointer: coarse) {
  .card {
    transform: none !important;
  }
  .card::before {
    display: none;
  }
  .card:hover {
    transform: none;
  }
  .card:hover::after {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .network-field::before,
  .network-field::after,
  .release-star,
  .planet-system .orbiter-a,
  .planet-system .orbiter-b,
  .planet-system .orbiter-c,
  .planet-system .orbiter-d,
  .route-path,
  .planet-dot,
  .packet,
  .mini-wheel b,
  .precision-ring::before,
  .precision-ring i,
  .simple-planet b,
  .speed-lines i,
  .core-seal::before,
  .core-seal i,
  .orbit-stream-a,
  .orbit-stream-b,
  .core-bg-dust,
  .node-dot,
  .trust-orbit i,
  .cta-orbit::before,
  .cta-orbit i,
  .lost-orbit i {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card {
    transition: none;
    transform: none !important;
  }
}

/* Homepage-only tarot spread. It borrows the demo's overlapping-card idea
   while staying isolated from the feature page's tarot component. */
.tarot-home-card .card-inner {
  display: flex;
  flex-direction: column;
}
.tarot-home-stack {
  position: relative;
  min-height: 190px;
  margin: 18px -6px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 900px;
}
.tarot-home-tile {
  position: absolute;
  bottom: 4px;
  width: 92px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: linear-gradient(180deg, #161616, #080808);
  box-shadow:
    0 15px 32px rgba(0, 0, 0, 0.52),
    inset 0 1px rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  transform-origin: 50% 96%;
  transition:
    transform 0.48s cubic-bezier(0.16, 0.84, 0.2, 1),
    border-color 0.3s ease;
}
.tarot-home-tile::before,
.tarot-home-tile::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  inset: 24px 17px;
}
.tarot-home-tile::after {
  inset: 40px 31px;
  background: #e9e9e9;
  border: 0;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}
.tarot-home-tile::before {
  inset: 9px;
  border-radius: 9px;
}
.tarot-home-tile span,
.tarot-home-tile b {
  position: relative;
  z-index: 1;
}
.tarot-home-tile span {
  font:
    30px Georgia,
    "Times New Roman",
    serif;
  color: #090909;
}
.tarot-home-tile b {
  position: absolute;
  bottom: 10px;
  color: #777;
  font-size: 7px;
  letter-spacing: 0.15em;
}
.tarot-home-a {
  transform: translateX(-53px) rotate(-9deg);
}
.tarot-home-b {
  z-index: 2;
  transform: translateY(-9px);
}
.tarot-home-c {
  transform: translateX(53px) rotate(9deg);
}
.tarot-home-card:hover .tarot-home-a {
  transform: translateX(-68px) rotate(-13deg) translateY(-2px);
}
.tarot-home-card:hover .tarot-home-b {
  transform: translateY(-17px);
}
.tarot-home-card:hover .tarot-home-c {
  transform: translateX(68px) rotate(13deg) translateY(-2px);
}
.tarot-home-card:hover .tarot-home-tile {
  border-color: rgba(255, 255, 255, 0.34);
}
.tarot-home-card .card-link {
  margin-top: auto;
}
.btn-icon {
  display: inline-grid;
  width: 14px;
  height: 14px;
  place-items: center;
  flex: 0 0 14px;
}
.btn-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.copy-btn .btn-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
}
.copy-btn .btn-icon svg {
  width: 13px;
  height: 13px;
}
@media (max-width: 620px) {
  .tarot-home-stack {
    min-height: 172px;
    margin-top: 10px;
  }
  .tarot-home-tile {
    width: 78px;
    height: 124px;
  }
  .tarot-home-a {
    transform: translateX(-44px) rotate(-9deg);
  }
  .tarot-home-b {
    transform: translateY(-8px);
  }
  .tarot-home-c {
    transform: translateX(44px) rotate(9deg);
  }
  .tarot-home-card:hover .tarot-home-a {
    transform: translateX(-53px) rotate(-12deg) translateY(-2px);
  }
  .tarot-home-card:hover .tarot-home-c {
    transform: translateX(53px) rotate(12deg) translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tarot-home-tile {
    transition: none;
  }
  .tarot-home-card:hover .tarot-home-a {
    transform: translateX(-53px) rotate(-9deg);
  }
  .tarot-home-card:hover .tarot-home-b {
    transform: translateY(-8px);
  }
  .tarot-home-card:hover .tarot-home-c {
    transform: translateX(53px) rotate(9deg);
  }
}

/* ==========================================================================
   Production polish · SOTA interaction layer
   ========================================================================== */
:focus-visible {
  outline: 2px solid #f2f2f2;
  outline-offset: 4px;
}
.site-header {
  isolation: isolate;
}
.site-header .scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  background: #f3f3f3;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.card {
  isolation: isolate;
  will-change: transform;
}
.card::before {
  mix-blend-mode: screen;
}
.card .visual,
.card img {
  transition:
    transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.55s ease;
}
.card:hover .visual {
  transform: translate3d(0, -3px, 10px);
}
.card-link {
  position: relative;
  padding-bottom: 2px;
}
.card-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.card-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 74%
  );
  transform: translateX(-130%);
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
  pointer-events: none;
}
.btn:hover::after {
  transform: translateX(130%);
}
.btn-primary::after {
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(0, 0, 0, 0.08) 48%,
    transparent 74%
  );
}
@media (prefers-reduced-motion: reduce) {
  .btn::after {
    display: none;
  }
  .card .visual,
  .card img {
    transition: none;
  }
  .site-header .scroll-progress {
    box-shadow: none;
  }
}

/* Tarot · editorial three-card instrument */
.tarot-feature-card .card-inner {
  display: flex;
  flex-direction: column;
}
.tarot-feature-card .card-copy {
  max-width: 44ch;
}
.tarot-stage {
  position: relative;
  min-height: 150px;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  perspective: 900px;
}
.tarot-pro-card {
  position: relative;
  width: 78px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 12px;
  background: linear-gradient(180deg, #151515, #070707);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  transform-origin: 50% 95%;
  transition:
    transform 0.6s cubic-bezier(0.16, 0.84, 0.2, 1),
    border-color 0.3s ease;
}
.tarot-pro-card::before,
.tarot-pro-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  inset: 25px 17px;
}
.tarot-pro-card::after {
  inset: 37px 29px;
  background: #e7e7e7;
  border: 0;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.16);
}
.tarot-index {
  position: absolute;
  top: 8px;
  left: 10px;
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #6f6f6f;
}
.tarot-pro-card b {
  position: absolute;
  bottom: 8px;
  font-size: 7px;
  letter-spacing: 0.14em;
  color: #737373;
}
.tarot-pro-card i {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.tp-a {
  transform: rotate(-8deg) translateY(8px);
}
.tp-b {
  transform: translateY(-6px);
}
.tp-c {
  transform: rotate(8deg) translateY(8px);
}
.tarot-feature-card:hover .tp-a {
  transform: rotate(-12deg) translate(-7px, 2px);
}
.tarot-feature-card:hover .tp-b {
  transform: translateY(-15px);
}
.tarot-feature-card:hover .tp-c {
  transform: rotate(12deg) translate(7px, 2px);
}
.tarot-feature-card:hover .tarot-pro-card {
  border-color: rgba(255, 255, 255, 0.34);
}
.tarot-arc {
  position: absolute;
  inset: auto 2% 0;
  width: 96%;
  height: 92px;
  z-index: -1;
}
.tarot-arc path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  stroke-dasharray: 2 7;
}
.tarot-arc circle {
  fill: #d9d9d9;
  opacity: 0.5;
}

/* Numora Studio · homepage landing */
.studio-home-landing {
  padding-top: 112px;
  padding-bottom: 112px;
}
.studio-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: 48px;
  align-items: center;
}
.studio-home-copy .h2 {
  max-width: 10.5ch;
}
.studio-home-copy .body-lg {
  max-width: 600px;
}
.studio-home-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.studio-home-points span {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #9c9c9c;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.studio-home-preview {
  padding: 16px;
  min-height: 460px;
  background: #080808;
}
.studio-preview-frame {
  position: relative;
  height: 100%;
  min-height: 390px;
  display: flex;
  align-items: center;
}
.studio-preview-frame > img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 2;
}
.studio-preview-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -60px;
  bottom: -50px;
  z-index: 3;
  pointer-events: none;
}
.studio-preview-orbit::before,
.studio-preview-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  inset: 38px;
}
.studio-preview-orbit::after {
  inset: 82px;
}
.studio-preview-orbit i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  left: 127px;
  top: -3px;
  transform-origin: 2.5px 133px;
  animation: orbitA 12s linear infinite;
}
.studio-preview-orbit i:nth-child(2) {
  top: 35px;
  transform-origin: 2.5px 95px;
  animation-duration: 17s;
  animation-direction: reverse;
}
.studio-preview-orbit i:nth-child(3) {
  top: 80px;
  transform-origin: 2.5px 50px;
  animation-duration: 9s;
}
.studio-preview-orbit span {
  position: absolute;
  right: 56px;
  bottom: 54px;
  font-size: 30px;
  color: #737373;
}
.studio-preview-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #757575;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Numora Studio · dedicated product page */
.studio-page {
  --studio-paper: #efefef;
}
.studio-page .site-header {
  background: rgba(3, 3, 3, 0.74);
}
.studio-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  min-height: 840px;
  display: flex;
  align-items: center;
}
.studio-hero > .shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 58px;
  align-items: center;
}
.studio-hero-copy {
  position: relative;
  z-index: 8;
}
.studio-display {
  margin: 0;
  max-width: 10.8ch;
  font-size: clamp(56px, 6.1vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.studio-display em {
  display: block;
  color: #737373;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
}
.studio-hero-copy .body-lg {
  max-width: 650px;
}
.studio-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.studio-trustline span {
  padding: 12px 18px 12px 0;
  margin-right: 18px;
  color: #7e7e7e;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.studio-trustline span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  background: var(--line);
  margin-left: 18px;
  vertical-align: -1px;
}
.studio-hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.studio-shot {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  overflow: hidden;
  background: #060606;
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.015);
}
.studio-shot img {
  display: block;
  width: 100%;
}
.studio-shot-main {
  width: min(92%, 760px);
  right: -6%;
  top: 8%;
  transform: rotateY(-7deg) rotateX(2deg);
  z-index: 2;
}
.studio-shot-report {
  width: min(56%, 470px);
  left: -2%;
  bottom: 5%;
  transform: rotateY(8deg) translateZ(70px);
  z-index: 4;
}
.studio-shot-report::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.studio-hero-seal {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  z-index: 5;
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
}
.studio-hero-seal::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  animation: spinSlow 22s linear infinite;
}
.studio-hero-seal span {
  font:
    32px Georgia,
    serif;
}
.studio-hero-seal small {
  font-size: 7px;
  letter-spacing: 0.14em;
  color: #6f6f6f;
}
.studio-orbit-field {
  position: absolute;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  right: -70px;
  top: -20px;
}
.studio-orbit-field::before,
.studio-orbit-field::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  inset: 72px;
}
.studio-orbit-field::after {
  inset: 170px;
}
.studio-orbit-field i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dcdcdc;
  left: 312px;
  top: -3px;
  transform-origin: 3px 318px;
  animation: orbitA 22s linear infinite;
  opacity: 0.55;
}
.studio-orbit-field i:nth-child(2) {
  top: 70px;
  transform-origin: 3px 247px;
  animation-duration: 30s;
  animation-direction: reverse;
}
.studio-orbit-field i:nth-child(3) {
  top: 168px;
  transform-origin: 3px 149px;
  animation-duration: 17s;
}
.studio-orbit-field b {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  left: 50%;
  top: 0;
  transform: rotate(38deg);
}
.studio-orbit-field span {
  position: absolute;
  right: 74px;
  top: 154px;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #4e4e4e;
}
.studio-section-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.studio-section-nav .shell {
  display: flex;
  gap: 26px;
  overflow: auto;
  scrollbar-width: none;
}
.studio-section-nav .shell::-webkit-scrollbar {
  display: none;
}
.studio-section-nav a {
  flex: 0 0 auto;
  padding: 13px 0;
  color: #727272;
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.studio-section-nav a:hover,
.studio-section-nav a.active {
  color: #fff;
}
.studio-plan-banner {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.studio-plan-banner-copy {
  position: relative;
  z-index: 1;
  padding: 52px 58px;
}
.studio-plan-banner-copy .studio-editorial {
  max-width: 12ch;
}
.studio-plan-banner-copy .body-lg {
  max-width: 610px;
  margin-bottom: 28px;
}
.studio-plan-banner-signal {
  position: relative;
  width: min(390px, 84%);
  height: 300px;
  justify-self: center;
  isolation: isolate;
}
.studio-plan-banner-signal::before,
.studio-plan-banner-signal::after {
  content: "";
  position: absolute;
  inset: 20px 36px 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-16deg) skewX(-8deg);
}
.studio-plan-banner-signal::after {
  inset: 66px 78px 58px 72px;
  border-color: rgba(255, 255, 255, 0.06);
  transform: rotate(18deg) skewX(-10deg);
}
.studio-plan-banner-signal span,
.studio-plan-banner-signal i,
.studio-plan-banner-signal b {
  position: relative;
  z-index: 1;
}
.studio-plan-banner-signal span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  height: 38px;
  padding: 0 14px;
  color: #898989;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.15em;
}
.studio-plan-banner-signal span:first-child {
  top: 40px;
  left: 12px;
}
.studio-plan-banner-signal span:nth-of-type(2) {
  right: 0;
  bottom: 42px;
  color: #d5d5d5;
  border-color: rgba(255, 255, 255, 0.24);
}
.studio-plan-banner-signal i {
  position: absolute;
  left: 74px;
  right: 72px;
  top: 147px;
  height: 1px;
  background: rgba(255, 255, 255, 0.23);
  transform: rotate(-14deg);
  overflow: hidden;
}
.studio-plan-banner-signal i::after {
  content: "";
  position: absolute;
  left: -10%;
  display: block;
  width: 24%;
  height: 1px;
  background: #fff;
  animation: packetTravel 4.8s linear infinite;
  opacity: 0.85;
}
.studio-plan-banner-signal b {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  padding: 0;
  color: #e9e9e9;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.025), 0 20px 40px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  font:
    500 10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.studio-statement {
  min-height: 380px;
  display: flex;
  align-items: center;
}
.studio-statement .card-inner {
  padding: 54px 58px;
  width: 100%;
}
.studio-editorial {
  margin: 0;
  max-width: 16ch;
  font:
    400 clamp(42px, 5.3vw, 76px)/1 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.047em;
}
.studio-statement .body-lg {
  max-width: 820px;
}
.studio-statement-rail {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
  color: #626262;
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.12em;
}
.studio-statement-rail i {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.08)
  );
  position: relative;
  overflow: hidden;
}
.studio-statement-rail i::after {
  content: "";
  position: absolute;
  width: 24%;
  height: 1px;
  background: #fff;
  left: -30%;
  animation: packetTravel 5.6s linear infinite;
  opacity: 0.35;
}
.workflow-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.workflow-step {
  position: relative;
  min-height: 230px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  background: rgba(8, 8, 8, 0.58);
  overflow: hidden;
}
.workflow-step::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  right: -65px;
  bottom: -80px;
  transition:
    transform 0.5s ease,
    border-color 0.4s ease;
}
.workflow-step:hover::after {
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.1);
}
.workflow-step > span {
  font:
    11px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #707070;
}
.workflow-step h3 {
  margin: 0 0 9px;
  font-size: 21px;
  letter-spacing: -0.025em;
}
.workflow-step p {
  margin: 0;
  color: #898989;
  font-size: 13px;
  max-width: 35ch;
}
.workflow-axis {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  pointer-events: none;
}
.workflow-cta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.theme-compare {
  margin-bottom: 16px;
}
.theme-compare-stage {
  position: relative;
  aspect-ratio: 1613/981;
  overflow: hidden;
  background: #080808;
  border-bottom: 1px solid var(--line);
  cursor: ew-resize;
  touch-action: none;
}
.theme-compare-stage > img,
.theme-light-wrap,
.theme-light-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-light-wrap {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  z-index: 2;
}
.theme-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 1px;
  background: #fff;
  z-index: 5;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.theme-divider i {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #0c0c0c;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
}
.theme-divider i::before,
.theme-divider i::after {
  content: "";
  position: absolute;
  background: #fff;
  opacity: 0.65;
}
.theme-divider i::before {
  width: 10px;
  height: 1px;
  left: 11px;
  top: 16px;
}
.theme-divider i::after {
  height: 10px;
  width: 1px;
  left: 16px;
  top: 11px;
}
.theme-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
}
.theme-range:focus-visible {
  opacity: 0.001;
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.theme-label {
  position: absolute;
  top: 18px;
  z-index: 6;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(10px);
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.15em;
}
.theme-label-light {
  left: 18px;
  color: #ececec;
}
.theme-label-dark {
  right: 18px;
}
.theme-compare-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: end;
  padding: 24px 28px;
}
.theme-compare-copy .card-copy {
  justify-self: end;
  margin: 0;
}
.studio-pillars {
  margin-top: 16px;
}
.mini-cycle {
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 32px 0 0;
}
.mini-cycle::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  animation: spinSlow 14s linear infinite;
}
.mini-cycle span {
  font:
    36px Georgia,
    serif;
}
.mini-cycle i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  top: -3px;
  left: 57px;
  transform-origin: 3px 63px;
  animation: orbitA 7s linear infinite;
}
.mini-cycle b {
  position: absolute;
  bottom: -24px;
  font-size: 7px;
  letter-spacing: 0.15em;
  color: #6e6e6e;
}
.studio-planet-card {
  position: relative;
  width: 145px;
  height: 145px;
  margin: 30px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.studio-planet-card i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  inset: 18px;
}
.studio-planet-card i:nth-child(2) {
  inset: 38px;
}
.studio-planet-card i:nth-child(3) {
  inset: 58px;
  background: #e5e5e5;
  border: 0;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.13);
}
.studio-planet-card b {
  position: absolute;
  right: 4px;
  top: 24px;
  font-size: 20px;
  color: #7a7a7a;
}
.read-lines {
  display: grid;
  gap: 8px;
  margin-top: 36px;
}
.read-lines i {
  display: block;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.17),
    rgba(255, 255, 255, 0.03)
  );
  width: 88%;
}
.read-lines i:nth-child(2) {
  width: 68%;
}
.read-lines i:nth-child(3) {
  width: 78%;
}
.read-lines i:nth-child(4) {
  width: 46%;
}
.studio-product-shot {
  padding: 18px;
}
.product-shot-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 8px 18px;
}
.product-shot-bar .card-label {
  margin-bottom: 7px;
}
.product-shot-bar .h3 {
  margin: 0;
}
.product-shot-bar > span {
  font:
    9px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #626262;
  letter-spacing: 0.1em;
}
.studio-product-shot > img,
.report-reader-card > img {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  width: 100%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}
.profile-schematic {
  position: relative;
  width: 220px;
  height: 150px;
  margin: 35px auto 0;
}
.profile-core {
  position: absolute;
  left: 88px;
  top: 42px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font:
    22px Georgia,
    serif;
  background: #111;
}
.profile-schematic::before {
  content: "";
  position: absolute;
  left: 114px;
  top: 0;
  width: 1px;
  height: 145px;
  background: rgba(255, 255, 255, 0.09);
}
.profile-schematic::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 69px;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}
.profile-schematic b {
  position: absolute;
  font-size: 8px;
  font-weight: 500;
  color: #6f6f6f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile-schematic b:nth-of-type(1) {
  left: 0;
  top: 18px;
}
.profile-schematic b:nth-of-type(2) {
  right: 0;
  top: 18px;
}
.profile-schematic b:nth-of-type(3) {
  left: 0;
  bottom: 10px;
}
.profile-schematic b:nth-of-type(4) {
  right: 0;
  bottom: 10px;
}
.profile-schematic i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ddd;
  border-radius: 50%;
  left: 112px;
  top: 67px;
  box-shadow:
    -96px 0 #6d6d6d,
    96px 0 #6d6d6d,
    0 -61px #6d6d6d,
    0 76px #6d6d6d;
}
.batch-visual {
  position: relative;
  height: 100px;
  margin-top: 38px;
}
.batch-visual i {
  position: absolute;
  width: 92px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0b0b0b;
  left: 0;
  top: 20px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}
.batch-visual i:nth-child(2) {
  left: 48px;
  top: 11px;
}
.batch-visual i:nth-child(3) {
  left: 96px;
  top: 2px;
}
.batch-visual span {
  position: absolute;
  font:
    8px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #777;
  top: 28px;
}
.batch-visual span:nth-of-type(1) {
  left: 110px;
}
.batch-visual span:nth-of-type(2) {
  left: 62px;
}
.batch-visual span:nth-of-type(3) {
  left: 14px;
}
.brand-sheet {
  height: 112px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  background: linear-gradient(135deg, #111, #080808);
}
.brand-sheet span {
  font:
    18px Georgia,
    serif;
  letter-spacing: 0.12em;
}
.brand-sheet i {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
  top: 54px;
}
.brand-sheet i:nth-of-type(2) {
  top: 72px;
  right: 46px;
}
.brand-sheet b {
  position: absolute;
  bottom: 12px;
  font-size: 7px;
  color: #666;
  letter-spacing: 0.1em;
}
.library-stack {
  position: relative;
  height: 112px;
  margin-top: 30px;
}
.library-stack i {
  position: absolute;
  left: 0;
  right: 25%;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0c0c0c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.library-stack i:nth-child(2) {
  top: 34px;
  left: 12%;
  right: 13%;
}
.library-stack i:nth-child(3) {
  top: 68px;
  left: 24%;
  right: 0;
}
.report-filter {
  display: flex;
  gap: 0;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  width: max-content;
  max-width: 100%;
  overflow: auto;
}
.report-filter button {
  border: 0;
  border-right: 1px solid var(--line);
  background: #070707;
  color: #757575;
  padding: 12px 16px;
  font-size: 11px;
  white-space: nowrap;
}
.report-filter button:last-child {
  border-right: 0;
}
.report-filter button:hover,
.report-filter button.active {
  background: #111;
  color: #fff;
}
.report-filter button[aria-pressed="true"] {
  box-shadow: inset 0 -1px #fff;
}
.report-family-card {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.report-family-card.is-filtered {
  display: none;
}
.family-number-wheel {
  width: 190px;
  height: 190px;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-8deg);
}
.family-number-wheel span,
.family-number-wheel b {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font:
    16px Georgia,
    serif;
  color: #6e6e6e;
}
.family-number-wheel b {
  color: #eee;
  font-size: 28px;
}
.family-orbit-stack {
  position: relative;
  width: 210px;
  height: 160px;
  margin-top: 32px;
}
.family-orbit-stack i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  inset: 0 24px;
}
.family-orbit-stack i:nth-child(2) {
  inset: 20px 44px;
}
.family-orbit-stack i:nth-child(3) {
  inset: 42px 66px;
}
.family-orbit-stack b {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font:
    34px Georgia,
    serif;
}
.family-planet-system {
  position: relative;
  width: 220px;
  height: 160px;
  margin-top: 30px;
}
.family-planet-system::before,
.family-planet-system::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  left: 28px;
  right: 28px;
  top: 10px;
  bottom: 10px;
}
.family-planet-system::after {
  inset: 42px 64px;
}
.family-planet-system span {
  position: absolute;
  left: 96px;
  top: 59px;
  font-size: 28px;
}
.family-planet-system b {
  position: absolute;
  right: 23px;
  top: 30px;
  color: #777;
  font-size: 18px;
}
.family-planet-system i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ddd;
  border-radius: 50%;
  left: 106px;
  top: 8px;
  transform-origin: 3px 72px;
  animation: orbitA 12s linear infinite;
}
.family-planet-system i:nth-of-type(2) {
  top: 39px;
  transform-origin: 3px 41px;
  animation-duration: 8s;
  animation-direction: reverse;
}
.family-planet-system i:nth-of-type(3) {
  top: 82px;
  left: 18px;
  transform: none;
  opacity: 0.45;
}
.compat-lines {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}
.compat-lines span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font:
    16px Georgia,
    serif;
}
.compat-lines i {
  height: 1px;
  flex: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.12)
  );
  position: relative;
}
.compat-lines i::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #eee;
  left: 50%;
  top: -2px;
}
.practice-nodes {
  position: relative;
  height: 80px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.practice-nodes i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  top: -4px;
  background: #0b0b0b;
}
.practice-nodes i:nth-child(1) {
  left: 0;
}
.practice-nodes i:nth-child(2) {
  left: 30%;
}
.practice-nodes i:nth-child(3) {
  left: 64%;
}
.practice-nodes i:nth-child(4) {
  right: 0;
}
.report-reader-card {
  padding: 18px;
}
.template-system-card .card-inner {
  display: flex;
  flex-direction: column;
}
.template-fan {
  position: relative;
  height: 190px;
  margin-top: auto;
}
.template-fan i {
  position: absolute;
  width: 116px;
  height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, #121212, #080808);
  bottom: 0;
  left: 50%;
  transform-origin: 50% 100%;
}
.template-fan i:nth-child(1) {
  transform: translateX(-50%) rotate(-14deg);
}
.template-fan i:nth-child(2) {
  transform: translateX(-50%) rotate(0deg);
  z-index: 2;
}
.template-fan i:nth-child(3) {
  transform: translateX(-50%) rotate(14deg);
}
.template-fan i::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px rgba(255, 255, 255, 0.08),
    0 36px rgba(255, 255, 255, 0.05);
}
.template-fan span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  z-index: 4;
  font:
    38px Georgia,
    serif;
}
.style-controls {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  font:
    8px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #676767;
}
.style-controls i {
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}
.delivery-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
  font:
    8px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #777;
}
.delivery-flow i {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.delivery-flow i::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 35%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9d9d9;
}
.delivery-flow b {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ddd;
  font-size: 9px;
}
.usage-shot > img {
  filter: saturate(0) contrast(1.03);
}
.trust-bento .card {
  min-height: 280px;
}
.local-vault {
  position: relative;
  width: 260px;
  height: 180px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.local-vault::before,
.local-vault::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  inset: 28px;
}
.local-vault::after {
  inset: 56px;
}
.local-vault span {
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.2em;
}
.local-vault b {
  position: absolute;
  bottom: 18px;
  font-size: 7px;
  color: #626262;
  letter-spacing: 0.14em;
}
.local-vault i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ddd;
  left: 128px;
  top: -2px;
  transform-origin: 2px 92px;
  animation: orbitA 14s linear infinite;
}
.local-vault i:nth-of-type(2) {
  top: 26px;
  transform-origin: 2px 64px;
  animation-duration: 10s;
  animation-direction: reverse;
}
.local-vault i:nth-of-type(3) {
  top: 54px;
  transform-origin: 2px 36px;
  animation-duration: 7s;
}
.engine-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  font:
    8px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #6d6d6d;
}
.engine-route i {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.engine-route i::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  top: -2px;
  left: 10%;
  animation: routePacket 4.5s linear infinite;
}
@keyframes routePacket {
  to {
    left: 90%;
  }
}
.studio-download-card {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}
.studio-download-copy {
  padding: 56px 60px;
}
.studio-download-copy .studio-editorial {
  max-width: 13ch;
}
.studio-release-note {
  margin-top: 20px;
}
.download-orbit {
  position: relative;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  display: grid;
  place-items: center;
  justify-self: center;
}
.download-orbit::before,
.download-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  inset: 46px;
}
.download-orbit::after {
  inset: 96px;
}
.download-orbit span {
  font:
    64px Georgia,
    serif;
}
.download-orbit b {
  position: absolute;
  bottom: 42px;
  font-size: 7px;
  color: #6d6d6d;
  letter-spacing: 0.2em;
}
.download-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8e8e8;
  top: -4px;
  left: 161px;
  transform-origin: 3px 168px;
  animation: orbitA 18s linear infinite;
}
.download-orbit i:nth-of-type(2) {
  top: 44px;
  transform-origin: 3px 120px;
  animation-duration: 13s;
  animation-direction: reverse;
}
.download-orbit i:nth-of-type(3) {
  top: 94px;
  transform-origin: 3px 70px;
  animation-duration: 9s;
}

@media (max-width: 1120px) {
  .studio-home-grid {
    grid-template-columns: 1fr;
  }
  .studio-home-preview {
    min-height: auto;
  }
  .studio-hero {
    min-height: auto;
  }
  .studio-hero > .shell {
    grid-template-columns: 1fr;
  }
  .studio-hero-copy {
    max-width: 840px;
  }
  .studio-hero-stage {
    min-height: 700px;
  }
  .studio-shot-main {
    right: 2%;
    width: 82%;
  }
  .studio-shot-report {
    left: 3%;
    width: 50%;
  }
  .workflow-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-plan-banner {
    grid-template-columns: 1fr;
  }
  .studio-plan-banner-signal {
    width: min(300px, 72%);
    height: 250px;
    margin: -8px auto 42px;
  }
  .studio-download-card {
    grid-template-columns: 1fr;
  }
  .download-orbit {
    margin: 20px 0 56px;
  }
}
@media (max-width: 820px) {
  .studio-section-nav {
    top: 64px;
  }
  .studio-hero {
    padding-top: 72px;
  }
  .studio-hero-stage {
    min-height: 570px;
  }
  .studio-shot-main {
    width: 94%;
    right: 0;
  }
  .studio-shot-report {
    width: 60%;
    left: 0;
  }
  .studio-hero-seal {
    width: 100px;
    height: 100px;
  }
  .studio-orbit-field {
    width: 520px;
    height: 520px;
    right: -160px;
  }
  .studio-orbit-field i {
    left: 257px;
    transform-origin: 3px 263px;
  }
  .studio-statement .card-inner {
    padding: 40px 34px;
  }
  .studio-plan-banner-copy {
    padding: 42px 34px 24px;
  }
  .workflow-orbit {
    grid-template-columns: 1fr;
  }
  .workflow-axis {
    display: none;
  }
  .theme-compare-copy {
    grid-template-columns: 1fr;
  }
  .theme-compare-copy .card-copy {
    justify-self: start;
  }
  .studio-download-copy {
    padding: 42px 34px;
  }
  .report-filter {
    width: 100%;
  }
  .studio-home-grid {
    gap: 28px;
  }
  .studio-home-landing {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}
@media (max-width: 620px) {
  .studio-display {
    font-size: clamp(48px, 14vw, 68px);
  }
  .studio-hero-stage {
    min-height: 460px;
    margin-top: 20px;
  }
  .studio-shot-main {
    width: 100%;
    top: 4%;
    transform: rotateY(-3deg);
  }
  .studio-shot-report {
    width: 68%;
    bottom: 0;
    transform: rotateY(4deg) translateZ(30px);
  }
  .studio-hero-seal {
    display: none;
  }
  .studio-orbit-field {
    width: 390px;
    height: 390px;
    right: -150px;
    top: 30px;
  }
  .studio-orbit-field i {
    display: none;
  }
  .studio-trustline span {
    width: 100%;
    padding: 9px 0;
    margin: 0;
  }
  .studio-trustline span::after {
    display: none !important;
  }
  .studio-section-nav .shell {
    gap: 20px;
  }
  .studio-statement .card-inner {
    padding: 30px 22px;
  }
  .studio-plan-banner-copy {
    padding: 30px 22px 14px;
  }
  .studio-plan-banner-signal {
    width: min(250px, 86%);
    height: 210px;
    margin-bottom: 30px;
  }
  .studio-statement-rail {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .studio-statement-rail i {
    width: 100%;
    height: 1px;
  }
  .workflow-step {
    min-height: 190px;
    padding: 24px 20px;
  }
  .theme-label {
    top: 10px;
  }
  .theme-label-light {
    left: 10px;
  }
  .theme-label-dark {
    right: 10px;
  }
  .theme-divider i {
    width: 28px;
    height: 28px;
  }
  .theme-compare-copy {
    padding: 20px;
  }
  .studio-product-shot,
  .report-reader-card {
    padding: 10px;
  }
  .product-shot-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-shot-bar > span {
    display: none;
  }
  .studio-home-points {
    grid-template-columns: 1fr;
  }
  .studio-home-preview {
    padding: 10px;
    min-height: 300px;
  }
  .studio-preview-frame {
    min-height: 260px;
  }
  .studio-preview-orbit {
    display: none;
  }
  .studio-preview-caption {
    left: 18px;
    right: 18px;
    bottom: 14px;
  }
  .studio-download-copy {
    padding: 30px 22px;
  }
  .download-orbit {
    width: 240px;
    height: 240px;
  }
  .download-orbit i {
    left: 116px;
    transform-origin: 3px 123px;
  }
  .download-orbit i:nth-of-type(2) {
    transform-origin: 3px 75px;
  }
  .download-orbit i:nth-of-type(3) {
    display: none;
  }
  .delivery-flow {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .delivery-flow i {
    width: 100%;
  }
  .theme-compare-stage {
    aspect-ratio: 4/3;
  }
  .theme-compare-stage > img,
  .theme-light-wrap img {
    object-fit: cover;
    object-position: left top;
  }
  .report-filter button {
    padding: 11px 13px;
  }
}
@media (hover: none), (pointer: coarse) {
  .tarot-feature-card:hover .tp-a {
    transform: rotate(-8deg) translateY(8px);
  }
  .tarot-feature-card:hover .tp-b {
    transform: translateY(-6px);
  }
  .tarot-feature-card:hover .tp-c {
    transform: rotate(8deg) translateY(8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .studio-orbit-field i,
  .studio-hero-seal::before,
  .studio-preview-orbit i,
  .studio-statement-rail i::after,
  .mini-cycle::before,
  .mini-cycle i,
  .family-planet-system i,
  .local-vault i,
  .engine-route i::after,
  .download-orbit i {
    animation: none !important;
  }
  .tarot-pro-card {
    transition: none;
  }
  .studio-shot-main,
  .studio-shot-report {
    transform: none;
  }
}
.tarot-stage-compact {
  min-height: 118px;
  padding-top: 12px;
  gap: 7px;
}
.tarot-stage-compact .tarot-pro-card {
  width: 60px;
  height: 90px;
  border-radius: 10px;
}
.tarot-stage-compact .tarot-pro-card::before {
  inset: 20px 13px;
}
.tarot-stage-compact .tarot-pro-card::after {
  inset: 29px 22px;
}
.tarot-stage-compact .tarot-pro-card i {
  inset: 6px;
}
.tarot-stage-compact .tarot-index {
  top: 6px;
  left: 8px;
}
.tarot-stage-compact .tarot-pro-card b {
  bottom: 6px;
  font-size: 6px;
}
.tarot-home-card .card-inner {
  display: flex;
  flex-direction: column;
}
.tarot-home-card .card-link {
  margin-top: auto;
}

/* Production navigation guard: the additional Studio destination collapses before links crowd. */
@media (max-width: 1040px) {
  .desktop-only {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #090909;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
}

@media (min-width: 978px){
  .profile-schematic {
    position: relative;
    width: 220px;
    height: 150px;
    margin: 135px auto 0;
}
.contact-bento-visual {
    margin-top: 116px;
}
.style-controls.reuse-c {
    margin-top: 125px;
}
a.btn.btn-primary.c-y-a-btn {
    margin-top: 140px;
}
}

@media (min-width: 1278px) {
    a.btn.btn-primary.c-y-a-btn {
        margin-top: 225px;
    }
    .engine-route.l-r-e-obj {
    margin-top: 188px;
}
.compat-lines.compact {
    margin-top: 138px;
}
.practice-nodes.f-b-node {
    margin-top: 138px;
}
}
