:root {
  --bg: #041116;
  --bg-raised: #071c24;
  --surface: rgba(10, 36, 44, 0.88);
  --surface-strong: #0b2a32;
  --surface-soft: rgba(15, 55, 64, 0.62);
  --line: rgba(108, 241, 229, 0.18);
  --line-strong: rgba(108, 241, 229, 0.42);
  --text: #effffc;
  --muted: #9bbcb9;
  --faint: #638b89;
  --accent: #35d4c5;
  --accent-rgb: 53, 212, 197;
  --accent-2: #b56bf3;
  --accent-3: #4c9dff;
  --success: #43db8b;
  --warning: #ffd05a;
  --danger: #ff7287;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --content: 1180px;
  --header-height: 76px;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(var(--accent-rgb), 0.10), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(181, 107, 243, 0.08), transparent 34rem),
    var(--bg);
  font-family: var(--font-display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  color: #00110f;
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: #00110f;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.noscript {
  margin: 0;
  padding: 12px 20px;
  color: #161100;
  background: var(--warning);
  text-align: center;
  font-weight: 700;
}

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

.section {
  padding-block: 112px;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-block-end: 1px solid rgba(119, 238, 227, 0.10);
  background: rgba(3, 16, 21, 0.78);
  backdrop-filter: blur(20px) saturate(135%);
}

.nav-shell {
  width: min(calc(100% - 32px), 1320px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(181, 107, 243, 0.11));
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(var(--accent-rgb), 0.08), 0 0 24px rgba(var(--accent-rgb), 0.08);
  font-size: 21px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  letter-spacing: -0.03em;
  font-size: 20px;
}

.brand-copy small {
  margin-block-start: 5px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  background: rgba(10, 43, 51, 0.85);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.language-switch button {
  min-width: 35px;
  padding: 5px 7px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: #001310;
  background: var(--accent);
}

.install-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.install-button:hover {
  background: rgba(var(--accent-rgb), 0.10);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  margin-inline-start: auto;
  padding: 8px;
  background: rgba(10, 43, 51, 0.85);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(72px, 9vw, 130px) 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 7% -15% auto 43%;
  z-index: -2;
  height: 78%;
  content: "";
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.13), rgba(87, 92, 255, 0.055) 40%, transparent 70%);
  filter: blur(20px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(var(--accent-rgb), 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-rgb), 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, black 30%, black 75%, transparent), linear-gradient(to bottom, black, transparent 80%);
  opacity: 0.7;
}

.eyebrow,
.card-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #001512;
  background: linear-gradient(135deg, var(--accent), #6de9da);
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.20);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(var(--accent-rgb), 0.30);
}

.button-ghost {
  color: var(--text);
  background: rgba(9, 35, 42, 0.65);
  border-color: var(--line-strong);
}

.button-ghost:hover {
  background: rgba(var(--accent-rgb), 0.10);
  border-color: var(--accent);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
}

.hero-trust li span:first-child {
  color: var(--accent);
}

.hero-console {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(12, 45, 53, 0.97), rgba(3, 17, 23, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.07), 0 0 80px rgba(var(--accent-rgb), 0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

[dir="rtl"] .hero-console {
  transform: perspective(1200px) rotateY(3deg) rotateX(1deg);
}

.console-topline {
  height: 50px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  background: rgba(4, 21, 27, 0.8);
  border-block-end: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.console-topline > span:first-child {
  display: flex;
  gap: 5px;
}

.console-topline > span:first-child i {
  width: 7px;
  height: 7px;
  background: var(--faint);
  border-radius: 50%;
}

.console-topline > span:first-child i:nth-child(2) { background: var(--accent-2); }
.console-topline > span:first-child i:nth-child(3) { background: var(--accent); }

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
}

.console-live b,
.lab-title i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--accent);
}

