/* AyaScope 1.12.5 local homepage. Code-native visuals; no external assets. */

:root,
html[data-theme="dark"] {
  --home-bg: #0d1015;
  --home-bg-soft: #12161d;
  --home-panel: #171b23;
  --home-panel-2: #1d222c;
  --home-line: rgba(163, 180, 202, .16);
  --home-line-strong: rgba(163, 180, 202, .28);
  --home-ink: #f2f5f8;
  --home-muted: #9ca7b7;
  --home-faint: #697587;
  --home-accent: #42d2c4;
  --home-accent-2: #65a3ff;
  --home-warm: #f3a04a;
  --home-pink: #dd62cf;
  --home-shadow: 0 30px 100px rgba(0, 0, 0, .48);
  --home-glow: rgba(50, 188, 178, .24);
}

html[data-theme="light"] {
  --home-bg: #f3f7f8;
  --home-bg-soft: #e9f0f1;
  --home-panel: #ffffff;
  --home-panel-2: #eef4f5;
  --home-line: rgba(27, 55, 68, .14);
  --home-line-strong: rgba(27, 55, 68, .24);
  --home-ink: #102128;
  --home-muted: #566a72;
  --home-faint: #809098;
  --home-accent: #128f85;
  --home-accent-2: #326fd0;
  --home-warm: #c86f1c;
  --home-pink: #b83cab;
  --home-shadow: 0 28px 90px rgba(34, 66, 76, .16);
  --home-glow: rgba(17, 143, 132, .19);
}

.home-page,
.home-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.home-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.home-page button,
.home-page a {
  font: inherit;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-page button:focus-visible,
.home-page a:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 4px;
}

.home-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--home-accent);
  color: #071616 !important;
}

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

.home-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--home-bg) 82%, transparent);
  backdrop-filter: blur(20px) saturate(120%);
  transition: border-color .25s ease, background .25s ease;
}

.home-header.scrolled {
  border-color: var(--home-line);
  background: color-mix(in srgb, var(--home-bg) 94%, transparent);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -.035em;
  font-size: 21px;
}

.logo-orbit {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block;
  border: 2px solid var(--home-accent);
  border-radius: 50%;
}

.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  inset: 4px -4px;
  border: 1px solid var(--home-accent);
  border-radius: 50%;
  transform: rotate(55deg);
}

.logo-orbit::after {
  inset: 10px;
  border: 0;
  background: var(--home-accent);
  box-shadow: 0 0 16px var(--home-accent);
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.home-nav a {
  position: relative;
  color: var(--home-muted);
  font-size: 14px;
  font-weight: 540;
  transition: color .2s ease;
}

.home-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--home-accent);
  transition: right .2s ease;
}

.home-nav a:hover {
  color: var(--home-ink);
}

.home-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-theme,
.nav-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: var(--home-panel);
  color: var(--home-ink);
  cursor: pointer;
}

.home-theme svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.home-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

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

.home-button.compact {
  min-height: 40px;
  padding-inline: 17px;
  background: var(--home-ink);
  color: var(--home-bg);
}

.home-button.primary {
  background: var(--home-accent);
  color: #061c1a;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--home-accent) 24%, transparent);
}

.home-button.secondary {
  border-color: var(--home-line-strong);
  background: color-mix(in srgb, var(--home-panel) 76%, transparent);
  color: var(--home-ink);
}

.home-button.light {
  background: #f7fafb;
  color: #0c2425;
}

.home-button.light svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-button.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  gap: 5px;
}

.nav-toggle span {
  width: 16px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .2s ease;
}

.home-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 150px 0 86px;
  border-bottom: 1px solid var(--home-line);
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .38;
  background-image:
    linear-gradient(var(--home-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black 8%, transparent 82%);
}

.hero-glow {
  position: absolute;
  left: 58%;
  top: 47%;
  z-index: -2;
  width: min(60vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--home-glow), transparent 68%);
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.home-kicker {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  text-wrap: pretty;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--home-ink);
  letter-spacing: -.052em;
}

.home-page h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 520;
  line-height: .98;
}

.home-page h1 span {
  color: var(--home-accent);
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}

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

.hero-facts {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  color: var(--home-faint);
  font-size: 13px;
}

