:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-2: #07101d;
  --panel: rgba(12, 18, 29, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --text: #f7fbff;
  --muted: #aab6c8;
  --soft: #6f7d94;
  --line: rgba(151, 174, 210, 0.18);
  --blue: #2d8cff;
  --blue-2: #63b3ff;
  --green: #35e7ad;
  --amber: #f6a72a;
  --red: #ff5c70;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 12%, rgba(42, 137, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 30% 18%, rgba(53, 231, 173, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 42%, #03050a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.has-update-log {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: currentColor;
}

.hidden {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: #07101d;
  transform: translateY(-140%);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 30;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--amber));
  box-shadow: 0 0 26px rgba(45, 140, 255, 0.72);
}

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.16), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 14, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  font-size: 1rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-nav {
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(151, 174, 210, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(45, 140, 255, 0.18);
  outline: none;
}

.nav-cta {
  justify-self: end;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #06101c;
  background: linear-gradient(135deg, #f7fbff, #9ed0ff);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 56px;
  align-items: center;
  padding: 86px 0 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7vw, 6.9rem);
  line-height: 0.9;
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  line-height: 1.02;
  font-weight: 890;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.22;
}

.hero-lede {
  max-width: 640px;
  margin-top: 28px;
  color: #c7d5e9;
  font-size: 1.25rem;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d6fff, #2d8cff 52%, #35e7ad);
  box-shadow: 0 18px 42px rgba(45, 140, 255, 0.28);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(223, 236, 255, 0.3);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(99, 179, 255, 0.8);
  background: rgba(45, 140, 255, 0.13);
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button-icon svg {
  width: 20px;
  height: 20px;
}

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

.hero-facts div {
  min-width: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 760;
}

.hero-visual {
  perspective: 1600px;
}

.app-window {
  position: relative;
  border: 1px solid rgba(205, 216, 231, 0.42);
  border-radius: 12px;
  background: #eef1f5;
  box-shadow: var(--shadow), 0 28px 90px rgba(45, 140, 255, 0.16);
  overflow: hidden;
  transform: rotateX(3deg) rotateY(-5deg);
  transition: transform 240ms ease;
}

.app-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.window-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #202020;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #374151;
}

.window-bar span:nth-child(1) {
  background: #ff6474;
}

.window-bar span:nth-child(2) {
  background: #f5b546;
}

.window-bar span:nth-child(3) {
  background: #36d399;
}

.window-bar p {
  margin-left: 10px;
  color: #b5b8bf;
  font-weight: 760;
  font-size: 0.86rem;
}

.window-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  min-height: 470px;
  background: #eef1f5;
}

.mock-sidebar,
.mock-dashboard {
  padding: 16px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(31, 38, 52, 0.96);
  background: #10141c;
  color: #dbe9ff;
  font-size: 0.84rem;
}

.mock-sidebar-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
}

.mock-brand {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mock-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.mock-brand strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.15;
}

.mock-brand span {
  display: block;
  margin-top: 2px;
  color: #c5d7f2;
  font-size: 0.68rem;
  line-height: 1.32;
}

.mock-sidebar-toggle {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce5f3;
}

.mock-sidebar-toggle i {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 1.7px solid currentColor;
  border-radius: 4px;
}

.mock-sidebar-toggle i::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 4px;
  width: 1.7px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.mock-verdict {
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255, 92, 112, 0.48);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 92, 112, 0.16), transparent 36%),
    #351725;
}

.mock-verdict span,
.mock-coverage p,
.mock-update-card span,
.mock-progress-top p,
.mock-summary-card span {
  display: block;
  margin: 0;
  color: #1b2440;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mock-verdict span {
  color: #d7e2ff;
}

.mock-verdict strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.32rem;
  line-height: 1.02;
}

.mock-verdict small {
  display: block;
  margin-top: 7px;
  color: #c5d7f2;
  font-size: 0.72rem;
}

.mock-side-buttons {
  display: grid;
  gap: 9px;
}

.mock-side-buttons span {
  display: block;
  padding: 7px 9px;
  border: 1px solid rgba(151, 174, 210, 0.2);
  border-radius: var(--radius);
  background: #1f232c;
  color: #eff6ff;
  font-size: 0.72rem;
  font-weight: 820;
}

.mock-coverage {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(151, 174, 210, 0.15);
  border-radius: var(--radius);
  background: #191d26;
}

.mock-coverage p {
  margin-bottom: 3px;
  color: #f4f7ff;
  font-size: 0.68rem;
}