.console-body {
  min-height: 420px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

[dir="rtl"] .console-body {
  grid-template-columns: 1fr 58px;
}

.mini-sidebar {
  padding-block: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: rgba(5, 24, 30, 0.8);
  border-inline-end: 1px solid var(--line);
}

[dir="rtl"] .mini-sidebar {
  order: 2;
  border-inline-end: 0;
  border-inline-start: 1px solid var(--line);
}

.mini-sidebar span {
  display: grid;
  width: 29px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--faint);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
}

.mini-sidebar .active {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.11);
  border-color: var(--line-strong);
}

.console-main {
  min-width: 0;
  padding: 28px;
}

.console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-heading small,
.console-metrics small,
.lab-metrics small {
  display: block;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.console-heading strong {
  display: block;
  margin-block-start: 5px;
  color: var(--accent);
  font-size: 35px;
  line-height: 1;
}

.console-heading strong span,
.lab-metrics strong span {
  color: var(--faint);
  font-size: 0.42em;
}

.orbit {
  position: relative;
  width: 98px;
  height: 72px;
}

.orbit i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78px;
  height: 35px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit i:nth-child(2) {
  width: 60px;
  height: 54px;
  border-color: var(--accent-2);
  transform: translate(-50%, -50%) rotate(48deg);
}

.orbit i:nth-child(3) {
  width: 48px;
  height: 70px;
  border-color: var(--accent-3);
  transform: translate(-50%, -50%) rotate(-48deg);
}

.orbit i::after {
  position: absolute;
  inset-block-start: -3px;
  inset-inline-start: 50%;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 9px currentColor;
  animation: orbitPulse 2.4s ease-in-out infinite alternate;
}

.orbit b {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #001310;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.4);
}

.signal-chart {
  position: relative;
  height: 175px;
  margin-block: 30px 24px;
  overflow: hidden;
  border-block-end: 1px solid var(--line-strong);
  background-image: linear-gradient(to bottom, transparent 24%, var(--line) 25%, transparent 26%, transparent 49%, var(--line) 50%, transparent 51%, transparent 74%, var(--line) 75%, transparent 76%);
}

.goal-line {
  position: absolute;
  inset: 27% 0 auto;
  border-block-start: 1px dashed var(--warning);
}

.signal-bars,
.bar-chart {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  gap: 5px;
}

.signal-bars i {
  min-width: 4px;
  flex: 1;
  background: linear-gradient(to top, rgba(var(--accent-rgb), 0.12), var(--accent));
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.15);
  transform-origin: bottom;
  animation: barEnter 700ms cubic-bezier(.2, .8, .2, 1) both;
}

.signal-bars i:nth-child(3n) { background: linear-gradient(to top, rgba(181, 107, 243, 0.09), var(--accent-2)); }
.signal-bars i:nth-child(5n) { background: linear-gradient(to top, rgba(76, 157, 255, 0.08), var(--accent-3)); }

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.console-metrics > div {
  padding: 15px;
  background: rgba(16, 59, 66, 0.62);
  border: 1px solid rgba(108, 241, 229, 0.08);
  border-radius: 9px;
}

.console-metrics strong {
  display: block;
  margin-block-start: 5px;
  color: var(--text);
  font-size: 17px;
}

.demo-disclaimer {
  position: absolute;
  inset: auto 20px 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--faint);
  font-size: 9px;
}

.hero-scroll {
  position: absolute;
  inset: auto 50% 25px auto;
  width: 26px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
}

.hero-scroll span {
  position: absolute;
  inset: 8px 50% auto auto;
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 99px;
  transform: translateX(50%);
  animation: scrollCue 2s ease-in-out infinite;
}

.facts-band {
  border-block: 1px solid var(--line);
  background: rgba(9, 33, 40, 0.7);
}

.facts-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.3fr;
  align-items: center;
}

.fact {
  min-height: 62px;
  padding-inline: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-inline-start: 1px solid var(--line);
}

.fact:first-of-type {
  border-inline-start: 0;
}

.fact strong {
  color: var(--text);
  font-size: 25px;
  line-height: 1.1;
}

