:root {
  --ink: #f7f8ff;
  --muted: #a9b4d3;
  --dim: #7180a7;
  --night: #050817;
  --panel: rgba(14, 20, 49, 0.72);
  --panel-solid: #0d1430;
  --line: rgba(145, 166, 255, 0.18);
  --cyan: #42d7ff;
  --blue: #2878ff;
  --violet: #8957ff;
  --magenta: #d46bff;
  --green: #49efbd;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 3%, rgba(60, 82, 255, 0.17), transparent 30rem),
    radial-gradient(circle at 18% 34%, rgba(119, 63, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #040713 0%, #070b1d 52%, #050714 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 8, 23, 0.84);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(80, 218, 255, 0.96), rgba(77, 104, 255, 0.94) 54%, rgba(154, 75, 255, 0.96));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 0 28px rgba(66, 144, 255, 0.28);
  color: white;
  font-size: 13px;
  letter-spacing: -0.06em;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
}

.site-nav[data-auth-pending] [data-nav-auth] {
  visibility: hidden;
}

.site-nav [hidden] {
  display: none !important;
}

.nav-account {
  position: relative;
}

.nav-account-toggle {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 5px 6px;
  border: 1px solid rgba(143, 174, 255, 0.3);
  border-radius: 15px;
  background: rgba(18, 30, 68, 0.84);
  color: white;
  cursor: pointer;
  transition: 160ms ease;
}

.nav-account-toggle:hover,
.nav-account.is-open .nav-account-toggle {
  border-color: rgba(66, 215, 255, 0.58);
  background: rgba(25, 40, 88, 0.96);
  box-shadow: 0 10px 28px rgba(12, 20, 52, 0.34);
}

.nav-account-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #36d3ff, #4d7cff 55%, #9858ff);
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.nav-account-copy {
  display: grid;
  min-width: 76px;
  text-align: left;
  line-height: 1.12;
}

.nav-account-copy strong {
  overflow: hidden;
  max-width: 110px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-copy small {
  margin-top: 3px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-account-chevron {
  color: var(--dim);
  font-size: 15px;
  transition: transform 160ms ease;
}

.nav-account.is-open .nav-account-chevron {
  transform: rotate(180deg);
}

.nav-account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 245px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(143, 174, 255, 0.28);
  border-radius: 17px;
  background: rgba(10, 17, 42, 0.98);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.nav-account-summary {
  display: grid;
  padding: 10px 11px 12px;
  border-bottom: 1px solid var(--line);
  line-height: 1.3;
}

.nav-account-summary strong,
.nav-account-summary small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-summary strong {
  color: white;
  font-size: 13px;
}

.nav-account-summary small {
  margin-top: 3px;
  color: var(--dim);
  font-size: 11px;
}

.site-nav .nav-account-menu a,
.nav-account-menu button {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  padding: 8px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 680;
  text-align: left;
}

.site-nav .nav-account-menu a:hover,
.nav-account-menu button:hover {
  background: rgba(81, 117, 220, 0.14);
  color: white;
}

.nav-account-menu button {
  color: #ff9fb5;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  color: white;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: white;
  font-size: 14px;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 180, 255, 0.52);
}

.button.primary {
  border-color: rgba(77, 196, 255, 0.42);
  background: linear-gradient(115deg, #2ecbff, #347cff 55%, #8e55ff);
  box-shadow: 0 12px 32px rgba(45, 115, 255, 0.3);
}

.button.small {
  min-height: 40px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 90px 0 112px;
}

.hero::after {
  position: absolute;
  top: -290px;
  right: -180px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(91, 139, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(83, 96, 255, 0.025), 0 0 0 180px rgba(83, 96, 255, 0.018);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  content: "";
}

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

h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 850;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.gradient-text {
  background: linear-gradient(105deg, #b7efff 2%, #50c8ff 38%, #347dff 67%, #a766ff 100%);
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
}

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

.hero-note {
  margin-top: 20px;
  color: var(--dim);
  font-size: 12px;
}

.product-frame {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(127, 159, 255, 0.28);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow), 0 0 90px rgba(61, 85, 255, 0.16);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

.product-window {
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(143, 163, 255, 0.2);
  border-radius: 19px;
  background: #080d22;
}

.window-bar {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #bbc7e8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.window-status {
  color: var(--green);
}

.screenshot-placeholder {
  display: grid;
  min-height: 398px;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 28% 32%, rgba(55, 150, 255, 0.16), transparent 25%),
    radial-gradient(circle at 70% 68%, rgba(139, 74, 255, 0.15), transparent 28%),
    linear-gradient(145deg, #0a1029, #070b1d);
  text-align: center;
}

.placeholder-inner {
  max-width: 340px;
}

.placeholder-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(95, 196, 255, 0.28);
  border-radius: 20px;
  background: rgba(41, 95, 255, 0.11);
  color: var(--cyan);
  font-size: 24px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0 35px rgba(43, 140, 255, 0.12);
}

.placeholder-inner strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.placeholder-inner span {
  color: var(--dim);
  font-size: 13px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(9, 13, 34, 0.54);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.trust-item {
  padding: 25px 12px;
  color: #c8d2ed;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.section {
  padding: 112px 0;
}

.section.compact {
  padding: 76px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 19px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 840;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.section-heading p,
.card p,
.prose p {
  color: var(--muted);
}

.spotlight {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 55px;
}

.feature-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c6d0ea;
}

.check {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  place-items: center;
  border: 1px solid rgba(76, 235, 187, 0.25);
  border-radius: 8px;
  background: rgba(73, 239, 189, 0.08);
  color: var(--green);
  font-size: 12px;
}

.logbook {
  overflow: hidden;
  border: 1px solid rgba(94, 139, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 13, 34, 0.78);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.logbook-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.logbook-head strong {
  font-size: 13px;
}

.live-pill {
  padding: 5px 9px;
  border: 1px solid rgba(73, 239, 189, 0.22);
  border-radius: 999px;
  background: rgba(73, 239, 189, 0.07);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.log-scroll {
  overflow-x: auto;
}

.log-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 12px;
}

.log-table th,
.log-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(143, 163, 255, 0.09);
  text-align: left;
}

.log-table th {
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.log-table tbody tr {
  transition: background 250ms ease, color 250ms ease;
}

.log-table tr.is-current {
  background: linear-gradient(90deg, rgba(44, 124, 255, 0.15), rgba(138, 77, 255, 0.08));
  color: white;
}

.log-footer {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--dim);
  font-size: 10px;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20, 28, 65, 0.72), rgba(8, 13, 35, 0.7));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent, var(--blue));
  content: "";
  filter: blur(70px);
  opacity: 0.16;
}

.card-number {
  margin-bottom: 38px;
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.media-card {
  min-height: 210px;
}

.media-card .icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--cyan);
  font-weight: 850;
}

.screens-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.screen-slot {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 28px;
  border: 1px dashed rgba(115, 159, 255, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 31, 71, 0.46), rgba(7, 11, 31, 0.72));
  color: var(--dim);
  text-align: center;
}

.screen-slot.large {
  grid-row: span 2;
  min-height: 680px;
}

.price-banner {
  display: grid;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(106, 143, 255, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 40%, rgba(136, 74, 255, 0.24), transparent 24rem),
    linear-gradient(120deg, rgba(20, 36, 91, 0.9), rgba(18, 17, 62, 0.9));
  box-shadow: var(--shadow);
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 9px 0 3px;
  font-size: 56px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.page-hero {
  padding: 88px 0 70px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 82px);
}

.prose {
  max-width: 800px;
  font-size: 18px;
}

.requirements-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--panel);
}

