/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --bg: #07080e;
  --bg-alt: #0b0d16;
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .07);
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --text: #edf0f7;
  --text-dim: #c4cadc;
  --text-faint: #9aa3bd;
  --accent: #5eb3ff;
  --accent-2: #a870ff;
  --accent-ink: #051020;
  --ok: #59d99a;
  --radius: 16px;
  --radius-lg: 22px;
  --wrap: 1180px;
  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, .9);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60rem 34rem at 78% -10%, rgba(94, 179, 255, .16), transparent 60%),
    radial-gradient(48rem 30rem at 6% 8%, rgba(168, 112, 255, .13), transparent 62%);
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); }
h3 { font-size: 1.14rem; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.wrap-narrow { max-width: 820px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-ink); padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--text);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px;
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: 650; font-size: .95rem; text-align: center;
  cursor: pointer; text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-sub { font-weight: 500; font-size: .76rem; opacity: .78; letter-spacing: .01em; }

.btn-primary {
  --btn-bg: linear-gradient(180deg, #74c0ff, var(--accent));
  --btn-fg: #04121f;
  box-shadow: 0 10px 26px -12px rgba(94, 179, 255, .8);
}
.btn-primary:hover { box-shadow: 0 16px 34px -12px rgba(94, 179, 255, .95); }

.btn-ghost { --btn-bg: transparent; border-color: var(--line-strong); }
.btn-ghost:hover { --btn-bg: var(--surface-2); }

.btn-lg { padding: 16px 30px; font-size: 1.02rem; border-radius: 14px; }
.btn-sm { padding: 8px 14px; font-size: .84rem; border-radius: 10px; }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   Announcement + header
   ============================================================ */
.announce {
  background: linear-gradient(90deg, rgba(94, 179, 255, .16), rgba(168, 112, 255, .16));
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  position: relative; z-index: 3;
}
.announce a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 9px 0; color: var(--text); text-align: center;
}
.announce a:hover { text-decoration: none; }
.announce a:hover .announce-arrow { transform: translateX(4px); }
.announce-arrow { transition: transform .18s ease; }
.announce-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(89, 217, 154, .18); flex: none; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 8, 14, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; color: var(--text); font-weight: 750; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand-mark { display: grid; place-items: center; }
.brand-text { font-size: 1.08rem; }

.nav-toggle {
  margin-left: auto; display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 10px 9px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: inline-block; padding: 9px 13px; border-radius: 10px;
  color: var(--text-dim); font: inherit; font-size: .93rem; font-weight: 550;
  background: none; border: 0; cursor: pointer;
}
.nav-link:hover { color: var(--text); background: var(--surface); text-decoration: none; }

.has-menu { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: -10px; width: 340px;
  background: #0c0e18; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-menu[data-open="true"] .mega, .has-menu:hover .mega { opacity: 1; visibility: visible; transform: none; }
.mega-item { display: block; padding: 10px 12px; border-radius: 11px; color: var(--text); }
.mega-item:hover { background: var(--surface-2); text-decoration: none; }
.mega-title { display: block; font-weight: 620; font-size: .95rem; }
.mega-sub { display: block; color: var(--text-faint); font-size: .8rem; line-height: 1.45; }
.mega-all { display: block; padding: 10px 12px; margin-top: 4px; border-top: 1px solid var(--line); font-size: .85rem; }

.nav-search input {
  width: 150px; padding: 9px 13px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line); color: var(--text); font: inherit; font-size: .88rem;
}
.nav-search input::placeholder { color: var(--text-faint); }
.nav-search input:focus { border-color: var(--line-strong); width: 190px; outline: none; }