.fact > span {
  margin-block-start: 7px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-status {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.verified-mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: #00140f !important;
  background: var(--success);
  border-radius: 50%;
  font-size: 16px !important;
}

.fact-status > span:last-child {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.fact-status strong {
  color: var(--success);
  font-size: 14px;
}

.fact-status small {
  margin-block-start: 5px;
  color: var(--faint);
  font-size: 9px;
}

.section-heading {
  max-width: 820px;
  margin-block-end: 48px;
}

.section-heading h2,
.privacy-copy h2,
.backup-card h2,
.release-card h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 65px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > p:last-child,
.privacy-copy > p,
.backup-card > div > p:last-child,
.release-card > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.split-heading > p {
  margin: 0 !important;
}

.product-stage {
  overflow: hidden;
  background: linear-gradient(160deg, rgba(13, 47, 55, 0.85), rgba(5, 20, 26, 0.95));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stage-toolbar {
  min-height: 66px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(6, 24, 30, 0.78);
  border-block-end: 1px solid var(--line);
}

.stage-tabs {
  display: inline-flex;
  padding: 4px;
  background: #06171d;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.stage-tabs button,
.range-switch button {
  min-height: 34px;
  padding-inline: 15px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.stage-tabs button[aria-selected="true"],
.range-switch button[aria-pressed="true"] {
  color: #00130f;
  background: var(--accent);
}

.stage-badge,
.lab-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.stage-badge i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--success);
}

.product-stage figure,
.theme-preview {
  margin: 0;
}

.image-frame {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background: #031015;
}

.product-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.product-stage figcaption {
  padding: 17px 22px;
  color: var(--muted);
  border-block-start: 1px solid var(--line);
  font-size: 12px;
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 30px;
  color: var(--muted);
  text-align: center;
}

.image-fallback[hidden] {
  display: none;
}

.image-fallback span:first-child {
  color: var(--accent);
  font-size: 42px;
}

.feature-grid {
  margin-block-start: 22px;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 315px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(11, 41, 49, 0.92), rgba(5, 23, 29, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card::after {
  position: absolute;
  inset: auto -30% -45% auto;
  width: 240px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12), transparent 65%);
}

.feature-icon {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  margin-block-end: 35px;
  place-items: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.10);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 19px;
}

.feature-card .card-kicker {
  margin-block-end: 10px;
  font-size: 9px;
}

.feature-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.feature-card p:last-of-type {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-chart {
  height: 68px;
  margin-block-start: 30px;
  display: flex;
  align-items: end;
  gap: 6px;
  border-block-end: 1px solid var(--line-strong);
}

.mini-chart i {
  flex: 1;
  height: 35%;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
}

.mini-chart i:nth-child(2) { height: 52%; }
.mini-chart i:nth-child(3) { height: 44%; background: var(--accent-2); }
.mini-chart i:nth-child(4) { height: 70%; }
.mini-chart i:nth-child(5) { height: 62%; background: var(--accent-3); }
.mini-chart i:nth-child(6) { height: 83%; }
.mini-chart i:nth-child(7) { height: 67%; background: var(--accent-2); }
.mini-chart i:nth-child(8) { height: 92%; }

.demo-section,
.privacy-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.035), transparent 45%),
    rgba(4, 19, 25, 0.85);
}

.interactive-lab {
  overflow: hidden;
  background: #06191f;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lab-toolbar {
  min-height: 84px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(12, 43, 51, 0.75);
  border-block-end: 1px solid var(--line);
}

.lab-toolbar > div:first-child {
  display: flex;
  flex-direction: column;
}

.lab-title {
  color: var(--accent);
}

.lab-toolbar small {
  margin-block-start: 5px;
  color: var(--faint);
  font-size: 10px;
}

.range-switch {
  display: flex;
  padding: 4px;
  background: #031116;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.lab-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block-end: 1px solid var(--line);
}

.lab-metrics article {
  min-height: 150px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-inline-end: 1px solid var(--line);
}

.lab-metrics article:last-child {
  border-inline-end: 0;
}