.requirements-table th,
.requirements-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.requirements-table th {
  width: 27%;
  color: white;
}

.requirements-table td {
  color: var(--muted);
}

.requirements-table tr:last-child th,
.requirements-table tr:last-child td {
  border-bottom: 0;
}

.notice {
  padding: 17px 19px;
  border: 1px solid rgba(255, 190, 85, 0.26);
  border-radius: 14px;
  background: rgba(255, 190, 85, 0.065);
  color: #dfcda9;
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.field label {
  color: #c7d1ed;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(4, 7, 22, 0.72);
  color: white;
  padding: 13px 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(66, 215, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(66, 215, 255, 0.08);
}

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 15, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 35px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 11px;
}

.legal-hero{padding:105px 0 45px}.legal-hero h1{max-width:900px;margin:14px 0 16px;font-size:clamp(42px,7vw,76px)}.legal-hero p{max-width:760px;color:var(--muted);font-size:17px}.legal-layout{display:grid;grid-template-columns:235px minmax(0,760px);align-items:start;gap:55px;padding-bottom:100px}.legal-nav{position:sticky;top:105px;display:grid;gap:6px;padding:17px;border:1px solid var(--line);border-radius:17px;background:rgba(16,27,61,.72)}.legal-nav strong{margin:4px 8px 8px;font-size:10px;letter-spacing:.12em;text-transform:uppercase}.legal-nav a{padding:9px;border-radius:9px;color:var(--muted);font-size:12px}.legal-nav a:hover,.legal-nav a[aria-current=page]{background:rgba(66,215,255,.08);color:var(--cyan)}.legal-copy{color:#c7d2eb;line-height:1.75}.legal-copy section{padding:0 0 26px;margin-bottom:26px;border-bottom:1px solid var(--line)}.legal-copy h2{margin:0 0 12px;color:white;font-size:26px}.legal-copy h3{margin:18px 0 8px;color:white;font-size:17px}.legal-copy p,.legal-copy ul{margin:0 0 13px}.legal-copy ul{padding-left:21px}.legal-copy li{margin:6px 0}.legal-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.legal-meta span{padding:7px 10px;border:1px solid var(--line);border-radius:999px;color:var(--dim);font-size:10px}.legal-callout{padding:17px 19px;border:1px solid rgba(66,215,255,.25);border-radius:14px;background:rgba(66,215,255,.06)}.legal-contact{color:var(--cyan)}
@media(max-width:760px){.legal-hero{padding:70px 0 34px}.legal-layout{grid-template-columns:1fr;gap:25px;padding-bottom:70px}.legal-nav{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.legal-nav strong{grid-column:1/-1}.footer-bottom{align-items:flex-start;gap:14px;flex-direction:column}.footer-legal{line-height:1.9}}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .spotlight,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .product-frame {
    transform: none;
  }

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

  .trust-item:nth-child(4) {
    border-left: 0;
  }

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 11, 31, 0.97);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 3px;
  }

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

  .site-nav a {
    padding: 11px 10px;
  }

  .site-nav .button {
    margin-top: 6px;
  }

  .nav-account {
    width: 100%;
    margin-top: 5px;
  }

  .nav-account-toggle {
    width: 100%;
  }

  .nav-account-copy {
    flex: 1;
  }

  .nav-account-copy strong {
    max-width: none;
  }

  .nav-account-menu {
    position: static;
    width: 100%;
    margin-top: 7px;
    box-shadow: none;
  }

  .site-nav .nav-account-menu a {
    padding: 8px 11px;
  }

  .hero {
    padding: 46px 0 75px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .section {
    padding: 78px 0;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .screens-grid,
  .price-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .screen-slot.large {
    min-height: 420px;
    grid-row: auto;
  }

  .price-banner {
    padding: 29px;
  }

  .requirements-table,
  .requirements-table tbody,
  .requirements-table tr,
  .requirements-table th,
  .requirements-table td {
    display: block;
    width: 100%;
  }

  .requirements-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .requirements-table td {
    padding-top: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

:root {
  --night: #091127;
  --panel: rgba(21, 32, 72, 0.8);
  --panel-solid: #111d42;
  --line: rgba(153, 181, 255, 0.24);
}

body {
  background:
    radial-gradient(circle at 82% 3%, rgba(68, 106, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 18% 34%, rgba(131, 78, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #091127 0%, #0d1734 52%, #091127 100%);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 88px;
}

.about-hero::after {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(78, 181, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(93, 86, 255, 0.035), 0 0 0 140px rgba(93, 86, 255, 0.025);
  content: "";
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 65px;
}

.about-hero-grid h1 {
  max-width: 880px;
}

.about-hero-quote {
  margin: 0 0 8px;
  padding: 25px 0 4px 25px;
  border-left: 2px solid var(--cyan);
}

.about-hero-quote p {
  margin: 0 0 16px;
  color: #dce5ff;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.about-hero-quote cite {
  color: var(--cyan);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 95px);
}

.about-profile {
  position: sticky;
  top: 108px;
}

.about-photo-placeholder {
  display: flex;
  position: relative;
  min-height: 510px;
  overflow: hidden;
  align-items: flex-end;
  padding: 30px;
  border: 1px solid rgba(117, 164, 255, 0.3);
  border-radius: 30px;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 11, 31, 0.85)),
    radial-gradient(circle at 52% 30%, rgba(64, 209, 255, 0.23), transparent 23%),
    radial-gradient(circle at 32% 62%, rgba(139, 79, 255, 0.25), transparent 32%),
    linear-gradient(145deg, #142454, #0b1330 58%, #15103a);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.32);
}

.about-photo-placeholder::before,
.about-photo-placeholder::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.about-photo-placeholder::before {
  top: 50px;
  right: -85px;
  width: 290px;
  height: 290px;
}

.about-photo-placeholder::after {
  top: 115px;
  right: -20px;
  width: 160px;
  height: 160px;
}

.about-photo-placeholder > span {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(55, 215, 255, 0.95), rgba(76, 111, 255, 0.96) 55%, rgba(147, 75, 255, 0.96));
  box-shadow: 0 25px 55px rgba(27, 74, 210, 0.35);
  color: white;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: translate(-50%, -65%);
}

.about-photo-placeholder div {
  display: grid;
  position: relative;
  z-index: 1;
}

.about-photo-placeholder strong {
  color: white;
  font-size: 13px;
}

.about-photo-placeholder small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.about-profile-copy {
  padding: 24px 8px 0;
}

.about-profile-copy > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.about-profile-copy h2 {
  margin: 8px 0 7px;
  font-size: 30px;
}

.about-profile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-narrative {
  max-width: 760px;
}

.about-narrative > h2 {
  margin-top: 12px;
  font-size: clamp(40px, 5vw, 62px);
}

.about-narrative > p {
  font-size: 18px;
  line-height: 1.78;
}

.about-chapter {
  display: grid;
  margin: 48px 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 20px;
}

.about-chapter > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-chapter h3 {
  margin: -7px 0 13px;
  color: white;
  font-size: 28px;
}

.about-chapter p {
  font-size: 17px;
  line-height: 1.72;
}

.about-closing {
  padding: 27px 29px;
  border: 1px solid rgba(79, 205, 255, 0.25);
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(41, 150, 255, 0.11), rgba(132, 80, 255, 0.09));
}

.about-closing strong {
  color: white;
}

.about-principle {
  min-height: 260px;
}

@media (max-width: 980px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-hero-quote {
    max-width: 620px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-profile {
    display: grid;
    position: static;
    align-items: end;
    grid-template-columns: minmax(240px, 0.75fr) 1fr;
    gap: 30px;
  }

  .about-photo-placeholder {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .about-profile {
    display: block;
  }

  .about-photo-placeholder {
    min-height: 430px;
  }

  .about-chapter {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .about-closing {
    padding: 22px;
  }
}

.section.surface {
  border-block: 1px solid rgba(157, 187, 255, 0.12);
  background:
    radial-gradient(circle at 84% 30%, rgba(69, 119, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(18, 31, 70, 0.86), rgba(13, 24, 55, 0.78));
}

.section.soft {
  background:
    radial-gradient(circle at 12% 50%, rgba(130, 84, 255, 0.13), transparent 26rem),
    rgba(16, 26, 60, 0.52);
}

.product-window {
  background: #0d1735;
}

.product-window > img {
  width: 100%;
  height: auto;
}

.card {
  background: linear-gradient(145deg, rgba(27, 42, 91, 0.8), rgba(13, 23, 54, 0.8));
}

.feature-showcase {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
}

.feature-showcase.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.feature-showcase.reverse > :first-child {
  order: 2;
}

.media-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(133, 177, 255, 0.32);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28), 0 0 55px rgba(60, 126, 255, 0.11);
}

.media-frame::before {
  position: absolute;
  z-index: -1;
  inset: 12% 9%;
  border-radius: 28px;
  background: linear-gradient(100deg, rgba(55, 194, 255, 0.25), rgba(131, 74, 255, 0.2));
  content: "";
  filter: blur(42px);
  opacity: 0.45;
}

.media-frame.purple::before {
  background: rgba(143, 79, 255, 0.3);
}

.media-frame img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(178, 197, 255, 0.14);
  border-radius: 14px;
  background: #0b1430;
}

.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 7px 3px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wide-feature {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(26, 42, 90, 0.86), rgba(14, 23, 54, 0.84));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.wide-feature + .wide-feature {
  margin-top: 20px;
}

.wide-feature img {
  width: 100%;
  border: 1px solid rgba(155, 185, 255, 0.22);
  border-radius: 13px;
  box-shadow: 0 0 34px rgba(52, 136, 255, 0.1);
}

.wide-feature-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.wide-feature-head p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.detail-pair {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 185px;
  gap: 18px;
}

.tile-closeup {
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(18, 31, 72, 0.72);
}

.tile-closeup img {
  width: 175px;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 0 34px rgba(75, 147, 255, 0.13);
}

.audio-visuals {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 18px;
}

.meter-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(132, 175, 255, 0.3);
  border-radius: 18px;
  background: rgba(17, 29, 68, 0.82);
  box-shadow: 0 0 38px rgba(57, 137, 255, 0.11);
}

.meter-frame img {
  width: 65px;
  max-height: 620px;
  object-fit: contain;
}

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

.feature-list-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(20, 34, 76, 0.68);
}

.feature-list-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list-card li {
  position: relative;
  padding-left: 20px;
}

.feature-list-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(66, 215, 255, 0.5);
  content: "";
}

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

.portrait-shot {
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .feature-showcase,
  .feature-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .feature-showcase.reverse > :first-child {
    order: initial;
  }
}

@media (max-width: 760px) {
  .all-features,
  .detail-pair,
  .dual-shot {
    grid-template-columns: 1fr;
  }

  .wide-feature {
    padding: 16px;
  }

  .wide-feature-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .meter-frame img {
    width: 46px;
    max-height: 340px;
  }
}

/* Audio-led motion system */

body::before {
  animation: ambient-grid-drift 28s linear infinite;
}

.site-cursor-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--glow-x, 50%) var(--glow-y, 30%), rgba(55, 177, 255, 0.075), transparent 67%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.site-cursor-glow.is-active {
  opacity: 1;
}

.site-header {
  position: sticky;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 0 16px rgba(66, 215, 255, 0.7);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

[data-reveal] {
  filter: blur(7px);
  transform: translateY(34px) scale(0.988);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -55%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::after {
  left: 125%;
}

.card,
.media-frame,
.wide-feature,
.price-banner {
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 12%, rgba(66, 215, 255, 0.62), rgba(137, 87, 255, 0.54), transparent 82%);
  background-size: 240% 240%;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-signal 9s ease-in-out infinite;
}

.card:hover {
  border-color: rgba(92, 194, 255, 0.32);
  box-shadow: 0 22px 55px rgba(4, 8, 28, 0.3), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.card:hover::before {
  opacity: 0.52;
}

.media-frame:hover,
.wide-feature:hover {
  border-color: rgba(84, 190, 255, 0.4);
  box-shadow: 0 24px 65px rgba(7, 13, 40, 0.32), 0 0 55px rgba(52, 111, 255, 0.08);
  transform: translateY(-3px);
}

.trust-strip {
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(73, 198, 255, 0.09), transparent);
  content: "";
  pointer-events: none;
  animation: signal-scan 8s ease-in-out infinite;
}

.hero-signal {
  width: min(100%, 560px);
  margin-top: 30px;
  padding: 14px 16px 13px;
  border: 1px solid rgba(102, 162, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19, 34, 78, 0.67), rgba(9, 16, 42, 0.56));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 18px 45px rgba(5, 10, 30, 0.18);
}

.hero-signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dim);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-signal-head span:first-child {
  color: var(--green);
}