.mock-coverage span {
  position: relative;
  display: block;
  min-width: 0;
  padding-left: 16px;
  color: #dceaff;
  font-size: 0.62rem;
  line-height: 1.28;
}

.mock-coverage span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7bb894;
  box-shadow: 0 0 0 3px rgba(123, 184, 148, 0.12);
}

.mock-dashboard {
  display: grid;
  align-content: start;
  gap: 8px;
  background:
    radial-gradient(circle at 72% 4%, rgba(255, 255, 255, 0.95), transparent 18rem),
    #f3f5f8;
  color: #171a22;
}

.mock-topbar-card,
.mock-update-card,
.mock-progress-card,
.mock-summary-card,
.metric-row > div,
.finding-list article {
  border: 1px solid #d4dbe7;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(28, 42, 70, 0.08);
}

.mock-topbar-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  padding: 17px 22px;
}

.mock-topbar-card h2 {
  margin: 0;
  color: #171a22;
  font-size: clamp(1.7rem, 3vw, 2.22rem);
  line-height: 0.98;
}

.mock-topbar-card p {
  max-width: 470px;
  margin: 7px 0 0;
  color: #6b758a;
  font-size: 0.75rem;
  line-height: 1.5;
}

.mock-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}

.mock-topbar-actions span,
.mock-topbar-actions strong,
.mock-update-card button,
.mock-summary-card button {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #c3ccdc;
  border-radius: var(--radius);
  background: #f9fbff;
  color: #202431;
  font-size: 0.74rem;
  font-weight: 850;
  white-space: nowrap;
}

.mock-topbar-actions strong {
  min-width: 134px;
  border-color: #171a22;
  background: #171a22;
  color: #ffffff;
}

.mock-tabs {
  display: flex;
  gap: 5px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #d4dbe7;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.mock-tabs span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 7px;
  color: #5c687c;
  font-size: 0.66rem;
  font-weight: 900;
}

.mock-tabs span.active {
  background: #171a22;
  color: #ffffff;
}

.mock-update-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 14px;
  border-color: #bfe4cc;
  background: #e9f8ef;
}

.mock-update-card span {
  color: #171a22;
}

.mock-update-card strong {
  display: block;
  margin-top: 2px;
  color: #171a22;
  font-size: 0.82rem;
}

.mock-update-card p {
  margin: 2px 0 0;
  color: #647086;
  font-size: 0.72rem;
}

.mock-update-card button,
.mock-summary-card button {
  border: 0;
  background: transparent;
  color: #4161a0;
  font-size: 0.72rem;
  font-weight: 900;
}

.mock-progress-card {
  padding: 12px 14px;
  border-color: #c5e2d0;
}

.mock-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-progress-top p {
  color: #171a22;
}

.mock-progress-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3d8153;
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-progress-top span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3f8250;
}

.mock-progress-card > strong {
  display: block;
  margin-top: 2px;
  color: #171a22;
  font-size: 0.9rem;
  line-height: 1.2;
}

.scan-meter {
  position: relative;
  z-index: 1;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e9eef5;
  overflow: hidden;
}

.scan-meter i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3f8250, #58a76e);
  animation: meter-pulse 2.8s ease-in-out 320ms infinite;
}

.mock-log-lines {
  display: grid;
  gap: 8px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid #edf1f6;
}

.mock-log-lines span {
  display: block;
  min-width: 0;
  padding: 7px 9px;
  border: 1px solid #e6ebf2;
  border-radius: 6px;
  background: #f8fafc;
  color: #5d687c;
  font-size: 0.68rem;
  line-height: 1.35;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.metric-row > div {
  min-height: 62px;
  padding: 10px;
}

.metric-row small {
  display: block;
  margin: 0;
  color: #6d778c;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
}

.metric-row span {
  display: block;
  margin-top: 5px;
  color: #151922;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.mock-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
}

.mock-summary-card span {
  color: #171a22;
}

.mock-summary-card p {
  max-width: 610px;
  margin: 5px 0 0;
  color: #6d778c;
  font-size: 0.68rem;
  line-height: 1.45;
}

.mock-summary-card button {
  display: grid;
  min-width: 80px;
  min-height: 30px;
  border: 1px solid #c3ccdc;
  background: #f9fbff;
  color: #171a22;
}

.finding-list {
  display: grid;
  gap: 9px;
}

.finding-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-left: 6px solid #ad6f00;
  background: #fff4d9;
}

.finding-list b {
  min-width: 0;
  color: #242936;
  font-size: 0.84rem;
  line-height: 1.3;
}

.finding-list em {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: #ad6f00;
  color: #ffffff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.finding-list .danger {
  background: #b9474e;
  color: #ffffff;
}