.lab-metrics strong {
  margin-block: 10px 5px;
  color: var(--text);
  font-size: 33px;
  line-height: 1;
}

.lab-metrics em {
  color: var(--success);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.lab-metrics article > span:last-child {
  color: var(--faint);
  font-size: 10px;
}

.lab-metrics .signal-word {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 21px;
}

.lab-visuals {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
}

.lab-chart-wrap {
  min-width: 0;
  padding: 30px;
  border-inline-end: 1px solid var(--line);
}

.chart-labels,
.chart-axis {
  display: flex;
  justify-content: space-between;
}

.chart-labels span:first-child {
  font-size: 15px;
  font-weight: 800;
}

.chart-labels span:last-child,
.chart-axis {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 9px;
}

.bar-chart {
  position: relative;
  height: 245px;
  margin-block: 20px 12px;
  padding-block-start: 20px;
  background-image: linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 100% 25%;
  border-block-end: 1px solid var(--line-strong);
}

.bar-chart i {
  min-width: 3px;
  flex: 1;
  background: linear-gradient(to top, rgba(var(--accent-rgb), 0.1), var(--accent));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: barEnter 500ms cubic-bezier(.2, .8, .2, 1) both;
}

.bar-chart i[data-tone="low"] { background: linear-gradient(to top, rgba(76, 157, 255, 0.08), var(--accent-3)); }
.bar-chart i[data-tone="high"] { background: linear-gradient(to top, rgba(181, 107, 243, 0.08), var(--accent-2)); }

.signal-summary {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(var(--accent-rgb), 0.07), transparent);
}

.summary-orbit {
  position: absolute;
  inset: 20px 25px auto auto;
  color: var(--accent);
  opacity: 0.18;
  font-size: 80px;
  line-height: 1;
  animation: slowSpin 14s linear infinite;
}

[dir="rtl"] .summary-orbit {
  inset: 20px auto auto 25px;
}

.signal-summary .card-kicker {
  margin-block-end: 14px;
  font-size: 9px;
}

.signal-summary h3 {
  position: relative;
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.signal-summary > p:not(.card-kicker) {
  position: relative;
  color: var(--muted);
  font-size: 12px;
}

.summary-note {
  position: relative;
  margin-block-start: 25px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  background: rgba(4, 19, 24, 0.72);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 9px;
}

.summary-note span:first-child {
  color: var(--accent);
  font-size: 17px;
}

.theme-studio {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
}

.theme-selector {
  max-height: 610px;
  padding: 9px;
  overflow-y: auto;
  background: rgba(8, 29, 36, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  scrollbar-color: var(--line-strong) transparent;
}

.theme-option {
  width: 100%;
  min-height: 47px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  text-align: start;
  font-size: 11px;
  font-weight: 750;
}

.theme-option:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
}

.theme-option[aria-selected="true"] {
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.10);
  border-color: var(--line-strong);
}

.theme-swatches {
  display: inline-flex;
}