.hero-signal-head i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: live-status-pulse 1.8s ease-in-out infinite;
}

.hero-wave {
  display: flex;
  height: 52px;
  align-items: center;
  gap: 4px;
  margin: 7px 0 5px;
  overflow: hidden;
}

.hero-wave i {
  width: 3px;
  height: calc(var(--level) * 44px);
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet), var(--cyan));
  box-shadow: 0 0 8px rgba(66, 215, 255, 0.2);
  opacity: 0.76;
  animation: waveform-breathe 1.65s ease-in-out var(--delay) infinite alternate;
  transform-origin: center;
}

.hero-signal-route {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-signal-route span {
  padding: 4px 7px;
  border: 1px solid rgba(117, 161, 255, 0.18);
  border-radius: 6px;
  color: #8ea1d0;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.product-frame[data-hero-tilt] {
  --tilt-x: 2deg;
  --tilt-y: -4deg;
  transform: perspective(1400px) rotateY(var(--tilt-y)) rotateX(var(--tilt-x));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
  will-change: transform;
}

.product-frame[data-hero-tilt]:hover {
  box-shadow: var(--shadow), 0 0 110px rgba(61, 112, 255, 0.22);
}

.hero-tech-tag {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(88, 202, 255, 0.34);
  border-radius: 8px;
  background: rgba(8, 16, 42, 0.88);
  box-shadow: 0 12px 32px rgba(1, 5, 20, 0.3), 0 0 20px rgba(66, 215, 255, 0.08);
  color: #b5dfff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  pointer-events: none;
  animation: tech-tag-float 4.8s ease-in-out infinite;
}

.hero-tech-tag-one {
  top: 17%;
  left: -28px;
}

.hero-tech-tag-two {
  right: -22px;
  bottom: 16%;
  animation-delay: -2.2s;
}

.about-audio-journey {
  display: grid;
  align-items: center;
  margin-top: 25px;
  padding: 17px;
  border: 1px solid rgba(107, 159, 255, 0.2);
  border-radius: 17px;
  background: rgba(15, 27, 65, 0.58);
  grid-template-columns: 46px 1fr;
  gap: 13px;
}

.about-cassette {
  display: flex;
  position: relative;
  width: 46px;
  height: 34px;
  align-items: center;
  justify-content: space-around;
  padding: 6px;
  border: 1px solid rgba(141, 177, 255, 0.34);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(61, 97, 178, 0.3), rgba(10, 17, 42, 0.5));
}