.hero-facts li {
  position: relative;
  padding-left: 14px;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-accent);
}

.hero-instrument {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.instrument-rim {
  position: absolute;
  inset: 8% 7%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--home-accent) 35%, transparent);
  box-shadow: inset 0 0 80px var(--home-glow), 0 0 100px var(--home-glow);
  animation: rimBreath 5s ease-in-out infinite;
}

.instrument-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1.22;
  overflow: hidden;
  border: 1px solid var(--home-line-strong);
  border-radius: 24px;
  background: #0b0e13;
  box-shadow: var(--home-shadow);
  transform: rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.instrument-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255,255,255,.08), transparent 28%, transparent 75%, rgba(67,210,196,.07));
}

.hero-media,
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.hero-diffraction {
  transform-origin: 566px 160px;
  animation: gentleSpin 30s linear infinite;
}

.hero-spectrum .trace-head {
  animation: tracePulse 1.8s ease-in-out infinite;
}

.scan-line {
  animation: scanHero 5s ease-in-out infinite;
}

.hero-scalebar text {
  font: 16px ui-monospace, Consolas, monospace;
}

.saed-flyby {
  position: fixed;
  left: 0;
  bottom: 4vh;
  z-index: 1;
  width: clamp(180px, 18vw, 290px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(67, 210, 196, .18));
  transform: translate3d(-130%, 30vh, 0) rotate(-18deg) scale(.72);
  animation: saed-flyby-pass 6.4s cubic-bezier(.32, .02, .22, 1) forwards;
}

.saed-flyby-ring,
.saed-flyby-center {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.saed-flyby-ring {
  border: 1.5px dashed color-mix(in srgb, var(--home-accent) 72%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--home-accent) 20%, transparent);
}

.saed-flyby-ring.r1 { width: 23%; height: 23%; }
.saed-flyby-ring.r2 { width: 44%; height: 44%; }
.saed-flyby-ring.r3 { width: 68%; height: 68%; }
.saed-flyby-ring.r4 { width: 92%; height: 92%; }

.saed-flyby-center {
  width: 8%;
  height: 8%;
  background: var(--home-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--home-accent) 62%, transparent);
}

@keyframes saed-flyby-pass {
  0% { opacity: 0; transform: translate3d(-130%, 30vh, 0) rotate(-18deg) scale(.72); }
  16% { opacity: .32; }
  52% { opacity: .18; }
  84% { opacity: .28; }
  100% { opacity: 0; transform: translate3d(calc(100vw + 35%), -72vh, 0) rotate(34deg) scale(1.08); }
}

.instrument-label {
  position: absolute;
  z-index: 4;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(8,11,15,.72);
  color: #bdc7d4;
  font-size: 11px;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}

.instrument-label.top-left {
  left: 16px;
  top: 16px;
}

.instrument-label span,
.instrument-label strong {
  display: block;
}

.instrument-label span {
  color: #8d9aa9;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.instrument-label strong {
  margin-top: 3px;
  color: #eef5f7;
  font-size: 11px;
  font-weight: 650;
}

.instrument-label.bottom-right {
  right: 16px;
  bottom: 16px;
}

.instrument-footnote {
  margin: 18px 6% 0;
  color: var(--home-faint);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px dashed color-mix(in srgb, var(--home-accent) 34%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 16px var(--home-accent);
}

.orbit-one {
  inset: -7% 5%;
  transform: rotate(-16deg);
  animation: orbitRotate 18s linear infinite;
}

.orbit-one::after {
  left: 17%;
  top: 8%;
}

.orbit-two {
  inset: 1% -3%;
  transform: rotate(32deg);
  animation: orbitRotateReverse 24s linear infinite;
}

.orbit-two::after {
  right: 9%;
  bottom: 25%;
}

.home-section {
  position: relative;
  padding: clamp(76px, 8vw, 102px) 0;
  border-bottom: 1px solid var(--home-line);
}

.section-heading {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.section-heading-copy {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.section-heading-copy .home-kicker { margin: 0; }

.section-heading.narrow {
  margin-bottom: 34px;
}

.home-page h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.02;
}

.section-heading > p,
.about-copy > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.65;
}

.analyses-section {
  background:
    radial-gradient(circle at 50% 30%, var(--home-glow), transparent 38%),
    var(--home-bg-soft);
}

.analysis-hud {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line-strong);
  border-radius: 26px;
  background: color-mix(in srgb, var(--home-panel) 92%, transparent);
  box-shadow: var(--home-shadow);
}