.theme-swatches i {
  width: 12px;
  height: 22px;
  background: var(--swatch);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.theme-swatches i:first-child { border-radius: 5px 0 0 5px; }
.theme-swatches i:last-child { border-radius: 0 5px 5px 0; }

[dir="rtl"] .theme-swatches i:first-child { border-radius: 0 5px 5px 0; }
[dir="rtl"] .theme-swatches i:last-child { border-radius: 5px 0 0 5px; }

.theme-preview {
  overflow: hidden;
  background: #06181e;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.theme-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.theme-preview figcaption {
  min-height: 62px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-block-start: 1px solid var(--line);
}

.theme-preview figcaption > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.theme-preview figcaption i {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.theme-preview figcaption small {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.privacy-copy .text-link {
  margin-block-start: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.privacy-vault {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.vault-core {
  position: relative;
  z-index: 4;
  width: 170px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: radial-gradient(circle at 50% 35%, rgba(var(--accent-rgb), 0.24), rgba(6, 27, 33, 0.98) 65%);
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(var(--accent-rgb), 0.12), 0 0 50px rgba(var(--accent-rgb), 0.18);
}

.vault-core > span {
  color: var(--accent);
  font-size: 28px;
}

.vault-core strong {
  margin-block-start: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.vault-core small {
  color: var(--faint);
  font-size: 9px;
}

.vault-ring {
  position: absolute;
  display: flex;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.vault-ring span {
  position: absolute;
  inset-block-start: -12px;
  padding: 4px 9px;
  color: var(--muted);
  background: #061a20;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 8px;
}

.ring-one { width: 265px; aspect-ratio: 1; z-index: 3; }
.ring-two { width: 365px; aspect-ratio: 1; z-index: 2; border-style: dashed; }
.ring-three { width: 470px; aspect-ratio: 1; z-index: 1; border-color: rgba(181, 107, 243, 0.25); }
.ring-three span { color: #cc9cf3; border-color: rgba(181, 107, 243, 0.28); }

.privacy-pillars {
  margin-block-start: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.privacy-pillars article {
  min-height: 230px;
  padding: 32px;
  background: #071b22;
}

.privacy-pillars article > span {
  color: var(--accent);
  font-size: 22px;
}

.privacy-pillars h3 {
  margin: 28px 0 8px;
  font-size: 18px;
}

.privacy-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.architecture-flow article {
  position: relative;
  min-height: 235px;
  padding: 29px;
  background: linear-gradient(145deg, rgba(12, 43, 51, 0.86), rgba(5, 22, 28, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.architecture-flow article > span {
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.10);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 20px;
}

.architecture-flow article > small {
  position: absolute;
  inset: 25px 25px auto auto;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 10px;
}

[dir="rtl"] .architecture-flow article > small {
  inset: 25px auto auto 25px;
}

.architecture-flow h3 {
  margin: 35px 0 8px;
  font-size: 20px;
}

.architecture-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.flow-arrow {
  color: var(--accent);
  font-size: 27px;
}

[dir="rtl"] .flow-arrow {
  transform: scaleX(-1);
}

.public-lane {
  margin-block-start: 24px;
  padding: 28px;
  background: rgba(var(--accent-rgb), 0.035);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
}

.lane-label {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.public-lane > div {
  margin-block-start: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.public-lane b {
  flex: 1;
  padding: 13px;
  color: var(--text);
  background: rgba(5, 24, 30, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
}

.public-lane > div > span {
  color: var(--accent);
}

.public-lane p {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 10px;
}

.public-lane p span:first-child {
  color: var(--danger);
}

.backup-section {
  padding-block-start: 30px;
}

.backup-card {
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 0 100%, rgba(var(--accent-rgb), 0.14), transparent 35%),
    linear-gradient(140deg, rgba(12, 47, 55, 0.95), rgba(5, 21, 27, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.backup-steps {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.backup-steps li {
  min-height: 91px;
  padding-block: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-block-end: 1px solid var(--line);
}

.backup-steps li:last-child {
  border-block-end: 0;
}

.backup-steps li > span {
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 10px;
}

.backup-steps div {
  display: flex;
  flex-direction: column;
}

.backup-steps strong {
  font-size: 15px;
}

.backup-steps small {
  color: var(--muted);
  font-size: 10px;
}

.release-section {
  padding-block-start: 30px;
}

.release-card {
  position: relative;
  padding: clamp(50px, 8vw, 100px) 30px;
  overflow: hidden;
  background: linear-gradient(150deg, #0b333b, #071c24 55%, #0e1c30);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.release-card::before,
.release-card::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
}

.release-card::before {
  width: 570px;
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.release-card::after {
  width: 760px;
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  border-style: dashed;
  transform: translate(-50%, -50%);
}

.release-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -2;
  width: 600px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.17), transparent 65%);
  transform: translate(-50%, -50%);
}

.release-card h2 {
  max-width: 780px;
  margin-inline: auto;
}

.release-card > p {
  max-width: 680px;
  margin-inline: auto;
}

.release-actions {
  justify-content: center;
}

.release-card > small {
  display: block;
  margin-block-start: 25px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 9px;
}

.site-footer {
  border-block-start: 1px solid var(--line);
  background: #031015;
}

.footer-inner {
  min-height: 145px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  color: var(--faint);
  text-align: center;
  font-size: 10px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
}

.footer-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent);
}

.toast {
  position: fixed;
  inset: auto 24px 24px auto;
  z-index: 500;
  max-width: min(390px, calc(100% - 48px));
  padding: 14px 18px;
  color: var(--text);
  background: #0a2e36;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  box-shadow: var(--shadow);
  font-size: 12px;
}

.state-page {
  min-height: 100svh;
  padding: 28px;
  display: grid;
  place-items: center;
}

.state-card {
  position: relative;
  width: min(100%, 720px);
  padding: clamp(34px, 8vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--accent-rgb), 0.13), transparent 38%),
    linear-gradient(145deg, rgba(11, 44, 52, 0.97), rgba(4, 19, 25, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.state-card h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.state-card > p:not(.eyebrow) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.state-card .button {
  margin-block-start: 30px;
}

.state-mark {
  display: grid;
  width: 60px;
  aspect-ratio: 1;
  margin-block-end: 32px;
  place-items: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  font-size: 28px;
}

.state-code {
  position: absolute;
  inset: -45px -10px auto auto;
  color: rgba(var(--accent-rgb), 0.07);
  font-family: var(--font-mono);
  font-size: clamp(120px, 25vw, 210px);
  font-weight: 900;
  line-height: 1;
}

[dir="rtl"] .state-code {
  inset: -45px auto auto -10px;
}

[dir="rtl"] .toast {
  inset: auto auto 24px 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes statusPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes orbitPulse {
  from { opacity: 0.55; transform: scale(0.75); }
  to { opacity: 1; transform: scale(1.25); }
}

@keyframes barEnter {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translate(50%, 0); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translate(50%, 13px); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; }
  .install-button span:last-child { display: none; }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero h1 { font-size: clamp(46px, 6vw, 72px); }
  .hero-console { min-height: 460px; }
  .console-main { padding: 22px; }
  .signal-chart { height: 145px; }

  .facts-inner { grid-template-columns: repeat(4, 1fr); }
  .fact-status { grid-column: 1 / -1; min-height: 62px; justify-content: center; border-block-start: 1px solid var(--line); border-inline-start: 0; }

  .feature-grid { grid-template-columns: 1.15fr 0.85fr; }
  .feature-card:last-child { grid-column: 1 / -1; min-height: 250px; }

  .privacy-grid { gap: 35px; }
  .ring-three { width: 430px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }

  .nav-shell { gap: 12px; }
  .nav-toggle { display: block; order: 2; }
  .nav-actions { order: 3; }

  .nav-links {
    position: absolute;
    inset: calc(100% + 1px) 16px auto;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(5, 25, 31, 0.98);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px; font-size: 13px; }
  .nav-links a::after { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 90px 100px;
  }

  .hero-copy { max-width: 730px; }
  .hero-console { transform: none; }
  [dir="rtl"] .hero-console { transform: none; }

  .split-heading { grid-template-columns: 1fr; gap: 20px; }

  .lab-visuals { grid-template-columns: 1fr; }
  .lab-chart-wrap { border-inline-end: 0; border-block-end: 1px solid var(--line); }
  .lab-metrics { grid-template-columns: repeat(2, 1fr); }
  .lab-metrics article:nth-child(2) { border-inline-end: 0; }
  .lab-metrics article:nth-child(-n + 2) { border-block-end: 1px solid var(--line); }

  .theme-studio { grid-template-columns: 1fr; }
  .theme-selector { display: flex; overflow-x: auto; max-height: none; }
  .theme-option { min-width: 170px; }

  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-copy { max-width: 720px; }
  .privacy-vault { min-height: 500px; }

  .architecture-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  [dir="rtl"] .flow-arrow { transform: rotate(90deg) scaleX(-1); }
  .architecture-flow article { width: 100%; min-height: 190px; }

  .backup-card { grid-template-columns: 1fr; gap: 35px; }

  .footer-inner { grid-template-columns: 1fr; padding-block: 36px; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  .section-shell { width: min(calc(100% - 28px), var(--content)); }
  .section { padding-block: 82px; }

  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 18px; }
  .brand-mark { width: 36px; }
  .nav-actions { gap: 5px; }
  .language-switch button { min-width: 31px; padding-inline: 5px; }
  .install-button { display: none !important; }

  .hero { padding-block-start: 70px; }
  .hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .hero-console { min-height: 445px; border-radius: 18px; }
  .console-topline { padding-inline: 13px; }
  .console-topline strong { display: none; }
  .console-body { grid-template-columns: 42px 1fr; }
  [dir="rtl"] .console-body { grid-template-columns: 1fr 42px; }
  .mini-sidebar { gap: 14px; }
  .mini-sidebar span { width: 25px; }
  .console-main { padding: 19px 14px; }
  .orbit { width: 75px; transform: scale(0.78); }
  .signal-chart { height: 150px; margin-block: 21px; }
  .console-metrics { gap: 5px; }
  .console-metrics > div { padding: 10px 7px; }
  .console-metrics strong { font-size: 14px; }
  .console-metrics small { font-size: 6px; }
  .demo-disclaimer { inset-inline: 12px; font-size: 7px; }
  .hero-scroll { display: none; }

  .facts-inner { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 18px; border-block-end: 1px solid var(--line); }
  .fact:nth-of-type(odd) { border-inline-start: 0; }
  .fact:nth-of-type(even) { border-inline-start: 1px solid var(--line); }
  .fact-status { grid-column: 1 / -1; border-block-end: 0; }

  .section-heading h2,
  .privacy-copy h2,
  .backup-card h2,
  .release-card h2 { font-size: clamp(34px, 11vw, 49px); }

  .stage-toolbar { align-items: flex-start; flex-direction: column; padding-block: 13px; }
  .stage-badge { display: none; }
  .product-stage img { aspect-ratio: 4 / 3; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card:last-child { grid-column: auto; min-height: 280px; }

  .lab-toolbar { align-items: flex-start; flex-direction: column; }
  .range-switch { width: 100%; }
  .range-switch button { flex: 1; }
  .lab-metrics { grid-template-columns: 1fr 1fr; }
  .lab-metrics article { min-height: 135px; padding: 19px; }
  .lab-metrics strong { font-size: 28px; }
  .lab-chart-wrap { padding: 21px 15px; }
  .bar-chart { height: 205px; gap: 3px; }
  .signal-summary { padding: 27px 22px; }

  .theme-preview img { aspect-ratio: 4 / 3; }
  .theme-preview figcaption { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 14px; }

  .privacy-vault { min-height: 350px; transform: scale(0.75); margin-inline: -70px; }
  .privacy-pillars { grid-template-columns: 1fr; }
  .privacy-pillars article { min-height: 190px; }

  .public-lane > div { align-items: stretch; flex-direction: column; }
  .public-lane > div > span { transform: rotate(90deg); align-self: center; }

  .backup-card { padding: 30px 22px; }

  .release-card { padding-inline: 20px; }
  .release-actions { flex-direction: column; }
  .release-actions .button { width: 100%; }

  .footer-links { flex-wrap: wrap; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #d3e6e4;
    --faint: #afcfcc;
    --line: rgba(132, 255, 241, 0.42);
    --line-strong: rgba(132, 255, 241, 0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-console { transform: none; }
}

@media print {
  .site-header,
  .hero-actions,
  .hero-scroll,
  .language-switch,
  .install-button,
  .range-switch,
  .theme-selector { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding-block: 35px; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-console { break-inside: avoid; }
  * { box-shadow: none !important; }
}
