:root {
  --bg: #020711;
  --bg-soft: #06111f;
  --panel: rgba(7, 19, 34, 0.82);
  --panel-strong: rgba(10, 28, 49, 0.94);
  --line: rgba(126, 210, 255, 0.22);
  --line-strong: rgba(126, 210, 255, 0.42);
  --text: #edf8ff;
  --muted: #9fb5c6;
  --dim: #668196;
  --cyan: #19d9ff;
  --blue: #2d82ff;
  --amber: #ffbd4a;
  --green: #59e0a7;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #020711 0%, #06111f 48%, #020711 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 217, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 217, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 78%);
}

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  margin: 0;
  border: 1px solid rgba(126, 210, 255, 0.16);
  border-radius: 18px;
  padding: 9px 14px;
  background: rgba(2, 9, 18, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
}

main {
  padding-top: 88px;
}

.brand,
.final-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(25, 217, 255, 0.72);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(25, 217, 255, 0.2), rgba(45, 130, 255, 0.1)),
    #041321;
  box-shadow: 0 0 34px rgba(25, 217, 255, 0.23), inset 0 0 20px rgba(25, 217, 255, 0.12);
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 900;
}

.brand-mark.large {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  font-size: 2rem;
}

.brand-text {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-nav a {
  color: #dcecf7;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(126, 210, 255, 0.34);
  border-radius: 12px;
  padding: 0 20px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  border-color: rgba(25, 217, 255, 0.8);
  background: linear-gradient(135deg, #17d6ff, #1984ff);
  color: #00111b;
  box-shadow: 0 14px 42px rgba(25, 217, 255, 0.24);
}

.button-secondary {
  background: rgba(7, 19, 34, 0.62);
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: currentColor;
}

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

.button-secondary:hover {
  border-color: rgba(25, 217, 255, 0.66);
  background: rgba(18, 47, 75, 0.72);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 19, 34, 0.76);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.launch-modal.is-hidden {
  display: none;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 38%, rgba(25, 217, 255, 0.16), transparent 32%),
    rgba(0, 4, 10, 0.72);
  backdrop-filter: blur(10px);
}

.launch-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid rgba(126, 210, 255, 0.3);
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(13, 34, 57, 0.96), rgba(4, 13, 25, 0.98)),
    rgba(4, 13, 25, 0.96);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58), 0 0 50px rgba(25, 217, 255, 0.12);
}

.launch-modal-card h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.launch-modal-card p {
  margin-bottom: 14px;
}

.launch-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.launch-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(126, 210, 255, 0.22);
  border-radius: 50%;
  background: rgba(2, 7, 17, 0.58);
  cursor: pointer;
}

.launch-modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.launch-modal-close span:first-child {
  transform: rotate(45deg);
}

.launch-modal-close span:last-child {
  transform: rotate(-45deg);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 96px);
  padding: 34px 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  border: 1px solid rgba(126, 210, 255, 0.2);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(8, 28, 48, 0.72);
  color: #8deeff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 4.15rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span,
h2 span,
.section-heading h2 strong {
  color: var(--cyan);
}

h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 14px;
  color: #d6e6f1;
  font-size: 1.06rem;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.value-chips,
.screen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-chips span,
.screen-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(7, 19, 34, 0.68);
  color: #c6d9e6;
  font-size: 0.82rem;
}

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

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(180px, 0.36fr);
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 210, 255, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 217, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(16, 39, 64, 0.62), rgba(4, 12, 24, 0.92));
  box-shadow: var(--shadow);
}

.showcase-card-main {
  grid-row: 1 / span 2;
  padding: 18px;
}

.showcase-card-secondary {
  padding: 12px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
}

.showcase-card-main img {
  max-height: 680px;
  object-fit: contain;
  background: rgba(2, 7, 17, 0.74);
}

.showcase-card-secondary img {
  min-height: 236px;
  max-height: 286px;
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(2, 7, 17, 0.92));
}

.mode-kicker {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 2;
  min-width: 210px;
  transform: translateX(-50%);
  border: 1px solid rgba(25, 217, 255, 0.36);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(3, 17, 31, 0.76);
  color: #8deeff;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.showcase-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 16px;
  padding: 14px;
  background: rgba(3, 12, 24, 0.76);
  backdrop-filter: blur(14px);
}

.showcase-caption strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.2;
}

.showcase-caption p {
  margin-bottom: 0;
  color: #c8ddeb;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-installation,
.product-frame,
.narrative,
.bridge-section,
.installation-section,
.screens-section,
.settings-section,
.pricing-section,
.roadmap-section {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 39, 64, 0.62), rgba(4, 12, 24, 0.88)),
    rgba(6, 17, 31, 0.8);
  box-shadow: var(--shadow);
}

