:root {
  --bg: #050814;
  --bg-soft: #0a1020;
  --panel: rgba(10, 16, 31, 0.76);
  --panel-strong: rgba(8, 12, 24, 0.94);
  --text: #f3f7ff;
  --muted: rgba(243, 247, 255, 0.72);
  --line: rgba(116, 230, 255, 0.14);
  --accent: #74e6ff;
  --accent-2: #7a73ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(116, 230, 255, 0.16), transparent 22%),
    radial-gradient(circle at top right, rgba(122, 115, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #02040a 0%, #050915 35%, #050814 100%);
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 46%, transparent 96%);
}

.container {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 17, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.24);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-core {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: linear-gradient(135deg, #6fd4ff, #4f79ff);
  transform: rotate(-45deg);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 0 0 10px rgba(116, 230, 255, 0.08), 0 0 24px rgba(79, 121, 255, 0.24);
}

.brand-core::before,
.brand-core::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6fd4ff, #4f79ff);
}

.brand-core::before {
  top: -8px;
  left: 0;
}

.brand-core::after {
  top: 0;
  left: 8px;
}

.brand-text {
  display: grid;
}

.brand-text strong,
.hero h1,
.section-head h2,
.future-copy h2,
.summary-copy h2,
.display-title {
  font-family: "Candara", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
}

.brand-text strong {
  font-size: 1.04rem;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.brand-text small {
  font-size: 0.76rem;
  color: rgba(243, 247, 255, 0.62);
  letter-spacing: -0.01em;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(243, 247, 255, 0.74);
  font-size: 0.95rem;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.topnav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(116, 230, 255, 0.24);
}

.hero {
  padding: 24px 0 20px;
}

.hero-grid,
.future-grid,
.summary-grid,
.display-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 30px;
  align-items: center;
}

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

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(116, 230, 255, 0.1);
  border: 1px solid rgba(116, 230, 255, 0.16);
  color: #bff6ff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1,
.section-head h2,
.future-copy h2,
.summary-copy h2,
.display-title {
  margin: 16px 0 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 11ch;
}

.hero-text,
.section-copy,
.future-copy p,
.summary-copy p,
.display-summary,
.display-block p,
.display-reasons li,
.signal-card span {
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.98rem;
}

.hero-text {
  max-width: 58ch;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111b;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(116, 230, 255, 0.18);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 700;
}

.primary-btn:hover,
.ghost-btn:hover,
.product-card:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong,
.summary-box strong,
.display-price-row strong {
  display: block;
  font-size: 1.12rem;
}

.hero-stats span,
.summary-box span,
.display-price-row span {
  display: block;
  margin-top: 6px;
  color: rgba(243, 247, 255, 0.58);
  font-size: 0.82rem;
}

.hero-stage {
  min-height: 500px;
  max-width: 880px;
  margin: 0 auto;
}

.stage-shell {
  position: relative;
  min-height: 500px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(116, 230, 255, 0.16);
  background:
    radial-gradient(circle at center, rgba(116, 230, 255, 0.2), transparent 24%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    rgba(8, 12, 28, 0.92);
  box-shadow: var(--shadow);
}

.stage-grid,
.display-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.stage-rings,
.console-orbit,
.display-orbits {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(116, 230, 255, 0.18);
  box-shadow: 0 0 0 30px rgba(116, 230, 255, 0.05), 0 0 0 80px rgba(122, 115, 255, 0.04);
  animation: spinSlow 16s linear infinite;
}

.stage-rings::before,
.stage-rings::after,
.console-orbit::before,
.console-orbit::after,
.display-orbits::before,
.display-orbits::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-rings::after,
.console-orbit::after,
.display-orbits::after {
  inset: 66px;
}

.stage-core,
.display-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(6, 10, 18, 0.92);
  border: 1px solid rgba(116, 230, 255, 0.18);
  box-shadow: inset 0 0 34px rgba(116, 230, 255, 0.1), 0 0 60px rgba(116, 230, 255, 0.16);
}

.stage-core small,
.display-core small,
.stage-note small,
.console-card small {
  display: block;
  color: rgba(243, 247, 255, 0.56);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stage-core strong {
  display: block;
  margin-top: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
}

.stage-core span {
  display: block;
  margin-top: 8px;
  color: rgba(243, 247, 255, 0.72);
  font-size: 0.82rem;
}

.stage-note,
.console-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 13, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.stage-note strong,
.console-card strong {
  display: block;
  margin-top: 6px;
}

.stage-note-left {
  left: 20px;
  bottom: 24px;
}

.stage-note-right {
  right: 20px;
  top: 24px;
}

.catalog-section {
  padding: 32px 0 40px;
}

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

.signal-card,
.product-card,
.summary-box,
.console-panel,
.display-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.signal-card {
  padding: 18px;
  border-radius: 22px;
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head h2,
.future-copy h2,
.summary-copy h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  max-width: 16ch;
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.section-note {
  max-width: 56ch;
  margin: 14px 0 0;
  color: rgba(243, 247, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 410px;
  padding: 20px;
  border-radius: 30px;
  cursor: pointer;
  color: var(--text);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--tone-a) 22%, transparent), transparent 40%),
    radial-gradient(circle at bottom left, color-mix(in srgb, var(--tone-b) 14%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    rgba(10, 16, 31, 0.92);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-card::before {
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.04));
  opacity: 0.65;
}

.product-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 26%, transparent 72%, rgba(255, 255, 255, 0.05));
  opacity: 0.88;
}