.analysis-switcher {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--home-line);
  scroll-snap-type: x mandatory;
}

.analysis-tab {
  min-height: 106px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  scroll-snap-align: start;
  border: 0;
  border-right: 1px solid var(--home-line);
  background: transparent;
  color: var(--home-muted);
  text-align: left;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}

.analysis-tab:last-child {
  border-right: 0;
}

.analysis-tab:hover {
  color: var(--home-ink);
  background: color-mix(in srgb, var(--home-panel-2) 75%, transparent);
}

.analysis-tab.active {
  color: var(--home-ink);
  background: color-mix(in srgb, var(--home-accent) 11%, var(--home-panel));
  box-shadow: inset 0 -2px var(--home-accent);
}

.tab-index {
  color: var(--home-accent);
  font: 12px ui-monospace, Consolas, monospace;
}

.analysis-tab span:last-child {
  display: grid;
  gap: 7px;
}

.analysis-tab strong {
  color: inherit;
  font-size: 14px;
  font-weight: 650;
}

.analysis-tab small {
  color: var(--home-faint);
  font-size: 11px;
  line-height: 1.35;
}

.analysis-display {
  min-height: 545px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .64fr);
}

.analysis-stage {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--home-line);
  background: #0c0f14;
}

.analysis-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255,255,255,.05), transparent 25%, transparent 73%, rgba(66,210,196,.04));
}

.analysis-stage {
  opacity: .76;
  transition: opacity .28s ease;
}

.analysis-stage.is-visible {
  opacity: 1;
}

.analysis-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  background: #0b0e13;
}

.analysis-media picture {
  min-height: 0;
  overflow: hidden;
}

.illustrative-layer {
  position: absolute;
  z-index: 2;
  inset: 0 0 94px;
  overflow: hidden;
  pointer-events: none;
}

.scientific-overlay {
  width: 100%;
  height: 100%;
  display: block;
}

.scientific-overlay text {
  fill: #dbe7ed;
  font: 12px ui-monospace, Consolas, monospace;
}

.scientific-overlay .result-value {
  fill: #5de3d5;
  font-size: 15px;
  font-weight: 700;
}

.scientific-overlay .result-panel > rect {
  fill: rgba(11, 17, 24, .9);
  stroke: rgba(126, 226, 215, .4);
}

.scientific-overlay .result-panel path {
  fill: none;
  stroke: rgba(158, 178, 190, .52);
}

.scientific-overlay .profile {
  stroke: #5de3d5 !important;
  stroke-width: 2.2;
}

.particle-overlay ellipse {
  fill: rgba(59, 215, 199, .08);
  stroke: #5de3d5;
  stroke-width: 4;
}

.roi-overlay .roi {
  fill: rgba(0, 0, 0, .025);
  stroke-width: 6;
  vector-effect: non-scaling-stroke;
}