.about-cassette i {
  width: 10px;
  height: 10px;
  border: 2px dotted rgba(199, 218, 255, 0.7);
  border-radius: 50%;
  animation: cassette-reel 6s linear infinite;
}

.about-cassette span {
  position: absolute;
  right: 9px;
  bottom: 4px;
  left: 9px;
  height: 3px;
  border-radius: 3px;
  background: rgba(66, 215, 255, 0.38);
}

.about-journey-wave {
  display: flex;
  height: 24px;
  align-items: center;
  gap: 3px;
}

.about-journey-wave i {
  width: 2px;
  height: 35%;
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  animation: journey-wave 1.8s ease-in-out infinite alternate;
}

.about-journey-wave i:nth-child(3n) {
  height: 80%;
  animation-delay: -.7s;
}

.about-journey-wave i:nth-child(2n) {
  height: 55%;
  animation-delay: -1.2s;
}

.about-audio-journey > div:last-child {
  display: grid;
  grid-column: 1 / -1;
}

.about-audio-journey strong {
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.about-audio-journey small {
  margin-top: 2px;
  color: var(--dim);
  font-size: 10px;
}

@keyframes ambient-grid-drift {
  to { background-position: 56px 56px, 56px 56px; }
}

@keyframes border-signal {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes signal-scan {
  0%, 12% { left: -30%; }
  70%, 100% { left: 112%; }
}

@keyframes live-status-pulse {
  50% { opacity: 0.45; transform: scale(0.75); }
}

@keyframes waveform-breathe {
  0% { opacity: 0.52; transform: scaleY(0.42); }
  100% { opacity: 0.9; transform: scaleY(1); }
}

@keyframes tech-tag-float {
  50% { transform: translateY(-8px); }
}

@keyframes cassette-reel {
  to { transform: rotate(360deg); }
}

@keyframes journey-wave {
  to { transform: scaleY(0.42); }
}

@media (max-width: 980px) {
  .product-frame[data-hero-tilt] {
    transform: none;
  }

  .hero-tech-tag-one {
    left: -8px;
  }

  .hero-tech-tag-two {
    right: -8px;
  }
}

@media (max-width: 760px) {
  .hero-tech-tag {
    display: none;
  }

  .hero-signal {
    margin-top: 24px;
  }

  .hero-wave {
    gap: 2px;
  }

  .card:hover,
  .media-frame:hover,
  .wide-feature:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .card::before,
  .trust-strip::before,
  .hero-signal-head i,
  .hero-wave i,
  .hero-tech-tag,
  .about-cassette i,
  .about-journey-wave i {
    animation: none !important;
  }

  .site-cursor-glow,
  .site-scroll-progress {
    display: none;
  }

  [data-reveal] {
    filter: none;
  }
}

/* Feature overview */

.features-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
}

.features-hero::before {
  position: absolute;
  top: -190px;
  left: 50%;
  width: 900px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 118, 255, 0.16), transparent 67%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.features-hero-copy {
  display: grid;
  position: relative;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 60px;
}

.features-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(52px, 7.3vw, 92px);
}