.product-top,
.product-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Bahnschrift", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-brand {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-symbol-wrap {
  position: relative;
  z-index: 1;
  height: 194px;
  display: grid;
  place-items: center;
  margin: 18px 0 18px;
}

.product-symbol-wrap::before,
.display-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  height: 78%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--tone-a) 30%, transparent), transparent 76%);
  filter: blur(8px);
  opacity: 0.72;
}

.product-symbol-wrap::after,
.display-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--tone-a) 32%, transparent), transparent 72%);
  border: 1px solid color-mix(in srgb, var(--tone-a) 28%, transparent);
}

.display-stage::after {
  width: 220px;
  height: 28px;
  bottom: 72px;
}

.product-symbol-wrap .object-svg {
  width: 126px;
  height: 126px;
}

.product-photo-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 178px;
  padding: 14px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 32px rgba(0, 0, 0, 0.2);
}

.product-photo-shell::before {
  content: "";
  position: absolute;
  inset: 20% 16%;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--tone-a) 28%, transparent), transparent 72%);
  filter: blur(20px);
  opacity: 0.92;
}

.product-photo-shell::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 14px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--tone-a) 30%, transparent), transparent 68%);
  opacity: 0.82;
}

.product-photo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 156px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px color-mix(in srgb, var(--tone-a) 32%, transparent))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.3));
  transition: transform 220ms ease, filter 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 230, 255, 0.18);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(116, 230, 255, 0.08);
}

.product-card:hover .product-photo {
  transform: translateY(-4px) scale(1.03);
  filter:
    drop-shadow(0 0 26px color-mix(in srgb, var(--tone-a) 42%, transparent))
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.34));
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.product-summary {
  position: relative;
  z-index: 1;
  margin: 10px 0 20px;
  color: rgba(243, 247, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.62;
}

.product-bottom {
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-bottom strong {
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}

.product-bottom span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(243, 247, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.future-grid,
.summary-grid {
  align-items: stretch;
}

.console-panel {
  position: relative;
  min-height: 340px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(116, 230, 255, 0.16), transparent 24%),
    rgba(8, 13, 28, 0.9);
}

.console-orbit {
  width: 260px;
  height: 260px;
}

.console-card {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.console-card span {
  display: block;
  margin-top: 8px;
  color: rgba(243, 247, 255, 0.66);
  line-height: 1.7;
}

.summary-box {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
}

.summary-box div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-box div:first-child {
  padding-top: 0;
  border-top: 0;
}

.display-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.display-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.display-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 10, 0.8);
  backdrop-filter: blur(12px);
}

.display-panel {
  --tone-a: #74e6ff;
  --tone-b: #7a73ff;
  position: relative;
  width: min(100%, 1120px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--tone-a) 22%, transparent), transparent 30%),
    radial-gradient(circle at top right, color-mix(in srgb, var(--tone-b) 24%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(8, 12, 24, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms ease;
}

.display-modal.is-open .display-panel {
  transform: translateY(0) scale(1);
}

.display-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.8rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.display-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(116, 230, 255, 0.22);
}

.display-layout {
  min-height: 700px;
}

.display-stage {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    rgba(6, 10, 22, 0.92);
}

.display-scan {
  animation: pulseGrid 4.2s linear infinite;
}

.display-orbits {
  width: 420px;
  height: 420px;
  border-color: color-mix(in srgb, var(--tone-a) 34%, transparent);
}

.display-core {
  width: 250px;
  height: 250px;
  border-color: color-mix(in srgb, var(--tone-a) 44%, transparent);
  box-shadow:
    inset 0 0 34px color-mix(in srgb, var(--tone-a) 16%, transparent),
    0 0 80px color-mix(in srgb, var(--tone-a) 20%, transparent);
}

.display-code {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.9rem;
  color: rgba(243, 247, 255, 0.78);
}

.display-object {
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  color: var(--tone-a);
  filter: drop-shadow(0 0 30px color-mix(in srgb, var(--tone-a) 56%, transparent));
  animation: floatObject 5.2s ease-in-out infinite;
}

.display-photo-stack {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.display-photo-stack::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--tone-a) 90%, white), transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--tone-a) 36%, transparent);
}