.roi-overlay .whole { stroke: #ff6b5f; }
.roi-overlay .agglomerate { stroke: #5de3d5; }
.roi-overlay .agglomerate.alt { stroke: #8c7dff; }
.roi-overlay .phase { stroke: #f5c451; stroke-dasharray: 16 12; }

.ring-overlay circle {
  fill: none;
  stroke: #5de3d5;
  stroke-width: 5;
  stroke-dasharray: 16 12;
  vector-effect: non-scaling-stroke;
}

.ring-overlay .center-cross { fill: none; stroke: #f5a44c; stroke-width: 6; vector-effect: non-scaling-stroke; }
.overlay-result-card {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  width: min(38%, 290px);
  padding: 15px 17px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(126, 226, 215, .42);
  border-radius: 12px;
  background: rgba(8, 14, 21, .9);
  box-shadow: 0 12px 34px rgba(0,0,0,.3);
  color: #dbe7ed;
  backdrop-filter: blur(10px);
}
.overlay-result-card small { color: #70ded3; font: 10px ui-monospace, Consolas, monospace; text-transform: uppercase; letter-spacing: .07em; }
.overlay-result-card strong { font-size: 14px; }
.overlay-result-card span { color: #aab8c3; font-size: 10px; line-height: 1.45; }
.particle-summary { top: auto; bottom: 18px; }
.eels-overlay .window { stroke-width: 1.5; }
.eels-overlay .window.pre { fill: rgba(81, 139, 232, .15); stroke: #6da1ee; }
.eels-overlay .window.edge { fill: rgba(72, 211, 190, .15); stroke: #5de3d5; }
.eels-overlay .fit-line { fill: none; stroke: #f5a44c; stroke-width: 2; stroke-dasharray: 7 6; }
.cv-overlay .return-profile { fill: none; stroke: #f5a44c; stroke-width: 2; }
.cv-overlay .cursor { stroke: #f5c451; stroke-width: 2; stroke-dasharray: 6 5; }
.cv-overlay .cursor-head { fill: #f5c451; }

.illustrative-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(7, 11, 16, .82);
  color: #dce7ec;
  font: 10px/1.2 ui-monospace, Consolas, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.report-overlay {
  padding: 32px 70px 24px;
  background: rgba(6, 10, 15, .48);
}

.report-sheet {
  height: 100%;
  padding: 25px;
  border-radius: 5px;
  background: #f7f9fa;
  color: #17202b;
  box-shadow: 0 18px 54px rgba(0,0,0,.36);
}

.report-sheet header { display: grid; gap: 5px; border-bottom: 2px solid #2fb5a8; padding-bottom: 13px; }
.report-sheet header span { color: #2b8179; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.report-sheet header b { font-size: 20px; }
.report-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; margin-top: 16px; font-size: 12px; }
.report-grid p { margin: 5px 0 14px; color: #596573; line-height: 1.45; }
.report-figure-image { width: 100%; height: 145px; object-fit: cover; border: 1px solid #cbd4dc; filter: grayscale(1) contrast(1.05); }
.report-results-table { width: 100%; border-collapse: collapse; color: #26313d; font-size: 10px; }
.report-results-table th, .report-results-table td { padding: 5px 4px; border-bottom: 1px solid #d5dde3; text-align: left; }
.report-results-table th { color: #2b8179; font-weight: 700; }
.report-methods { margin-top: 12px; padding-top: 10px; border-top: 1px solid #d2dae0; font-size: 10px; }
.report-methods p { margin: 4px 0 0; color: #596573; line-height: 1.4; }
.report-sheet footer { margin-top: 18px; padding-top: 12px; border-top: 1px solid #d2dae0; color: #66727c; font-size: 10px; }

.analysis-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: grayscale(.18) contrast(1.02);
  transition: transform 9s ease-out;
}

.analysis-media .report-figure-image {
  width: 100%;
  height: 145px;
  object-fit: cover;
  transform: none;
}

.analysis-stage.is-visible .analysis-media img {
  transform: scale(1.025);
}

.analysis-media figcaption {
  padding: 13px 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #11161d;
  color: #9eabb9;
  font: 11px/1.5 ui-monospace, Consolas, monospace;
}

.analysis-data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  background: #151b23;
}

.analysis-data-strip span {
  min-width: 0;
  padding: 12px 10px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: #d7e0e8;
  text-align: left;
}

.analysis-data-strip small,
.analysis-data-strip strong { display: block; }
.analysis-data-strip small { margin-bottom: 4px; color: #6fded3; font: 9px ui-monospace, Consolas, monospace; letter-spacing: .09em; text-transform: uppercase; }
.analysis-data-strip strong { overflow: hidden; color: #d7e0e8; font-size: 10px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }

.analysis-data-strip span:last-child {
  border-right: 0;
}

.analysis-copy {
  min-width: 0;
  padding: clamp(34px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.analysis-counter {
  margin-bottom: 36px;
  color: var(--home-faint);
  font: 12px ui-monospace, Consolas, monospace;
  letter-spacing: .12em;
}

.analysis-counter span {
  color: var(--home-accent);
}

.home-page .analysis-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
  line-height: 1.08;
}

.analysis-copy > p {
  margin: 22px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.analysis-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analysis-tags span {
  padding: 7px 10px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-muted);
  font-size: 11px;
}

.analysis-link {
  margin-top: 32px;
  color: var(--home-accent) !important;
  font-size: 13px;
  font-weight: 650;
}

.analysis-link span,
.analysis-next span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .2s ease;
}

.analysis-link:hover span,
.analysis-next:hover span {
  transform: translateX(5px);
}

.analysis-next {
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--home-muted);
  font-size: 12px;
  cursor: pointer;
}

.text-action {
  margin-top: 36px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--home-accent);
  font-weight: 650;
  cursor: pointer;
}

.text-action span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .2s ease;
}

.text-action:hover span {
  transform: translateX(5px);
}

.analysis-progress {
  height: 2px;
  background: var(--home-line);
}

.analysis-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--home-accent);
  box-shadow: 0 0 14px var(--home-accent);
  transform: scaleX(0);
  transition: none;
  transform-origin: left;
}

.analysis-directory-card {
  margin-top: 22px;
  min-height: 190px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 2fr);
  align-items: center;
  gap: 32px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--home-panel) 92%, transparent);
}

.analysis-directory-card > div { display: grid; gap: 8px; }
.analysis-directory-card > div span { color: var(--home-accent); font: 12px ui-monospace, Consolas, monospace; letter-spacing: .11em; text-transform: uppercase; }
.analysis-directory-card > div strong { max-width: 250px; color: var(--home-ink); font-size: 20px; line-height: 1.25; font-weight: 600; }
.analysis-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.analysis-directory a { min-width: 0; min-height: 62px; padding: 16px 17px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--home-line); border-radius: 12px; color: var(--home-muted); font-size: 15px; }
.analysis-directory a b { color: var(--home-accent); font: 11px ui-monospace, Consolas, monospace; }
.analysis-directory a:hover { color: var(--home-ink); border-color: color-mix(in srgb, var(--home-accent) 60%, var(--home-line)); background: color-mix(in srgb, var(--home-accent) 8%, transparent); }

@keyframes analysis-cycle {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.synthetic-note {
  margin: 17px 0 0;
  color: var(--home-faint);
  font-size: 11px;
  text-align: right;
}

.stage-caption {
  fill: #aab5c4;
  font: 12px ui-monospace, Consolas, monospace;
}

.stage-label {
  fill: #edf4f7;
  font: 600 13px Inter, system-ui, sans-serif;
}

.stage-small {
  fill: #7e8998;
  font: 11px Inter, system-ui, sans-serif;
}

.stage-grid {
  stroke: #48515f;
  stroke-opacity: .34;
  stroke-width: 1;
}

.stage-scan {
  animation: stageScan 4s ease-in-out infinite;
}

.stage-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: stagePulse 1.8s ease-in-out infinite;
}

.stage-ring {
  transform-box: view-box;
  transform-origin: 400px 230px;
  animation: stageRing 14s linear infinite;
}

.stage-marker {
  animation: markerMove 5s ease-in-out infinite;
}

.stage-report-page {
  animation: reportFloat 4s ease-in-out infinite;
}

.workflow-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--home-line-strong);
  border-radius: 20px;
  overflow: hidden;
  list-style: none;
}

.workflow-grid li {
  min-height: 235px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--home-line);
  background: var(--home-panel);
}

.workflow-grid li:last-child {
  border-right: 0;
}

.workflow-grid li span {
  color: var(--home-accent);
  font: 12px ui-monospace, Consolas, monospace;
}

.workflow-grid li strong {
  margin-top: auto;
  color: var(--home-ink);
  font-size: 24px;
  font-weight: 550;
}

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

.services-section {
  background: var(--home-bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line-strong);
  border-radius: 20px;
  background: var(--home-panel);
  min-height: 225px;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--home-glow), transparent 70%);
}

.service-wide {
  grid-column: span 2;
}

.service-number {
  color: var(--home-faint);
  font: 12px ui-monospace, Consolas, monospace;
}

.home-page .service-card h3 {
  margin: 48px 0 0;
  font-size: 25px;
  font-weight: 540;
}

.service-card p {
  max-width: 570px;
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 14px;
}

.accent-card {
  background: var(--home-accent);
  color: #071b1b;
}

.accent-card .service-number,
.accent-card p,
.home-page .accent-card h3 {
  color: #071b1b;
}

.service-icon {
  position: absolute;
  right: 28px;
  top: 34px;
  width: 110px;
  height: 110px;
}

.data-icon i {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 1px solid var(--home-accent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--home-accent) 11%, transparent);
  transform: rotate(22deg);
}

.data-icon i:nth-child(2) { left: 28px; top: 20px; transform: rotate(-9deg); }
.data-icon i:nth-child(3) { left: 52px; top: 47px; transform: rotate(16deg); }

.rings-icon i {
  position: absolute;
  inset: 14px;
  border: 1px solid var(--home-accent);
  border-radius: 50%;
}

.rings-icon i:nth-child(2) { inset: 31px; opacity: .7; }
.rings-icon i:nth-child(3) { inset: 50px; background: var(--home-accent); box-shadow: 0 0 20px var(--home-accent); }

.map-icon {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, #0c7070 0 13%, transparent 14%),
    radial-gradient(circle at 66% 58%, #d33cae 0 16%, transparent 17%),
    radial-gradient(circle at 45% 70%, #f7d95a 0 9%, transparent 10%),
    rgba(5, 29, 29, .18);
  filter: blur(.1px);
}

.report-icon i {
  position: absolute;
  inset: 4px 22px 16px;
  border: 1px solid var(--home-accent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--home-panel) 85%, var(--home-accent));
  transform: rotate(-6deg);
}

.report-icon i:nth-child(2) { inset: 18px 8px 2px 38px; transform: rotate(8deg); }

.plugin-icon i {
  position: absolute;
  inset: 12px 50px 12px 7px;
  border: 2px solid var(--home-accent);
  border-radius: 15px;
}

.plugin-icon i:nth-child(2) { inset: 12px 7px 12px 50px; }
.plugin-icon i::after { content: ""; position: absolute; width: 16px; height: 16px; right: -9px; top: 34px; border-radius: 50%; background: var(--home-panel); border: 2px solid var(--home-accent); }
.plugin-icon i:nth-child(2)::after { left: -9px; right: auto; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line-strong);
  border-radius: 22px;
  background: var(--home-panel);
}

.plan-card.featured {
  border-color: color-mix(in srgb, var(--home-accent) 65%, var(--home-line));
  background: linear-gradient(160deg, color-mix(in srgb, var(--home-accent) 12%, var(--home-panel)), var(--home-panel) 52%);
}

.plan-flag {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 5px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--home-accent) 18%, transparent);
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
}

.home-page .plan-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
  font-weight: 540;
}

.plan-price {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 14px;
}

.plan-price strong {
  color: var(--home-ink);
  font-size: 17px;
  font-weight: 650;
}

.plan-card h3 small {
  color: var(--home-faint);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-card ul {
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
  color: var(--home-muted);
  font-size: 14px;
}

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

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--home-accent);
  border-bottom: 1.5px solid var(--home-accent);
  transform: rotate(-45deg);
}

.plan-card .home-button {
  margin-top: auto;
}

.about-section {
  background: var(--home-bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 120px;
  align-items: start;
}

.about-facts {
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--home-line);
}

.about-facts div {
  padding: 18px;
  background: var(--home-panel);
}

.about-facts dt {
  color: var(--home-faint);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about-facts dd {
  margin: 8px 0 0;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 600;
}

.download-section {
  padding-block: 86px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  border-radius: 28px;
  background: var(--home-accent);
  color: #082322;
}

.download-panel::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -75%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 45, 42, .26);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(5,45,42,.06), 0 0 0 90px rgba(5,45,42,.04);
}

.download-panel .home-kicker,
.download-panel h2,
.download-panel p {
  color: #082322;
}

.download-panel .home-kicker::before {
  box-shadow: none;
}

.download-copy > p:not(.home-kicker) {
  margin: 20px 0 0;
  opacity: .72;
}

.download-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.download-link {
  color: #082322 !important;
  font-size: 14px;
  font-weight: 650;
}

.download-meta {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
}

.download-meta div {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(5,45,42,.22);
}

.download-meta span {
  font-size: 12px;
  opacity: .66;
}

.download-meta strong {
  font-size: 12px;
  text-align: right;
}

.home-footer {
  padding: 56px 0 34px;
  background: var(--home-bg-soft);
}

.download-page-main {
  position: relative;
  min-height: calc(100vh - 180px);
  overflow: hidden;
  padding: 156px 0 100px;
  background: var(--home-bg);
}

.download-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  pointer-events: none;
  background-image: linear-gradient(var(--home-line) 1px, transparent 1px), linear-gradient(90deg, var(--home-line) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

.download-page-glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 120px;
  width: min(80vw, 880px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--home-glow), transparent 68%);
  pointer-events: none;
}

.download-page-main > .home-wrap {
  position: relative;
  z-index: 1;
}

.download-page-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.download-page-heading .home-kicker {
  justify-content: center;
}

.home-page .download-page-heading h1 {
  max-width: none;
  font-size: clamp(48px, 6vw, 78px);
}

.download-page-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--home-muted);
  font-size: 18px;
}