.features-hero-copy .lead {
  margin-bottom: 6px;
  font-size: 18px;
}

.feature-jump-nav {
  display: flex;
  position: relative;
  margin: 40px 0 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-jump-nav a {
  padding: 9px 12px;
  border: 1px solid rgba(121, 164, 255, 0.21);
  border-radius: 9px;
  background: rgba(16, 29, 67, 0.62);
  color: #95a8d5;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: 160ms ease;
}

.feature-jump-nav a:hover {
  border-color: rgba(66, 215, 255, 0.48);
  background: rgba(38, 76, 153, 0.3);
  color: white;
  transform: translateY(-2px);
}

.features-main-screen {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(112, 167, 255, 0.34);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.018));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), 0 0 100px rgba(54, 106, 255, 0.14);
}

.features-main-screen::before {
  position: absolute;
  right: 13%;
  bottom: -40px;
  left: 13%;
  height: 80px;
  border-radius: 50%;
  background: rgba(69, 143, 255, 0.27);
  content: "";
  filter: blur(50px);
}

.features-main-screen img {
  position: relative;
  width: 100%;
  border: 1px solid rgba(166, 196, 255, 0.15);
  border-radius: 18px;
  background: #0a122b;
}

.features-screen-bar,
.features-main-screen figcaption {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 9px 16px;
  color: #7f90b8;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.features-screen-bar span:last-child {
  color: var(--green);
}

.features-screen-bar i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.features-main-screen figcaption {
  padding: 14px 9px 5px;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.features-proof {
  display: grid;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 27, 63, 0.68);
  grid-template-columns: repeat(4, 1fr);
}

.features-proof div {
  display: grid;
  min-height: 90px;
  place-content: center;
  padding: 17px;
  text-align: center;
}

.features-proof div + div {
  border-left: 1px solid var(--line);
}

.features-proof strong {
  color: white;
  font-size: 16px;
}

.features-proof span {
  margin-top: 2px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-story {
  scroll-margin-top: 74px;
}

.feature-story-heading {
  display: grid;
  align-items: end;
  margin-bottom: 46px;
  grid-template-columns: 50px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 26px;
}

.feature-story-heading > span {
  align-self: start;
  padding-top: 8px;
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.feature-story-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.feature-story-heading p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-strip-showcase {
  display: grid;
  gap: 18px;
}

.feature-strip-card {
  overflow: hidden;
}

.feature-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-strip-card h3,
.feature-bulk-card h3,
.feature-filter-card h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.feature-benefit-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-benefit-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-benefit-grid article {
  min-height: 190px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(26, 42, 90, 0.68), rgba(12, 21, 50, 0.7));
  transition: 220ms ease;
}

.feature-benefit-grid article:hover {
  border-color: rgba(80, 190, 255, 0.36);
  background: linear-gradient(145deg, rgba(31, 53, 111, 0.75), rgba(14, 24, 59, 0.76));
  transform: translateY(-4px);
}

.feature-benefit-grid article > span {
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-benefit-grid h3 {
  margin-top: 26px;
  font-size: 19px;
}

.feature-benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-editor-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(42px, 7vw, 90px);
}

.feature-editor-main {
  max-width: 565px;
  justify-self: center;
}

.feature-editor-copy {
  max-width: 640px;
}

.feature-editor-copy h3,
.feature-management-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 55px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.feature-editor-copy > p,
.feature-management-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.feature-check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 0;
  color: #c8d3ee;
  list-style: none;
}

.feature-check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.feature-check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(73, 239, 189, 0.5);
  content: "";
}

.feature-inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-inline-facts span {
  padding: 6px 8px;
  border: 1px solid rgba(110, 163, 255, 0.23);
  border-radius: 7px;
  color: #8095c5;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-bulk-card {
  margin-top: 24px;
}

.feature-audio-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.feature-routing-shot {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-audio-side {
  display: grid;
  align-content: stretch;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.feature-meter-panel {
  display: grid;
  align-items: center;
  min-height: 310px;
  padding: 21px;
  border: 1px solid rgba(129, 171, 255, 0.25);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(24, 40, 88, 0.76), rgba(13, 23, 54, 0.8));
  grid-template-columns: 75px 1fr;
  gap: 25px;
}

.feature-meter-panel img {
  width: 55px;
  max-height: 270px;
  justify-self: center;
  object-fit: contain;
}

.feature-meter-panel h3 {
  margin-bottom: 11px;
  font-size: 22px;
}

.feature-meter-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.features-logbook {
  margin: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(118, 167, 255, 0.31);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
}

.features-logbook img {
  width: 100%;
  border: 1px solid rgba(166, 196, 255, 0.15);
  border-radius: 16px;
}

.features-logbook figcaption {
  display: flex;
  justify-content: space-between;
  padding: 13px 8px 4px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-filter-card {
  margin-top: 20px;
}

.feature-management-layout {
  display: grid;
  align-items: center;
  margin-top: 70px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(40px, 7vw, 80px);
}

.feature-language-row {
  display: flex;
  margin: 27px 0 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-language-row span {
  display: grid;
  width: 40px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(102, 172, 255, 0.3);
  border-radius: 9px;
  background: rgba(28, 58, 123, 0.25);
  color: #c1d8ff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
}

.feature-small-copy {
  padding: 17px 18px;
  border: 1px solid rgba(83, 197, 255, 0.2);
  border-radius: 14px;
  background: rgba(39, 124, 255, 0.07);
  font-size: 13px !important;
}

.feature-complete {
  background: radial-gradient(circle at 50% 10%, rgba(67, 99, 255, 0.08), transparent 35rem);
}

.feature-summary-grid {
  align-items: stretch;
}

.feature-summary-grid .feature-list-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(26, 42, 91, 0.78), rgba(12, 22, 53, 0.8));
}

.feature-summary-grid .feature-list-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  filter: blur(70px);
  opacity: 0.12;
}