/* ============================================================
   Hero
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  padding: 6px 14px 6px 11px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--surface); color: var(--text-dim);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(94, 179, 255, .2); }

.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: 18px; }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--text-dim); max-width: 62ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }
.hero-actions-center { justify-content: center; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0; padding: 0; color: var(--text-faint); font-size: .88rem; }
.trust-row strong { color: var(--text); font-weight: 680; }

/* Mock desktop illustration */
.hero-visual { position: relative; }
.desk {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(24rem 16rem at 70% 20%, rgba(94, 179, 255, .22), transparent 65%),
    radial-gradient(20rem 14rem at 20% 85%, rgba(168, 112, 255, .2), transparent 62%),
    linear-gradient(160deg, #14172a, #0a0b13);
  box-shadow: var(--shadow);
}
.desk-island {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 46%; height: 34px; border-radius: 17px; background: #06070c;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex; align-items: center; gap: 8px; padding: 0 12px;
}
.desk-dot { width: 15px; height: 15px; border-radius: 50%; background: linear-gradient(180deg, #7cc4ff, #2f8ce0); flex: none; }
.desk-line { height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .8); }
.desk-line.w1 { width: 38%; }
.desk-line.w2 { width: 20%; background: rgba(255, 255, 255, .35); }

.desk-widget {
  position: absolute; padding: 13px 15px; border-radius: 15px;
  background: rgba(10, 11, 18, .78); border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(8px); font-size: .74rem; color: var(--text-dim);
  display: grid; gap: 4px;
}
.desk-widget-a { top: 26%; left: 7%; width: 43%; grid-template-columns: auto 1fr; align-items: center; column-gap: 9px; }
.desk-widget-a .dw-label { font-weight: 700; color: var(--text); font-size: .68rem; letter-spacing: .06em; }
.desk-widget-a .dw-value { justify-self: end; color: var(--text); font-variant-numeric: tabular-nums; }
.desk-widget-a .dw-bar { grid-column: 1 / -1; height: 4px; border-radius: 3px; background: rgba(255, 255, 255, .12); overflow: hidden; }
.desk-widget-a .dw-bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), #9fd8ff); }

.desk-widget-b { top: 24%; right: 7%; width: 33%; text-align: right; }
.dw-temp { font-size: 1.85rem; font-weight: 700; color: var(--text); line-height: 1; }
.dw-sub { font-size: .72rem; }
.dw-time { font-size: 1.1rem; font-weight: 650; color: var(--text); font-variant-numeric: tabular-nums; }

.desk-widget-c { bottom: 9%; left: 7%; right: 7%; grid-template-columns: auto 1fr; align-items: center; column-gap: 11px; }
.dw-mic { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(180deg, #ffa285, #ff7a52); box-shadow: 0 0 0 6px rgba(255, 138, 106, .16); }
.desk-widget-c .dw-sub { font-size: .8rem; color: var(--text); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(52px, 7vw, 88px) 0; }
.section-tight { padding: clamp(34px, 4vw, 52px) 0 clamp(52px, 7vw, 80px); }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section-head { max-width: 62ch; margin: 0 auto clamp(30px, 4vw, 48px); text-align: center; }
.section-head-left { margin-left: 0; text-align: left; }
.section-head p { color: var(--text-dim); margin: 0; }

.page-head { padding: clamp(38px, 6vw, 68px) 0 0; }
.page-head-center { text-align: center; padding-bottom: clamp(40px, 6vw, 72px); }

.breadcrumbs { padding-top: 20px; font-size: .82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; color: var(--text-faint); }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.breadcrumbs a { color: var(--text-dim); }

/* ============================================================
   Cards
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: var(--surface-2); }
.card-media { display: block; aspect-ratio: 16 / 10; background: #0d101c; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-cat { margin: 0 0 6px; color: var(--accent); font-size: .74rem; font-weight: 680; letter-spacing: .07em; text-transform: uppercase; }
.card-body h3 { margin-bottom: 6px; font-size: 1.16rem; }
.card-body h3 a { color: var(--text); }
.card-tag { margin: 0 0 10px; color: var(--text-dim); font-size: .92rem; }
.card-desc { margin: 0 0 14px; color: var(--text-dim); font-size: .92rem; line-height: 1.55; }
.card-features { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 6px; }
.card-features li { position: relative; padding-left: 20px; font-size: .86rem; color: var(--text-dim); }
.card-features li::before {
  content: ""; position: absolute; left: 4px; top: .58em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent); opacity: .85;
}
.card-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0 0 16px; color: var(--text-dim); font-size: .82rem; font-weight: 550; }
.card-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; }

.list-grid { display: grid; gap: 24px; }
.list-card {
  display: grid; grid-template-columns: minmax(0, 42%) minmax(0, 58%); gap: 0;
  overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.list-media { background: #0d101c; }
.list-media img { width: 100%; height: 100%; object-fit: cover; }
.list-body { padding: 26px 28px; }
.list-body h2 { font-size: 1.4rem; margin-bottom: 6px; }
.list-body h2 a { color: var(--text); }

.pill-list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0 0 16px; padding: 0; }
.pill-list li {
  padding: 6px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .8rem; font-weight: 580; color: #e2e6f2;
}

.list-body .card-tag { color: #d0d6e8; }
.list-body .card-desc { color: #d7dcec; font-size: .94rem; }
.list-body .card-meta { color: #c5cce0; }

.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.mini-card {
  display: grid; gap: 4px; padding: 16px 18px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
}
.mini-card:hover { background: var(--surface-2); border-color: var(--line-strong); text-decoration: none; }
.mini-card span { color: var(--text-faint); font-size: .84rem; }

/* ============================================================
   Values, steps, table, faq
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value { padding: 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.value-num { display: block; margin-bottom: 12px; color: var(--accent); font-size: .82rem; font-weight: 750; letter-spacing: .1em; }
.value p { margin: 0; color: var(--text-faint); font-size: .9rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { padding: 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.step-num {
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px;
  border-radius: 50%; background: linear-gradient(180deg, #74c0ff, var(--accent));
  color: var(--accent-ink); font-weight: 750;
}
.steps p { margin: 0; color: var(--text-faint); font-size: .9rem; }

.table-scroll { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .92rem; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--surface-2); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-dim); }
.compare tbody th { color: var(--text-dim); font-weight: 600; }
.compare td { color: var(--text-faint); }
.compare td.yes { color: var(--ok); font-weight: 640; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 620; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq-body { padding: 14px 20px 18px; color: var(--text-dim); font-size: .93rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Product page
   ============================================================ */
.product-hero { padding: 26px 0 clamp(30px, 5vw, 56px); }
.product-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 4vw, 52px); align-items: start; }
.product-intro h1 { margin-bottom: 12px; }
.product-summary { color: var(--text-faint); font-size: .96rem; }

.download-box {
  margin-top: 24px; padding: 22px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(94, 179, 255, .1), var(--surface));
  border: 1px solid var(--line-strong);
}
.download-facts { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; font-size: .85rem; color: var(--text-dim); }
.download-facts li { position: relative; padding-left: 22px; }
.download-facts li::before {
  content: ""; position: absolute; left: 3px; top: .42em; width: 11px; height: 6px;
  border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg);
}

