@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-top: #060815;
  --bg-mid: #091127;
  --bg-bottom: #060713;
  --panel: rgba(12, 18, 39, 0.82);
  --panel-strong: rgba(9, 14, 31, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(137, 232, 255, 0.18);
  --line-strong: rgba(137, 232, 255, 0.34);
  --text-main: #f7f8ff;
  --text-soft: #a2afcf;
  --text-dim: #7d89a9;
  --pink: #ff3fd2;
  --cyan: #49e8ff;
  --lime: #c9ff5e;
  --gold: #ffe36a;
  --orange: #ff8a3d;
  --shadow-xl: 0 26px 100px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 42px rgba(73, 232, 255, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 63, 210, 0.2), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(73, 232, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(201, 255, 94, 0.11), transparent 30%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 46%, var(--bg-bottom) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  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: 46px 46px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 90%);
  opacity: 0.28;
  pointer-events: none;
}

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

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

main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 18, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 63, 210, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

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

.nav a.nav-download {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  overflow: hidden;
  color: #f8fbff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 63, 210, 0.18), transparent 32%),
    radial-gradient(circle at 84% 45%, rgba(73, 232, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(16, 20, 39, 0.96), rgba(6, 9, 20, 0.98));
  border: 1px solid rgba(73, 232, 255, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 20px rgba(255, 63, 210, 0.1),
    0 0 0 1px rgba(255, 63, 210, 0.14),
    0 0 16px rgba(73, 232, 255, 0.26),
    0 0 26px rgba(255, 63, 210, 0.18);
  text-shadow:
    0 0 8px rgba(73, 232, 255, 0.42),
    0 0 16px rgba(255, 63, 210, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.nav a.nav-download::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(255, 63, 210, 0.16), rgba(73, 232, 255, 0.08) 52%, rgba(8, 11, 22, 0.18));
}

.nav a.nav-download::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 7px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0.85;
}

.nav a.nav-download:hover,
.nav a.nav-download:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  border-color: rgba(73, 232, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 24px rgba(255, 63, 210, 0.12),
    0 0 0 1px rgba(255, 63, 210, 0.18),
    0 0 20px rgba(73, 232, 255, 0.34),
    0 0 32px rgba(255, 63, 210, 0.24);
}

.page-main {
  padding-bottom: 92px;
}

.section-tight {
  padding-top: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 34px;
  padding: 68px 0 40px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(73, 232, 255, 0.09);
  border: 1px solid rgba(73, 232, 255, 0.22);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title,
.page-title,
.section-title {
  margin: 18px 0 16px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.display-title {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.lead,
.page-lead,
.section-copy,
.prose p,
.prose li {
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.cta-row,
.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-store-badge {
  width: 212px;
  max-width: 100%;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.45));
}

.app-store-link {
  display: inline-flex;
}

.cta-scan-teaser {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 10px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cta-scan-teaser:hover,
.cta-scan-teaser:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(73, 232, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(73, 232, 255, 0.14), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.cta-scan-tag {
  color: var(--text-main);
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cta-scan-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 102px;
  padding: 14px 7px 7px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 11, 18, 0.98), rgba(18, 21, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(0, 0, 0, 0.36);
}

.cta-scan-screen::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 3;
  width: 30px;
  height: 7px;
  border-radius: 999px;
  background: rgba(3, 5, 10, 0.98);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateX(-50%);
}

.cta-scan-screen::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  right: 7px;
  height: 14px;
  z-index: 2;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, rgba(4, 6, 11, 0.98), rgba(7, 10, 18, 0));
  pointer-events: none;
}

.cta-scan-viewport {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 81px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 15px;
  background: #090c13;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.cta-scan-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  background: #090c13;
}

.cta-scan-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  z-index: 2;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(73, 232, 255, 0.18), rgba(73, 232, 255, 0.92), rgba(255, 63, 210, 0.38), transparent);
  box-shadow: 0 0 14px rgba(73, 232, 255, 0.55);
  transform: translateY(-50%);
  animation: scanFloat 3.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-rating-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 104px;
  min-width: 212px;
  padding: 14px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 255, 94, 0.16), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 63, 210, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(12, 18, 39, 0.94), rgba(9, 13, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(73, 232, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-rating-card:hover,
.hero-rating-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 227, 106, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 227, 106, 0.18),
    0 0 22px rgba(255, 227, 106, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.32);
}