.download-page-card {
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, .52fr);
  align-items: center;
  gap: 36px;
  border: 1px solid var(--home-line-strong);
  border-radius: 24px;
  background: color-mix(in srgb, var(--home-panel) 94%, transparent);
  box-shadow: var(--home-shadow);
}

.package-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--home-accent) 52%, transparent);
  border-radius: 24px;
  background: color-mix(in srgb, var(--home-accent) 10%, var(--home-panel));
  box-shadow: inset 0 0 34px var(--home-glow), 0 0 34px var(--home-glow);
}

.package-mark span {
  color: var(--home-accent);
  font-size: 40px;
  font-weight: 700;
}

.package-label {
  margin: 0;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-page .package-copy h2 {
  margin: 9px 0 0;
  font-size: clamp(34px, 4vw, 50px);
}

.package-copy > p:not(.package-label) {
  margin: 9px 0 0;
  color: var(--home-muted);
  font-size: 14px;
}

.package-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.text-download-link {
  color: var(--home-muted) !important;
  font-size: 13px;
}

.package-meta {
  margin: 0;
  border-left: 1px solid var(--home-line);
  padding-left: 32px;
}

.package-meta div {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--home-line);
}

.package-meta div:last-child {
  border-bottom: 0;
}

.package-meta dt {
  color: var(--home-faint);
  font-size: 11px;
}