.feature-summary-number {
  margin-bottom: 38px;
  color: #6d82b5;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.feature-summary-grid .feature-list-card h3 {
  max-width: 440px;
  font-size: 26px;
}

.feature-summary-grid .feature-list-card li {
  font-size: 14px;
  line-height: 1.55;
}

.feature-environments .dual-shot {
  align-items: start;
}

.feature-final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px) {
  .features-hero-copy,
  .feature-story-heading,
  .feature-editor-layout,
  .feature-audio-layout,
  .feature-management-layout {
    grid-template-columns: 1fr;
  }

  .features-hero-copy {
    gap: 24px;
  }

  .feature-story-heading {
    gap: 10px;
  }

  .feature-story-heading > span {
    padding-top: 0;
  }

  .feature-story-heading p {
    max-width: 680px;
  }

  .feature-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-editor-copy {
    max-width: none;
  }

  .feature-routing-shot {
    display: block;
  }

  .feature-management-layout {
    margin-top: 55px;
  }
}

@media (max-width: 760px) {
  .features-hero {
    padding-top: 52px;
  }

  .feature-jump-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .features-screen-bar,
  .features-main-screen figcaption,
  .features-logbook figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .features-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-proof div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .features-proof div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .feature-benefit-grid,
  .feature-benefit-grid.three {
    grid-template-columns: 1fr;
  }

  .feature-benefit-grid article {
    min-height: 0;
  }

  .feature-meter-panel {
    grid-template-columns: 62px 1fr;
  }

  .feature-summary-grid .feature-list-card {
    min-height: 0;
    padding: 25px;
  }

  .feature-final-actions {
    width: 100%;
  }

  .feature-final-actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .feature-jump-nav {
    grid-template-columns: 1fr;
  }

  .features-proof {
    grid-template-columns: 1fr;
  }

  .features-proof div + div,
  .features-proof div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-meter-panel {
    grid-template-columns: 50px 1fr;
    padding: 16px;
    gap: 17px;
  }
}

/* Contact */
.contact-hero {
  padding-bottom: 48px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 64px;
}

.contact-hero-grid .lead {
  margin: 0 0 8px;
  max-width: 620px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: start;
}

.contact-details,
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(25, 37, 83, 0.78), rgba(10, 16, 43, 0.86));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-details {
  overflow: hidden;
}

.contact-direct {
  padding: 30px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, rgba(57, 211, 255, 0.13), transparent 44%),
    rgba(15, 25, 60, 0.55);
}

.contact-direct > span,
.contact-form-heading > span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-direct strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(17px, 1.5vw, 22px);
  overflow-wrap: anywhere;
}

.contact-direct p,
.contact-form-heading p,
.contact-route-list p,
.contact-submit-row p {
  color: var(--muted);
}

.contact-direct p {
  margin: 8px 0 0;
  font-size: 14px;
}

.contact-route-list {
  padding: 14px 30px;
}

.contact-route-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 20px 0;
}

.contact-route-list article + article {
  border-top: 1px solid var(--line);
}

.contact-route-list article > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-route-list h3 {
  margin: -4px 0 4px;
  color: #fff;
  font-size: 16px;
}

.contact-route-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.contact-response-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 30px 30px;
  padding: 16px 18px;
  border: 1px solid rgba(71, 224, 171, 0.22);
  border-radius: 14px;
  background: rgba(29, 183, 131, 0.06);
}

.contact-response-note i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #47e0ab;
  box-shadow: 0 0 16px rgba(71, 224, 171, 0.7);
}

.contact-response-note span {
  display: grid;
  gap: 2px;
}

.contact-response-note strong {
  color: #eafff8;
  font-size: 12px;
}

.contact-response-note small {
  color: var(--muted);
}

.contact-form-card {
  padding: clamp(26px, 4vw, 46px);
}

.contact-form-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.contact-form-heading h2 {
  margin: 10px 0 8px;
}

.contact-form-heading p {
  margin: 0;
}

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

.field select {
  width: 100%;
  min-height: 47px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #080d22;
  color: #fff;
  padding: 13px 40px 13px 14px;
}

