:root {
  color-scheme: dark;
  --void: #050505;
  --surface: #131313;
  --surface-low: #0e0e0e;
  --surface-high: #201f1f;
  --text: #f5f5f7;
  --text-soft: #e5e2e1;
  --muted: #bbc9cf;
  --muted-2: #859399;
  --stroke: rgba(245, 245, 247, 0.12);
  --stroke-strong: rgba(245, 245, 247, 0.22);
  --glass: rgba(255, 255, 255, 0.048);
  --glass-strong: rgba(255, 255, 255, 0.075);
  --cyan: #00d1ff;
  --cyan-soft: #a4e6ff;
  --purple: #ad00ff;
  --amber: #ffd59c;
  --green: #9dffc2;
  --max: 1280px;
  --page: 24px;
  --radius: 8px;
  --panel-radius: 24px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  --page-accent: var(--cyan);
  --page-accent-2: var(--purple);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(ellipse at 8% 16%, rgba(0, 209, 255, 0.18), transparent 44%),
    radial-gradient(ellipse at 84% 24%, rgba(173, 0, 255, 0.15), transparent 42%),
    radial-gradient(ellipse at 42% 94%, rgba(255, 213, 156, 0.08), transparent 46%),
    var(--void);
  background-size: 72px 72px, 72px 72px, auto, auto, auto, auto;
  color: var(--text-soft);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(0, 209, 255, 0.07) 38%, transparent 50%),
    linear-gradient(250deg, transparent 0%, rgba(173, 0, 255, 0.06) 52%, transparent 70%);
  opacity: 0.85;
  animation: atmosphereShift 18s ease-in-out infinite alternate;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--stroke-strong);
  border-radius: var(--radius);
  background: var(--text);
  color: var(--void);
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2 + var(--page)));
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.058);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-family:
    Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  filter:
    drop-shadow(0 0 14px rgba(0, 209, 255, 0.32))
    drop-shadow(0 0 18px rgba(173, 0, 255, 0.16));
}

.brand span,
.footer-brand span {
  white-space: nowrap;
}

.nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a,
.footer nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.footer nav a:hover,
.footer nav a:focus-visible {
  color: var(--cyan);
}

.hero,
.section,
.detail-hero {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 64px;
  align-items: center;
  min-height: 760px;
  padding: 128px 0 42px;
}

.hero-copy,
.detail-copy {
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 24px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 42%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--page-accent) 12%, transparent);
  color: var(--page-accent);
  padding: 5px 11px;
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.detail-hero h1,
.section h2 {
  margin: 0;
  color: var(--text);
  font-family:
    Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 770px;
  font-size: 72px;
  line-height: 1;
  overflow-wrap: break-word;
}

.hero h1 span,
.detail-hero h1,
.section-head h2 span {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.detail-text,
.section-head p,
.direction-copy p,
.studio-card p,
.contact-card p,
.note-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-text,
.detail-text {
  max-width: 660px;
  margin: 26px 0 0;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-2) 100%);
  color: var(--text);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--page-accent) 24%, transparent),
    0 18px 46px color-mix(in srgb, var(--page-accent) 28%, transparent);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(18deg) translateX(-140%);
  animation: buttonSheen 5.2s ease-in-out infinite;
}

.button-primary span,
.button-primary svg {
  position: relative;
  z-index: 1;
}

.button-secondary {
  border-color: var(--stroke-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: color-mix(in srgb, var(--page-accent) 55%, var(--stroke));
  color: var(--page-accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--page-accent) 18%, transparent);
}

.glass-card,
.glass-panel,
.system-window,
.bio-console,
.phone-showcase,
.game-console {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 0%),
      rgba(255, 255, 255, 0.11),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-system {
  min-width: 0;
}

.system-window {
  overflow: hidden;
  transform: rotate(1.5deg);
  animation: floatPanel 8s ease-in-out 1s infinite alternate;
}

.system-bar,
.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--stroke);
  padding: 16px 18px;
  color: var(--muted);
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.system-stage {
  position: relative;
  min-height: 454px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.65), rgba(5, 5, 5, 0.12)),
    radial-gradient(ellipse at 58% 48%, rgba(0, 209, 255, 0.18), transparent 42%);
}

.system-stage img {
  width: 100%;
  height: 454px;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.2) contrast(1.08);
}

.system-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(0, 209, 255, 0.18) 44%, transparent 54%);
  opacity: 0;
  transform: translateX(-100%);
  animation: panelScan 6.8s ease-in-out infinite;
}

.product-node {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 156px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.66);
  padding: 13px 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-node span {
  color: var(--page-accent);
  font-size: 13px;
  font-weight: 800;
}

.product-node strong {
  color: var(--text);
  font-size: 16px;
}

