:root {
  --ink: #25133d;
  --ink-soft: #3d245f;
  --ink-lift: #f0e8fb;
  --paper: #fffefd;
  --paper-soft: #62586f;
  --muted: #81758d;
  --line: rgba(69, 36, 110, 0.12);
  --line-strong: rgba(69, 36, 110, 0.22);
  --violet: #6c2bd9;
  --violet-bright: #8f5af7;
  --violet-deep: #35105f;
  --cyan: #7551d9;
  --orange: #7434d6;
  --acid: #a978ec;
  --max: 1320px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 28px 80px rgba(66, 30, 111, 0.14);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Space Grotesk", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% -8%, rgba(143, 90, 247, 0.17), transparent 34rem),
    radial-gradient(circle at 10% 34%, rgba(221, 205, 249, 0.34), transparent 30rem),
    linear-gradient(180deg, #fffefd 0%, #fbf8ff 100%);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(93, 49, 145, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 49, 145, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

body[data-theme="space"] {
  background:
    radial-gradient(circle at 76% 4%, rgba(132, 73, 232, 0.19), transparent 34rem),
    radial-gradient(circle at 12% 62%, rgba(205, 178, 245, 0.22), transparent 36rem),
    #fdfaff;
}

body[data-theme="prism"] {
  background:
    radial-gradient(circle at 80% 6%, rgba(151, 111, 230, 0.18), transparent 34rem),
    radial-gradient(circle at 18% 48%, rgba(222, 207, 249, 0.25), transparent 30rem),
    #fcfaff;
}

body[data-theme="tagger"] {
  background:
    radial-gradient(circle at 82% 0%, rgba(143, 90, 247, 0.16), transparent 34rem),
    radial-gradient(circle at 12% 44%, rgba(222, 207, 249, 0.25), transparent 32rem),
    #fffdfd;
}

::selection {
  background: var(--violet);
  color: #fff;
}

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

a {
  color: inherit;
}

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

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

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

.shell {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 18px 0;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup {
  display: block;
  width: 224px;
  height: 64px;
  flex: 0 0 224px;
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a,
.header-cta {
  position: relative;
  color: #4f4260;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--violet-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.kicker {
  margin: 0;
  color: var(--violet-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(420px, 0.87fr);
  min-height: calc(100svh - 98px);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding-block: clamp(80px, 12vh, 150px);
}

.home-hero__copy h1 {
  max-width: 12ch;
  margin-top: 22px;
  font-size: clamp(4.8rem, 8.8vw, 9.3rem);
  line-height: 0.82;
}

.home-hero__copy h1 em {
  display: block;
  color: var(--violet-bright);
  font-weight: 400;
}

.lede {
  max-width: 66ch;
  margin: 28px 0 0;
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--violet-bright);
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(93, 38, 218, 0.25);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.button--coral {
  border-color: #ff9b81;
  background: var(--orange);
  box-shadow: 0 16px 42px rgba(255, 112, 71, 0.2);
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button--light:hover {
  background: var(--violet-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--violet-bright);
  color: var(--violet-bright);
}

.home-hero__index {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(139, 77, 255, 0.18), transparent 36%),
    rgba(20, 18, 29, 0.75);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.home-hero__index::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 20%), rgba(181, 138, 255, 0.2), transparent 26%);
}

.index-label {
  position: relative;
  z-index: 2;
  margin: 0 0 180px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-hero__index > a {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--paper);
  text-decoration: none;
}

.home-hero__index > a:last-of-type {
  border-bottom: 1px solid var(--line);
}

.home-hero__index > a span,
.home-hero__index > a small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__index > a strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.home-hero__index > a:hover strong {
  color: var(--violet-bright);
}

.index-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-orbit {
  position: absolute;
  top: 44px;
  right: 12px;
  left: 12px;
  height: 200px;
}

.signal-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(181, 138, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-breathe 7s ease-in-out infinite;
}

.signal-orbit span:nth-child(1) {
  width: 280px;
  height: 110px;
}

.signal-orbit span:nth-child(2) {
  width: 190px;
  height: 190px;
  animation-delay: -2s;
}

.signal-orbit span:nth-child(3) {
  width: 72px;
  height: 72px;
  border-color: rgba(217, 251, 99, 0.45);
  background: radial-gradient(circle, rgba(217, 251, 99, 0.25), transparent 70%);
  box-shadow: 0 0 60px rgba(217, 251, 99, 0.12);
  animation-delay: -4s;
}

.statement-band {
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.statement-band__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: baseline;
  padding-block: 54px;
}

.statement-band .kicker {
  color: var(--violet-deep);
}

.statement-band p:last-child {
  max-width: 24ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.statement-band em {
  color: var(--violet-deep);
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 24px 64px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  line-height: 0.9;
}

.section-heading > p:last-child {
  max-width: 56ch;
  margin: 0 0 8px;
  color: var(--paper-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.product-ledger {
  border-top: 1px solid var(--line-strong);
}

.product-ledger__item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 310px 42px;
  align-items: center;
  min-height: 240px;
  gap: 32px;
  padding: 28px 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  text-decoration: none;
  transition: background 220ms ease, padding 220ms ease;
}

.product-ledger__item:hover {
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.product-number,
.product-ledger__item p {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.product-ledger__item p {
  margin: 0 0 8px;
}

.product-ledger__item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.product-ledger__item div > span:last-child {
  display: block;
  margin-top: 15px;
  color: var(--paper-soft);
}

.product-orb {
  width: 180px;
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(181, 138, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.42), transparent 8%),
    radial-gradient(circle, #7546d8, #271347 52%, #0a0811 70%);
  box-shadow: inset 0 0 38px rgba(181, 138, 255, 0.3), 0 0 60px rgba(139, 77, 255, 0.18);
}

.product-icon {
  width: 156px;
  justify-self: center;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.product-icon--space {
  width: 180px;
  border-radius: 0;
  box-shadow: 0 0 56px rgba(108, 43, 217, 0.22);
}

.product-icon--tagger {
  width: 150px;
  box-shadow: none;
}

.product-shot {
  position: relative;
  width: 300px;
  aspect-ratio: 1.62;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(108, 43, 217, 0.15);
  border-radius: 18px;
  background: #0e0c14;
  box-shadow: 0 18px 44px rgba(56, 22, 99, 0.18);
  transform: perspective(900px) rotateY(-3deg);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.product-ledger__item:hover .product-shot {
  box-shadow: 0 24px 56px rgba(80, 34, 143, 0.24);
  transform: perspective(900px) rotateY(0deg) translateY(-3px);
}

.product-shot__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot--tagger .product-shot__screen {
  position: absolute;
  width: 170%;
  max-width: none;
  height: auto;
  left: -42%;
  top: -22%;
}

.card-arrow {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.9rem;
}

.split-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 160px);
}

.split-story__title h2 {
  max-width: 9ch;
  margin-top: 16px;
  font-size: clamp(3.6rem, 6vw, 6.6rem);
  line-height: 0.9;
}

.principles {
  border-top: 1px solid var(--line-strong);
}

.principle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line-strong);
}

.principle > span {
  color: var(--violet-bright);
  font-size: 0.72rem;
}

.principle h3 {
  margin: 0;
  font-size: 1.3rem;
}

.principle p {
  max-width: 52ch;
  margin: 10px 0 0;
  color: var(--paper-soft);
  line-height: 1.7;
}

.closing-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(88px, 10vw, 140px);
  padding: clamp(42px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 20%, rgba(217, 251, 99, 0.22), transparent 22rem),
    linear-gradient(135deg, #251052, #111018 65%);
  box-shadow: var(--shadow);
}

.closing-panel h2 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  line-height: 0.9;
}

.closing-panel > p:not(.kicker) {
  max-width: 54ch;
  color: var(--paper-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 620px;
  align-items: end;
  gap: 70px;
  padding-block: clamp(90px, 12vw, 170px) 90px;
  border-bottom: 1px solid var(--line-strong);
}

.page-hero--compact {
  min-height: 520px;
}

.page-hero__copy h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(4.5rem, 8vw, 8.8rem);
  line-height: 0.84;
}

.page-hero__aside {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.page-hero__aside p,
.page-hero__aside span {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.page-hero__aside strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.page-hero__aside--prose p {
  color: var(--paper-soft);
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.8;
  text-transform: none;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--paper);
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease;
}

.collection-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.collection-card--space {
  background: radial-gradient(circle at 50% 35%, rgba(139, 77, 255, 0.32), transparent 23rem), #100c19;
}

.collection-card--prism {
  background: radial-gradient(circle at 50% 35%, rgba(105, 216, 255, 0.22), transparent 23rem), #0b1117;
}

.collection-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.collection-card__visual {
  display: grid;
  min-height: 360px;
  place-items: center;
}

.collection-card__visual img {
  width: min(60%, 280px);
  border-radius: 48px;
  box-shadow: var(--shadow);
}

.collection-card__visual-mark {
  width: min(72%, 360px);
  border-radius: 0;
  box-shadow: 0 0 72px rgba(108, 43, 217, 0.24);
}

.collection-card__visual--product {
  position: relative;
  min-height: 390px;
}

.collection-card__visual .collection-card__screen {
  width: 100%;
  max-width: none;
  border: 1px solid rgba(108, 43, 217, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 58px rgba(56, 22, 99, 0.2);
  transform: perspective(1100px) rotateX(2deg) rotateY(-3deg);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.collection-card:hover .collection-card__screen {
  box-shadow: 0 30px 68px rgba(56, 22, 99, 0.27);
  transform: perspective(1100px) rotateX(0deg) rotateY(0deg) scale(1.015);
}

.collection-card h2 {
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.9;
}

.collection-card > p {
  max-width: 50ch;
  color: var(--paper-soft);
  line-height: 1.7;
}

.space-rings {
  position: relative;
  width: 260px;
  aspect-ratio: 1;
}

.space-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(181, 138, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.space-rings i:nth-child(1) {
  width: 100%;
  height: 56%;
}

.space-rings i:nth-child(2) {
  width: 66%;
  height: 100%;
}

.space-rings i:nth-child(3) {
  width: 34%;
  height: 34%;
  background: radial-gradient(circle at 36% 30%, #e8d8ff, #7442d3 44%, #221039 74%);
  box-shadow: 0 0 60px rgba(139, 77, 255, 0.4);
}

.note-panel,
.product-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 72px;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.028);
}

.note-panel h2,
.product-close h2 {
  max-width: 13ch;
  margin-top: 14px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.94;
}

.note-panel > p,
.product-close p {
  color: var(--paper-soft);
  line-height: 1.75;
}

.product-close {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(88px, 10vw, 140px);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  min-height: calc(100svh - 90px);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
  padding-block: clamp(78px, 10vw, 130px);
}

.product-hero__copy h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(4.2rem, 7vw, 7.8rem);
  line-height: 0.84;
}

.product-signature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-signature__mark {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
}

.product-signature__mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-signature__mark--space img {
  filter: drop-shadow(0 10px 22px rgba(79, 30, 148, 0.24));
}

.product-signature__mark--prism img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(33, 65, 91, 0.2);
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.product-facts span,
.validation-note {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.media-frame {
  padding: 16px;
  border: 1px solid rgba(181, 138, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}

.media-frame img {
  width: 100%;
  border-radius: 16px;
}

.media-frame--prism {
  padding: 12px;
  border-color: rgba(78, 177, 214, 0.2);
  background: rgba(13, 21, 29, 0.96);
}

.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 0 80px;
  border-bottom: 1px solid var(--line-strong);
}

.metric-strip > div {
  padding: 32px;
  border-left: 1px solid var(--line);
}

.metric-strip > div:last-child {
  border-right: 1px solid var(--line);
}

.metric-strip span {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--violet-bright);
}

.metric-strip p {
  margin: 8px 0 0;
  color: var(--paper-soft);
}

.feature-split__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.feature-block {
  min-height: 310px;
  padding: 34px;
  background: var(--ink);
}

.feature-block > span,
.mode-card > span,
.question-card > span,
.value-card > span {
  color: var(--violet-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.feature-block h3 {
  margin: 100px 0 10px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.feature-block p,
.question-card p,
.value-card p {
  color: var(--paper-soft);
  line-height: 1.7;
}

.modes-section,
.tagger-workflow {
  background: var(--paper);
  color: var(--ink);
}

.modes-section .kicker,
.tagger-workflow .kicker {
  color: var(--violet-deep);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 7, 13, 0.3);
  border-left: 1px solid rgba(8, 7, 13, 0.3);
}

.mode-card {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid rgba(8, 7, 13, 0.3);
  border-bottom: 1px solid rgba(8, 7, 13, 0.3);
}

.mode-card > span {
  color: rgba(8, 7, 13, 0.5);
}

.mode-card h3 {
  margin: 76px 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.product-hero--prism {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
}

.product-hero--prism .kicker,
body[data-theme="prism"] .section-heading .kicker {
  color: var(--cyan);
}

.validation-note {
  display: inline-block;
  margin-top: 28px;
  border-radius: 8px;
  line-height: 1.5;
}

.prism-cockpit {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(105, 216, 255, 0.32);
  border-radius: 26px;
  background: rgba(105, 216, 255, 0.18);
  box-shadow: var(--shadow), 0 0 80px rgba(105, 216, 255, 0.08);
}

.prism-cockpit__header,
.prism-cockpit__footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  background: #111821;
  color: #9eb1c0;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.live-dot {
  color: var(--acid);
}

.prism-reading {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(160deg, #101821, #0a0f15);
}

.prism-reading small,
.prism-reading span {
  color: #7f94a4;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.prism-reading strong {
  margin-top: 16px;
  color: #eafaff;
  font-size: 3.8rem;
  line-height: 0.8;
}

.prism-reading--main strong {
  color: var(--cyan);
  font-size: 5rem;
}

.prism-spectrum {
  grid-column: 1 / -1;
  display: flex;
  height: 220px;
  align-items: end;
  gap: 5px;
  padding: 28px 20px 20px;
  background:
    linear-gradient(rgba(105, 216, 255, 0.06) 1px, transparent 1px),
    #0a1016;
  background-size: 100% 44px;
}

.prism-spectrum i {
  width: 100%;
  height: var(--bar);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, rgba(105, 216, 255, 0.12), var(--cyan));
  box-shadow: 0 0 14px rgba(105, 216, 255, 0.12);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.question-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.question-card:nth-child(4),
.question-card:nth-child(5) {
  grid-column: span 3;
}

.question-card > span {
  color: var(--cyan);
}

.question-card h3 {
  margin: 74px 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.reference-panel {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  border-block: 1px solid var(--line-strong);
}

.reference-panel__icon {
  display: grid;
  min-height: 440px;
  place-items: center;
  background: radial-gradient(circle, rgba(105, 216, 255, 0.18), transparent 56%);
}

.reference-panel__icon img {
  width: min(72%, 310px);
  border-radius: 54px;
  box-shadow: var(--shadow);
}

.reference-panel h2 {
  max-width: 11ch;
  margin-top: 14px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.9;
}

.reference-panel p:last-child {
  max-width: 58ch;
  color: var(--paper-soft);
  line-height: 1.75;
}

.tagger-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
  min-height: calc(100svh - 90px);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
  padding-block: clamp(76px, 10vw, 130px);
}

.tagger-lockup {
  display: flex;
  max-width: 330px;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.tagger-lockup img:first-child {
  width: 42px;
  height: 50px;
  object-fit: contain;
}

.tagger-lockup img:last-child {
  width: 250px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.tagger-hero .kicker {
  color: var(--orange);
}

.tagger-hero__copy h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(4rem, 6.8vw, 7.6rem);
  line-height: 0.84;
}

.tagger-preview__window {
  overflow: hidden;
  border: 1px solid rgba(242, 238, 229, 0.3);
  border-radius: 24px;
  background: #141913;
  box-shadow: var(--shadow), 18px 18px 0 rgba(255, 112, 71, 0.12);
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(242, 238, 229, 0.14);
  color: rgba(242, 238, 229, 0.54);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(242, 238, 229, 0.3);
}

.browser-bar span {
  margin-left: auto;
}

.tagger-preview__crop {
  position: relative;
  aspect-ratio: 1.2;
  overflow: hidden;
  background: #f2eee5;
}

.tagger-preview__crop img {
  position: absolute;
  width: 200%;
  max-width: none;
  left: -78%;
  top: -38%;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 0 100px;
}

.promise {
  min-height: 240px;
  padding: 30px;
  border: 1px solid rgba(217, 251, 99, 0.18);
  background: rgba(217, 251, 99, 0.025);
}

.promise + .promise {
  border-left: 0;
}

.promise > span {
  color: var(--acid);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.promise strong {
  display: block;
  margin-top: 72px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.promise p {
  color: var(--paper-soft);
  line-height: 1.7;
}

.workflow-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(8, 7, 13, 0.32);
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(8, 7, 13, 0.32);
}

.workflow-steps li > span {
  color: rgba(8, 7, 13, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.workflow-steps p {
  max-width: 68ch;
  margin: 7px 0 0;
  color: rgba(8, 7, 13, 0.72);
  line-height: 1.7;
}

.evidence-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.evidence-panel h2 {
  max-width: 12ch;
  margin-top: 14px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.9;
}

.evidence-panel__copy > p:last-child {
  max-width: 58ch;
  color: var(--paper-soft);
  line-height: 1.75;
}

.evidence-panel__tokens {
  display: grid;
  gap: 12px;
}

.evidence-panel__tokens span {
  padding: 18px 20px;
  border: 1px solid rgba(217, 251, 99, 0.2);
  border-radius: 999px;
  background: rgba(217, 251, 99, 0.035);
  color: var(--acid);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.8rem;
}

.product-close--tagger {
  border-color: rgba(217, 251, 99, 0.2);
  background: radial-gradient(circle at 90% 20%, rgba(217, 251, 99, 0.12), transparent 22rem), rgba(255, 255, 255, 0.025);
}

.origin-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.origin-mark {
  display: grid;
  min-height: 500px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 77, 255, 0.2), transparent 62%);
}

.brand-symbol--large {
  width: 260px;
  height: 260px;
  border: 0;
  background: transparent;
}

.brand-symbol--large img {
  width: 840px;
  left: -292px;
  top: -220px;
}

.origin-copy h2 {
  max-width: 11ch;
  margin-top: 14px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: 0.9;
}

.origin-copy > p:not(.kicker) {
  max-width: 60ch;
  color: var(--paper-soft);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.value-card {
  min-height: 300px;
  padding: 30px;
  background: var(--ink);
}

.value-card h3 {
  margin: 100px 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

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

.support-card {
  min-height: 390px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.support-card--primary {
  grid-row: span 2;
  min-height: 800px;
  background: radial-gradient(circle at 80% 10%, rgba(139, 77, 255, 0.2), transparent 24rem), rgba(255, 255, 255, 0.025);
}

.support-card > span {
  color: var(--violet-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.support-card h2 {
  max-width: 12ch;
  margin-top: 120px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
}

.support-card--primary h2 {
  margin-top: 300px;
}

.support-card p {
  max-width: 48ch;
  color: var(--paper-soft);
  line-height: 1.7;
}

.faq-section .section-heading {
  grid-template-columns: 1fr;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  padding: 28px 46px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  content: "+";
  color: var(--violet-bright);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 74ch;
  margin: -8px 0 30px;
  color: var(--paper-soft);
  line-height: 1.8;
}

.legal-hero {
  max-width: 940px;
  padding-block: clamp(100px, 14vw, 190px) 80px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-hero h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(4.2rem, 8vw, 8rem);
  line-height: 0.86;
}

.legal-hero > p:not(.kicker) {
  max-width: 60ch;
  margin: 30px 0 20px;
  color: var(--paper-soft);
  font-size: 1.12rem;
  line-height: 1.8;
}

.legal-hero > span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-document {
  display: grid;
  max-width: 940px;
  gap: 0;
  padding-block: 50px 150px;
}

.legal-document section {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 50px;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-document p {
  grid-column: 2;
  max-width: 68ch;
  margin: 0;
  color: var(--paper-soft);
  line-height: 1.85;
}

.legal-document p + p {
  margin-top: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 12%, rgba(139, 77, 255, 0.2), transparent 26rem),
    #06050a;
}

.site-footer__lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-block: 90px;
}

.site-footer__lead h2 {
  max-width: 10ch;
  margin-top: 16px;
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  line-height: 0.86;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
  padding-block: 44px;
  border-top: 1px solid var(--line);
}

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

.brand--footer .brand-lockup {
  width: 260px;
  height: 74px;
  flex-basis: 260px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: var(--paper-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--violet-bright);
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 28px;
    left: 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 7, 13, 0.97);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--paper);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav-toggle__lines,
  .nav-toggle__lines::before {
    display: block;
    width: 16px;
    height: 1px;
    content: "";
    background: currentColor;
  }

  .nav-toggle__lines::before {
    transform: translateY(-5px);
  }

  .home-hero,
  .product-hero,
  .product-hero--prism,
  .tagger-hero,
  .page-hero,
  .origin-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 100px;
  }

  .home-hero__copy h1,
  .product-hero__copy h1,
  .tagger-hero__copy h1,
  .page-hero__copy h1 {
    max-width: 12ch;
  }

  .home-hero__index {
    min-height: 500px;
  }

  .product-hero,
  .tagger-hero {
    padding-top: 100px;
  }

  .section-heading,
  .split-story,
  .reference-panel,
  .evidence-panel {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .split-story__title h2,
  .reference-panel h2,
  .evidence-panel h2 {
    max-width: 14ch;
  }

  .product-ledger__item {
    grid-template-columns: 50px 1fr 150px 36px;
  }

  .product-orb {
    width: 130px;
  }

  .product-icon {
    width: 118px;
  }

  .product-shot {
    width: 146px;
    border-radius: 12px;
  }

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

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

  .reference-panel__icon {
    min-height: 330px;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding-block: 10px;
  }

  .brand-lockup {
    width: 170px;
    height: 49px;
    flex-basis: 170px;
  }

  .home-hero {
    min-height: auto;
    gap: 56px;
    padding-block: 78px 90px;
  }

  .home-hero__copy h1,
  .product-hero__copy h1,
  .tagger-hero__copy h1,
  .page-hero__copy h1,
  .legal-hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

  .home-hero__index {
    min-height: 460px;
    padding: 22px;
  }

  .home-hero__index > a {
    grid-template-columns: 28px 1fr;
  }

  .home-hero__index > a small {
    display: none;
  }

  .statement-band__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-story__title h2,
  .closing-panel h2,
  .note-panel h2,
  .product-close h2,
  .reference-panel h2,
  .evidence-panel h2,
  .origin-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .product-ledger__item {
    grid-template-columns: 36px 1fr 34px;
    min-height: 0;
    gap: 16px;
    padding-block: 30px;
  }

  .product-ledger__item h3 {
    font-size: 2.8rem;
  }

  .product-ledger__item .product-orb,
  .product-ledger__item .product-icon {
    display: none;
  }

  .product-ledger__item > .product-number {
    grid-column: 1;
    grid-row: 1;
  }

  .product-ledger__item > div:not(.product-shot) {
    grid-column: 2;
    grid-row: 1;
  }

  .product-ledger__item > .card-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .product-ledger__item .product-shot {
    display: block;
    grid-column: 2 / 4;
    grid-row: 2;
    width: 100%;
    max-width: 440px;
    margin-top: 4px;
    border-radius: 14px;
    transform: none;
  }

  .product-ledger__item:hover .product-shot {
    transform: translateY(-2px);
  }

  .collection-grid,
  .metric-strip,
  .feature-split__grid,
  .question-grid,
  .promise-grid,
  .values-grid,
  .support-grid,
  .note-panel,
  .product-close,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .collection-card__visual {
    min-height: 270px;
  }

  .collection-card__visual--product {
    min-height: 250px;
  }

  .product-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-signature__mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .collection-card h2 {
    font-size: 3.4rem;
  }

  .note-panel,
  .product-close {
    gap: 28px;
  }

  .page-hero {
    min-height: auto;
    gap: 54px;
    padding-block: 92px 68px;
  }

  .page-hero__aside {
    padding: 22px;
  }

  .product-hero,
  .tagger-hero {
    min-height: auto;
    gap: 54px;
    padding-block: 90px;
  }

  .media-frame,
  .tagger-preview__window {
    transform: none;
  }

  .metric-strip {
    border: 1px solid var(--line);
    padding-bottom: 0;
  }

  .metric-strip > div,
  .metric-strip > div:last-child {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-split__grid,
  .values-grid {
    background: transparent;
    border: 0;
    gap: 12px;
  }

  .feature-block,
  .value-card {
    border: 1px solid var(--line);
  }

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

  .prism-cockpit {
    grid-template-columns: 1fr 1fr;
  }

  .prism-reading--main {
    grid-column: 1 / -1;
  }

  .prism-reading--main strong {
    font-size: 4.3rem;
  }

  .question-card,
  .question-card:nth-child(4),
  .question-card:nth-child(5) {
    grid-column: auto;
  }

  .tagger-lockup {
    max-width: 270px;
  }

  .tagger-preview__crop {
    aspect-ratio: 1;
  }

  .tagger-preview__crop img {
    width: 260%;
    left: -115%;
    top: -45%;
  }

  .promise + .promise {
    border-top: 0;
    border-left: 1px solid rgba(217, 251, 99, 0.18);
  }

  .workflow-steps li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .origin-mark {
    min-height: 360px;
  }

  .support-card,
  .support-card--primary {
    grid-row: auto;
    min-height: 420px;
  }

  .support-card h2,
  .support-card--primary h2 {
    margin-top: 130px;
  }

  .legal-document section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-document p {
    grid-column: 1;
  }

  .site-footer__lead {
    align-items: start;
    flex-direction: column;
  }

  .site-footer__grid {
    gap: 34px;
  }

  .brand--footer {
    margin-bottom: 18px;
  }

  .site-footer__base {
    align-items: start;
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Unified Selah light system */
.text-link,
.home-hero__index > a,
.product-ledger__item,
.collection-card,
.nav-toggle {
  color: var(--ink);
}

.home-hero__index {
  border-color: rgba(108, 43, 217, 0.16);
  background:
    linear-gradient(145deg, rgba(143, 90, 247, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.home-hero__index::after {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 34px;
  width: 210px;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  background: url("/assets/brand/selah-logo-symbol.png") center / contain no-repeat;
  opacity: 0.055;
}

.home-hero__index > a {
  border-color: var(--line);
}

.home-hero__index > a:hover strong {
  color: var(--violet);
}

.signal-orbit span {
  border-color: rgba(108, 43, 217, 0.2);
}

.signal-orbit span:nth-child(3) {
  border-color: rgba(108, 43, 217, 0.38);
  background: radial-gradient(circle, rgba(143, 90, 247, 0.22), transparent 70%);
  box-shadow: 0 0 55px rgba(108, 43, 217, 0.12);
}

.statement-band {
  border-color: var(--line);
  background: linear-gradient(110deg, #f5effd, #fffefd 68%);
}

.product-ledger__item:hover {
  background: rgba(108, 43, 217, 0.045);
}

.product-orb {
  border-color: rgba(108, 43, 217, 0.22);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(circle, #c6a8f8, #8f5af7 50%, #6c2bd9 68%, #f8f3ff 70%);
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.25), 0 18px 48px rgba(80, 34, 143, 0.16);
}

.product-icon,
.collection-card__visual img,
.reference-panel__icon img {
  box-shadow: 0 18px 48px rgba(66, 30, 111, 0.15);
}

.closing-panel {
  border: 1px solid rgba(108, 43, 217, 0.12);
  background:
    radial-gradient(circle at 86% 16%, rgba(143, 90, 247, 0.2), transparent 24rem),
    linear-gradient(135deg, #f0e6fc, #fffefd 68%);
  box-shadow: var(--shadow);
}

.page-hero__aside,
.note-panel,
.product-close,
.question-card,
.support-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(66, 30, 111, 0.06);
}

.collection-card--space {
  background: radial-gradient(circle at 50% 34%, rgba(143, 90, 247, 0.18), transparent 23rem), #fbf8ff;
}

.collection-card--prism {
  background: radial-gradient(circle at 50% 34%, rgba(180, 147, 239, 0.2), transparent 23rem), #fffefd;
}

.space-rings i {
  border-color: rgba(108, 43, 217, 0.34);
}

.space-rings i:nth-child(3) {
  background: radial-gradient(circle at 36% 30%, #f7f0ff, #9b6bea 48%, #5d20bd 76%);
  box-shadow: 0 20px 55px rgba(108, 43, 217, 0.22);
}

.media-frame {
  border-color: rgba(108, 43, 217, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.metric-strip {
  border-color: var(--line-strong);
}

.metric-strip > div,
.metric-strip > div:last-child {
  border-color: var(--line);
}

.feature-split__grid,
.values-grid {
  border-color: var(--line-strong);
  background: var(--line-strong);
}

.feature-block,
.value-card {
  background: rgba(255, 255, 255, 0.94);
}

.modes-section,
.tagger-workflow {
  background: linear-gradient(180deg, #f4edfc, #fbf8ff);
}

.mode-grid,
.workflow-steps {
  border-color: rgba(53, 16, 95, 0.2);
}

.mode-card,
.workflow-steps li {
  border-color: rgba(53, 16, 95, 0.2);
}

.product-hero--prism .kicker,
body[data-theme="prism"] .section-heading .kicker,
.question-card > span {
  color: var(--violet);
}

.prism-cockpit {
  border-color: rgba(143, 90, 247, 0.28);
  background: rgba(143, 90, 247, 0.18);
  box-shadow: var(--shadow), 0 0 70px rgba(108, 43, 217, 0.08);
}

.prism-cockpit__header,
.prism-cockpit__footer {
  background: #32174f;
  color: #d8caea;
}

.prism-reading {
  background: linear-gradient(160deg, #362052, #27153e);
}

.prism-reading small,
.prism-reading span {
  color: #c2addd;
}

.prism-reading strong,
.prism-reading--main strong,
.live-dot {
  color: #c9a7ff;
}

.prism-spectrum {
  background:
    linear-gradient(rgba(201, 167, 255, 0.07) 1px, transparent 1px),
    #25133d;
  background-size: 100% 44px;
}

.prism-spectrum i {
  background: linear-gradient(to top, rgba(201, 167, 255, 0.14), #ad7cf5);
  box-shadow: 0 0 14px rgba(173, 124, 245, 0.14);
}

.reference-panel__icon {
  background: radial-gradient(circle, rgba(143, 90, 247, 0.16), transparent 58%);
}

.tagger-hero .kicker {
  color: var(--violet);
}

.tagger-lockup img:last-child {
  filter: none;
  opacity: 0.9;
}

.tagger-preview__window {
  border-color: rgba(108, 43, 217, 0.17);
  background: #fff;
  box-shadow: var(--shadow), 16px 16px 0 rgba(143, 90, 247, 0.09);
}

.browser-bar {
  border-color: var(--line);
  background: #f7f2fc;
  color: var(--muted);
}

.browser-bar i {
  background: rgba(108, 43, 217, 0.24);
}

.promise {
  border-color: rgba(108, 43, 217, 0.15);
  background: rgba(255, 255, 255, 0.72);
}

.promise > span,
.evidence-panel__tokens span {
  color: var(--violet);
}

.evidence-panel__tokens span {
  border-color: rgba(108, 43, 217, 0.16);
  background: #f7f1fd;
}

.product-close--tagger {
  border-color: rgba(108, 43, 217, 0.16);
  background: radial-gradient(circle at 90% 20%, rgba(143, 90, 247, 0.14), transparent 22rem), rgba(255, 255, 255, 0.82);
}

.origin-mark {
  border-color: rgba(108, 43, 217, 0.14);
  background: radial-gradient(circle, rgba(143, 90, 247, 0.15), rgba(255, 255, 255, 0.8) 62%);
}

.brand-mark-large {
  position: relative;
  width: min(88%, 440px);
  aspect-ratio: 1;
  overflow: hidden;
}

.brand-mark-large img {
  position: absolute;
  width: 112%;
  max-width: none;
  top: -7%;
  left: -6%;
}

.support-card--primary {
  background: radial-gradient(circle at 80% 10%, rgba(143, 90, 247, 0.17), transparent 24rem), rgba(255, 255, 255, 0.82);
}

.site-footer {
  border-color: var(--line);
  background:
    radial-gradient(circle at 15% 12%, rgba(143, 90, 247, 0.14), transparent 28rem),
    #f5effc;
  color: var(--ink);
}

.site-footer .button--light {
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
}

.site-footer .button--light:hover {
  border-color: var(--violet-deep);
  background: var(--violet-deep);
}

@media (max-width: 1080px) {
  .site-nav {
    border-color: var(--line);
    background: rgba(255, 254, 253, 0.98);
    box-shadow: var(--shadow);
  }
}

@media (max-width: 760px) {
  .brand-lockup {
    width: 176px;
    height: 44px;
    flex-basis: 176px;
  }

  .brand-lockup img {
    width: 200px;
    left: -14px;
    top: -46px;
  }

  .home-hero__index::after {
    right: 12px;
    width: 170px;
  }

  .promise + .promise {
    border-left-color: rgba(108, 43, 217, 0.15);
  }
}