.package-meta dd {
  margin: 0;
  color: var(--home-ink);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.download-info-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.download-info-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: var(--home-panel);
}

.download-info-card > span {
  color: var(--home-accent);
  font: 11px ui-monospace, Consolas, monospace;
}

.home-page .download-info-card h3 {
  margin: auto 0 0;
  font-size: 22px;
  font-weight: 560;
}

.download-info-card p {
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 13px;
}

.download-info-card a {
  margin-top: 16px;
  color: var(--home-accent);
  font-size: 13px;
  font-weight: 650;
}

.download-terms {
  margin: 24px 0 0;
  color: var(--home-faint);
  font-size: 11px;
  text-align: center;
}

.download-terms a {
  color: var(--home-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: start;
}

.footer-grid > div:first-child p {
  margin: 12px 0 0;
  color: var(--home-faint);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--home-muted);
  font-size: 13px;
}
.mail-optin { max-width: 540px; margin-top: 24px; }
.mail-optin > label:first-child { display: block; margin-bottom: 8px; color: var(--home-text); font-size: 13px; font-weight: 700; }
.mail-optin > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.mail-optin input[type="email"] { min-width: 0; padding: 11px 13px; border: 1px solid var(--home-line); border-radius: 10px; background: var(--home-panel); color: var(--home-text); }
.mail-optin button { padding: 10px 16px; border: 0; border-radius: 10px; background: var(--home-accent); color: #061312; font-weight: 800; cursor: pointer; }
.mail-optin button:disabled { opacity: .55; cursor: wait; }
.mail-consent { display: flex; gap: 8px; align-items: flex-start; margin-top: 9px; color: var(--home-faint); font-size: 11px; line-height: 1.5; }
.mail-optin [data-mail-status] { min-height: 18px; margin-top: 8px; color: var(--home-muted); font-size: 11px; }

.footer-legal {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--home-line);
  color: var(--home-faint);
  font-size: 11px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.2,1);
}

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