.node-zenvora {
  right: 38px;
  top: 44px;
}

.node-goya {
  left: 34px;
  bottom: 46px;
}

.node-uniya {
  right: 92px;
  bottom: 74px;
}

.hero-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-rail span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border-right: 1px solid var(--stroke);
  padding: 0 18px;
  overflow: hidden;
}

.hero-rail span:last-child {
  border-right: 0;
}

.hero-rail span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.18), transparent);
  transform: translateX(-110%);
  animation: railSweep 6s ease-in-out infinite;
}

.hero-rail span:nth-child(2)::before {
  animation-delay: 900ms;
}

.hero-rail span:nth-child(3)::before {
  animation-delay: 1.8s;
}

.section {
  padding: 112px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section h2 {
  font-size: 48px;
  line-height: 1.08;
}

.section-head p {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% 16%;
  height: 190px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--card-accent, var(--cyan)) 24%, transparent), transparent 70%);
  opacity: 0.75;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  border-color: color-mix(in srgb, var(--card-accent, var(--cyan)) 48%, var(--stroke));
  box-shadow:
    var(--shadow),
    0 0 32px color-mix(in srgb, var(--card-accent, var(--cyan)) 18%, transparent);
  transform: translateY(-4px);
}

.product-goya {
  --card-accent: var(--cyan);
}

.product-uniya {
  --card-accent: var(--purple);
}

.product-zenvora {
  --card-accent: var(--amber);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-accent) 13%, transparent);
  color: var(--card-accent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--card-accent) 18%, transparent);
}

.product-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.status {
  margin: 0 0 12px;
  color: var(--card-accent, var(--cyan));
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3,
.feature-grid h3,
.principle-grid h3 {
  margin: 0;
  color: var(--text);
  font-family:
    Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 27px;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.product-card p:not(.status),
.feature-grid p,
.principle-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.card-actions {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--card-accent, var(--page-accent));
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 42%, 68% 42%, 68% 0, 100% 50%, 68% 100%, 68% 58%, 0 58%);
}

.text-link.muted {
  color: var(--muted);
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.direction-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--stroke);
}

.direction-copy h2,
.studio-card h2,
.contact-card h2 {
  margin: 0;
  color: var(--text);
  font-family:
    Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 47px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.direction-copy p,
.studio-card p {
  margin: 24px 0 0;
}

.direction-panel {
  padding: 32px;
  overflow: hidden;
}

.direction-panel dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
}

.direction-panel div {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--stroke);
  padding: 24px 0;
}

.direction-panel div:first-child {
  padding-top: 0;
}

.direction-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.direction-panel dt {
  color: var(--text);
  font-weight: 800;
}

.direction-panel dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.signal-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.signal-lines span {
  position: absolute;
  left: -18%;
  right: -18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.58), transparent);
  transform: rotate(-12deg);
  animation: signalLine 6s ease-in-out infinite;
}

.signal-lines span:nth-child(1) {
  top: 26%;
}

.signal-lines span:nth-child(2) {
  top: 50%;
  animation-delay: 1.1s;
}

.signal-lines span:nth-child(3) {
  top: 74%;
  animation-delay: 2.2s;
}

.studio-section {
  border-top: 1px solid var(--stroke);
}

.studio-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 56px;
  padding: 38px;
}

.principle-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--stroke-strong);
  border-bottom: 1px solid var(--stroke);
}

.principle-grid article,
.feature-grid article {
  min-height: 246px;
  border-right: 1px solid var(--stroke);
  padding: 28px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.principle-grid article:last-child,
.feature-grid article:last-child {
  border-right: 0;
}

.principle-grid article:hover,
.feature-grid article:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.principle-grid span,
.feature-grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--page-accent);
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.contact-section {
  padding-top: 64px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.contact-company {
  margin-top: 12px;
  font-size: 15px;
}

address {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.58;
}

address span {
  display: block;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--stroke);
  padding: 30px 0 38px;
  color: var(--muted-2);
  font-size: 14px;
}

.footer p {
  justify-self: end;
  margin: 0;
}

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

.product-page {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(ellipse at 10% 16%, color-mix(in srgb, var(--page-accent) 18%, transparent), transparent 42%),
    radial-gradient(ellipse at 82% 30%, color-mix(in srgb, var(--page-accent-2) 18%, transparent), transparent 45%),
    var(--void);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.zenvora-page {
  --page-accent: var(--amber);
  --page-accent-2: var(--cyan);
}

.goya-page {
  --page-accent: var(--cyan);
  --page-accent-2: var(--purple);
}

.uniya-page {
  --page-accent: var(--purple);
  --page-accent-2: var(--cyan);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 58px;
  align-items: center;
  min-height: 740px;
  padding: 128px 0 78px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--page-accent);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
}