.field select:focus {
  border-color: rgba(66, 215, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(66, 215, 255, 0.08);
}

.field label small {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 500;
}

.field-help {
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-status {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 650;
}

.contact-form-status.is-success {
  border: 1px solid rgba(71, 224, 171, 0.35);
  background: rgba(29, 183, 131, 0.1);
  color: #b9ffe4;
}

.contact-form-status.is-error {
  border: 1px solid rgba(255, 91, 125, 0.38);
  background: rgba(188, 34, 75, 0.12);
  color: #ffc5d1;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.contact-submit-row p {
  max-width: 390px;
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.contact-submit-row .button {
  min-width: 170px;
}

.contact-submit-row .button:disabled {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.68;
}

@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card {
    border-radius: 19px;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-row .button {
    width: 100%;
  }
}

/* Home storefront */
.home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  align-items: center;
  padding: 86px 0 94px;
  background:
    radial-gradient(circle at 76% 44%, rgba(74, 106, 255, 0.18), transparent 33rem),
    radial-gradient(circle at 54% 5%, rgba(29, 213, 255, 0.09), transparent 25rem);
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(128, 158, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 158, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.home-hero::after {
  top: -390px;
  right: -260px;
  width: 900px;
  height: 900px;
  opacity: 0.65;
}

.home-hero-light {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(95px);
  opacity: 0.34;
}

.home-hero-light-one {
  top: 4%;
  left: -160px;
  background: #2ed7ff;
  animation: homeLightDrift 9s ease-in-out infinite alternate;
}

.home-hero-light-two {
  right: 6%;
  bottom: -180px;
  background: #8e55ff;
  animation: homeLightDrift 12s ease-in-out -3s infinite alternate-reverse;
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(400px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(45px, 6vw, 92px);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  text-align: left;
}

.home-hero-copy h1 {
  margin: 17px 0 25px;
  font-size: clamp(60px, 6.4vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.home-hero-copy .lead {
  max-width: 590px;
  margin: 0;
  color: #b9c7e8;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.home-hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  color: #7f91bb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(73, 239, 189, 0.88);
  animation: homePulse 1.9s ease-in-out infinite;
}

.home-hero-promise {
  margin: 16px 0 0;
  color: white;
  font-size: 13px;
  font-weight: 760;
}

.home-hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.home-hero-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(52, 166, 255, 0.22);
}

.home-hero-primary::after {
  position: absolute;
  top: -80%;
  left: -35%;
  width: 28%;
  height: 260%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  content: "";
  animation: homeButtonShine 4.8s ease-in-out infinite;
}

.home-hero-proof {
  display: grid;
  max-width: 560px;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  color: #8996ba;
  font-size: 11px;
}

.home-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(73, 239, 189, 0.7);
}

.home-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 58px 0 46px;
}

.home-visual-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(120, 151, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: 2% -10% -1% 6%;
  transform: rotate(-8deg);
  animation: homeOrbit 13s ease-in-out infinite alternate;
}

.orbit-two {
  inset: 15% 4% 8% -4%;
  border-color: rgba(52, 214, 255, 0.11);
  transform: rotate(11deg);
  animation: homeOrbit 10s ease-in-out -4s infinite alternate-reverse;
}

.home-product-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(99, 153, 255, 0.48);
  border-radius: 24px;
  background: #0a1028;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 42px 95px rgba(0, 0, 0, 0.52),
    0 0 90px rgba(48, 107, 255, 0.2);
  transform: perspective(1500px) rotateX(calc(var(--tilt-x, 0deg) + 1.8deg)) rotateY(calc(var(--tilt-y, 0deg) - 5deg));
  transform-origin: center;
  transition: transform 180ms ease-out, box-shadow 240ms ease;
}

.home-product-stage::before {
  position: absolute;
  z-index: -1;
  inset: -38px 4% 0;
  border-radius: 50%;
  background: rgba(62, 118, 255, 0.32);
  content: "";
  filter: blur(70px);
}

.home-product-stage:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 48px 110px rgba(0, 0, 0, 0.56),
    0 0 110px rgba(48, 107, 255, 0.28);
}

.home-stage-screen {
  position: relative;
  overflow: hidden;
}

.home-product-stage img {
  display: block;
  width: 100%;
  border-radius: 0 0 22px 22px;
  filter: saturate(1.04) contrast(1.025);
}

.home-stage-shine {
  position: absolute;
  top: -35%;
  left: -45%;
  width: 27%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(148, 219, 255, 0.18), transparent);
  pointer-events: none;
  animation: homeScreenShine 7s ease-in-out 1.4s infinite;
}

.home-stage-bar,
.home-logbook-top {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: #7e8caf;
  font: 750 9px ui-monospace, Consolas, monospace;
  letter-spacing: 0.12em;
}

.home-stage-bar span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-stage-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(73, 239, 189, 0.7);
}

.home-stage-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 176px;
  padding: 12px 14px;
  border: 1px solid rgba(80, 200, 255, 0.34);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(14, 27, 66, 0.91), rgba(7, 14, 36, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4), 0 0 24px rgba(47, 177, 255, 0.08);
  backdrop-filter: blur(18px);
}

.home-stage-callout strong {
  color: white;
  font-size: 12px;
}

.home-stage-callout span {
  color: #8997bd;
  font-size: 9px;
}

.callout-preview {
  top: 10%;
  left: -36px;
}

.callout-quick {
  top: 29%;
  right: -36px;
}

.callout-log {
  right: 5%;
  bottom: 1%;
}

.home-live-pill {
  position: absolute;
  z-index: 4;
  bottom: 9%;
  left: -20px;
  display: grid;
  min-width: 176px;
  padding: 13px 15px 13px 39px;
  border: 1px solid rgba(73, 239, 189, 0.27);
  border-radius: 14px;
  background: rgba(7, 19, 38, 0.92);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(73, 239, 189, 0.08);
  backdrop-filter: blur(17px);
}

.home-live-pill > span {
  position: absolute;
  top: 19px;
  left: 16px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(73, 239, 189, 0.3);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(73, 239, 189, 0.82);
  animation: homePulse 1.9s ease-in-out infinite;
}

.home-live-pill strong {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.home-live-pill small {
  margin-top: 2px;
  color: #8391b2;
  font-size: 9px;
}

@keyframes homeLightDrift {
  to { transform: translate3d(70px, 34px, 0) scale(1.16); }
}

@keyframes homeOrbit {
  to { transform: rotate(2deg) scale(1.025); }
}

@keyframes homePulse {
  50% { opacity: 0.45; transform: scale(0.82); }
}

@keyframes homeButtonShine {
  0%, 66% { left: -40%; }
  88%, 100% { left: 125%; }
}

@keyframes homeScreenShine {
  0%, 70% { left: -45%; }
  92%, 100% { left: 135%; }
}

.home-proof-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: rgba(9, 15, 38, 0.86);
}

.home-proof-strip .container {
  display: flex;
  min-height: 69px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.home-proof-strip span {
  color: #93a2c6;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-proof-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.home-value-section {
  background: radial-gradient(circle at 50% 40%, rgba(49, 104, 241, 0.12), transparent 34rem);
}

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

.home-value-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(22, 36, 78, 0.77), rgba(11, 18, 45, 0.83));
}

.home-value-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(103, 74, 255, 0.14);
  content: "";
  filter: blur(55px);
}

.home-value-card.is-primary {
  border-color: rgba(66, 215, 255, 0.42);
  background: linear-gradient(145deg, rgba(25, 58, 120, 0.9), rgba(14, 22, 59, 0.9));
}

.home-value-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #6f7da4;
  font: 800 10px ui-monospace, Consolas, monospace;
}

