@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --paper: #090b10;
  color-scheme: dark;
  --white: #10131b;
  --ink: #f0f2f8;
  --muted: #abb1c2;
  --line: #2b3040;
  --violet: #b8a4ef;
  --night: #101115;
  --ice: #cbd4f2;
  --sans: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  overflow-x: clip; /* Full-bleed viewport widths include classic scrollbars; clip their extra width without trapping vertical scrolling. */
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
select {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #9879ff;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  line-height: 1.65;
}
button {
  color: inherit;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}
.text-link span {
  transition: transform 0.25s;
}
.text-link:hover span {
  transform: translate(3px, -2px);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -70px;
  left: 20px;
  padding: 14px 20px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus {
  top: 15px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 100px;
  padding: 15px 23px;
  background: #b8a4ef;
  color: #16111f;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.25s,
    background 0.25s;
}
.pill:hover {
  background: #cbbbfa;
  transform: translateY(-2px);
}
.site-nav {
  height: 76px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.65px;
}
.brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 650;
}
.site-nav .nav-source {
  border: 1px solid #404656;
  border-radius: 30px;
  padding: 10px 16px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse at 50% 64%,
    #1b2332 0%,
    #10141e 34%,
    #090b10 70%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.hero-content .eyebrow {
  color: #b1b7c9;
  font-size: 11px;
  letter-spacing: 0.23em;
}
.hero h1 {
  font-size: clamp(62px, 6.4vw, 103px);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: -0.07em;
  margin: 27px auto 20px;
  max-width: 1000px;
}
.hero h1 span {
  color: var(--violet);
}
.hero-description {
  font-size: clamp(14px, 1.2vw, 18px);
  max-width: 450px;
  margin: auto;
  line-height: 1.6;
}
.hero-products {
  justify-content: center;
}
.hero-product {
  position: relative;
  width: 360px;
  flex: none;
}
.hero-product img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 27px #34314424);
  will-change: transform;
}
.hero-product.left {
  width: 420px;
  transform: rotate(-12deg);
}
.hero-product.right {
  width: 320px;
  transform: rotate(12deg);
}
.product-caption {
  position: absolute;
  top: 49%;
  font-size: 11px;
  color: #b1b7c9;
  line-height: 1.7;
  white-space: nowrap;
}
.product-caption strong {
  display: block;
  font-weight: 700;
  color: #b1b7c9;
}
.left .product-caption {
  left: -30px;
  transform: rotate(12deg);
}
.right .product-caption {
  right: -125px;
  transform: rotate(-12deg);
}
.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #83818b;
}
.hero-bottom .scroll-link {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #b1b7c9;
  font-size: 12px;
  font-weight: 600;
}
.scroll-icon {
  width: 18px;
  height: 27px;
  border: 1px solid #a6a2b0;
  border-radius: 10px;
  position: relative;
}
.scroll-icon:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 2px;
  height: 6px;
  background: #78727f;
  border-radius: 2px;
}
.hero-bottom .edition {
  text-transform: uppercase;
}
.control-story {
  position: relative;
  background: var(--night);
  color: #f8f8fb;
}
.control-sticky {
  position: relative; /* Keep the demo in normal flow; Ethan rejected the pinned scroll tour. */
  height: auto;
  max-height: none;
  overflow: clip;
  display: flex;
  align-items: center;
}
.control-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  position: relative;
}
.control-copy {
  z-index: 3;
  padding-block: 90px;
}
.control-copy .eyebrow {
  color: #b3a6e2;
}
.control-copy h2 {
  font-size: clamp(44px, 4.35vw, 70px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.12;
  margin: 23px 0;
}
.control-copy h2 span {
  color: #a89acd;
}
.control-description {
  color: #a5a5af;
  font-size: 15px;
}
.hand-switch {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid #3c3b46;
  border-radius: 30px;
  margin-top: 30px;
}
.hand-switch button {
  background: none;
  border: 0;
  padding: 10px 18px;
  border-radius: 30px;
  color: #aaa8b3;
  font-size: 12px;
}
.hand-switch button[aria-pressed="true"] {
  background: #ededf4;
  color: #24212b;
}
.control-result {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #34323c;
  max-width: 360px;
  min-height: 180px;
}
.control-result .result-address {
  color: #a99ad1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.control-result h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.3;
  margin: 12px 0;
}
.control-result p {
  color: #96949f;
  font-size: 13px;
  max-width: 340px;
  line-height: 1.65;
}
.control-result .result-instruction {
  margin-top: 14px;
}
.scene-wrap {
  height: 610px;
  position: relative;
  min-width: 0;
  isolation: isolate;
}
.scene-wrap:before {
  content: "";
  position: absolute;
  inset: 15% 3%;
  background: radial-gradient(ellipse, #5b409a2d, transparent 70%);
  pointer-events: none;
}
.scene-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.scene-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.scene-key {
  position: absolute;
  border: 0;
  background: transparent;
  border-radius: 10px;
  width: 75px;
  height: 76px;
  padding: 10px 4px;
  color: #d3d0e0;
  font: 500 16px var(--sans);
  transform: translate(-50%, -50%);
  transition: color 0.2s;
  text-align: center;
}
.scene-key[aria-pressed="true"] {
  color: white;
  font-weight: 750;
}
.scene-key:focus-visible {
  outline: 2px solid white;
  outline-offset: 0;
  background: #bba7ff22;
}
.scene-meta {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.scene-meta span:not([id]) {
  width: 4px;
  height: 4px;
  background: #8b78b3;
  border-radius: 50%;
}
.scene-fallback .scene-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-content: center;
  padding: 30px;
}
.scene-fallback .scene-key {
  position: static;
  width: auto !important; /* A lost WebGL context leaves projected inline dimensions on the same buttons. */
  height: 80px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  background: #292532;
  box-shadow: 0 8px #09080e;
}
.scene-fallback canvas {
  visibility: hidden;
}
.scene-fallback .scene-key[aria-pressed="true"] {
  background: #6e50b6;
}
.section-heading {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 54px;
}
.section-heading h2 {
  font-size: clamp(44px, 4.6vw, 73px);
  line-height: 1.09;
  font-weight: 650;
  letter-spacing: -0.065em;
  margin-top: 20px;
}
.section-heading .eyebrow {
  font-size: 11px;
  color: #b1b7c9;
}
.section-heading > p {
  color: #b1b7c9;
  max-width: 360px;
  font-size: 15px;
  padding-bottom: 5px;
}
.hud-section {
  background: #18181d;
  color: #f5f4f7;
  padding: 125px 0 110px;
  overflow: hidden;
}
.hud-section .section-heading > p {
  color: #98949f;
}
.hud-demo {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 70px;
  align-items: center;
}
.mode-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.mode-menu button {
  display: flex;
  gap: 13px;
  text-align: left;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #a39fae;
  font-size: 14px;
  transition:
    background 0.25s,
    color 0.25s;
}
.mode-menu button[aria-pressed="true"] {
  background: #302a3b;
  border-color: #4d3b67;
  color: white;
}
.mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mode-color);
  box-shadow: 0 0 13px color-mix(in srgb, var(--mode-color), transparent 65%);
}
.mode-menu .more-modes {
  line-height: 1.7;
}
.hud-frame {
  position: relative;
  background: linear-gradient(135deg, #77717e3d, #38353e5c);
  border: 1px solid #6b607a;
  border-radius: 25px;
  padding: 14px;
  transition: border-color 0.35s;
  min-width: 0;
}
.hud-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.hud-cell {
  position: relative;
  min-height: 104px;
  border: 1px solid
    color-mix(in srgb, var(--hud-accent, #ebe8f2), transparent 30%);
  border-radius: 11px;
  background: var(--cell-color, #27252c);
  padding: 15px 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  text-align: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}
.hud-cell:hover,
.hud-cell[aria-pressed="true"] {
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px #0003;
}
.hud-cell .hud-title {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hud-cell.is-broken .hud-number {
  opacity: 1;
  color: #fdbbbb;
}
.hud-footer {
  padding: 17px 10px 3px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: #c0b9c8;
}
.hud-hand {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hud-hand button {
  border: 0;
  background: transparent;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 11px;
}
.hud-hand button[aria-pressed="true"] {
  background: #ffffff17;
  color: white;
}
.hud-explanation {
  min-height: 75px;
  font-size: 12px;
  color: #a8a0b0;
  max-width: 650px;
  margin: 27px auto 0;
  text-align: center;
  line-height: 1.65;
}
.hud-explanation strong {
  color: #e5deee;
  font-weight: 500;
}
.hud-caption {
  text-align: center;
  margin-top: 17px;
}
.hud-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  margin-top: 95px;
  padding-top: 35px;
  border-top: 1px solid #35323a;
}
.hud-features h3 {
  font-weight: 550;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.hud-features p {
  color: #97909f;
  line-height: 1.8;
}
.setup-section {
  padding: 130px 0;
  background: #10131b;
}
.setup-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}
.setup-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 23px;
  align-items: center;
  border-bottom: 1px solid #2b3040;
  padding: 30px 0;
  min-width: 0;
}
.setup-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.setup-item .setup-razer {
  transform: rotate(-28deg) scale(1.12);
}
.setup-item .setup-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b1b7c9;
  margin-bottom: 7px;
  display: block;
}
.setup-item h3 {
  font-size: 15px;
  letter-spacing: -0.02em;
  font-weight: 650;
  line-height: 1.45;
}
.setup-item p {
  font-size: 11px;
  color: #b1b7c9;
  margin-top: 6px;
}
.setup-item .arrow {
  font-size: 19px;
  color: #958ba2;
}
.desk-icon {
  position: relative;
  width: 90px;
  height: 70px;
}
.desk-icon:before {
  content: "";
  position: absolute;
  top: 10px;
  width: 88px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(#c9a875 0 65%, #ad895a 65%);
  transform: skewY(-6deg);
}
.desk-icon:after {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 60px;
  height: 46px;
  border-left: 6px solid #33323a;
  border-right: 6px solid #33323a;
}
.setup-note {
  font-size: 11px;
  color: #91879b;
  line-height: 1.8;
  margin-top: 30px;
}
.creator-end {
  background: #0c0f16;
  padding: 135px 0 95px;
  text-align: center;
}
.creator-end .eyebrow {
  color: #b1b7c9;
  font-size: 11px;
}
.creator-end h2 {
  font-size: clamp(45px, 6vw, 88px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.12;
  margin: 24px 0;
}
.creator-end > div > p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: #b1b7c9;
  font-size: 14px;
}
.end-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.build-note {
  max-width: 650px;
  margin: 45px auto 0;
  border-top: 1px solid #2b3040;
  padding-top: 24px;
  text-align: left;
  color: #b1b7c9;
  font-size: 11px;
  line-height: 1.7;
}
.build-note summary {
  cursor: pointer;
  list-style-position: outside;
  margin-left: 14px;
  color: #b1b7c9;
  font-size: 12px;
}
.build-note p {
  margin: 14px 0;
}
.build-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.skills-section {
  padding: 110px 0 95px;
  background: var(--night);
  color: var(--ink);
}
.skills-section .section-heading { align-items: flex-start; }
.skills-section .section-heading h2 { max-width: 650px; }
.skills-section .section-heading .eyebrow { color: #b5a0f5; }
.skills-section .section-heading > p { color: #b7b5c0; padding-top: 40px; }
.skills-heading {
  margin: 0 0 22px;
  color: #b7b5c0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}
.skill-card {
  min-width: 0;
  border: 1px solid #ffffff24;
  border-radius: 18px;
  background: #ffffff04;
}
.skill-card summary {
  position: relative;
  padding: 28px 60px 28px 28px;
  cursor: pointer;
  list-style: none;
  border-radius: inherit;
  transition: background .2s;
}
.skill-card summary::-webkit-details-marker,
.skills-disclosure > summary::-webkit-details-marker { display: none; }
.skill-card summary::after {
  content: "+";
  position: absolute;
  top: 26px;
  right: 28px;
  color: #b5a0f5;
  font-size: 24px;
  font-weight: 400;
}
.skill-card[open] > summary::after { content: "−"; }
.skill-card summary:hover { background: #ffffff06; }
.skill-card summary:focus-visible,
.skills-disclosure > summary:focus-visible { outline-offset: 4px; }
.skill-platform {
  display: block;
  margin-bottom: 13px;
  color: #b5a0f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.skill-card h4 { margin: 0; font-size: 23px; font-weight: 600; letter-spacing: -.035em; }
.skill-card summary p { margin-top: 10px; color: #b7b5c0; font-size: 13px; line-height: 1.6; }
.skill-detail { padding: 0 28px 28px; }
.skill-detail > p { color: #b7b5c0; font-size: 13px; }
.skill-links { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 20px; }
.skill-links a { color: var(--ink); font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: #8f7abc; }
.skill-links a:hover { color: #c7b6ff; }
.skills-disclosure { border-top: 1px solid #ffffff24; margin-top: 32px; }
.skills-disclosure > summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 600; }
.skills-disclosure > summary::after { content: "+"; color: #b5a0f5; font-size: 24px; }
.skills-disclosure[open] > summary::after { content: "−"; }
.skills-disclosure > p { max-width: 650px; margin-bottom: 24px; color: #b7b5c0; font-size: 13px; }
.skills-reference { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: center; margin-top: 40px; padding: 32px; border-radius: 18px; background: #b5a0f512; }
.skills-reference h3 { font-size: 21px; font-weight: 600; letter-spacing: -.025em; }
.skills-reference p { max-width: 650px; margin-top: 9px; color: #b7b5c0; font-size: 13px; }
.skills-reference .skill-platform { margin-bottom: 9px; }
.skills-reference .skill-links { margin: 0; }
.skills-experiments { display: grid; gap: 20px; padding-bottom: 10px; }
.skills-experiments a { font-size: 14px; text-decoration: underline; text-underline-offset: 5px; }
.skills-experiments p { margin-top: 7px; color: #b7b5c0; font-size: 12px; }
@media (max-width: 760px) {
  .skills-section { padding: 75px 0 60px; }
  .skills-section .section-heading > p { padding-top: 0; }
  .skills-grid { grid-template-columns: 1fr; gap: 12px; }
  .skill-card summary { padding: 23px 50px 23px 22px; }
  .skill-card summary::after { top: 20px; right: 22px; }
  .skill-card h4 { font-size: 21px; }
  .skill-detail { padding: 0 22px 23px; }
  .skills-reference { grid-template-columns: 1fr; padding: 25px 22px; }
}
.engineer-section { padding: 90px 0; background: var(--white); }
.hero-description a, .voice-feature a { text-decoration: underline; text-underline-offset: 4px; }
.engineer-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.engineer-copy .eyebrow { color: var(--violet); margin-bottom: 22px; }
.engineer-copy h2 { font-size: clamp(34px, 3.8vw, 56px); line-height: 1.08; letter-spacing: -0.055em; }
.engineer-copy > p:not(.eyebrow) { margin-top: 24px; max-width: 510px; color: #b4bacb; }
.engineer-copy > .engineer-tools { font-size: 13px; margin-top: 18px; }
.engineer-copy a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.review-directions { display: flex; flex-wrap: wrap; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.review-directions > p { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; }
.review-number { display: grid; place-items: center; flex: 0 0 46px; height: 54px; border: 1px solid #494054; border-bottom-width: 4px; border-radius: 10px; background: #252031; color: #d3c1ff; font-size: 24px; }
.review-hold { flex-basis: 54px; font-size: 14px; }
.review-gestures dl { margin: 24px 0 18px; }
.review-gestures dl > div + div { margin-top: 18px; }
.review-gestures dt { font-weight: 800; font-size: 15px; }
.review-gestures dd { margin: 4px 0 0; font-size: 15px; line-height: 1.5; color: #b4bacb; }
.review-note { color: #b4bacb; font-size: 12px; }
.review-note + .review-note { margin-top: 6px; }
.linkedin-section { padding: 110px 0; background: #0c1726; color: #edf4ff; }
.linkedin-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.linkedin-icon { display: block; width: min(100%, 280px); color: #0a66c2; justify-self: center; border-radius: 12px; }
.linkedin-icon svg { display: block; width: 100%; height: auto; }
.linkedin-copy .eyebrow { color: #b0c4dd; margin-bottom: 22px; }
.linkedin-copy h2 { font-size: clamp(38px, 4.6vw, 68px); line-height: 1.06; letter-spacing: -0.055em; }
.linkedin-copy > p:not(.eyebrow) { max-width: 480px; margin-top: 24px; color: #b0c4dd; }
.linkedin-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.linkedin-actions .pill { background: #0a66c2; color: white; }
.linkedin-actions .pill:hover { background: #004182; }
@media (max-width: 760px) {
  .engineer-section, .linkedin-section { padding: 64px 0; }
  .engineer-layout, .linkedin-layout { grid-template-columns: 1fr; gap: 36px; }
  .linkedin-icon { width: 96px; justify-self: start; border-radius: 4px; }
  .linkedin-copy h2 { font-size: clamp(38px, 7vw, 52px); }
  .review-directions { gap: 20px; }
}
@media (max-width: 380px) {
  .review-directions > p { gap: 8px; font-size: 12px; }
  .review-number { flex-basis: 38px; height: 46px; }
  .review-directions { gap: 14px; }
}
.site-footer {
  background: #0c0f16;
  border-top: 1px solid #242a37;
  padding: 29px 0;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #9a919f;
  font-size: 11px;
}
.site-footer p {
  margin-top: 14px;
}
.error-page {
  min-height: 100svh;
  padding: 180px 30px;
  text-align: center;
}
.error-page h1 {
  font-size: clamp(38px, 6vw, 80px);
  letter-spacing: -0.055em;
  margin: 22px auto 40px;
  max-width: 800px;
}
.no-js-note {
  padding: 20px;
  background: #25212e;
  color: white;
  font-size: 13px;
  text-align: center;
}
.no-js-note a {
  text-decoration: underline;
}
@media (min-width: 1500px) and (min-height: 1000px) {
  .hero-products {
    inset: 480px 0 90px;
    gap: 80px;
  }
  .hero-product.left {
    width: 480px;
  }
  .hero-product.right {
    width: 370px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 790px;
  }
  .hero-products {
    gap: 25px;
    inset: 430px 0 70px;
  }
  .hero-product.left {
    width: 370px;
  }
  .hero-product.right {
    width: 285px;
  }
  .left .product-caption {
    left: 55px;
    top: 93%;
  }
  .right .product-caption {
    right: 0;
    top: 102%;
  }
  .control-copy h2 {
    font-size: 49px;
  }
  .scene-wrap {
    height: 530px;
  }
  .control-sticky {
    min-height: 750px;
  }
  .hud-demo {
    grid-template-columns: 190px 1fr;
    gap: 35px;
  }
  .hud-cell {
    min-height: 100px;
    padding: 12px 8px;
  }
  .hud-cell .hud-title {
    font-size: 11px;
  }
  .hud-features {
    gap: 35px;
  }
  .setup-list {
    gap: 0 45px;
  }
  .setup-item {
    grid-template-columns: 65px 1fr auto;
    gap: 17px;
  }
  .setup-item img {
    width: 65px;
    height: 80px;
  }
  .desk-icon {
    transform: scale(0.7);
    transform-origin: left center;
  }
  .section-heading > p {
    max-width: 310px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 25px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-nav {
    height: 67px;
  }
  .brand {
    font-size: 15px;
    gap: 9px;
  }
  .site-nav nav {
    gap: 17px;
    font-size: 11px;
  }
  .site-nav .nav-explore {
    display: none;
  }
  .site-nav .nav-source {
    padding: 8px 12px;
  }
  .hero {
    height: 100svh;
  }
  .hero-content {
    padding: 134px 18px 0;
  }
  .hero-content .eyebrow {
    font-size: 11px;
    letter-spacing: 0.17em;
  }
  .hero h1 {
    font-size: clamp(44px, 8.5vw, 65px);
    letter-spacing: -0.063em;
    line-height: 1.12;
    margin: 25px 0 19px;
  }
  .hero-description {
    max-width: 300px;
  }
  .hero-products {
    align-items: center;
  }
  .hero-product.left {
    width: 58%;
    max-width: 295px;
  }
  .hero-product.right {
    width: 40%;
    max-width: 215px;
  }
  .product-caption {
    top: 95% !important;
    font-size: 11px;
    white-space: normal;
    width: 140px;
    text-align: center;
  }
  .left .product-caption {
    left: calc(50% - 70px);
  }
  .right .product-caption {
    right: calc(50% - 70px);
  }
  .hero-bottom {
    bottom: 24px;
  }
  .hero-bottom .edition {
    display: none;
  }
  .hero-bottom .scroll-link {
    margin: auto;
    font-size: 11px;
  }
  .control-story {
    height: auto;
    min-height: 0;
  }
  .control-sticky {
    height: auto;
    max-height: none;
    min-height: 0;
    position: relative;
    display: block;
    overflow: clip;
    padding: 65px 0 55px;
  }
  .control-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .control-copy {
    padding: 0;
    width: 100%;
    display: contents;
  }
  .control-copy .eyebrow {
    align-self: flex-start;
    font-size: 11px;
  }
  .control-copy h2 {
    align-self: flex-start;
    font-size: 43px;
    margin: 20px 0 19px;
  }
  .control-description {
    align-self: flex-start;
    font-size: 13px;
    max-width: 300px;
  }
  .hand-switch {
    align-self: flex-start;
    margin-top: 24px;
  }
  .hand-switch button {
    padding: 9px 17px;
    font-size: 11px;
  }
  .scene-wrap {
    width: calc(100% + 30px);
    order: 2;
  }
  .scene-key {
    width: 57px;
    height: 60px;
  }
  .control-result {
    order: 3;
    margin: 0;
    padding-top: 24px;
    align-self: flex-start;
    min-height: 150px;
    width: 100%;
    max-width: none;
  }
  .control-result h3 {
    font-size: 23px;
  }
  .control-result p {
    max-width: 380px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 44px;
    letter-spacing: -0.06em;
  }
  .section-heading > p {
    margin-top: 23px;
    font-size: 13px;
    max-width: 360px;
  }
  .hud-section {
    padding: 78px 0 70px;
  }
  .hud-demo {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
  }
  .mode-menu {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mode-menu button {
    border-radius: 30px;
  }
  .mode-dot {
    width: 5px;
    height: 5px;
  }
  .hud-frame {
    padding: 8px;
    border-radius: 17px;
  }
  .hud-grid {
    gap: 5px;
  }
  .hud-cell {
    border-radius: 7px;
  }
  .hud-cell .hud-title {
    overflow-wrap: anywhere;
  }
  .hud-cell .hud-number {
    font-size: 7px;
  }
  .hud-footer {
    font-size: 11px;
    padding: 12px 4px 4px;
  }
  .hud-hand {
    gap: 1px;
  }
  .hud-hand button {
    font-size: 11px;
    padding: 5px;
  }
  .hud-explanation {
    text-align: left;
    margin-top: 18px;
  }
  .hud-caption {
    margin-top: 8px;
  }
  .hud-features {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
    padding-top: 28px;
  }
  .hud-features h3 {
    margin-bottom: 8px;
  }
  .hud-features p {
    max-width: 340px;
  }
  .setup-section {
    padding: 78px 0;
  }
  .setup-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .setup-item {
    padding: 23px 0;
    grid-template-columns: 70px 1fr 18px;
    gap: 20px;
  }
  .setup-item p {
    font-size: 11px;
  }
  .setup-note {
    font-size: 11px;
  }
  .creator-end {
    padding: 78px 0 65px;
  }
  .creator-end h2 {
    font-size: 47px;
  }
  .creator-end > div > p {
    font-size: 13px;
    max-width: 330px;
  }
  .end-actions {
    gap: 24px;
  }
  .end-actions .text-link {
    font-size: 12px;
  }
  .pill {
    font-size: 12px;
    padding: 14px 21px;
  }
  .build-note {
    font-size: 11px;
    margin-top: 35px;
  }
  .site-footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 11px;
  }
}
@media (max-width: 370px) {
  .site-nav nav {
    gap: 10px;
  }
  .site-nav .nav-setup {
    display: none;
  }
  .hero-products {
    top: 360px;
  }
  .control-copy h2 {
    font-size: 39px;
  }
  .scene-wrap {
    height: 330px;
  }
  .mode-menu button {
    padding: 8px;
  }
  .hud-cell .hud-title {
    font-size: 11px;
  }
  .hud-cell {
    min-height: 79px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .end-actions {
    gap: 17px;
  }
  .creator-end h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .control-sticky {
    position: relative;
  }
  .hero-product img {
    transform: none !important;
  }
}
.mode-menu .more-modes {
  display: block;
  padding: 0 17px;
  margin-top: 14px;
  font-size: 11px;
}
.more-modes select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 8px;
  border: 1px solid #554b60;
  border-radius: 7px;
  color: #d8cde2;
  background: #24212b;
  font-size: 11px;
}
.map-link {
  color: #a298ad;
  margin: 8px 17px;
  display: flex;
  gap: 15px;
}
@media (max-width: 760px) {
  .mode-menu .more-modes {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
  }
  .more-modes select {
    margin: 0;
    width: auto;
    flex: 1;
    max-width: 220px;
    padding: 9px;
  }
  .map-link {
    margin: 9px 0 0;
    font-size: 11px;
  }
}
@media (min-width: 761px) {
  .hero h1 {
    margin-bottom: 10px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 760px) {
  .hero-product.left,
  .hero-product.right {
    transform: none;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: clamp(32px, 10.5vw, 39px);
  }
}
@media (max-width: 760px) {
  .mode-menu {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }
  .mode-menu button {
    justify-content: center;
    padding: 10px 3px;
    gap: 5px;
    white-space: nowrap;
  }
  .mode-menu .more-modes,
  .mode-menu .map-link {
    grid-column: 1/-1;
  }
  .mode-menu .more-modes {
    margin-top: 15px;
  }
  .mode-menu .map-link {
    justify-self: start;
  }
}
/* Keep the product row in document flow so shorter screens cannot collide with the heading. */
.hero {
  display: flex;
  flex-direction: column;
  height: 100svh;
  min-height: 870px;
  max-height: 1200px;
  padding-bottom: 100px;
}
.hero-content {
  padding-top: clamp(125px, 14svh, 165px);
  flex: none;
}
.hero-products {
  position: relative;
  inset: auto;
  width: min(1000px, calc(100% - 80px));
  max-width: none;
  margin: 48px auto 0;
  flex: 1;
  min-height: 270px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-product.left,
.hero-product.right {
  position: relative;
  width: 100%;
  height: 280px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product.left img {
  width: 580px;
  max-width: none;
  mix-blend-mode: normal;
  filter: none;
}
.hero-product.right img {
  width: 300px;
}
.hero-product .product-caption {
  top: auto !important;
  bottom: -35px;
  left: 50%;
  right: auto;
  width: 200px;
  text-align: center;
  transform: translateX(-50%);
  font-size: 11px;
}
.product-caption strong {
  font-size: 13px;
}
.hero-bottom .edition {
  font-size: 11px;
  letter-spacing: 0.04em;
}
.hero-description {
  color: #b1b7c9;
}
.touch-instruction {
  display: none;
}
.scene-origin {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b5abca;
  font-size: 11px;
  line-height: 1.5;
}
.scene-origin img {
  object-fit: contain;
}
.scene-meta {
  color: #a79caf;
  font-size: 11px;
}
.control-result .result-instruction {
  font-size: 11px;
  color: #9e96a9;
}
.control-result .result-address {
  font-size: 11px;
}
.scene-meta span:not([id]) {
  flex: none;
}
.control-description {
  max-width: 370px;
}
.hand-switch button:disabled {
  cursor: wait;
}
.hud-section .section-heading h2 span {
  color: #b3a3d7;
}
.hud-frame {
  border-color: var(--mode-light, #b9adc9);
  box-shadow:
    0 40px 70px #0004,
    0 0 90px color-mix(in srgb, var(--mode-light, #b9adc9), transparent 88%);
}
.hud-caption {
  font-size: 11px;
  color: #aaa1b4;
  line-height: 1.8;
}
.hud-cell.is-broken:not(:hover):not([aria-pressed="true"]) {
  border-color: #c47e90;
}
.hud-cell .hud-number {
  font-size: 11px;
  opacity: 1;
  color: #b8afc5;
}
.repair-chip {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: #ffbdcc;
}
.repair-key {
  display: inline-block;
  color: #ffbdcc;
  white-space: nowrap;
}
.mode-mouse {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 17px;
  margin-top: 15px;
  color: #aca1b8;
  font-size: 11px;
}
.mode-mouse svg {
  width: 54px;
  height: 67px;
  overflow: visible;
}
.mouse-shell {
  fill: #24202b;
  stroke: #7e738d;
  stroke-width: 2;
}
.mouse-seam {
  fill: none;
  stroke: #655b71;
  stroke-width: 1.5;
}
.mouse-light {
  fill: var(--mode-light, #b9adc9);
  filter: drop-shadow(0 0 5px var(--mode-light, #b9adc9));
  transition:
    fill 0.4s,
    filter 0.4s;
}
.mouse-grid-light {
  fill: none;
  stroke: var(--mode-light, #b9adc9);
  stroke-width: 3;
  filter: drop-shadow(0 0 4px var(--mode-light, #b9adc9));
  transition:
    stroke 0.4s,
    filter 0.4s;
}
.hud-features h3 {
  font-size: 21px;
}
.hud-features p {
  font-size: 14px;
}
.voice-bars {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}
.voice-bars i {
  width: 4px;
  height: 18px;
  background: #bca4eb;
  border-radius: 3px;
  transform-origin: center;
}
.voice-bars i:nth-child(2n) {
  height: 30px;
}
.voice-bars i:nth-child(3n) {
  height: 24px;
}
.hud-features article:not(.voice-feature) {
  padding-top: 48px;
}
.map-link {
  font-size: 11px;
}
.hud-footer,
.hud-hand button {
  font-size: 11px;
}
.setup-item .setup-tag,
.setup-item p,
.setup-note,
.build-note,
.site-footer .wrap {
  font-size: 11px;
}
@media (hover: none) {
  .pointer-instruction {
    display: none;
  }
  .touch-instruction {
    display: inline;
  }
}
@media (max-width: 1100px) {
  .hero-product.left img {
    width: 510px;
  }
  .hero-product.right img {
    width: 265px;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: 740px;
    max-height: 960px;
    padding-bottom: 115px;
  }
  .hero-content {
    padding-top: 130px;
  }
  .hero-products {
    width: 100%;
    gap: 0;
    inset: auto;
    margin-top: 42px;
    min-height: 180px;
  }
  .hero-product.left,
  .hero-product.right {
    width: 100%;
    height: 185px;
  }
  .hero-product.left img {
    width: 165%;
    max-width: none;
  }
  .hero-product.right img {
    width: 87%;
    max-width: none;
  }
  .hero-product .product-caption {
    top: auto !important;
    bottom: -42px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 155px;
    font-size: 11px;
  }
  .product-caption strong {
    font-size: 11px;
  }
  .hero-description {
    font-size: 13px;
  }
  .scene-origin {
    top: 3px;
    gap: 8px;
    left: 50%;
    white-space: nowrap;
    font-size: 11px;
  }
  .scene-wrap {
    margin-top: 25px;
    height: 390px;
  }
  .scene-meta {
    bottom: 0;
    font-size: 11px;
  }
  .scene-key {
    font-size: 16px;
  }
  .scene-wrap .scene-controls {
    top: 20px;
    bottom: -20px;
  }
  .scene-wrap canvas {
    top: 20px;
  }
  .control-result p {
    font-size: 13px;
  }
  .control-result .result-address {
    font-size: 11px;
  }
  .hud-frame {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
  .hud-cell {
    min-height: 110px;
    padding: 10px 6px;
    gap: 8px;
  }
  .hud-cell .hud-title {
    font-size: 11px;
    line-height: 1.5;
  }
  .hud-cell .hud-number,
  .repair-chip {
    font-size: 11px;
  }
  .hud-caption {
    font-size: 11px;
    text-align: left;
  }
  .hud-explanation {
    font-size: 13px;
    min-height: 90px;
  }
  .hud-footer,
  .hud-hand button {
    font-size: 11px;
  }
  .mode-mouse {
    grid-column: 1/-1;
    margin-top: 8px;
    padding-left: 0;
    gap: 12px;
  }
  .mode-mouse svg {
    width: 34px;
    height: 45px;
  }
  .mode-menu button {
    font-size: 11px;
  }
  .mode-menu .more-modes,
  .more-modes select {
    font-size: 11px;
  }
  .hud-features article:not(.voice-feature) {
    padding-top: 0;
  }
  .hud-features h3 {
    font-size: 22px;
  }
  .hud-features p {
    font-size: 14px;
  }
  .setup-item h3 {
    font-size: 14px;
  }
  .scene-fallback .scene-controls {
    top: 40px;
    bottom: 20px;
  }
}
@media (max-width: 370px) {
  .mode-menu button .mode-dot {
    display: none;
  }
  .hud-cell {
    padding-inline: 4px;
  }
  .hero-product .product-caption {
    width: 140px;
  }
  .scene-meta {
    font-size: 11px;
    gap: 6px;
  }
}
@media (min-width: 761px) {
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding-bottom: 34px;
  }
  .hero-products {
    min-height: 300px;
  }
  .hero-bottom {
    position: relative;
    bottom: auto;
    margin-top: 75px;
    flex-shrink: 0;
  }
  .hero h1 {
    font-size: clamp(60px, 6.1vw, 94px);
  }
  .hero-product.left,
  .hero-product.right {
    height: 300px;
  }
  .hero-product.left img {
    width: 550px;
  }
  .hero-product.right img {
    width: 260px;
  }
  .hero-product .product-caption {
    bottom: -22px;
  }
}
.hero-content .eyebrow,
.section-heading .eyebrow,
.creator-end .eyebrow {
  color: #b1b7c9;
}
.setup-item .setup-tag,
.setup-item p,
.setup-note,
.creator-end > div > p,
.build-note,
.site-footer .wrap {
  color: #b1b7c9;
}
.site-footer a {
  color: #b1b7c9;
}
.hud-section .eyebrow {
  color: #b6a9cc;
}
.hud-hand button {
  color: #b0a5bc;
}
.mode-menu .more-modes {
  color: #aaa1b5;
}
.scene-origin-image {
  position: relative;
  display: block;
  flex: none;
  width: 160px;
  height: 88px;
  overflow: hidden;
}
.scene-origin img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 80px;
  transform: translate(-50%, -50%);
}
.scene-origin img[src$="razer-side.webp"] {
  width: 240px;
  max-width: none;
  height: auto;
}
.scene-origin-image:has(img[src$="razer-side.webp"]) {
  mask-image: radial-gradient(ellipse, #000 48%, transparent 74%);
}
@media (max-width: 760px) {
  .scene-origin-image {
    width: 120px;
    height: 70px;
  }
  .scene-origin img {
    width: 78px;
    height: 70px;
  }
  .scene-origin img[src$="razer-side.webp"] {
    width: 184px;
  }
}
@media (min-width: 761px) and (max-height: 800px) {
  .control-sticky {
    min-height: 0;
  }
  .control-copy {
    padding-block: 28px;
  }
  .control-copy h2 {
    font-size: clamp(40px, 4.1vw, 58px);
    margin: 17px 0;
  }
  .control-description {
    font-size: 13px;
  }
  .hand-switch {
    margin-top: 20px;
  }
  .control-result {
    margin-top: 20px;
    padding-top: 18px;
    min-height: 150px;
  }
  .control-result h3 {
    font-size: 22px;
  }
  .scene-wrap {
    height: 72svh;
  }
  .scene-origin {
    top: -10px;
  }
}

/* The simulator shares one native map across the 3D and HUD views. */
.sim-app {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  color: #b8b3c6;
  font-size: 12px;
}
.sim-app select {
  appearance: auto;
  min-width: 0;
  max-width: 215px;
  padding: 9px 28px 9px 12px;
  border: 1px solid #4c465c;
  border-radius: 8px;
  color: #f4f1fb;
  background: #26232e;
  font: inherit;
}
.sim-app-hint {
  font-size: 11px;
  color: #b0a8bd;
  margin: 7px 0 0;
}
.sim-app-hud {
  margin: 0 0 16px;
}

.sim-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.sim-actions button,
.scene-toolbar button {
  border: 1px solid #635774;
  border-radius: 7px;
  padding: 8px 10px;
  min-height: 36px;
  font: 500 11px var(--sans);
  color: #ece6f5;
  background: #302937;
}
.sim-actions button:hover,
.scene-toolbar button:hover {
  background: #463650;
}
.sim-actions button:disabled {
  opacity: 0.4;
  cursor: default;
}
.sim-actions button[aria-pressed="true"] {
  color: #211729;
  background: #dcc5ef;
}
.sim-actions [hidden] {
  display: none;
}
.scene-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  color: #e7def5;
  font-size: 13px;
}
.scene-toolbar > span {
  padding-left: 15px;
  border-left: 2px solid var(--mode-light);
}
.scene-controls {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.scene-key {
  cursor: pointer;
}
.is-dragging .scene-controls,
.is-dragging .scene-key {
  cursor: grabbing;
}
.scene-origin {
  top: 52px;
  pointer-events: none;
}
.sim-output {
  position: absolute;
  bottom: 46px;
  left: 8%;
  right: 8%;
  z-index: 4;
  padding: 16px 20px;
  border: 1px solid #494051;
  border-radius: 13px;
  background: #1e1a24ed;
  pointer-events: none;
}
.sim-output > span {
  display: block;
  color: #aaa0b9;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sim-output output {
  display: block;
  margin-top: 5px;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.35;
  color: #ede7f4;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  min-height: 29px;
  max-height: 94px;
  overflow: auto;
}
.sim-output small {
  display: block;
  color: #b3a8bf;
  font-size: 10px;
  margin-top: 8px;
  line-height: 1.4;
}
.sim-output small:empty {
  display: none;
}
.sim-output .is-typing::after {
  content: "│";
  color: #c19bee;
}
.sim-output-hud {
  position: static;
  margin-top: 16px;
  pointer-events: auto;
}

.hud-cell {
  background: color-mix(in srgb, var(--cell-color) 25%, #18151d);
}
.hud-cell.is-destination {
  border-color: var(--cell-color);
  background: color-mix(in srgb, var(--cell-color) 45%, #18151d);
}
.hud-grid.legend-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.hud-frame {
  position: relative;
}
#legend-hidden-note {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 17px;
}
#legend-hidden-note[hidden] {
  display: none;
}
#show-legend {
  border: 1px solid #9b84af;
  border-radius: 25px;
  padding: 10px 18px;
  color: #eadff3;
  background: #30243b;
}
.speech-callout {
  position: absolute;
  top: 22%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #494151;
  border-radius: 24px;
  background: #181c27ed;
  box-shadow: 0 3px 15px #30213908;
  color: #e6dff3;
  font: 500 11px var(--sans);
  white-space: nowrap;
  transition:
    background 150ms,
    box-shadow 150ms;
}
.speech-callout:hover {
  background: #282d3b;
  box-shadow: 0 4px 22px #8060ba26;
}
.speech-callout span {
  color: #9572cb;
  font-size: 8px;
}
.hero-product.left .speech-callout {
  left: 2%;
}
.hero-product.right .speech-callout {
  right: -15%;
}
.speech-demo {
  width: min(520px, calc(100% - 40px));
  box-sizing: border-box;
  border: 1px solid #494151;
  border-radius: 24px;
  padding: 48px;
  background: #151923;
  color: #f0edf6;
}
.speech-demo::backdrop {
  background: #19121b80;
  backdrop-filter: blur(10px);
}
#close-speech {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: none;
  color: #d5c9e6;
  font-size: 28px;
  line-height: 1;
  padding: 8px;
}
.speech-demo h2 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
#speech-example {
  font-size: 23px;
  line-height: 1.5;
  min-height: 100px;
}
.speech-note {
  color: #b4a9c1;
  font-size: 12px;
  line-height: 1.6;
}
.speech-wave {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 56px;
  margin: 25px 0;
}
.speech-wave i {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: #9770be;
}
.speech-wave i:nth-child(2n) {
  height: 33px;
}
.speech-wave i:nth-child(3n) {
  height: 45px;
}
@media (prefers-reduced-motion: no-preference) {
  .speech-demo[open] .speech-wave i {
    animation: speech-wave 800ms ease-in-out 3 alternate;
  }
  .speech-wave i:nth-child(2n) {
    animation-delay: 120ms;
  }
}
@keyframes speech-wave {
  to {
    transform: scaleY(0.4);
  }
}
@media (min-width: 761px) {
  .control-copy {
    padding-block: 65px;
  }
  .control-copy h2 {
    font-size: clamp(40px, 3.8vw, 60px);
  }
  .control-result {
    margin-top: 18px;
    padding-top: 18px;
  }
  .hand-switch {
    margin-top: 18px;
  }
}
@media (max-width: 760px) {
  .scene-toolbar {
    top: 5px;
  }
  .scene-origin {
    top: 55px;
  }
  .scene-wrap {
    height: 480px;
  }
  .sim-output {
    bottom: 42px;
    left: 0;
    right: 0;
    padding: 13px 15px;
  }
  .control-result {
    max-width: none;
    min-height: 0;
  }
  .control-result p {
    max-width: none;
  }
  .sim-actions button {
    min-height: 42px;
    padding: 9px 11px;
  }
  .speech-callout {
    top: auto;
    bottom: -84px;
    font-size: 10px;
    padding: 9px 10px;
  }
  .hero-product.left .speech-callout {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-product.right .speech-callout {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-bottom {
    margin-top: 126px;
  }
  .speech-demo {
    padding: 36px 25px;
  }
  .sim-output-hud {
    padding: 15px;
  }
}
@media (min-width: 761px) and (max-height: 850px) {
  .control-sticky {
    min-height: 780px;
    height: auto;
    max-height: none;
  }
  .control-copy {
    padding-block: 70px;
  }
  .scene-wrap {
    height: 620px;
  }
}

.scene-fallback .scene-controls {
  top: 115px;
  bottom: 145px;
  padding: 10px 30px;
}
.scene-fallback .scene-key {
  height: 64px !important;
}
@media (max-width: 760px) {
  .scene-fallback .scene-controls {
    top: 135px;
    bottom: 145px;
    padding: 0 25px;
    gap: 8px;
  }
  .scene-fallback .scene-key {
    height: 54px !important;
  }
}

.hud-demo .sim-actions {
  justify-content: center;
}

/* Full hardware models share the photographs' frame; the images remain the WebGL fallback. */
.hero {
  min-height: 970px;
}
.hero-rotation-hint {
  margin-top: 22px;
  color: #b1b7c9;
  text-align: center;
  font-size: 11px;
}
.hero-products {
  margin-top: 10px;
  flex: none;
  min-height: 330px;
}
.hero-product.left,
.hero-product.right {
  height: 330px;
}
.hero-mouse-canvas {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
}
.hero-mouse-canvas.is-dragging {
  cursor: grabbing;
}
.hero-mouse-canvas:focus-visible {
  outline: 1px solid #a38ebc;
  outline-offset: -5px;
  border-radius: 30px;
}
.model-ready .hero-mouse-canvas {
  display: block;
}
.model-ready > img {
  visibility: hidden;
}
.speech-leader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.speech-leader path {
  fill: none;
  stroke: #9572b4;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.speech-leader circle {
  fill: #b293d0;
  stroke: #fff;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.hero-product .speech-callout {
  top: 12px;
  bottom: auto;
}
.hero-product.left .speech-callout {
  left: 8%;
}
.hero-product.right .speech-callout {
  right: 8%;
}
.hero-product .product-caption {
  bottom: -47px;
}
.hero-reset {
  display: none;
  margin: 8px auto 0;
  border: 0;
  padding: 3px 8px;
  background: none;
  color: #b1b7c9;
  font: 500 10px var(--sans);
}
.model-ready.model-rotated .hero-reset {
  display: block;
}
.hero-reset:hover {
  color: #b1b7c9;
}
.has-mouse-model:not(.scene-fallback) .scene-key {
  color: transparent;
  font-size: 0;
  padding: 0;
  border-radius: 4px;
}
.has-mouse-model:not(.scene-fallback) .scene-key:focus-visible {
  outline: none; /* The real 3D key supplies the focus highlight; a screen-aligned square cannot fit its angled face. */
  background: transparent;
}
@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 820px;
    max-height: none;
    padding-bottom: 60px;
  }
  .hero-products {
    width: calc(100% - 16px);
    min-height: 240px;
    margin-top: 14px;
  }
  .hero-product.left,
  .hero-product.right {
    height: 240px;
  }
  .hero-product.left .speech-callout,
  .hero-product.right .speech-callout {
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 9px;
    padding: 8px 9px;
    gap: 5px;
  }
  .hero-product .product-caption {
    bottom: -53px;
  }
  .hero-bottom {
    margin-top: 85px;
  }
}
.hero-button-hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  padding: .55rem .85rem;
  border-radius: .6rem;
  background: #242329;
  color: #fff;
  font-size: .75rem;
  text-align: center;
  pointer-events: none;
}
.hero-mouse-canvas.is-action { cursor: pointer; }
.hero-product.model-ready::before {
  content: "";
  position: absolute;
  left: 19%;
  width: 62%;
  top: 82%;
  height: 6%;
  background: #272231;
  border-radius: 50%;
  filter: blur(16px);
  opacity: .12;
  pointer-events: none;
}
.scene-model {
  position: absolute;
  inset: 0;
}
.has-mouse-model::before { display: none; }
.has-mouse-model .scene-model::before {
  content: "";
  position: absolute;
  inset: 17% 0 16%;
  background: radial-gradient(ellipse, #37394380 0%, #25262e55 40%, transparent 72%);
  pointer-events: none;
}
.has-mouse-model .scene-model::after {
  content: "";
  position: absolute;
  top: 62%;
  left: 14%;
  width: 72%;
  height: 4%;
  border-radius: 50%;
  background: #000;
  filter: blur(13px);
  opacity: .5;
  pointer-events: none;
}

/* Mirror ModeHUDView and HUDView: 705-point glass panel, 27-point inset, 4 × 3 cards, action title above the printed mouse label. Colours and border treatments come from Swift. (Codex task: 01a06ee5-4aa0-7a61-a029-704e5c44a8f2) */
.native-preview { margin-top: 20px; scroll-margin-bottom: 16px; }
.scene-result {
  position: absolute;
  bottom: 32px;
  left: 8%;
  right: 8%;
  z-index: 4;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 12px 0 0;
}
.scene-result .result-address { margin: 0; font-size: 9px; }
.scene-result h3 { font-size: 19px; margin: 5px 0; }
.scene-result p { max-width: none; font-size: 11px; line-height: 1.45; }
.scene-result .sim-actions { margin-top: 10px; }
.scene-result .result-instruction { margin-top: 8px; font-size: 10px; }
.native-text-output { display: block; padding: 6px 0; white-space: pre-wrap; color: #f9ecff; }
[data-keypad-output][hidden] { display: none; }
.native-preview-label {
  margin: 0 0 9px;
  color: #aaa8b3;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.native-hud {
  container-type: inline-size;
  padding: 3.83%;
  min-width: 0;
  color: white;
  background: linear-gradient(145deg, #d6d8e027, #b5baca10 45%, #262a3380);
  border: var(--hud-outline-width, 2px) solid var(--hud-accent);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 #ffffff2b, 0 9px 30px #0003;
  backdrop-filter: blur(18px) saturate(1.2);
  font-family: ui-rounded, -apple-system, BlinkMacSystemFont, sans-serif;
}
.native-hud[hidden], .native-hud-hidden[hidden] { display: none; }
.native-hud-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.38cqw;
}
.native-hud-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .69cqw;
  min-width: 0;
  min-height: max(57px, 13.82cqw);
  padding: 1.84cqw var(--hud-card-inset);
  border: var(--card-border-width) solid color-mix(in srgb, var(--card-border) var(--card-border-opacity), transparent);
  border-radius: 1.84cqw;
  background: color-mix(in srgb, var(--card-fill) var(--card-opacity), transparent);
  color: var(--card-foreground);
  font: inherit;
  text-align: center;
  cursor: pointer;
}
.native-hud-card:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}
.native-hud-card.has-app-icon::before {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: -1;
  background-image: linear-gradient(#00000047, #00000047), var(--app-icon);
  background-size: cover;
  background-position: center;
  filter: saturate(1.35) contrast(1.08) blur(5px);
}
.native-hud-card:hover { filter: brightness(1.12); }
.native-hud-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  font-size: max(10px, 2.304cqw);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.native-hud-label {
  font: 500 max(7px, 1.613cqw)/1.25 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  white-space: nowrap;
}
.native-hud-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.38cqw;
  margin-top: 2.76cqw;
  color: var(--hud-accent);
  font-size: max(9px, 2.074cqw);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.native-hud-footer > :first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.native-hud-footer > :last-child, .native-hud-footer > :nth-child(2) {
  flex-shrink: 0;
  color: #c4c4ce;
  font: 600 max(8px, 1.843cqw)/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.native-hud-footer .has-feedback { color: #5cc7ff; }
.native-hud[data-style="keypad"] .native-hud-card {
  background: #ffffff0a;
  border: 1.5px solid #ffffff14;
}
.native-hud[data-style="keypad"] .native-hud-card[aria-pressed="true"] {
  background: color-mix(in srgb, var(--hud-accent) 16%, transparent);
  border-color: var(--hud-accent);
}
.native-hud[data-style="keypad"] .native-hud-card.is-held { background: color-mix(in srgb, var(--hud-accent) 28%, transparent); }
.native-hud[data-style="keypad"] .native-hud-card.is-exit { color: var(--hud-accent); }
.native-hud[data-style="keypad"] .native-hud-title { font-size: 3.45cqw; }
.native-hud-cycle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  font: 600 max(10px, 2.53cqw)/1.15 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.native-hud-cycle > span { border-radius: 4px; padding: 1px 2px; }
.native-hud-cycle .is-current { background: var(--hud-accent); color: white; }
.native-hud-cycle.is-dense { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 1px; width: 100%; font-size: max(8px, 1.69cqw); }
.native-hud-cycle.is-dense > span { padding: 0; }
.native-hud-hold { color: #bbb9c5; font-size: max(7px, 1.84cqw); }
.native-hud-hidden {
  min-height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: #c4c0cd;
  border: 1px solid #55505e;
  border-radius: 20px;
  font-size: 12px;
}
.native-hud-hidden button {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #756c81;
  background: #3c3449;
  color: white;
  font: inherit;
}
.hud-demo .hud-hand { justify-content: flex-end; margin-bottom: 12px; }
.control-copy:has(.native-preview) { padding-block: 35px; }
.control-copy:has(.native-preview) h2 { font-size: clamp(36px, 3.15vw, 50px); margin-block: 14px; }
.control-copy:has(.native-preview) .control-description { font-size: 12px; line-height: 1.55; }
.control-copy:has(.native-preview) .hand-switch { margin-top: 14px; }
.control-copy:has(.native-preview) .sim-app { margin-top: 12px; }

@media (max-width: 760px) {
  .scene-result { position: relative; inset: auto; margin-top: 8px; }
  .scene-wrap .scene-origin { display: none; }
  .native-hud-title { font-size: max(8.5px, 2.304cqw); }
  .scene-wrap { height: auto; }
  .scene-wrap .scene-toolbar { position: relative; }
  .scene-wrap .scene-origin {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin: 16px 0 0;
  }
  .scene-wrap .scene-model {
    position: relative;
    height: 300px;
  }
  .scene-wrap .scene-model canvas,
  .scene-wrap .scene-controls { inset: 0; }
  .scene-fallback .scene-controls { padding: 12px 16px; }
  .scene-wrap .sim-output {
    position: relative;
    inset: auto;
    margin: 0;
  }
  .scene-wrap .scene-meta {
    position: relative;
    bottom: auto;
    margin: 18px 0 0;
  }
}

.creator-end .release-status { font-size: 13px; margin-top: 24px; }

[data-app-download][hidden] { display: none; }

/* The authored particle field stays behind every existing mouse control. */
.hero-galaxy { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .95; mask-image: linear-gradient(#000 70%, transparent); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 30%, #090b1077, transparent 58%); }
.hero-products, .hero-rotation-hint { position: relative; z-index: 2; }
.hero-content { text-shadow: 0 2px 24px #090b10; }
.hero h1 span { color: #c7d4ec; }
@media (max-width: 760px) { .hero-galaxy { opacity: .6; } }

.site-nav .nav-beta { padding: 13px 20px; background: #e8d6b6; color: #221c14; border-radius: 30px; font-size: 13px; font-weight: 800; box-shadow: 0 0 25px #e8d6b614; }
@media (max-width: 760px) { .site-nav .nav-beta { padding: 11px 13px; font-size: 11px; } .site-nav .nav-explore, .site-nav .nav-setup, .site-nav .nav-source { display: none; } }

@media (max-width: 760px) { .site-nav .brand { font-size: 14px; gap: 8px; } .site-nav .nav-inner { gap: 10px; } }

.hero-product[data-mouse="razer"] > img { width: 100%; height: 100%; object-fit: contain; transform: none; } /* Use the transparent top photograph while its model loads or WebGL is unavailable. */

/* Link to the separate personal site instead of repeating its full room-photo section. */
.setup-preview-section { padding: 48px 0; background: var(--paper); }
.setup-preview { display: flex; align-items: center; gap: 24px; width: 100%; max-width: 700px; margin: auto; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--night); color: var(--ink); text-decoration: none; }
.setup-preview img { width: 190px; height: auto; flex: 0 0 auto; border-radius: 10px; }
.setup-preview-copy { display: grid; gap: 8px; min-width: 0; }
.setup-preview-copy strong { font-size: 28px; font-weight: 650; letter-spacing: -.04em; }
.setup-preview-copy > span { color: #b1b7c9; font-size: 12px; overflow-wrap: anywhere; }
.setup-preview-arrow { margin-left: auto; padding-right: 8px; font-size: 25px; color: #d3c1ff; }
.setup-preview:hover, .setup-preview:focus-visible { border-color: #b3a6e2; }
@media (max-width: 760px) {
  .setup-preview-section { padding: 32px 0; }
  .setup-preview { gap: 14px; padding: 12px; border-radius: 14px; }
  .setup-preview img { width: 104px; }
  .setup-preview-copy strong { font-size: 21px; }
  .setup-preview-copy > span { font-size: 11px; }
  .setup-preview-arrow { padding: 0; font-size: 20px; }
}