.detail-hero h1 {
  font-size: 68px;
  line-height: 1.02;
}

.bio-console,
.phone-showcase,
.game-console {
  min-width: 0;
  overflow: hidden;
  transform: rotate(1.4deg);
  animation: floatPanel 8s ease-in-out 1s infinite alternate;
}

.bio-console svg {
  width: 100%;
  aspect-ratio: 12 / 7;
}

.console-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.console-wave {
  fill: none;
  stroke: url("#zenvoraSignal");
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 9;
  stroke-dasharray: 118 38;
  filter: drop-shadow(0 0 17px color-mix(in srgb, var(--page-accent) 55%, transparent));
  animation: signalTrace 2.25s linear infinite;
}

.console-ring {
  fill: none;
  stroke: var(--page-accent);
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  animation: ringPulse 2.6s ease-out infinite;
}

.console-ring.soft {
  opacity: 0.25;
  animation-delay: 680ms;
}

.heart-mark {
  fill: color-mix(in srgb, var(--page-accent) 16%, transparent);
  stroke: var(--page-accent);
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--page-accent) 42%, transparent));
  transform-box: fill-box;
  transform-origin: center;
  animation: heartBeat 1.7s ease-in-out infinite;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}

.metric-strip div {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  padding: 14px;
}

.metric-strip span,
.game-card small {
  display: block;
  color: var(--muted-2);
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family:
    Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.phone-showcase {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 44px;
}

.phone-shell {
  position: relative;
  width: min(100%, 330px);
  border: 8px solid #2a2a2a;
  border-radius: 44px;
  background: #050505;
  padding: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.52);
}

.phone-top {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 78px;
  height: 7px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  gap: 18px;
  min-height: 450px;
  border-radius: 32px;
  background:
    linear-gradient(155deg, rgba(0, 209, 255, 0.16), transparent 42%),
    linear-gradient(325deg, rgba(173, 0, 255, 0.2), transparent 48%),
    #080808;
  padding: 34px 18px 22px;
  overflow: hidden;
}

.voice-room {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.voice-room span {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.35);
}

.voice-room strong,
.voice-room small {
  display: block;
}

.voice-room strong {
  color: var(--text);
  font-size: 15px;
}

.voice-room small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.primary-room {
  min-height: 120px;
}

.wave-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
}

.wave-stack span {
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  animation: voiceBars 1.35s ease-in-out infinite alternate;
}

.wave-stack span:nth-child(1),
.wave-stack span:nth-child(7) {
  height: 36px;
}

.wave-stack span:nth-child(2),
.wave-stack span:nth-child(6) {
  height: 58px;
  animation-delay: 110ms;
}

.wave-stack span:nth-child(3),
.wave-stack span:nth-child(5) {
  height: 82px;
  animation-delay: 220ms;
}

.wave-stack span:nth-child(4) {
  height: 104px;
  animation-delay: 330ms;
}

.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.game-console {
  min-height: 470px;
  padding-bottom: 28px;
}

.game-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 28px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.game-card strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family:
    Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 30px;
}

.avatar-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, var(--text), transparent 12%),
    linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 28px color-mix(in srgb, var(--page-accent) 42%, transparent);
}

.skill-bars {
  display: grid;
  gap: 18px;
  margin: 0 28px 36px;
}

.skill-bars span {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.skill-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 18px color-mix(in srgb, var(--page-accent) 38%, transparent);
  animation: barPulse 2.8s ease-in-out infinite alternate;
}

.quest-map {
  position: relative;
  height: 150px;
  margin: 0 28px;
  border-top: 1px solid var(--stroke);
  overflow: hidden;
}

.quest-map::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--amber));
  opacity: 0.68;
}

.quest-map span {
  position: absolute;
  top: 64px;
  width: 28px;
  height: 28px;
  border: 3px solid var(--page-accent);
  border-radius: 50%;
  background: var(--void);
  box-shadow: 0 0 20px color-mix(in srgb, var(--page-accent) 34%, transparent);
  animation: nodePulse 2.4s ease-in-out infinite;
}

.quest-map span:nth-child(1) {
  left: 12%;
}

.quest-map span:nth-child(2) {
  left: 38%;
  animation-delay: 180ms;
}

.quest-map span:nth-child(3) {
  left: 64%;
  animation-delay: 360ms;
}

.quest-map span:nth-child(4) {
  right: 12%;
  animation-delay: 540ms;
}

.detail-section {
  border-top: 1px solid var(--stroke);
}