.home-value-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(66, 215, 255, 0.34);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(50, 209, 255, 0.14), rgba(130, 79, 255, 0.16));
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-value-card h3 {
  max-width: 290px;
  margin: 42px 0 12px;
  font-size: 27px;
  line-height: 1.08;
}

.home-value-card p {
  color: var(--muted);
  font-size: 14px;
}

.home-value-card > strong {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  color: #8edfff;
  font-size: 10px;
  line-height: 1.5;
}

.home-showcase {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 20%, rgba(127, 65, 255, 0.14), transparent 30rem),
    rgba(8, 14, 35, 0.72);
}

.home-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  align-items: end;
  margin-bottom: 42px;
  gap: 55px;
}

.home-showcase-heading h2 {
  margin-bottom: 0;
}

.home-showcase-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.home-player-proof {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(86, 151, 255, 0.3);
  border-radius: 21px;
  background: #090e25;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
}

.home-player-proof img {
  width: 100%;
}

.home-proof-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 19px;
  gap: 20px;
}

.home-proof-caption span,
.home-shot-copy > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-proof-caption strong {
  color: #aab7d7;
  font-size: 12px;
  font-weight: 650;
  text-align: right;
}

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

.home-shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(22, 36, 78, 0.73), rgba(10, 17, 43, 0.82));
}

.home-shot-copy {
  min-height: 205px;
  padding: 29px;
}

.home-shot-copy h3 {
  margin: 13px 0 8px;
  font-size: 25px;
}

.home-shot-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-shot-image {
  display: grid;
  min-height: 240px;
  place-items: center;
  padding: 17px;
  border-top: 1px solid var(--line);
  background: rgba(5, 9, 25, 0.8);
}

.home-shot-image img {
  max-height: 310px;
  object-fit: contain;
}

.home-logbook-section {
  background: radial-gradient(circle at 15% 50%, rgba(47, 193, 255, 0.11), transparent 28rem);
}

.home-logbook-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.home-logbook-copy h2 {
  margin: 14px 0 22px;
}

.home-check-list {
  display: grid;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
  gap: 11px;
}

.home-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #c8d2ec;
  font-size: 13px;
}

.home-check-list span {
  color: var(--green);
  font-weight: 900;
}

.home-logbook-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(75, 181, 255, 0.31);
  border-radius: 22px;
  background: #080e24;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.home-logbook-frame img {
  width: 100%;
}

.home-audience-section {
  border-top: 1px solid var(--line);
  background: rgba(7, 12, 31, 0.56);
}

.home-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(15, 25, 59, 0.7);
}

.home-audience-grid article {
  min-height: 220px;
  padding: 30px;
}

.home-audience-grid article + article {
  border-left: 1px solid var(--line);
}

.home-audience-grid span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.home-audience-grid h3 {
  margin: 45px 0 8px;
}

.home-audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-buy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(66, 215, 255, 0.37);
  border-radius: 27px;
  background:
    radial-gradient(circle at 100% 0%, rgba(147, 74, 255, 0.27), transparent 23rem),
    linear-gradient(120deg, rgba(25, 59, 125, 0.94), rgba(25, 24, 76, 0.92));
  box-shadow: 0 28px 80px rgba(30, 83, 190, 0.18);
  gap: 50px;
}

.home-buy-panel h2 {
  margin: 9px 0 12px;
}

.home-buy-panel p {
  max-width: 720px;
  color: var(--muted);
}

.home-buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.home-buy-price {
  display: grid;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(7, 13, 36, 0.47);
  text-align: center;
}

.home-buy-price > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-buy-price strong {
  margin: 5px 0;
  font-size: 58px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.home-buy-price small {
  margin-right: 3px;
  color: var(--cyan);
  font-size: 21px;
  vertical-align: top;
}

.home-buy-price sup {
  font-size: 22px;
}

.home-buy-price em {
  color: var(--dim);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
    padding: 74px 0 82px;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .home-hero-copy h1 {
    font-size: clamp(62px, 11vw, 96px);
  }

  .home-hero-copy .lead,
  .home-hero-proof {
    margin-inline: auto;
  }

  .home-hero-kicker,
  .home-hero-copy .hero-actions {
    justify-content: center;
  }

  .home-hero-visual {
    width: min(920px, 94%);
    margin-inline: auto;
  }

  .home-showcase-heading,
  .home-logbook-layout {
    grid-template-columns: 1fr;
  }

  .home-value-grid {
    grid-template-columns: 1fr;
  }

  .home-value-card {
    min-height: 330px;
  }

  .home-value-card h3 {
    max-width: none;
  }

  .home-showcase-heading {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(5, 8, 23, 0.92);
    backdrop-filter: blur(18px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .home-hero {
    padding: 52px 0 64px;
  }

  .home-hero-copy h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .home-hero-copy .lead {
    font-size: 16px;
  }

  .home-hero-promise {
    font-size: 12px;
  }

  .home-hero-visual {
    width: 100%;
    padding: 42px 0 10px;
  }

  .home-product-stage {
    transform: perspective(1200px) rotateX(calc(var(--tilt-x, 0deg) + 1deg)) rotateY(calc(var(--tilt-y, 0deg) - 2deg));
  }

  .home-stage-callout {
    display: none;
  }

  .home-live-pill {
    bottom: -10px;
    left: 16px;
  }

  .home-proof-strip .container {
    min-height: auto;
    padding-block: 20px;
    flex-wrap: wrap;
  }

  .home-showcase-grid,
  .home-audience-grid,
  .home-buy-panel {
    grid-template-columns: 1fr;
  }

  .home-audience-grid article {
    min-height: 175px;
  }

  .home-audience-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-audience-grid h3 {
    margin-top: 28px;
  }

  .home-buy-price {
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .home-hero-copy .hero-actions,
  .home-buy-links {
    width: 100%;
    flex-direction: column;
  }

  .home-hero-copy .button,
  .home-buy-links .button {
    width: 100%;
  }

  .home-hero-proof {
    max-width: 290px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .home-stage-bar span:last-child {
    display: none;
  }

  .home-live-pill {
    position: relative;
    bottom: auto;
    left: auto;
    width: max-content;
    min-width: 0;
    margin: -2px auto 0;
  }

  .home-proof-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-proof-caption strong {
    text-align: left;
  }

  .home-buy-panel {
    padding: 28px;
  }
}