.hero-installation {
  position: relative;
  min-width: 0;
  min-height: 520px;
  height: min(64vh, 700px);
  overflow: hidden;
  border-radius: 28px;
}

.hero-installation::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.04) 30%, rgba(2, 7, 17, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 7, 17, 0.5), transparent 42%, rgba(2, 7, 17, 0.16));
}

.hero-installation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.installation-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  border: 1px solid rgba(126, 210, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: rgba(3, 12, 24, 0.72);
  backdrop-filter: blur(16px);
}

.installation-caption span,
.wide-installation figcaption span {
  display: block;
  color: #8deeff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.installation-caption strong,
.wide-installation figcaption strong {
  display: block;
  margin: 5px 0 6px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.installation-caption p {
  margin-bottom: 12px;
  color: #d7e8f4;
  font-size: 0.9rem;
}

.install-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.install-badges b {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border: 1px solid rgba(25, 217, 255, 0.28);
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(4, 21, 37, 0.7);
  color: #c9f5ff;
  font-size: 0.72rem;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 52px 28px 28px;
}

.product-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, transparent 64%);
  opacity: 0.5;
}

.frame-label {
  position: absolute;
  top: 14px;
  left: 50%;
  min-width: 150px;
  min-height: 30px;
  transform: translateX(-50%);
  border: 1px solid rgba(126, 210, 255, 0.24);
  border-radius: 999px;
  padding: 6px 16px;
  background: rgba(10, 30, 50, 0.88);
  color: #cdefff;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.now-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.poster-card,
.movie-panel,
.coming-card,
.source-card,
.bridge-grid article,
.feature-grid article,
.preview-card,
.control-grid article,
.use-grid article,
.pricing-grid article,
.roadmap-grid article {
  border: 1px solid rgba(126, 210, 255, 0.17);
  background: linear-gradient(180deg, rgba(12, 31, 52, 0.84), rgba(5, 14, 26, 0.9));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.poster-card {
  overflow: hidden;
  border-radius: 16px;
}

.poster-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 376px;
  padding: 24px 18px;
  overflow: hidden;
  isolation: isolate;
}

.poster-art::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 36%, rgba(0, 0, 0, 0.46));
}

.poster-art::after {
  position: absolute;
  inset: auto 16% 22% 16%;
  z-index: -1;
  height: 44%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 120px 120px 18px 18px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
  opacity: 0.72;
}

.poster-art span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.8);
}

.horizon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, #7f9fb2, #172b3e 38%, #050912 100%);
}

.ember {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #ff9d45, #5b1722 48%, #06101f);
}

.neon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, #34f4ff, #2448c8 46%, #150727);
}

.copper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, #ffc15c, #723f26 44%, #070912);
}

.movie-panel {
  border-radius: 16px;
  padding: 22px;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 12px;
  border: 1px solid rgba(25, 217, 255, 0.26);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.movie-panel h2 {
  margin-bottom: 8px;
  font-size: 2.05rem;
}

.meta-row,
.rating-row,
.tech-badges,
.progress-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span,
.rating-row strong,
.tech-badges span,
.poster-copy b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 7px;
  padding: 0 9px;
  background: rgba(2, 7, 17, 0.62);
  color: #c5d9e7;
  font-size: 0.74rem;
}

.rating-row {
  margin: 18px 0;
}

.rating-row strong:first-child,
.poster-copy b:first-child {
  border-color: rgba(255, 189, 74, 0.38);
  color: var(--amber);
}

.rating-row strong:last-child,
.poster-copy b:last-child {
  border-color: rgba(25, 217, 255, 0.34);
  color: var(--cyan);
}

.tech-badges {
  margin: 18px 0;
}

.progress-wrap {
  margin-top: 18px;
}

.progress-meta {
  justify-content: space-between;
  color: #bdd4e4;
  font-size: 0.74rem;
}

.progress-track,
.mini-progress {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(126, 210, 255, 0.12);
}

.progress-track span,
.mini-progress span {
  display: block;
  width: 57%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px rgba(25, 217, 255, 0.5);
}

.trailer-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(126, 210, 255, 0.17);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 189, 74, 0.34), rgba(25, 217, 255, 0.12), rgba(68, 41, 120, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.42));
  color: #e9f7ff;
  font-weight: 800;
}

.play-chip {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(2, 7, 17, 0.62);
}

.play-chip svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

.narrative,
.bridge-section,
.installation-section,
.screens-section,
.settings-section,
.pricing-section,
.roadmap-section {
  border-radius: 24px;
  margin-top: 24px;
  padding: 44px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.row-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: 34px;
  align-items: end;
  max-width: none;
}

.compact {
  max-width: 390px;
  margin-bottom: 0;
}

.steps-grid,
.bridge-grid,
.feature-grid,
.preview-grid,
.control-grid,
.roadmap-grid,
.pricing-grid,
.use-grid,
.source-grid {
  display: grid;
  gap: 16px;
}

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