.note-band {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.note-band h2 {
  font-size: 38px;
}

.note-band p {
  margin: 0;
}

.note-band .button {
  justify-self: start;
  align-self: end;
  margin-top: 24px;
}

.motion-ready [data-reveal],
.motion-ready .footer {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready [data-reveal].is-visible,
.motion-ready .footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .product-card:nth-child(2),
.motion-ready .principle-grid article:nth-child(2),
.motion-ready .feature-grid article:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .product-card:nth-child(3),
.motion-ready .principle-grid article:nth-child(3),
.motion-ready .feature-grid article:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes atmosphereShift {
  from {
    transform: translate3d(-1.2%, -1%, 0) scale(1.01);
  }
  to {
    transform: translate3d(1.2%, 1%, 0) scale(1.025);
  }
}

@keyframes buttonSheen {
  0%,
  44% {
    transform: rotate(18deg) translateX(-140%);
  }
  64%,
  100% {
    transform: rotate(18deg) translateX(420%);
  }
}

@keyframes floatPanel {
  from {
    transform: rotate(1.5deg) translateY(0);
  }
  to {
    transform: rotate(1.5deg) translateY(-9px);
  }
}

@keyframes panelScan {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-110%);
  }
  70% {
    opacity: 0.85;
  }
  88%,
  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes railSweep {
  0%,
  46% {
    transform: translateX(-110%);
  }
  70%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes signalLine {
  0%,
  42% {
    transform: translateX(-24%) rotate(-12deg);
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  78%,
  100% {
    transform: translateX(24%) rotate(-12deg);
    opacity: 0;
  }
}

@keyframes signalTrace {
  to {
    stroke-dashoffset: -156;
  }
}

@keyframes ringPulse {
  0% {
    opacity: 0.86;
    transform: scale(0.92);
  }
  72% {
    opacity: 0.18;
    transform: scale(1.16);
  }
  100% {
    opacity: 0.86;
    transform: scale(0.92);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  44% {
    transform: scale(1.06);
  }
  58% {
    transform: scale(0.98);
  }
}

@keyframes voiceBars {
  from {
    transform: scaleY(0.62);
    opacity: 0.66;
  }
  to {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes barPulse {
  from {
    filter: saturate(0.9);
  }
  to {
    filter: saturate(1.35);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.16);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .nav {
    gap: 15px;
  }

  .hero,
  .detail-hero,
  .direction-section,
  .studio-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 118px;
  }

  .detail-hero {
    gap: 42px;
    padding-top: 118px;
  }

  .hero h1,
  .detail-hero h1 {
    font-size: 52px;
  }

  .section h2,
  .direction-copy h2,
  .studio-card h2,
  .contact-card h2 {
    font-size: 38px;
  }

  .section-head,
  .contact-card,
  .note-band {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .feature-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .principle-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }

  .feature-grid article:last-child,
  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .contact-card .button {
    justify-self: start;
  }

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

  .footer p {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --page: 16px;
  }

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

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav {
    display: none;
  }

  .hero,
  .section,
  .detail-hero,
  .footer {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero,
  .detail-hero {
    display: block;
  }

  .hero,
  .detail-hero {
    padding-top: 104px;
  }

  .hero-system,
  .bio-console,
  .phone-showcase,
  .game-console {
    margin-top: 38px;
  }

  .hero-copy,
  .detail-copy,
  .hero h1,
  .detail-hero h1,
  .hero-text,
  .detail-text {
    max-width: 320px;
  }

  .hero-copy,
  .detail-copy,
  .system-window,
  .bio-console,
  .phone-showcase,
  .game-console,
  .button {
    width: calc(100vw - 48px);
    max-width: 320px;
  }

  .hero h1,
  .detail-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-text,
  .detail-text,
  .section-head p,
  .direction-copy p,
  .studio-card p,
  .contact-card p,
  .note-band p {
    font-size: 16px;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .system-stage,
  .system-stage img {
    height: 360px;
  }

  .system-window,
  .bio-console,
  .phone-showcase,
  .game-console {
    animation: none;
    transform: none;
  }

  .product-node {
    min-width: 128px;
    padding: 10px 11px;
  }

  .node-zenvora {
    right: 16px;
    top: 24px;
  }

  .node-goya {
    left: 16px;
    bottom: 38px;
  }

  .node-uniya {
    right: 28px;
    bottom: 118px;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail span {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }

  .hero-rail span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-head .eyebrow {
    margin-bottom: 0;
  }

  .product-card,
  .studio-card,
  .contact-card,
  .direction-panel {
    padding: 24px;
  }

  .direction-panel div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .phone-showcase {
    min-height: 500px;
    padding: 28px;
  }

  .game-card {
    margin: 20px;
  }

  .skill-bars,
  .quest-map {
    margin-left: 20px;
    margin-right: 20px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

}

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