.product-visual { position: sticky; top: 92px; }
.product-shot, .product-video, .video-frame {
  border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow);
}
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #0d101c; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-play { position: absolute; inset: 0; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.video-play img { width: 100%; height: 100%; object-fit: cover; }
.video-play::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%; background: rgba(6, 8, 14, .74);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: inset -8px 0 0 -2px transparent;
}
.video-play::before {
  content: ""; position: absolute; top: 50%; left: 50%; z-index: 2;
  transform: translate(-38%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}
.video-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  padding: 6px 13px; border-radius: 999px; background: rgba(6, 8, 14, .82);
  border: 1px solid var(--line-strong); font-size: .78rem; color: var(--text);
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature { padding: 22px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.feature-icon {
  display: inline-grid; place-items: center; min-width: 42px; height: 30px; padding: 0 10px; margin-bottom: 14px;
  border-radius: 9px; background: rgba(94, 179, 255, .14); border: 1px solid rgba(94, 179, 255, .3);
  color: var(--accent); font-size: .7rem; font-weight: 750; letter-spacing: .07em;
}
.feature p { margin: 0; color: var(--text-faint); font-size: .9rem; }

.shot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.shot-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #0d101c; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 32px 0; }
.spec { padding: 20px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.spec h3 { font-size: .82rem; letter-spacing: .07em; text-transform: uppercase; color: var(--text-faint); }
.spec p { margin: 0; font-size: .92rem; color: var(--text-dim); }

.changelog { padding: 22px 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.changelog h3 { font-size: 1rem; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(7, 8, 14, .93); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(100%); transition: transform .24s ease;
}
.sticky-cta[data-visible="true"] { transform: none; }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; }
.sticky-meta { display: grid; }
.sticky-meta span { color: var(--text-faint); font-size: .8rem; }

/* ============================================================
   Prose (rendered markdown)
   ============================================================ */
.prose { color: var(--text-dim); font-size: 1.01rem; }
.prose h2 { margin: 1.7em 0 .6em; font-size: 1.5rem; color: var(--text); }
.prose h3 { margin: 1.5em 0 .5em; font-size: 1.14rem; color: var(--text); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1em; display: grid; gap: 7px; }
.prose li::marker { color: var(--accent); }
.prose code {
  padding: 2px 6px; border-radius: 6px; background: var(--surface-2);
  border: 1px solid var(--line); font-size: .88em; color: #cfe6ff;
}
.article-head { margin-bottom: 34px; }
.article-meta { color: var(--text-faint); font-size: .84rem; margin: 0; }

/* ============================================================
   Download page
   ============================================================ */
.download-page { padding: clamp(36px, 6vw, 72px) 0; }
.download-card {
  padding: clamp(26px, 4vw, 44px); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow);
}
.install-steps { display: grid; gap: 12px; margin: 30px 0; padding-left: 22px; color: var(--text-dim); font-size: .94rem; }
.install-steps strong { color: var(--text); }
.install-steps kbd {
  padding: 2px 7px; border-radius: 6px; background: var(--surface-2);
  border: 1px solid var(--line-strong); font-size: .82em; font-family: inherit;
}
.install-steps code { padding: 2px 6px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line); font-size: .88em; }
.download-support { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.download-support p { margin: 0; color: var(--text-faint); font-size: .9rem; }
.download-related { margin-top: 44px; }
.download-related h2 { font-size: 1.2rem; }

.notice {
  padding: 14px 18px; border-radius: var(--radius); font-size: .92rem;
  background: rgba(94, 179, 255, .1); border: 1px solid rgba(94, 179, 255, .28); color: var(--text-dim);
}

.search-form { display: flex; gap: 10px; margin: 22px 0 0; }
.search-form input {
  flex: 1; padding: 14px 18px; border-radius: 12px; font: inherit;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
}

/* ============================================================
   CTA band + footer
   ============================================================ */
.cta-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(94, 179, 255, .14), rgba(168, 112, 255, .12));
}
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(38px, 5vw, 62px) 24px; }
.cta-inner h2 { margin-bottom: 6px; }
.cta-inner p { margin: 0; color: var(--text-dim); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer { background: #05060b; border-top: 1px solid var(--line); padding: clamp(40px, 5vw, 64px) 0 26px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer-brand p { color: var(--text-faint); max-width: 34ch; margin: 10px 0 0; }
.footer-note { font-size: .84rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.footer-col h2 { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--text-dim); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--text-faint); font-size: .8rem;
}
.footer-bottom p { margin: 0; }

/* ============================================================
   Consent banner
   ============================================================ */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; }