.evidence-section,
.whats-new-section,
.split-section,
.trust-section,
.facts-section,
.faq-section,
.does-section,
.download-section {
  padding: 110px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.narrow {
  margin-left: 0;
  text-align: left;
}

.section-label {
  margin-bottom: 14px;
  color: var(--blue-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p:not(.section-label),
.trust-copy p:not(.section-label),
.download-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.source-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.source-rail::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 179, 255, 0.55), rgba(53, 231, 173, 0.55), rgba(246, 167, 42, 0.62), transparent);
}

.source-card {
  position: relative;
  min-height: 270px;
  padding: 88px 22px 0;
  text-align: center;
}

.source-card span {
  position: absolute;
  left: 50%;
  top: 0;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(99, 179, 255, 0.55);
  border-radius: 50%;
  color: #a9d4ff;
  background: radial-gradient(circle at 30% 25%, rgba(99, 179, 255, 0.34), rgba(11, 25, 46, 0.96));
  box-shadow: 0 0 34px rgba(45, 140, 255, 0.22);
  transform: translateX(-50%);
  font-weight: 900;
}

.source-card.alert span {
  border-color: rgba(246, 167, 42, 0.65);
  color: #ffd38f;
  background: radial-gradient(circle at 30% 25%, rgba(246, 167, 42, 0.34), rgba(38, 24, 5, 0.96));
  box-shadow: 0 0 34px rgba(246, 167, 42, 0.24);
}

.source-card h3 {
  min-height: 56px;
}

.source-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.93rem;
}

.whats-new-section {
  padding-top: 72px;
}

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

.whats-new-grid article {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(6, 12, 22, 0.82)),
    rgba(9, 14, 23, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.whats-new-grid article::after {
  content: "";
  position: absolute;
  inset: auto -24px -42px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 231, 173, 0.18), transparent 70%);
  pointer-events: none;
}

.whats-new-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(99, 179, 255, 0.34);
  border-radius: 999px;
  color: #b8dcff;
  background: rgba(45, 140, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whats-new-grid h3 {
  margin-top: 22px;
  font-size: 1.28rem;
}

.whats-new-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 26px;
  align-items: start;
}

.timeline-panel,
.evidence-card,
.trust-grid article,
.does-grid article,
.download-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 14, 23, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.timeline-panel {
  padding: 28px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-header span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(53, 231, 173, 0.8);
}

.case-timeline {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.case-timeline li {
  position: relative;
  padding: 0 0 30px 34px;
  border-left: 1px solid rgba(99, 179, 255, 0.34);
}

.case-timeline li:last-child {
  padding-bottom: 0;
}

.case-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue-2);
}

.case-timeline time {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-timeline strong {
  display: block;
  margin-top: 5px;
  font-size: 1.15rem;
}

.case-timeline p {
  margin-top: 8px;
  color: var(--muted);
}

.evidence-stack {
  display: grid;
  gap: 14px;
}

.evidence-card {
  padding: 22px;
  transform: translateX(var(--shift, 0));
}

.evidence-card.high {
  --shift: -22px;
  border-left: 4px solid var(--red);
}

.evidence-card.medium {
  --shift: 14px;
  border-left: 4px solid var(--amber);
}

.evidence-card.low {
  border-left: 4px solid var(--green);
}

.evidence-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.evidence-card small {
  align-self: start;
  min-width: 76px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #06101c;
  background: #ffd38f;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-card.high small {
  background: #ff9aaa;
}

.evidence-card.low small {
  background: #a2f4d4;
}

.evidence-card p {
  margin-top: 14px;
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: start;
}

.trust-copy {
  position: sticky;
  top: 120px;
}

.trust-copy p:not(.section-label) {
  margin-top: 20px;
}

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

.trust-grid article {
  min-height: 220px;
  padding: 24px;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--blue-2);
  background: rgba(45, 140, 255, 0.14);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-grid p {
  margin-top: 12px;
  color: var(--muted);
}

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

.does-grid article {
  padding: 28px;
}

.does-grid ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.does-grid li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.does-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 12px;
  height: 2px;
  border-radius: 4px;
  background: var(--blue-2);
}

.does-grid article:nth-child(2) li::before {
  background: var(--amber);
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  padding: 42px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 13, 22, 0.96), rgba(10, 31, 63, 0.85)),
    rgba(9, 14, 23, 0.92);
}

.download-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 380px;
  height: 240px;
  pointer-events: none;
  background:
    linear-gradient(rgba(99, 179, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 179, 255, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.95), transparent 72%);
}