.steps-grid article {
  min-height: 230px;
  border-left: 1px solid rgba(126, 210, 255, 0.22);
  padding: 0 0 0 22px;
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 900;
}

.coming-soon {
  margin-top: 24px;
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(25, 217, 255, 0.05), rgba(255, 189, 74, 0.03), rgba(45, 130, 255, 0.06));
  scroll-margin-top: 110px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 32px;
  align-items: center;
}

.poster-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.coming-visuals {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(240px, 1fr);
  gap: 18px;
  align-items: center;
}

.coming-feature-image,
.portal-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 210, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 39, 64, 0.62), rgba(4, 12, 24, 0.92));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.coming-feature-image {
  width: 100%;
  max-width: 300px;
  min-height: 0;
  justify-self: center;
}

.coming-feature-image::after,
.portal-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(2, 7, 17, 0.9));
}

.coming-feature-image img,
.coming-feature-image video,
.portal-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.coming-feature-video video {
  background: #020711;
}

.coming-feature-video {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.coming-feature-video::after {
  display: none;
}

.coming-feature-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 310 / 608;
  border: 1px solid rgba(126, 210, 255, 0.28);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.coming-feature-image figcaption,
.portal-preview figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 16px;
  padding: 16px;
  background: rgba(3, 12, 24, 0.76);
  backdrop-filter: blur(14px);
}

.coming-feature-image figcaption {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
}

.coming-feature-image figcaption span,
.portal-preview figcaption span {
  display: block;
  color: #8deeff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coming-feature-image figcaption strong,
.portal-preview figcaption strong {
  display: block;
  margin: 6px 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.coming-feature-image figcaption strong {
  font-size: 0.95rem;
}

.coming-feature-image figcaption p,
.portal-preview figcaption p {
  margin-bottom: 0;
  color: #c8ddeb;
  font-size: 0.88rem;
}

.coming-feature-image figcaption p {
  font-size: 0.76rem;
  line-height: 1.45;
}

.mode-notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mode-notes-grid article {
  min-height: 104px;
  border: 1px solid rgba(126, 210, 255, 0.17);
  border-radius: 18px;
  padding: 17px;
  background: linear-gradient(180deg, rgba(12, 31, 52, 0.84), rgba(5, 14, 26, 0.9));
}

.mode-notes-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.wide-installation {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: rgba(5, 14, 26, 0.9);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.wide-installation::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(2, 7, 17, 0.8));
}

.wide-installation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-installation figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.wide-installation figcaption strong {
  margin-bottom: 3px;
}

.coming-card {
  overflow: hidden;
  border-radius: 18px;
  transform: scale(0.94);
  opacity: 0.82;
}

.coming-card.featured {
  transform: scale(1);
  opacity: 1;
  border-color: var(--line-strong);
  box-shadow: 0 24px 70px rgba(25, 217, 255, 0.16);
}

.coming-card .poster-art {
  min-height: 330px;
}

.poster-copy {
  padding: 14px;
}

.poster-copy strong,
.poster-copy span {
  display: block;
}

.poster-copy span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.poster-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.source-card {
  min-height: 220px;
  border-radius: 18px;
  padding: 20px;
}

.source-card.active {
  border-color: rgba(25, 217, 255, 0.28);
}

.source-card.planned {
  border-color: rgba(255, 189, 74, 0.2);
}

.source-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(126, 210, 255, 0.24);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(25, 217, 255, 0.18), rgba(255, 189, 74, 0.08));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.source-card small {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(126, 210, 255, 0.17);
  border-radius: 999px;
  padding: 2px 9px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-card.planned small {
  color: var(--amber);
}

.source-card p,
.feature-grid p,
.bridge-grid p,
.use-grid p,
.pricing-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

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

.bridge-grid article,
.feature-grid article,
.control-grid article,
.use-grid article,
.pricing-grid article,
.roadmap-grid article {
  border-radius: 18px;
  padding: 22px;
}

.bridge-grid article {
  min-height: 170px;
}

.installation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.installation-wide,
.installation-tall {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 210, 255, 0.22);
  border-radius: 24px;
  background: rgba(5, 14, 26, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.installation-wide {
  min-height: 520px;
}

.installation-tall {
  min-height: 520px;
}

.installation-wide::after,
.installation-tall::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, rgba(2, 7, 17, 0.9)),
    linear-gradient(90deg, rgba(2, 7, 17, 0.42), transparent 52%);
}

.installation-wide img,
.installation-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.installation-wide img {
  object-position: center center;
}

.installation-tall img {
  object-position: center center;
}

.installation-wide figcaption,
.installation-tall figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(3, 12, 24, 0.74);
  backdrop-filter: blur(16px);
}