.consent-inner {
  max-width: 720px; margin: 0 auto; padding: 16px 20px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  border-radius: var(--radius); background: rgba(11, 13, 22, .97);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow);
}
.consent-inner p { margin: 0; font-size: .85rem; color: var(--text-dim); flex: 1 1 320px; }
.consent-actions { display: flex; gap: 9px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner, .product-hero-inner { grid-template-columns: 1fr; }
  .product-visual { position: static; order: -1; }
  .list-card { grid-template-columns: 1fr; }
  .list-media { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 86vw);
    flex-direction: column; align-items: stretch; gap: 14px;
    padding: 84px 22px 28px; background: #0a0c15; border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .24s ease; overflow-y: auto; z-index: 50;
  }
  .site-nav[data-open="true"] { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { display: block; width: 100%; text-align: left; font-size: 1rem; padding: 12px 14px; }
  .mega {
    position: static; width: auto; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; background: var(--surface); margin: 4px 0 8px;
  }
  .has-menu[data-open="true"] .mega { display: block; }
  .has-menu:hover .mega { display: none; }
  .has-menu[data-open="true"]:hover .mega { display: block; }
  .nav-search input, .nav-search input:focus { width: 100%; }
}

@media (max-width: 640px) {
  .desk-widget-a, .desk-widget-b { position: static; width: auto; text-align: left; }
  .desk { aspect-ratio: auto; padding: 62px 16px 16px; display: grid; gap: 12px; }
  .desk-widget-c { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .btn-lg { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .sticky-inner { padding: 10px 16px; }
  .sticky-meta span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