.display-photo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.display-photo-back {
  position: absolute;
  inset: auto;
  z-index: 0;
  opacity: 0.4;
  transform: scale(1.08);
  filter: blur(18px) brightness(1.28) saturate(1.18);
  mix-blend-mode: screen;
}

.object-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.object-svg rect,
.object-svg circle {
  fill: currentColor;
  fill-opacity: 0.1;
  stroke: currentColor;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.object-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.display-info {
  position: relative;
  padding: 64px 30px 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%);
}

.display-info::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--tone-a) 92%, white), color-mix(in srgb, var(--tone-b) 76%, white));
}

.display-brand {
  margin: 10px 0 0;
  color: color-mix(in srgb, var(--tone-a) 78%, white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.display-title {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  max-width: 10ch;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.display-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.display-summary {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(243, 247, 255, 0.8);
}

.display-block {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.display-block h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(243, 247, 255, 0.96);
}

.display-reasons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.display-reasons li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.display-reasons li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tone-a) 94%, white), color-mix(in srgb, var(--tone-b) 80%, white));
  box-shadow: 0 0 18px color-mix(in srgb, var(--tone-a) 32%, transparent);
}

.display-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.display-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 247, 255, 0.9);
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.trust-section {
  padding: 8px 0 28px;
}

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

.trust-item,
.footer-shell {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(116, 230, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.trust-item::before,
.footer-shell::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(116, 230, 255, 0.96), rgba(122, 115, 255, 0.88));
}

.trust-item small,
.footer-intro small {
  display: block;
  margin-top: 10px;
  color: rgba(243, 247, 255, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item strong,
.footer-intro h3 {
  display: block;
  margin-top: 12px;
  color: rgba(243, 247, 255, 0.98);
  font-family: "Candara", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  letter-spacing: -0.03em;
}

.trust-item strong {
  font-size: 1.18rem;
}

.footer-intro h3 {
  margin-bottom: 0;
  font-size: 1.42rem;
}

.trust-item p,
.faq-answer p {
  color: rgba(243, 247, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.68;
}

.trust-item p,
.faq-answer p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 0 0 42px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-trigger {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 56px 18px 18px;
  color: rgba(243, 247, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.faq-trigger::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(243, 247, 255, 0.84);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] .faq-trigger::after {
  content: "−";
  background: rgba(116, 230, 255, 0.12);
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes spinSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulseGrid {
  0%,
  100% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes floatObject {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-grid,
  .future-grid,
  .summary-grid,
  .display-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .display-stage {
    min-height: 520px;
  }

  .display-stage {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 780px) {
  .topbar-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    gap: 10px 12px;
  }

  .signal-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-stage,
  .stage-shell,
  .display-stage {
    min-height: 430px;
  }

  .stage-rings,
  .display-orbits,
  .console-orbit {
    width: 280px;
    height: 280px;
  }

  .stage-core,
  .display-core {
    width: 180px;
    height: 180px;
  }

  .display-object {
    width: 180px;
    height: 180px;
  }

  .display-info {
    padding: 56px 20px 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), 1180px);
  }

  .hero h1,
  .section-head h2,
  .future-copy h2,
  .summary-copy h2,
  .display-title {
    font-size: 2rem;
  }

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

  .product-card {
    min-height: 380px;
  }

  .display-modal {
    padding: 12px;
  }

}
