:root {
  --ink: #f7f4ff;
  --ink-strong: #ffffff;
  --paper: #080414;
  --paper-warm: #12081f;
  --white: #181026;
  --muted: #c9c0d8;
  --line: rgba(255, 255, 255, 0.16);
  --green: #19d8ff;
  --green-deep: #80e8ff;
  --teal: #7b5cff;
  --coral: #ff7a2f;
  --gold: #ffd34d;
  --void: #060311;
  --panel: #171026;
  --panel-strong: #211138;
  --ashline-cyan: #1ddcff;
  --ashline-orange: #ff7a2f;
  --ashline-purple: #3a145c;
  --shadow-day: #ffd34d;
  --shadow-night: #1d2f72;
  --shadow-violet: #6d4cff;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(29, 220, 255, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(255, 122, 47, 0.09), transparent 36%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: 4.6rem;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink-strong);
  background: var(--gold);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  color: var(--white);
  background: rgba(6, 3, 17, 0.42);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.compact,
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(8, 4, 20, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background: #120824 url("vynadex-logo.png") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 8, 36, 0.28);
  text-indent: -9999px;
}

.brand-name {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: currentColor;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--void);
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--void);
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 3, 17, 0.92) 0%, rgba(14, 7, 36, 0.76) 44%, rgba(6, 3, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(255, 122, 47, 0.18) 0%, rgba(29, 220, 255, 0.06) 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.hero-content h1 {
  max-width: 760px;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  margin-bottom: 2rem;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--void);
  background: linear-gradient(90deg, var(--green), var(--coral));
  box-shadow: 0 16px 40px rgba(29, 220, 255, 0.24), 0 8px 28px rgba(255, 122, 47, 0.18);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary.light {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-scroll {
  position: absolute;
  right: max(1rem, calc((100% - var(--max)) / 2));
  bottom: 1rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 800;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 2rem, var(--max));
  margin: -2.2rem auto 0;
  position: relative;
  z-index: 5;
  background: rgba(24, 16, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal {
  min-height: 8.5rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.signal:last-child {
  border-right: 0;
}

.signal strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-strong);
  font-size: 1.1rem;
}

.signal span {
  display: block;
  color: var(--muted);
}

.section {
  padding: 6rem 0;
}

.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

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

.section-paper {
  background:
    linear-gradient(135deg, rgba(29, 220, 255, 0.08), rgba(255, 122, 47, 0.06)),
    var(--paper-warm);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 220, 255, 0.16), rgba(255, 122, 47, 0.14)),
    var(--void);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.split h2,
.split h1 {
  margin-bottom: 0;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.lede p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-note {
  margin: 1.5rem 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 18rem;
  padding: 1.35rem;
  background: rgba(24, 16, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(16, 32, 29, 0.08);
}

.feature-card:nth-child(2n) {
  border-top: 4px solid var(--teal);
}

.feature-card:nth-child(2n + 1) {
  border-top: 4px solid var(--coral);
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-index {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--green-deep);
  font-weight: 900;
}

.wide-statement {
  max-width: 900px;
  margin-bottom: 3rem;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-row div {
  min-height: 13rem;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.process-row div:last-child {
  border-right: 0;
}

.process-row span {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
}

.process-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  color: var(--ink-strong);
  font-weight: 900;
  border-bottom: 2px solid var(--green);
}

.text-link:hover {
  color: var(--green-deep);
}

.cta-band {
  padding: 4rem 0;
  color: var(--void);
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-band .button-primary {
  background: var(--ink-strong);
  color: var(--white);
  box-shadow: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--void);
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  min-height: 11rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
  padding: 2rem 0;
}

.footer-brand {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: flex-end;
}

.footer-links a {
  font-weight: 800;
}

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

.footer-inner p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.page-main {
  padding-top: var(--header-h);
}

.page-hero {
  padding: 5rem 0 4rem;
  background:
    linear-gradient(115deg, rgba(29, 220, 255, 0.14), rgba(255, 122, 47, 0.1)),
    var(--paper);
}

.page-hero h1 {
  font-size: 3.6rem;
}

.page-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.1rem;
}

.system-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(24, 16, 38, 0.78);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-node {
  position: absolute;
  width: 9.5rem;
  height: 6.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(16, 32, 29, 0.1);
}

.system-node::before,
.system-node::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 0.55rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.system-node::before {
  top: 1.5rem;
}

.system-node::after {
  top: 2.6rem;
  right: 3rem;
}

.node-app {
  top: 2.8rem;
  left: 2.2rem;
}

.node-web {
  top: 4.8rem;
  right: 2.1rem;
  border-top-color: var(--teal);
}

.node-api {
  bottom: 3rem;
  left: 5rem;
  border-top-color: var(--coral);
}

.node-data {
  bottom: 4.5rem;
  right: 5rem;
  border-top-color: var(--gold);
}

.system-line {
  position: absolute;
  height: 3px;
  transform-origin: left center;
  background: var(--ink);
  opacity: 0.28;
}

.line-one {
  width: 14rem;
  top: 9rem;
  left: 10.5rem;
  transform: rotate(9deg);
}

.line-two {
  width: 15rem;
  top: 14.6rem;
  left: 8.8rem;
  transform: rotate(47deg);
}

.line-three {
  width: 15rem;
  bottom: 9.7rem;
  left: 14rem;
  transform: rotate(-9deg);
}

.apps-hero {
  background:
    linear-gradient(115deg, rgba(29, 220, 255, 0.15), rgba(255, 122, 47, 0.12)),
    var(--paper);
}

.apps-orbit {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(29, 220, 255, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(24, 16, 38, 0.78);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit-card {
  position: absolute;
  width: 8.5rem;
  height: 8.5rem;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(16, 32, 29, 0.18);
}

.orbit-ash {
  top: 3.6rem;
  left: 4rem;
  background: var(--green);
}

.orbit-shadow {
  right: 4rem;
  bottom: 3.8rem;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--gold) 0 50%, var(--ink-strong) 50% 100%);
}

.orbit-line {
  position: absolute;
  height: 3px;
  background: rgba(16, 32, 29, 0.24);
  transform-origin: left center;
}

.orbit-one {
  width: 18rem;
  top: 10.8rem;
  left: 12rem;
  transform: rotate(22deg);
}

.orbit-two {
  width: 14rem;
  right: 9rem;
  bottom: 10rem;
  transform: rotate(-38deg);
}

.orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--coral);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1rem rgba(255, 107, 74, 0.12);
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.app-showcase-grid.compact .app-card {
  min-height: 0;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  min-height: 28rem;
  overflow: hidden;
  background: rgba(24, 16, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(16, 32, 29, 0.1);
}

.app-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

.app-card-body h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

.app-card-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.app-visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}

.ashline-visual {
  background:
    linear-gradient(90deg, rgba(29, 220, 255, 0.24), rgba(255, 122, 47, 0.22)),
    linear-gradient(135deg, #100620, var(--ashline-purple));
}

.shadow-visual {
  background:
    linear-gradient(90deg, rgba(255, 211, 77, 0.92) 0 50%, rgba(29, 47, 114, 0.94) 50% 100%);
}

.app-icon-card {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: min(58%, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24%;
  transform: translate(-50%, -50%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.visual-signal {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 3px;
  opacity: 0.78;
  filter: blur(0.2px);
}

.visual-signal.cyan,
.visual-signal.gold {
  top: 34%;
}

.visual-signal.orange,
.visual-signal.violet {
  bottom: 34%;
}

.visual-signal.cyan {
  background: var(--ashline-cyan);
  box-shadow: 0 0 28px var(--ashline-cyan);
}

.visual-signal.orange {
  background: var(--ashline-orange);
  box-shadow: 0 0 28px var(--ashline-orange);
}

.visual-signal.gold {
  background: var(--shadow-day);
  box-shadow: 0 0 28px var(--shadow-day);
}

.visual-signal.violet {
  background: var(--shadow-violet);
  box-shadow: 0 0 28px var(--shadow-violet);
}

.phone-mock {
  position: absolute;
  inset: 2.2rem auto auto 50%;
  width: min(78%, 220px);
  aspect-ratio: 9 / 16;
  padding: 1.2rem 0.9rem;
  border: 8px solid rgba(7, 17, 15, 0.9);
  border-radius: 30px;
  background: var(--paper);
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 0 28px 52px rgba(7, 17, 15, 0.28);
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 4rem;
  height: 0.42rem;
  border-radius: 99px;
  background: rgba(7, 17, 15, 0.72);
  transform: translateX(-50%);
}

.feed-card {
  height: 52%;
  margin-top: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 107, 74, 0.9), rgba(243, 179, 49, 0.92)),
    var(--coral);
  box-shadow: inset 0 -42px 0 rgba(7, 17, 15, 0.18);
}

.feed-card.small {
  width: 68%;
  height: 18%;
  margin: 0.8rem 0 0 auto;
  background:
    linear-gradient(135deg, rgba(19, 213, 121, 0.92), rgba(10, 168, 166, 0.86)),
    var(--green);
}

.vote-chip {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 0.45rem 0.7rem;
  color: var(--ink-strong);
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(7, 17, 15, 0.22);
}

.shadow-stage {
  position: absolute;
  inset: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: var(--ink-strong);
  box-shadow: 0 24px 50px rgba(7, 17, 15, 0.28);
}

.sky-half {
  position: absolute;
  inset: 0;
}

.sky-half.day {
  right: 50%;
  background:
    radial-gradient(circle at 34% 24%, #fff8ce 0 9%, transparent 10%),
    linear-gradient(180deg, #f4c658 0%, #f19d4b 54%, #4f6b50 100%);
}

.sky-half.night {
  left: 50%;
  background:
    radial-gradient(circle at 68% 20%, #f7f8f3 0 7%, transparent 8%),
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.8) 0 1.4%, transparent 1.6%),
    linear-gradient(180deg, #122620 0%, #07110f 70%, #10201d 100%);
}

.path-block {
  position: absolute;
  height: 1.1rem;
  border-radius: 5px;
  background: var(--green);
  box-shadow: 0 12px 0 rgba(7, 17, 15, 0.16);
}

.block-one {
  left: 9%;
  bottom: 18%;
  width: 34%;
}

.block-two {
  left: 38%;
  bottom: 39%;
  width: 28%;
  background: var(--gold);
}

.block-three {
  right: 8%;
  bottom: 62%;
  width: 32%;
  background: var(--teal);
}

.block-four {
  left: 12%;
  bottom: 74%;
  width: 24%;
  background: var(--coral);
}

.runner {
  position: absolute;
  left: 45%;
  bottom: 47%;
  width: 1.35rem;
  height: 2.6rem;
  background: var(--white);
  border-radius: 99px 99px 8px 8px;
  box-shadow: 0 0 0 0.45rem rgba(19, 213, 121, 0.16);
}

.runner::before {
  content: "";
  position: absolute;
  top: -0.72rem;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-live {
  color: var(--void);
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.badge-soon {
  color: var(--ink-strong);
  background: rgba(243, 179, 49, 0.24);
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.app-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.58rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 800;
}

.launch-meta {
  margin-top: 1.35rem;
}

.app-detail-hero {
  padding-bottom: 5rem;
}

.app-detail-panel,
.shadow-preview {
  min-height: 380px;
  padding: 1.5rem;
  background: rgba(24, 16, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-detail-panel {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.app-icon-large {
  display: grid;
  width: 9rem;
  height: 9rem;
  place-items: center;
  border-radius: 24px;
  font-size: 2.2rem;
  font-weight: 950;
  color: var(--ink-strong);
  box-shadow: 0 22px 42px rgba(16, 32, 29, 0.18);
}

.ashline-icon-large {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, var(--ashline-cyan), var(--ashline-orange));
}

.app-icon-image {
  display: block;
  object-fit: cover;
}

.app-icon-inline {
  width: 5.5rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24%;
  margin-bottom: 1.1rem;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}

.app-icon-inline.compact {
  width: 4rem;
  margin-bottom: 0;
}

.app-detail-panel h2 {
  font-size: 2rem;
}

.app-detail-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.app-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.shadow-preview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 211, 77, 0.24), rgba(29, 47, 114, 0.22)),
    rgba(24, 16, 38, 0.92);
}

.detail-stage {
  inset: 1.5rem;
}

.shadow-video-panel {
  width: min(100%, 340px);
  height: min(72svh, 640px);
  min-height: 420px;
  justify-self: center;
  padding: 0.8rem;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.22), rgba(109, 76, 255, 0.2)),
    var(--void);
  border: 1px solid rgba(16, 32, 29, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shadow-gameplay-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background: var(--void);
}

.shadow-score-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 211, 77, 0.92) 0 48%, rgba(29, 47, 114, 0.96) 48% 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shadow-score-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shadow-score-card strong {
  font-size: 4rem;
  line-height: 1;
}

.release-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.release-list li {
  padding-left: 1rem;
  color: var(--muted);
  border-left: 4px solid var(--green);
}

.app-theme-ashline .page-hero {
  background:
    linear-gradient(115deg, rgba(29, 220, 255, 0.18), rgba(255, 122, 47, 0.16)),
    var(--paper);
}

.app-theme-ashline .button-primary {
  background: linear-gradient(90deg, var(--ashline-cyan), var(--ashline-orange));
}

.app-theme-ashline .feature-card:nth-child(2n),
.app-theme-ashline .release-list li {
  border-top-color: var(--ashline-cyan);
  border-left-color: var(--ashline-cyan);
}

.app-theme-ashline .feature-card:nth-child(2n + 1) {
  border-top-color: var(--ashline-orange);
}

.ashline-band {
  background:
    linear-gradient(100deg, rgba(29, 220, 255, 0.18), rgba(255, 122, 47, 0.16)),
    var(--void);
}

.app-theme-shadow .page-hero {
  background:
    linear-gradient(115deg, rgba(255, 211, 77, 0.18), rgba(109, 76, 255, 0.16)),
    var(--paper);
}

.app-theme-shadow .button-primary {
  background: linear-gradient(90deg, var(--shadow-day), var(--coral));
}

.app-theme-shadow .feature-card:nth-child(2n),
.app-theme-shadow .release-list li {
  border-top-color: var(--shadow-day);
  border-left-color: var(--shadow-day);
}

.app-theme-shadow .feature-card:nth-child(2n + 1) {
  border-top-color: var(--shadow-violet);
}

.section-dark .lede {
  color: rgba(255, 255, 255, 0.76);
}

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

.service-list {
  display: grid;
  gap: 1rem;
}

.service-item {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: rgba(24, 16, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.service-item h2 {
  font-size: 2rem;
}

.service-item p {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 0;
}

.service-kicker {
  color: var(--green-deep);
  font-weight: 900;
  font-size: 1.2rem;
}

.contact-panel,
.contact-aside,
.legal-card {
  padding: 1.5rem;
  background: rgba(24, 16, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(16, 32, 29, 0.08);
}

.contact-panel h2 {
  font-size: 1.6rem;
}

.contact-panel p:last-child,
.contact-aside p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink-strong);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  margin-bottom: 0;
}

.legal-main {
  padding-top: var(--header-h);
  background: var(--paper);
}

.legal-hero {
  padding: 4rem 0 2.5rem;
  background: var(--paper);
}

.legal-hero h1 {
  font-size: 3.4rem;
  max-width: 840px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(24, 16, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.legal-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--void);
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.legal-card {
  margin-bottom: 1rem;
}

.legal-card h2 {
  font-size: 1.7rem;
}

.legal-card h3 {
  font-size: 1.15rem;
  margin-top: 1.4rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--green-deep);
  font-weight: 800;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
}

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

.check-table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.check-table th,
.check-table td {
  padding: 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.check-table th {
  color: var(--void);
  background: linear-gradient(90deg, rgba(29, 220, 255, 0.9), rgba(255, 122, 47, 0.86));
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 1rem;
  width: min(100% - 2rem, 680px);
  margin: 0 auto;
  text-align: center;
}

.error-page .brand {
  justify-content: center;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .split,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-grid,
  .feature-grid.three,
  .app-detail-grid,
  .process-row,
  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-showcase-grid {
    grid-template-columns: 1fr;
  }

  .signal:nth-child(2) {
    border-right: 0;
  }

  .signal:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .process-row div:nth-child(2) {
    border-right: 0;
  }

  .process-row div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .nav-shell,
  .hero-content,
  .section-inner,
  .footer-inner,
  .signal-strip {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  h1,
  .page-hero h1,
  .legal-hero h1 {
    font-size: 2.35rem;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    background: rgba(6, 3, 17, 0.92);
  }

  .site-header.compact,
  .site-header.is-scrolled {
    background: rgba(8, 4, 20, 0.96);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid rgba(16, 32, 29, 0.12);
    box-shadow: 0 18px 34px rgba(16, 32, 29, 0.14);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    color: var(--ink);
    min-height: 3.2rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: calc(var(--header-h) + 2rem) 0 4.2rem;
  }

  .hero-content h1 {
    max-width: 10ch;
  }

  .hero .eyebrow {
    max-width: 31ch;
  }

  .hero-copy,
  .page-copy {
    font-size: 1rem;
    max-width: 31ch;
    overflow-wrap: break-word;
  }

  .hero-scroll {
    left: 1rem;
    right: auto;
  }

  .signal-strip,
  .feature-grid,
  .feature-grid.three,
  .app-detail-grid,
  .process-row,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .app-visual {
    min-height: 18rem;
  }

  .apps-orbit,
  .app-detail-panel,
  .shadow-preview {
    min-height: 300px;
  }

  .shadow-video-panel {
    width: min(100%, 320px);
    height: min(70svh, 560px);
    min-height: 380px;
  }

  .app-detail-panel {
    grid-template-columns: 1fr;
  }

  .app-icon-large {
    width: 7rem;
    height: 7rem;
    border-radius: 18px;
    font-size: 1.7rem;
  }

  .orbit-card {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 18px;
    font-size: 1.5rem;
  }

  .orbit-ash {
    left: 2rem;
  }

  .orbit-shadow {
    right: 2rem;
  }

  .orbit-one,
  .orbit-two {
    width: 10rem;
  }

  .signal,
  .signal:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .process-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-row div:last-child {
    border-bottom: 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.3rem;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .system-visual {
    min-height: 310px;
  }

  .system-node {
    width: 8rem;
  }

  .node-data {
    right: 2.2rem;
  }

  .line-one,
  .line-two,
  .line-three {
    width: 9rem;
  }
}

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