.installation-wide figcaption span,
.installation-tall figcaption span {
  display: block;
  color: #8deeff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.installation-wide figcaption strong,
.installation-tall figcaption strong {
  display: block;
  margin: 6px 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.installation-wide figcaption p,
.installation-tall figcaption p {
  margin-bottom: 0;
  color: #d1e3ef;
  font-size: 0.9rem;
}

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

.feature-grid article {
  min-height: 168px;
}

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

.preview-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 18px;
  padding: 22px;
}

.image-preview {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 420px;
}

.image-preview img {
  width: 100%;
  height: 320px;
  border: 1px solid rgba(126, 210, 255, 0.18);
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  background: rgba(2, 7, 17, 0.74);
}

.image-preview.dashboard-preview img {
  height: 320px;
  object-position: left top;
}

.image-preview strong,
.image-preview span {
  display: block;
}

.image-preview strong {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.image-preview span {
  color: var(--muted);
  font-size: 0.9rem;
}

.preview-card small {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #d8ebf8;
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-top {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
}

.mini-poster {
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, #ffaa3c, #443fd5 46%, #07101e);
}

.mini-copy strong,
.music-preview strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.mini-copy span,
.music-preview span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.music-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.album-disc {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.24) 49%, transparent 54%),
    linear-gradient(135deg, #f7fbff, #101421 28%, #e6c36b 48%, #151a28 66%, #f4f8ff);
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.45);
}

.settings-preview {
  display: flex;
  align-items: center;
}

.settings-lines {
  width: 100%;
}

.settings-lines span {
  display: block;
  height: 28px;
  margin: 12px 0;
  border: 1px solid rgba(126, 210, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(25, 217, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.screen-tags {
  margin-top: 18px;
}

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

.settings-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  margin-bottom: 18px;
}

.portal-preview {
  min-height: 360px;
}

.login-preview img {
  object-position: center center;
}

.control-preview img {
  object-position: left top;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: var(--muted);
}

li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(25, 217, 255, 0.6);
  content: "";
}

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

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

.pricing-grid article:first-child {
  border-color: rgba(25, 217, 255, 0.42);
  box-shadow: 0 24px 70px rgba(25, 217, 255, 0.13);
}

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

.final-cta {
  padding: 34px 0 64px;
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(230px, 0.4fr);
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(16, 43, 70, 0.94), rgba(4, 13, 25, 0.94));
  box-shadow: var(--shadow);
}

.final-brand h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.final-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.final-points li {
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: rgba(3, 10, 20, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 42px;
    padding: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-preview,
  .hero-showcase,
  .hero-installation {
    max-width: 780px;
  }

  .steps-grid,
  .source-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .row-heading,
  .split-section {
    grid-template-columns: 1fr;
  }

  .coming-visuals {
    grid-template-columns: minmax(220px, 320px) minmax(220px, 1fr);
  }

  .compact {
    max-width: none;
  }

  .now-layout,
  .bridge-grid,
  .installation-grid,
  .preview-grid,
  .control-grid,
  .settings-showcase,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .installation-wide,
  .installation-tall {
    min-height: 430px;
  }

  .poster-carousel {
    grid-template-columns: 1fr;
  }

  .coming-card {
    transform: none;
  }

  .coming-card.featured {
    transform: none;
  }

  .poster-art,
  .coming-card .poster-art {
    min-height: 300px;
  }

  .narrative,
  .bridge-section,
  .installation-section,
  .screens-section,
  .settings-section,
  .pricing-section,
  .roadmap-section {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    gap: 32px;
    padding-top: 24px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showcase-card-main {
    grid-row: auto;
  }

  .showcase-card-secondary img {
    min-height: 320px;
    max-height: 380px;
  }

  .mode-kicker {
    top: 20px;
    min-width: 190px;
    font-size: 0.62rem;
  }

  .showcase-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }

  .hero-installation {
    min-height: 460px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
  }

  .installation-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .product-frame {
    border-radius: 18px;
    padding: 48px 16px 16px;
  }

  .movie-panel {
    padding: 18px;
  }

  .movie-panel h2 {
    font-size: 1.65rem;
  }

  .coming-feature-image {
    max-width: 300px;
  }

  .coming-visuals {
    grid-template-columns: 1fr;
  }

  .image-preview {
    min-height: auto;
  }

  .image-preview img,
  .image-preview.dashboard-preview img {
    height: 300px;
  }

  .portal-preview {
    min-height: 300px;
  }

  .installation-wide,
  .installation-tall {
    min-height: 360px;
    border-radius: 20px;
  }

  .installation-wide figcaption,
  .installation-tall figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .steps-grid,
  .source-grid,
  .feature-grid,
  .pricing-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: auto;
  }

  .preview-top {
    grid-template-columns: 88px 1fr;
  }

  .final-brand {
    align-items: flex-start;
  }

  .brand-mark.large {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.6rem;
  }
}