.download-card h2 {
  margin-bottom: 18px;
}

.download-actions {
  position: relative;
  z-index: 1;
  align-content: center;
  justify-content: end;
  margin: 0;
}

.release-strip {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.release-strip a {
  padding: 9px 12px;
  border: 1px solid rgba(151, 174, 210, 0.18);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.035);
}

.release-strip a:hover,
.release-strip a:focus-visible {
  color: var(--text);
  border-color: rgba(99, 179, 255, 0.58);
  outline: none;
}

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

.facts-grid article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(99, 179, 255, 0.08), rgba(53, 231, 173, 0.035)),
    rgba(12, 18, 29, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.facts-grid article {
  min-height: 214px;
  padding: 24px;
}

.facts-grid h3,
.faq-list h3 {
  color: var(--text);
}

.facts-grid p,
.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.facts-grid code {
  padding: 2px 6px;
  border: 1px solid rgba(151, 174, 210, 0.16);
  border-radius: 6px;
  color: #d9f7ff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9em;
}

.facts-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-2);
  font-weight: 800;
}

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

.faq-list article {
  padding: 26px;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.93rem;
}

.site-footer a {
  color: #c7d5e9;
}

.site-footer span {
  margin: 0 8px;
  color: rgba(151, 174, 210, 0.42);
}

.update-log {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 100%, rgba(45, 140, 255, 0.2), transparent 30rem),
    rgba(2, 5, 10, 0.72);
  backdrop-filter: blur(14px);
}

.update-log-card {
  position: relative;
  width: min(100%, 680px);
  padding: 26px;
  border: 1px solid rgba(151, 174, 210, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(5, 10, 18, 0.96)),
    rgba(8, 13, 22, 0.98);
  box-shadow: var(--shadow), 0 0 80px rgba(45, 140, 255, 0.14);
}

.update-log-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(223, 236, 255, 0.22);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.update-log-close:hover,
.update-log-close:focus-visible {
  border-color: rgba(99, 179, 255, 0.8);
  outline: none;
}

.update-log h2 {
  max-width: 520px;
  margin-right: 42px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.update-log p:not(.section-label) {
  color: var(--muted);
}

.update-log ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.update-log li {
  position: relative;
  padding-left: 26px;
  color: #dce8fa;
}

.update-log li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(53, 231, 173, 0.72);
}

.update-log-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.update-log .button {
  cursor: pointer;
}

.update-log-note {
  margin: 18px 0 0;
  color: var(--soft) !important;
  font-size: 0.82rem;
}

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

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

.source-card[data-reveal] {
  transition-delay: calc(var(--reveal-index, 0) * 60ms);
}

@keyframes meter-pulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.18);
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 70px;
  }

  .hero-visual {
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .mock-topbar-card {
    grid-template-columns: 1fr;
  }

  .mock-topbar-actions {
    justify-content: start;
    flex-wrap: wrap;
  }

  .source-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

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

  .source-rail::before {
    display: none;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-copy {
    position: static;
  }
}

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

  .hero {
    min-height: auto;
    padding: 62px 0 76px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .hero-lede {
    font-size: 1.08rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-facts,
  .workflow-grid,
  .does-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .window-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .app-window {
    transform: none;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-dashboard {
    padding: 18px;
  }

  .mock-update-card,
  .mock-summary-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-rail,
  .whats-new-grid,
  .trust-grid,
  .facts-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .source-card {
    min-height: auto;
    padding: 100px 22px 18px;
  }

  .source-card h3 {
    min-height: 0;
  }

  .evidence-card,
  .evidence-card.high,
  .evidence-card.medium {
    transform: none;
  }

  .download-actions {
    justify-content: start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: calc(100vw - 28px);
  }

  .site-header {
    margin-top: 10px;
    gap: 10px;
    padding: 10px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    min-width: 90px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-copy,
  .hero-lede,
  .hero-actions,
  .hero-facts,
  .hero-visual {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .hero-visual {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions,
  .download-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .mock-topbar-card {
    padding: 22px;
  }

  .mock-topbar-actions,
  .mock-topbar-actions span,
  .mock-topbar-actions strong {
    width: 100%;
  }

  .metric-row > div {
    min-height: 86px;
  }

  .finding-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-card,
  .timeline-panel,
  .does-grid article {
    padding: 24px;
  }

  .evidence-card div {
    display: grid;
  }

  .update-log {
    padding: 14px;
  }

  .update-log-card {
    padding: 22px;
  }

  .update-log-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .signal-canvas,
  .cursor-light {
    display: none;
  }

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

  .app-window {
    transform: none;
  }
}