.hero-rating-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rating-main {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.hero-rating-score,
.hero-rating-scale {
  font-family: "Orbitron", sans-serif;
  line-height: 1;
}

.hero-rating-score {
  font-size: 1.7rem;
  color: var(--text-main);
}

.hero-rating-scale {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.hero-rating-stars {
  position: relative;
  display: inline-flex;
  width: max-content;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.16em;
}

.hero-rating-stars-base {
  color: rgba(255, 255, 255, 0.14);
}

.hero-rating-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating-fill, 88%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 227, 106, 0.45);
}

.hero-rating-copy {
  max-width: 24ch;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible,
.app-store-link:hover,
.app-store-link:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(73, 232, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(73, 232, 255, 0.12);
}

.button-primary {
  color: #05101b;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 14px 34px rgba(73, 232, 255, 0.24);
}

.hero-note,
.tiny-note {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

.meta-strip,
.chips,
.quick-links,
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-chip,
.quick-link,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-stage,
.panel,
.showcase-card,
.content-card,
.faq-card,
.cta-band,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 23, 49, 0.86), rgba(7, 10, 23, 0.95));
  box-shadow: var(--shadow-xl);
}

.hero-stage {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 720px;
  padding: 24px;
}

.scan-beam {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(73, 232, 255, 0.1), rgba(73, 232, 255, 0.85), rgba(255, 63, 210, 0.3), transparent);
  box-shadow: 0 0 20px rgba(73, 232, 255, 0.45);
  opacity: 0.85;
  transform: translateY(-50%);
  animation: scanFloat 4.8s ease-in-out infinite;
}

.hero-stage::before,
.panel::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 63, 210, 0.34), transparent 72%);
  pointer-events: none;
}

.hero-stage::after,
.panel::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 30px -50px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(73, 232, 255, 0.28), transparent 72%);
  pointer-events: none;
}