@keyframes rimBreath {
  0%, 100% { transform: scale(.96); opacity: .52; }
  50% { transform: scale(1.03); opacity: .95; }
}

@keyframes scanHero {
  0%, 12% { transform: translateY(18px); opacity: 0; }
  22% { opacity: .8; }
  78% { opacity: .8; }
  92%, 100% { transform: translateY(520px); opacity: 0; }
}

@keyframes gentleSpin {
  to { transform: translate(566px, 160px) rotate(360deg); }
}

@keyframes tracePulse {
  50% { r: 9px; opacity: .4; }
}

@keyframes orbitRotate {
  to { transform: rotate(344deg); }
}

@keyframes orbitRotateReverse {
  to { transform: rotate(-328deg); }
}

@keyframes stageScan {
  0%, 10% { transform: translateY(0); opacity: 0; }
  22%, 78% { opacity: .8; }
  90%, 100% { transform: translateY(430px); opacity: 0; }
}

@keyframes stagePulse {
  50% { transform: scale(1.32); opacity: .45; }
}

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

@keyframes markerMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(188px); }
}

@keyframes reportFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@media (max-width: 1040px) {
  .home-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .analysis-display { grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); }
  .analysis-stage { min-height: 490px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid li:nth-child(2) { border-right: 0; }
  .workflow-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--home-line); }
  .about-grid { gap: 70px; }
}