.shot-frame {
  position: relative;
  min-height: 440px;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(11, 14, 28, 0.94), rgba(14, 18, 34, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-glow);
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.hero-stage-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.hero-stage-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(73, 232, 255, 0.09);
  border: 1px solid rgba(73, 232, 255, 0.22);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage-title {
  margin: 14px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  letter-spacing: 0.03em;
}

.hero-stage-copy p {
  max-width: 280px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-stage-pin {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(7, 10, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-xl);
}

.hero-stage-pin-one {
  left: 26px;
  top: 28px;
}

.hero-stage-pin-two {
  right: 26px;
  bottom: 28px;
}

.hero-stage-pin-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  color: #04111b;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.hero-stage-pin strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.hero-stage-pin span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-demo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-demo-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glow);
}

.hero-demo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

.hero-demo-copy span {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-demo-copy strong {
  display: block;
  margin-top: 6px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.hero-demo-copy p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.floating-card,
.floating-avatar,
.floating-icon {
  position: absolute;
  border-radius: 24px;
  background: rgba(7, 10, 23, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-xl);
}

.floating-card {
  right: 26px;
  bottom: 36px;
  width: 220px;
  padding: 18px;
}

.floating-card h3,
.stat-card h3,
.card-title {
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.floating-card p,
.stat-card p,
.card-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.floating-avatar {
  left: 24px;
  top: 28px;
  width: 124px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(22, 29, 57, 0.95), rgba(8, 11, 24, 0.95));
}

.floating-avatar img {
  width: 100%;
  border-radius: 18px;
}

.floating-icon {
  top: 36px;
  right: 26px;
  width: 96px;
  padding: 10px;
}

.floating-icon img {
  width: 100%;
  border-radius: 22px;
}

.section {
  padding: 32px 0 60px;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.grid-3,
.grid-4,
.link-grid,
.gallery-grid,
.faq-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.panel,
.content-card,
.showcase-card,
.gallery-card,
.faq-card {
  padding: 22px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accent-pink {
  color: var(--pink);
}

.accent-cyan {
  color: var(--cyan);
}

.accent-gold {
  color: var(--gold);
}

.card-link {
  display: block;
  min-height: 100%;
}

.card-link:hover .card-title,
.card-link:focus-visible .card-title {
  color: var(--cyan);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  margin-bottom: 16px;
}

.showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.showcase-media {
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(15, 18, 32, 0.94), rgba(8, 11, 23, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-media img {
  width: 100%;
  border-radius: 20px;
}

.metric-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.metric {
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.metric-value {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 1.15rem;
  color: var(--text-main);
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.faq-card details {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
}

.faq-card details + details {
  margin-top: 12px;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-family: "Orbitron", sans-serif;
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.faq-card details p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}

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

.review-proof-band {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 23, 49, 0.86), rgba(7, 10, 23, 0.95));
  box-shadow: var(--shadow-xl);
}

.review-proof-header {
  margin-bottom: 18px;
}

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

.proof-stat-card,
.review-proof-feature {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glow);
}

.proof-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-value {
  display: block;
  margin-top: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: 0.03em;
}

.review-proof-feature {
  margin-top: 16px;
}

.review-carousel-shell {
  margin-top: 16px;
}

.review-carousel-header {
  margin-bottom: 14px;
}

.review-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32vw, 330px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 10px;
  scrollbar-color: rgba(73, 232, 255, 0.4) rgba(255, 255, 255, 0.05);
}

.review-carousel::-webkit-scrollbar {
  height: 10px;
}

.review-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.review-carousel::-webkit-scrollbar-thumb {
  background: rgba(73, 232, 255, 0.42);
  border-radius: 999px;
}

.review-carousel-card {
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glow);
  scroll-snap-align: start;
}

.review-card-footer {
  margin: 14px 0 0;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.landing-proof-band {
  padding: 22px;
}

.review-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.review-stars {
  color: var(--gold);
  font-weight: 700;
}

.review-quote {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.signal-item,
.step-card,
.note-card {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-glow);
}

.signal-label,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  color: #05101b;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.signal-item h3,
.step-card h3,
.note-card h3 {
  margin: 14px 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.signal-item p,
.step-card p,
.note-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

.steps-grid {
  display: grid;
  gap: 18px;
}

.visual-stack {
  position: relative;
  min-height: 670px;
}

.visual-stack-main,
.visual-stack-secondary,
.visual-stack-mini {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 18, 35, 0.96), rgba(8, 10, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
}

.visual-stack-main {
  inset: 0 56px 96px 0;
  padding: 14px;
}

.visual-stack-secondary {
  right: 0;
  top: 48px;
  width: 240px;
  padding: 12px;
}

.visual-stack-mini {
  left: 52px;
  bottom: 0;
  width: 220px;
  padding: 10px;
}

.visual-stack-main img,
.visual-stack-secondary img,
.visual-stack-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
}

.visual-stack-note {
  position: absolute;
  right: 18px;
  bottom: 26px;
  width: 220px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
}

.comparison-list {
  display: grid;
  gap: 14px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.comparison-row strong {
  color: var(--text-main);
}

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

.search-card-link {
  display: block;
  min-height: 100%;
}

.search-card-link:hover .card-title,
.search-card-link:focus-visible .card-title {
  color: var(--gold);
}

.cta-band {
  padding: 28px;
}

.cta-band .section-title {
  margin-top: 0;
}

.page-header {
  padding: 64px 0 26px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 22px;
}

.sidebar-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-card h3,
.prose h2,
.prose h3 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.03em;
}

.sidebar-card h3 {
  margin-top: 0;
}

.sidebar-card ul,
.prose ul,
.prose ol {
  margin: 0;
  padding-left: 1.2rem;
}

.sidebar-card li,
.prose li {
  margin-bottom: 10px;
}

.prose {
  padding: 24px;
}

.prose h2 {
  margin: 34px 0 12px;
  font-size: 1.3rem;
}

.prose h3 {
  margin: 22px 0 10px;
  font-size: 1.04rem;
}

.prose p,
.prose li {
  margin-top: 0;
}

.key-value {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.key-value:last-child {
  border-bottom: 0;
}

.key-label {
  color: var(--text-dim);
}

.footer {
  padding: 30px 0 110px;
}

.footer-frame {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.prose a,
.card-copy a,
.section-copy a {
  color: var(--cyan);
}

.sticky-download {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 35;
  display: none;
}

.sticky-download a {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  color: #04111b;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.hidden-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes scanFloat {
  0%,
  100% {
    top: 26%;
    opacity: 0.82;
  }

  50% {
    top: 74%;
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero,
  .showcase-split,
  .page-layout,
  .story-split,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 680px;
  }

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

  .signal-strip,
  .search-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-stack {
    min-height: 600px;
  }

  .review-carousel {
    grid-auto-columns: clamp(250px, 42vw, 320px);
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
  }

  .cta-scan-teaser {
    width: 100%;
    justify-content: space-between;
  }

  .hero-rating-card {
    width: 100%;
    min-width: 0;
  }

  .grid-3,
  .faq-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip,
  .review-proof-grid,
  .search-cluster {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .hero-stage-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage-copy p {
    max-width: none;
  }

  .shot-frame {
    min-height: 380px;
  }

  .hero-stage-pin {
    max-width: 220px;
  }

  .hero-stage-pin-one {
    left: 18px;
    top: 18px;
  }

  .hero-stage-pin-two {
    right: 18px;
    bottom: 18px;
  }

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

  .visual-stack {
    min-height: 540px;
  }

  .visual-stack-main {
    inset: 0 0 150px 0;
  }

  .visual-stack-secondary {
    width: 190px;
    top: auto;
    right: 18px;
    bottom: 82px;
  }

  .visual-stack-mini {
    left: 18px;
    width: 170px;
  }

  .visual-stack-note {
    right: 18px;
    width: 190px;
    bottom: 12px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-behavior: auto;
  }

  .shell {
    width: min(var(--content-width), calc(100% - 20px));
  }

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

  .cta-scan-tag {
    font-size: 0.72rem;
  }

  .cta-scan-screen {
    width: 78px;
    height: 96px;
    padding: 13px 6px 6px;
  }

  .cta-scan-viewport {
    width: 56px;
    height: 75px;
    margin-top: 4px;
  }

  .section {
    padding: 24px 0 42px;
  }

  .hero-stage,
  .review-proof-band,
  .review-carousel-card,
  .panel,
  .showcase-card,
  .content-card,
  .faq-card,
  .cta-band,
  .gallery-card,
  .prose {
    padding: 18px;
  }

  .hero-stage {
    min-height: auto;
  }

  .shot-frame {
    min-height: 300px;
  }

  .hero-stage-pin {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .hero-stage-pin-one {
    top: 12px;
  }

  .hero-stage-pin-two {
    bottom: 12px;
  }

  .hero-demo-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .grid-4,
  .link-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .key-value {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-download {
    display: none;
  }

  .sticky-download {
    display: block;
  }

  .visual-stack {
    min-height: 520px;
  }

  .visual-stack-main {
    inset: 0 0 168px 0;
  }

  .visual-stack-secondary {
    right: 10px;
    width: 150px;
    bottom: 114px;
  }

  .visual-stack-mini {
    left: 10px;
    width: 142px;
  }

  .visual-stack-note {
    left: 10px;
    right: 10px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