@media (max-width: 820px) {
  .home-wrap { width: min(100% - 32px, 720px); }
  .home-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--home-line-strong);
    border-radius: 16px;
    background: var(--home-panel);
    box-shadow: var(--home-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .home-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .home-nav a { padding: 12px; }
  .nav-toggle { display: grid; }
  .header-actions .home-button.compact { display: none; }
  .home-hero { min-height: auto; padding: 126px 0 78px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-instrument { width: min(100%, 670px); margin: 10px auto 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .home-section { padding: 84px 0; }
  .analysis-display { grid-template-columns: 1fr; }
  .analysis-stage { min-height: 480px; border-right: 0; border-bottom: 1px solid var(--home-line); }
  .analysis-copy { min-height: 330px; }
  .analysis-directory-card { min-height: 0; grid-template-columns: 1fr; gap: 22px; }
  .analysis-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-wide { grid-column: span 1; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .download-panel { grid-template-columns: 1fr; gap: 44px; }
  .download-page-card { grid-template-columns: auto 1fr; }
  .package-meta { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--home-line); padding: 22px 0 0; }
  .download-info-grid { grid-template-columns: 1fr; }
  .download-info-card { min-height: 220px; }
}

@media (max-width: 560px) {
  .home-page h1 { font-size: clamp(46px, 15vw, 64px); }
  .home-page h2 { font-size: 40px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .home-button { width: 100%; }
  .instrument-screen { border-radius: 16px; transform: none; }
  .orbit { display: none; }
  .analysis-hud { border-radius: 18px; }
  .analysis-switcher { grid-auto-columns: 72%; }
  .analysis-display { min-height: 0; }
  .analysis-stage { min-height: 340px; }
  .illustrative-layer { bottom: 142px; }
  .analysis-data-strip { grid-template-columns: repeat(2, 1fr); }
  .analysis-data-strip span:nth-child(2) { border-right: 0; }
  .analysis-directory { grid-template-columns: 1fr; }
  .report-overlay { padding: 22px; }
  .report-grid { grid-template-columns: 1fr; gap: 10px; }
  .report-figure { min-height: 80px; }
  .analysis-copy { min-height: 330px; padding: 28px 24px; }
  .analysis-counter { margin-bottom: 24px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid li { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--home-line); }
  .workflow-grid li:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .about-facts { grid-template-columns: 1fr; }
  .download-panel { width: calc(100% - 24px); padding: 34px 24px; border-radius: 20px; }
  .download-meta div { display: grid; }
  .download-meta strong { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { flex-wrap: wrap; }
  .download-page-main { padding: 126px 0 72px; }
  .download-page-heading { text-align: left; }
  .download-page-heading .home-kicker { justify-content: flex-start; }
  .download-page-card { grid-template-columns: 1fr; gap: 24px; }
  .package-mark { width: 72px; height: 72px; border-radius: 18px; }
  .package-meta { grid-column: auto; }
  .package-actions { align-items: stretch; flex-direction: column; }
  .package-actions .home-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .saed-flyby { display: none; }
}
