:root {
  color-scheme: light;
  --paper: #faf8f5;
  --paper-deep: #f1ece3;
  --paper-soft: #fffdf9;
  --ink: #151413;
  --ink-soft: #31302d;
  --muted: rgba(21, 20, 19, 0.66);
  --faint: rgba(21, 20, 19, 0.45);
  --line: rgba(21, 20, 19, 0.1);
  --line-strong: rgba(21, 20, 19, 0.18);
  --gold: #b69b4a;
  --gold-soft: #ead69b;
  --brown: #76441f;
  --brown-soft: #9d6637;
  --blue: #4e6e8e;
  --green: #3b8b63;
  --lavender: #eeedf6;
  --shadow: 0 24px 72px rgba(24, 21, 18, 0.11);
  --soft-shadow: 0 16px 46px rgba(24, 21, 18, 0.07);
  --warm-page-opacity: 0;
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --serif: Georgia, "Times New Roman", "Songti SC", STSong, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "JetBrains Mono", Consolas, ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(21, 20, 19, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 28%, #fff8f1 62%, #fffaf6 100%);
  background-size: 88px 88px, 88px 88px, auto;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
  text-align: right;
}

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

button,
select {
  font: inherit;
}

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

.page-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--warm-page-opacity);
  background:
    radial-gradient(circle at 15% 18%, rgba(234, 214, 155, 0.22), transparent 28%),
    radial-gradient(circle at 85% 34%, rgba(118, 68, 31, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 247, 238, 0.78) 38%, rgba(255, 252, 247, 0.96) 100%);
  transition: opacity 120ms linear;
}

.ambient-sweep,
.evidence-stream {
  position: absolute;
  inset: auto;
  opacity: 0.72;
  filter: blur(0);
}

.ambient-sweep {
  width: 86vw;
  height: 42vh;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(182, 155, 74, 0.16), rgba(78, 110, 142, 0.11), transparent);
  animation: sweepShift 18s ease-in-out infinite alternate;
}

.ambient-sweep--one {
  top: 10vh;
  left: -24vw;
}

.ambient-sweep--two {
  right: -26vw;
  bottom: 10vh;
  animation-delay: -6s;
}

.evidence-stream {
  width: 48vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 68, 31, 0.5), transparent);
  box-shadow:
    0 34px 0 rgba(182, 155, 74, 0.24),
    0 68px 0 rgba(78, 110, 142, 0.16);
  animation: streamDrift 14s linear infinite;
}

.evidence-stream--one {
  top: 31vh;
  left: 48vw;
}

.evidence-stream--two {
  right: 62vw;
  bottom: 25vh;
  animation-direction: reverse;
  animation-duration: 18s;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1540px, 100vw);
  margin: 0 auto;
  padding: 0 64px 96px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 18px;
  width: 100vw;
  min-height: 76px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(22px, 4.6vw, 76px);
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
  contain: layout;
}

.topbar-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 14px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-lockup__wordmark {
  display: block;
  width: 228px;
  max-width: 36vw;
  height: auto;
  object-fit: contain;
}

.source-menu {
  position: relative;
  min-width: 0;
}

.source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 8px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(21, 20, 19, 0.13);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 10px 26px rgba(24, 21, 18, 0.05);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.source-button:hover,
.source-button[aria-expanded="true"] {
  border-color: rgba(21, 20, 19, 0.26);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74), 0 14px 34px rgba(24, 21, 18, 0.08);
  transform: translateY(-1px);
}

.source-button__mark {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: #171615;
}

.source-button__mark svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.source-button__label {
  color: rgba(21, 20, 19, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.source-button__stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding-left: 8px;
  border-left: 1px solid rgba(21, 20, 19, 0.14);
  color: rgba(21, 20, 19, 0.66);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.source-button__chevron {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  opacity: 0.65;
  transition: transform 180ms ease;
}

.source-button[aria-expanded="true"] .source-button__chevron {
  transform: rotate(180deg);
}

.source-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 120;
  width: min(340px, calc(100vw - 96px));
  padding: 10px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 28px 70px rgba(24, 21, 18, 0.16);
  transform-origin: top left;
  animation: sourcePanelIn 160ms ease both;
}

body[dir="rtl"] .source-panel {
  right: 0;
  left: auto;
  transform-origin: top right;
}

.source-panel[hidden] {
  display: none;
}

.source-work-list {
  display: grid;
  gap: 3px;
}

.source-work-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.source-work-card:hover {
  border-color: rgba(21, 20, 19, 0.09);
  background: rgba(21, 20, 19, 0.035);
  transform: translateX(2px);
}

.source-work-card strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.source-work-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(234, 214, 155, 0.28);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.source-work-card__badge:empty {
  display: none;
}

.nav-cluster {
  position: relative;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  min-height: 38px;
  padding: 4px;
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.035);
}

.nav-glider {
  display: none;
}

.nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 120ms ease, background 120ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link.is-active {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(21, 20, 19, 0.07);
}

.topbar-actions {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 28px 0 11px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.74);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  transition: border-color 140ms ease, background 140ms ease;
}

.language-select:hover {
  border-color: rgba(118, 68, 31, 0.24);
  background: rgba(255, 255, 255, 0.88);
}

.language-select::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.62;
}

.language-select__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.language-select select {
  appearance: none;
  min-width: 34px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  outline: 0;
  cursor: pointer;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 34px;
  min-height: 860px;
  padding: 56px 0 74px;
}

.hero-image-wash {
  position: absolute;
  inset: 190px max(-64px, -4vw) auto;
  z-index: var(--hero-motion-z, 0);
  height: min(710px, 58vw);
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--hero-motion-radius, 18px);
  opacity: var(--hero-motion-opacity, 0.38);
  filter: saturate(0.86) contrast(0.96);
  transform: translate3d(0, var(--hero-motion-y, 0), 0) scale(var(--hero-motion-scale, 1));
  transform-origin: 50% 18%;
  box-shadow: var(--hero-motion-shadow, none);
  pointer-events: none;
  -webkit-mask-image: var(--hero-motion-mask, linear-gradient(180deg, transparent 0%, #000 16%, #000 78%, transparent 100%));
  mask-image: var(--hero-motion-mask, linear-gradient(180deg, transparent 0%, #000 16%, #000 78%, transparent 100%));
  will-change: transform, opacity, border-radius;
}

.hero-image-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--hero-motion-veil, 1);
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.82), rgba(251, 250, 247, 0.38) 42%, rgba(251, 250, 247, 0.86)),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.82), transparent 42%);
}

.hero-cinema-bridge {
  position: absolute;
  top: 46vh;
  left: 50%;
  z-index: var(--hero-cinema-z, 0);
  overflow: hidden;
  width: min(1320px, 92vw);
  height: min(68vh, 650px);
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--hero-cinema-radius, 44px);
  opacity: var(--hero-cinema-opacity, 0);
  transform: translate3d(-50%, var(--hero-cinema-y, 210px), 0) scale(var(--hero-cinema-scale, 0.88));
  transform-origin: 50% 30%;
  pointer-events: none;
  box-shadow: 0 34px 130px rgba(24, 21, 18, 0.18);
  will-change: transform, opacity, border-radius;
}

.hero-cinema-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, var(--hero-cinema-shade, 0.78)), rgba(251, 250, 247, 0.16) 44%, rgba(251, 250, 247, 0.62)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 44%);
}

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

.hero-cinema-bridge img {
  object-fit: cover;
  object-position: center;
}

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

.hero-image-wash img {
  object-fit: cover;
  object-position: center 45%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
  max-width: 1080px;
  text-align: center;
}

.release-pill,
.hero-meta-row span {
  border: 1px solid rgba(21, 20, 19, 0.1);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.release-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 9px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brown);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.release-pill__pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(59, 139, 99, 0.42);
  animation: pulseRing 1.9s ease-out infinite;
}

.hero-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(74vw, 980px);
  margin: 0 auto 6px;
  color: rgba(21, 20, 19, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  pointer-events: none;
}

.hero-kicker-row::before,
.hero-kicker-row::after {
  content: none;
}

.hero-kicker-row span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  color: rgba(21, 20, 19, 0.48);
  white-space: nowrap;
}

.hero-kicker-row span::before,
.hero-kicker-row span::after {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  background: rgba(78, 110, 142, 0.32);
}

.hero-kicker-row span:first-child::after,
.hero-kicker-row span:last-child::before {
  content: none;
}

.hero-kicker-row span:last-child {
  justify-content: flex-end;
}

.section-kicker {
  margin: 20px 0 12px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: rgba(78, 110, 142, 0.46);
}

.section-kicker::after {
  margin: 0 0 3px 10px;
}

.hero-title {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 0.98;
  font-weight: 700;
}

.hero-title span {
  display: block;
  max-width: 1120px;
}

.hero-title span:first-child::after {
  content: "";
}

.hero-title__wordmark {
  display: block;
  width: min(42vw, 500px);
  height: auto;
  margin: 0 auto;
}

.hero-title__wordmark--lead {
  width: min(32vw, 340px);
}

.hero-subtitle {
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.verb-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35em;
  min-height: 0;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(21, 20, 19, 0.62);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-family: var(--serif);
  font-size: clamp(21px, 1.85vw, 31px);
  font-weight: 700;
  line-height: 1.18;
}

.verb-strip strong {
  color: var(--brown);
  font-weight: 700;
}

.verb-strip strong.is-changing {
  animation: verbIn 420ms ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.primary-download,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 930;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-download {
  min-width: 236px;
  padding: 0 24px;
  color: #fffdf9;
  background: var(--ink);
  box-shadow: 0 20px 48px rgba(21, 20, 19, 0.22);
}

.primary-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(21, 20, 19, 0.28);
}

.button-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.primary-download .button-icon {
  filter: invert(1) grayscale(1) contrast(1.12);
}

.button-icon--trailing {
  width: 22px;
  height: 22px;
  opacity: 0.72;
}

.secondary-action {
  min-width: 168px;
  padding: 0 18px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.58);
}

.secondary-action:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 68, 31, 0.26);
  box-shadow: var(--soft-shadow);
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1120px);
  margin: 28px auto 0;
  border-top: 1px solid rgba(21, 20, 19, 0.16);
  border-bottom: 1px solid rgba(21, 20, 19, 0.1);
}

.hero-metrics article {
  display: grid;
  min-height: 126px;
  padding: 22px 24px;
  border-right: 1px solid rgba(21, 20, 19, 0.1);
  text-align: left;
}

.metric-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin: -2px 0 12px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 21, 18, 0.08));
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.015em;
}

.hero-metrics span {
  margin-top: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.hero-metrics em {
  align-self: end;
  max-width: 170px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.hero-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  min-width: 0;
  margin-top: 12px;
  padding: 14px 0 4px;
}

.preview-glow {
  position: absolute;
  inset: 6% 3% -5%;
  border: 1px solid rgba(182, 155, 74, 0.14);
  background:
    linear-gradient(120deg, rgba(182, 155, 74, 0.1), transparent 32%),
    linear-gradient(270deg, rgba(78, 110, 142, 0.09), transparent 46%);
  border-radius: 32px;
  transform: none;
  opacity: 0.9;
}

.os-home-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(250, 248, 245, 0.9);
  box-shadow: var(--shadow);
}

.os-home-preview__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 20, 19, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 19, 0.026) 1px, transparent 1px),
    radial-gradient(rgba(20, 20, 19, 0.04) 1px, transparent 1px);
  background-position:
    0 0,
    0 0,
    6px 6px;
  background-size:
    64px 64px,
    64px 64px,
    18px 18px;
}

.os-home-preview__axis {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: rgba(20, 20, 19, 0.08);
}

.os-home-preview__axis--vertical {
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
}

.os-home-preview__axis--horizontal {
  right: 0;
  bottom: 18%;
  left: 0;
  height: 1px;
}

.os-home-preview__topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.08);
  background: rgba(250, 248, 245, 0.68);
}

.os-home-preview__topbar img {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
}

.os-home-preview__topbar span {
  color: rgba(20, 20, 19, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.os-home-preview__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  min-height: 0;
}

.os-home-preview__story {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 30px 22px;
}

.os-home-preview__eyebrow,
.os-home-preview__terminal-header span,
.os-home-preview__form label > span {
  color: rgba(20, 20, 19, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.os-home-preview__story h2 {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.os-home-preview__story p {
  max-width: 310px;
  margin: 14px 0 0;
  color: rgba(20, 20, 19, 0.65);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.os-home-preview__globe {
  position: relative;
  width: min(400px, 100%);
  min-height: 210px;
  margin: 14px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 44%, rgba(20, 20, 19, 0.1) 44.4%, transparent 45.2%),
    radial-gradient(circle at 50% 48%, rgba(182, 155, 74, 0.18), rgba(78, 110, 142, 0.07) 42%, transparent 67%);
}

.os-home-preview__globe::before {
  content: "";
  position: absolute;
  inset: 34px 54px;
  border-radius: 50%;
  background-image:
    radial-gradient(circle, rgba(20, 20, 19, 0.35) 1.1px, transparent 1.8px),
    radial-gradient(circle, rgba(182, 155, 74, 0.28) 1.1px, transparent 2px);
  background-position:
    0 0,
    9px 10px;
  background-size:
    18px 18px,
    24px 24px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 63%, transparent 64%);
  opacity: 0.72;
}

.os-home-preview__orbit {
  position: absolute;
  inset: 36px 52px;
  border: 1px solid rgba(20, 20, 19, 0.1);
  border-radius: 50%;
}

.os-home-preview__orbit--one {
  transform: rotate(-16deg) scaleX(1.1);
}

.os-home-preview__orbit--two {
  transform: rotate(22deg) scaleX(0.72);
  border-color: rgba(182, 155, 74, 0.2);
}

.os-home-preview__connection {
  position: absolute;
  z-index: 2;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(78, 110, 142, 0.42), rgba(182, 155, 74, 0.5), transparent);
}

.os-home-preview__connection--one {
  top: 110px;
  left: 110px;
  width: 172px;
  transform: rotate(-12deg);
}

.os-home-preview__connection--two {
  top: 152px;
  left: 126px;
  width: 150px;
  transform: rotate(24deg);
}

.os-home-preview__connection--three {
  top: 92px;
  left: 210px;
  width: 110px;
  transform: rotate(56deg);
}

.os-home-preview__hub {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(20, 20, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 12px 34px rgba(20, 20, 19, 0.08);
  font-size: 11px;
  white-space: nowrap;
}

.os-home-preview__hub::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(59, 139, 99, 0.12);
}

.os-home-preview__hub b {
  font-weight: 950;
}

.os-home-preview__hub em {
  color: var(--brown);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.os-home-preview__hub--westlake {
  top: 76px;
  left: 62px;
}

.os-home-preview__hub--boston {
  right: 10px;
  top: 102px;
}

.os-home-preview__hub--geneva {
  right: 40px;
  bottom: 45px;
}

.os-home-preview__terminal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 24px 28px 26px;
  border-left: 1px solid rgba(20, 20, 19, 0.08);
}

.os-home-preview__terminal > div,
.os-home-preview__terminal > p,
.os-home-preview__terminal > .os-home-preview__form {
  position: relative;
}

.os-home-preview__terminal {
  flex-direction: column;
}

.os-home-preview__terminal::before {
  content: "";
  position: absolute;
  inset: 70px 22px 24px auto;
  width: 310px;
  border: 1px solid rgba(20, 20, 19, 0.12);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(250, 248, 245, 0.95), rgba(250, 248, 245, 0.76));
  box-shadow:
    0 26px 70px rgba(20, 20, 19, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.os-home-preview__terminal-header,
.os-home-preview__form,
.os-home-preview__terminal-strip,
.os-home-preview__terminal > p {
  width: min(100%, 264px);
  z-index: 1;
}

.os-home-preview__terminal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.os-home-preview__terminal-header h3 {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.os-home-preview__terminal-header label {
  display: inline-flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
}

.os-home-preview__terminal-header select {
  width: 96px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(20, 20, 19, 0.1);
  border-radius: 4px;
  background: rgba(250, 248, 245, 0.75);
  color: var(--ink-soft);
  font-size: 10px;
}

.os-home-preview__terminal-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  margin: 15px 0;
}

.os-home-preview__terminal-strip span {
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 20, 19, 0.08), rgba(182, 155, 74, 0.38), rgba(20, 20, 19, 0.04));
}

.os-home-preview__form {
  display: grid;
  gap: 12px;
}

.os-home-preview__form label {
  display: grid;
  gap: 7px;
}

.os-home-preview__form label em {
  display: block;
  min-height: 30px;
  padding-top: 7px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.2);
  color: rgba(20, 20, 19, 0.54);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
}

.os-home-preview__remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(20, 20, 19, 0.58);
  font-family: var(--serif);
  font-size: 12px;
}

.os-home-preview__remember span {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(20, 20, 19, 0.55);
  border-radius: 2px;
  background: linear-gradient(135deg, var(--ink) 0 48%, transparent 50%);
}

.os-home-preview__remember b {
  font-weight: 500;
}

.os-home-preview__form button {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.os-home-preview__terminal > p {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 20, 19, 0.08);
  color: rgba(20, 20, 19, 0.42);
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.os-main-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 1px solid rgba(21, 20, 19, 0.13);
  border-radius: 20px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(248, 246, 242, 0.98)),
    var(--paper-soft);
  box-shadow:
    0 36px 92px rgba(24, 21, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: none;
  transform-origin: 50% 50%;
}

.os-main-preview button,
.os-main-preview__sidebar span,
.agent-pill,
.agent-plus,
.os-main-preview__prompt-actions > strong {
  cursor: pointer;
}

.os-main-preview::before {
  content: "";
  position: absolute;
  inset: 44px 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(182, 155, 74, 0.1), transparent 28%),
    radial-gradient(circle at 25% 78%, rgba(78, 110, 142, 0.07), transparent 30%);
}

.os-main-preview__chrome {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto auto 30px 30px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(245, 242, 237, 0.9);
}

.chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.chrome-dot--red {
  background: #ee6a5f;
}

.chrome-dot--yellow {
  background: #f2bd4f;
}

.chrome-dot--green {
  background: #61c554;
}

.chrome-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(21, 20, 19, 0.38);
  font-size: 23px;
  line-height: 1;
}

.os-main-preview__chrome strong {
  justify-self: center;
  margin-left: -110px;
  color: rgba(21, 20, 19, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.os-main-preview__window {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  min-height: 482px;
  background: #f8f8f7;
}

.os-main-preview__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 20px 16px;
  border-right: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(239, 241, 243, 0.86);
}

.os-main-preview__sidebar img {
  display: block;
  width: 142px;
  height: auto;
  object-fit: contain;
}

.os-main-preview__sidebar nav,
.os-main-preview__sidebar-group {
  display: grid;
  gap: 7px;
}

.os-main-preview__sidebar nav span,
.os-main-preview__sidebar-group span {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 9px;
  color: rgba(21, 20, 19, 0.72);
  font-size: 12px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-main-preview__sidebar [data-preview-nav] {
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.os-main-preview__sidebar [data-preview-nav]:hover,
.os-main-preview__sidebar [data-preview-nav].is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(24, 21, 18, 0.055);
}

.os-main-preview__sidebar nav span::before,
.os-main-preview__sidebar-group span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  opacity: 0.55;
}

.os-main-preview__sidebar nav span.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(24, 21, 18, 0.05);
}

.os-main-preview__sidebar-group {
  padding-top: 10px;
  border-top: 1px solid rgba(21, 20, 19, 0.07);
}

.os-main-preview__sidebar-group em {
  padding: 0 9px 2px;
  color: rgba(21, 20, 19, 0.4);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.os-main-preview__sidebar-group--collapsed {
  gap: 0;
}

.os-main-preview__sidebar-group--collapsed em {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 30px;
  padding-right: 28px;
  border-radius: 9px;
  color: rgba(21, 20, 19, 0.46);
}

.os-main-preview__sidebar-group--collapsed em::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  opacity: 0.78;
  transform: translateY(-62%) rotate(45deg);
}

.os-main-preview__collapsed-items {
  display: none;
}

.os-main-preview__workspace {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 56px 64px 34px;
  text-align: center;
}

.os-main-preview__workspace--switchable {
  position: relative;
  display: block;
  padding: 0;
  text-align: inherit;
}

.os-preview-stage {
  position: relative;
  min-width: 0;
  min-height: 482px;
  overflow: hidden;
}

.os-preview-panel {
  display: none;
  min-width: 0;
  min-height: 482px;
}

.os-preview-panel.is-active {
  display: block;
  animation: osPreviewPanelIn 0.32s ease both;
}

.os-preview-panel--new {
  position: relative;
  flex-direction: column;
  align-items: center;
  padding: 56px 64px 34px;
  text-align: center;
}

.os-preview-panel--new.is-active {
  display: flex;
}

.os-main-preview__eyebrow {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.os-main-preview__workspace h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(32px, 3.25vw, 50px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
  color: rgba(21, 20, 19, 0.88);
}

.os-main-preview__subtitle {
  max-width: 700px;
  margin: 12px auto 0;
  color: rgba(21, 20, 19, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.os-main-preview__agent-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 48px;
  margin: 24px auto 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(235, 234, 246, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.agent-pill,
.agent-plus,
.agent-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.agent-pill {
  padding: 0 12px;
  color: rgba(21, 20, 19, 0.64);
}

.agent-pill.is-active {
  color: var(--ink);
  background: white;
  box-shadow: 0 8px 20px rgba(24, 21, 18, 0.08);
}

.agent-spark {
  width: 26px;
  color: #8867d8;
}

.agent-plus {
  width: 32px;
  border: 0;
  color: rgba(21, 20, 19, 0.55);
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  appearance: none;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.agent-plus:hover,
.agent-plus[aria-expanded="true"] {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(24, 21, 18, 0.14);
}

.os-main-preview__prompt {
  position: relative;
  z-index: 8;
  width: min(100%, 720px);
  overflow: visible;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(24, 21, 18, 0.08);
  text-align: left;
}

.os-main-preview__prompt > span {
  display: block;
  padding: 18px 24px 0;
  color: rgba(21, 20, 19, 0.38);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.os-main-preview__prompt p {
  min-height: 86px;
  margin: 0;
  padding: 9px 24px 18px;
  color: rgba(21, 20, 19, 0.76);
  font-size: 15px;
  line-height: 1.65;
}

.os-main-preview__prompt-actions {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 12px 8px 14px;
  border-radius: 0 0 24px 24px;
  background: rgba(239, 240, 241, 0.86);
}

.os-mode-picker__trigger,
.os-main-preview__prompt-actions > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
}

.os-mode-picker {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.os-mode-picker__trigger {
  width: 32px;
  height: 32px;
  color: rgba(21, 20, 19, 0.55);
  background: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.os-mode-picker__trigger:hover,
.os-mode-picker__trigger[aria-expanded="true"] {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(24, 21, 18, 0.16);
}

.os-mode-picker__trigger[aria-expanded="true"] {
  transform: rotate(45deg);
}

.os-mode-picker__menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: -9px;
  z-index: 120;
  display: grid;
  width: min(318px, calc(100vw - 72px));
  padding: 8px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow:
    0 26px 72px rgba(24, 21, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transform-origin: 18px calc(100% + 12px);
  animation: modePickerIn 0.18s ease both;
}

.os-mode-picker__menu[hidden] {
  display: none;
}

.os-mode-picker__menu::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: var(--mode-menu-arrow-left, 20px);
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(21, 20, 19, 0.12);
  border-bottom: 1px solid rgba(21, 20, 19, 0.12);
  background: rgba(255, 253, 249, 0.98);
  transform: rotate(45deg);
}

.os-mode-picker__menu[data-anchor="agent"]::after {
  top: -7px;
  bottom: auto;
  border: 0;
  border-left: 1px solid rgba(21, 20, 19, 0.12);
  border-top: 1px solid rgba(21, 20, 19, 0.12);
}

.os-mode-picker__menu button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 8px 10px;
  border: 0;
  border-radius: 13px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.os-mode-picker__menu button:hover,
.os-mode-picker__menu button.is-active {
  background: rgba(244, 240, 231, 0.86);
  box-shadow: inset 0 0 0 1px rgba(21, 20, 19, 0.06);
}

.os-mode-picker__menu button:hover {
  transform: translateX(2px);
}

.os-mode-picker__menu img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.os-mode-picker__menu span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.os-mode-picker__menu strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.os-mode-picker__menu small {
  color: rgba(21, 20, 19, 0.5);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
}

@keyframes modePickerIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.os-main-preview__prompt-actions > small {
  color: rgba(21, 20, 19, 0.48);
  font-size: 12px;
  font-weight: 850;
}

.os-main-preview__prompt-actions > strong {
  min-height: 34px;
  padding: 0 16px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.os-main-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 720px);
  gap: 10px;
  margin-top: 20px;
}

.os-main-preview__cards article {
  min-width: 0;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  text-align: left;
}

.os-main-preview__card-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(24, 21, 18, 0.07));
}

.os-main-preview__cards strong,
.os-main-preview__cards span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-main-preview__cards strong {
  color: rgba(21, 20, 19, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.os-main-preview__cards span {
  margin-top: 3px;
  color: rgba(21, 20, 19, 0.42);
  font-family: var(--mono);
  font-size: 10px;
}

.os-medical-task {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-height: 482px;
  padding: 46px 52px 38px;
  background:
    radial-gradient(circle at 86% 18%, rgba(84, 134, 108, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 249, 247, 0.96));
  text-align: left;
}

.os-medical-task--calm {
  background:
    radial-gradient(circle at 18% 20%, rgba(182, 155, 74, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 246, 242, 0.96));
}

.os-medical-task--artifact {
  gap: 20px;
  background:
    radial-gradient(circle at 84% 18%, rgba(78, 132, 170, 0.11), transparent 32%),
    radial-gradient(circle at 20% 88%, rgba(72, 150, 112, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(246, 249, 247, 0.97));
}

.os-medical-task--provenance {
  background:
    radial-gradient(circle at 18% 20%, rgba(182, 155, 74, 0.11), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(70, 112, 145, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(247, 246, 242, 0.97));
}

.os-medical-task--report {
  gap: 14px;
  min-height: 548px;
  padding: 34px 38px 32px;
}

.os-product-artifact-report {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  min-height: 428px;
  overflow: hidden;
}

.os-product-artifact-report--comparison {
  grid-template-columns: minmax(0, 0.68fr) minmax(240px, 0.32fr);
}

.os-product-artifact-report .science-report-panel,
.os-product-artifact-report .science-evidence-report {
  --color-text-1: rgba(21, 20, 19, 0.88);
  --color-text-2: rgba(21, 20, 19, 0.62);
  --color-text-3: rgba(21, 20, 19, 0.42);
  --color-bg-1: rgba(255, 255, 255, 0.78);
  --color-fill-1: rgba(21, 20, 19, 0.045);
  --color-fill-2: rgba(21, 20, 19, 0.07);
  --color-border-2: rgba(21, 20, 19, 0.10);
  --science-report-accent: rgba(49, 103, 78, 0.94);
  --science-report-blue: rgba(49, 74, 100, 0.86);
  --science-report-rule: rgba(21, 20, 19, 0.10);
}

.os-product-report-card {
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--science-report-rule);
  border-bottom: 1px solid var(--science-report-rule);
  color: var(--color-text-1);
}

.science-report-cardHeader {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.science-report-cardHeader > div {
  min-width: 0;
}

.science-report-cardHeader__actions {
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: flex-end;
}

.science-report-cardHeader span,
.science-report-cardArtifacts span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--science-report-accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
}

.science-report-cardHeader h3 {
  margin: 4px 0 0;
  color: var(--color-text-1);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.science-report-cardHeader button,
.science-report-cardArtifacts button,
.science-report-embed__captionHead button {
  border: 1px solid rgba(21, 20, 19, 0.10);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(21, 20, 19, 0.62);
  cursor: default;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
}

.science-report-cardHeader button {
  padding: 5px 8px;
  white-space: nowrap;
}

.science-report-cardSummary {
  margin: 10px 0 0;
  color: var(--color-text-2);
  font-size: 12px;
  line-height: 1.62;
}

.science-report-gitBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(49, 103, 78, 0.09);
  padding: 4px 8px;
  color: var(--color-text-3);
  font-size: 10px;
  font-weight: 850;
}

.science-report-gitBadge code {
  color: rgba(49, 103, 78, 0.94);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.science-report-cardArtifacts {
  display: grid;
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--science-report-rule);
}

.science-report-cardArtifacts button {
  display: grid;
  min-width: 0;
  gap: 3px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  padding: 8px 0;
  text-align: left;
}

.science-report-cardArtifacts b {
  overflow: hidden;
  color: var(--color-text-1);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-product-report-document {
  min-width: 0;
  max-height: 440px;
  overflow: auto;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
}

.os-product-report-document::-webkit-scrollbar {
  width: 8px;
}

.os-product-report-document::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.16);
}

.medical-evidence-report__section {
  min-width: 0;
  padding: 0;
}

.medical-evidence-report__section + .medical-evidence-report__section {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(21, 20, 19, 0.09);
}

.medical-evidence-report__section h4 {
  margin: 0 0 8px;
  color: rgba(21, 20, 19, 0.86);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.38;
}

.medical-evidence-report__paragraph,
.medical-evidence-report__list {
  margin: 0;
  color: rgba(21, 20, 19, 0.66);
  font-size: 12.5px;
  line-height: 1.72;
}

.medical-evidence-report__paragraph + .medical-evidence-report__paragraph {
  margin-top: 8px;
}

.medical-evidence-emphasis {
  border-radius: 6px;
  background: rgba(234, 214, 155, 0.42);
  color: rgba(21, 20, 19, 0.84);
  padding: 1px 4px;
  font-weight: 900;
}

.medical-evidence-citationList {
  display: inline-flex;
  gap: 4px;
  margin-left: 5px;
  vertical-align: baseline;
}

.medical-evidence-citation {
  border: 0;
  background: transparent;
  color: rgba(49, 74, 100, 0.88);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  padding: 0;
}

.science-report-embed {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
}

.science-report-embed__media {
  display: flex;
  width: 100%;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(21, 20, 19, 0.10);
  border-bottom: 1px solid rgba(21, 20, 19, 0.10);
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 0;
}

.science-report-embed__media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.science-report-embed figcaption {
  display: grid;
  gap: 5px;
  margin: 0;
  color: rgba(21, 20, 19, 0.56);
  font-size: 11.5px;
  line-height: 1.55;
}

.science-report-embed__captionHead {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.science-report-embed__captionHead > span {
  min-width: 0;
  overflow: hidden;
  color: rgba(21, 20, 19, 0.42);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.science-report-embed__captionHead button {
  flex: 0 0 auto;
  padding: 2px 7px;
}

.science-report-embed figcaption b {
  color: rgba(21, 20, 19, 0.64);
  font-size: 11.5px;
  font-weight: 650;
}

.medical-evidence-report__list {
  padding-left: 18px;
}

.medical-evidence-report__list li + li {
  margin-top: 4px;
}

.science-report-exportNotice {
  margin-top: 12px;
  border-radius: 8px;
  background: rgba(49, 103, 78, 0.09);
  padding: 8px 10px;
  color: rgba(49, 103, 78, 0.94);
  font-size: 11.5px;
  font-weight: 780;
  line-height: 1.55;
}

.os-medical-task header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.os-medical-task header span,
.os-medical-task header em {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.os-medical-task header span {
  gap: 8px;
  color: rgba(49, 103, 78, 0.92);
}

.os-medical-task header img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.os-medical-task header em {
  padding: 0 12px;
  color: rgba(49, 103, 78, 0.82);
  background: rgba(59, 139, 99, 0.11);
}

.os-medical-task h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(21, 20, 19, 0.88);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  line-height: 1.12;
}

.os-medical-task > p {
  max-width: 690px;
  margin: 0;
  color: rgba(21, 20, 19, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.os-artifact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: 22px;
  align-items: stretch;
  min-height: 350px;
}

.os-artifact-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.os-artifact-copy h2 {
  max-width: 640px;
  margin: 0;
  color: rgba(21, 20, 19, 0.88);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 950;
  line-height: 1.12;
}

.os-artifact-copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(21, 20, 19, 0.62);
  font-size: 13px;
  line-height: 1.72;
}

.os-artifact-file-list {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
}

.os-artifact-file-list span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(21, 20, 19, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 12px 30px rgba(24, 21, 18, 0.045);
}

.os-artifact-file-list b {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: rgba(49, 74, 100, 0.88);
  background: rgba(73, 113, 148, 0.11);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 950;
}

.os-artifact-file-list strong,
.os-artifact-file-list em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-artifact-file-list strong {
  color: rgba(21, 20, 19, 0.82);
  font-size: 12px;
  font-weight: 950;
}

.os-artifact-file-list em {
  color: rgba(21, 20, 19, 0.48);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.os-artifact-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 54px rgba(24, 21, 18, 0.075);
}

.os-artifact-figure img {
  display: block;
  width: 100%;
  max-height: 286px;
  border-radius: 15px;
  object-fit: contain;
  background: #fff;
}

.os-artifact-figure figcaption {
  margin-top: 10px;
  color: rgba(21, 20, 19, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.os-artifact-provenance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.os-artifact-provenance-grid section {
  min-width: 0;
  min-height: 126px;
  padding: 15px 14px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 16px 38px rgba(24, 21, 18, 0.05);
}

.os-artifact-provenance-grid strong {
  display: block;
  color: rgba(21, 20, 19, 0.84);
  font-size: 13px;
  font-weight: 950;
}

.os-artifact-provenance-grid code {
  display: block;
  min-width: 0;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(49, 74, 100, 0.90);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-artifact-provenance-grid p {
  margin: 8px 0 0;
  color: rgba(21, 20, 19, 0.56);
  font-size: 11px;
  line-height: 1.55;
}

.os-artifact-log-note {
  padding-bottom: 14px;
}

.os-artifact-log-note pre {
  margin: 12px 0 0;
  padding: 12px 14px;
  overflow: hidden;
  border-radius: 14px;
  color: rgba(49, 74, 100, 0.86);
  background: rgba(49, 74, 100, 0.075);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.55;
  white-space: pre-wrap;
}

.os-medical-finding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.os-medical-finding-grid section,
.os-medical-note {
  min-width: 0;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 46px rgba(24, 21, 18, 0.06);
}

.os-medical-finding-grid section {
  min-height: 136px;
  padding: 16px 15px;
}

.os-medical-finding-grid strong,
.os-medical-note strong {
  display: block;
  color: rgba(21, 20, 19, 0.82);
  font-size: 14px;
  font-weight: 950;
}

.os-medical-finding-grid p,
.os-medical-note p {
  margin: 8px 0 0;
  color: rgba(21, 20, 19, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.os-medical-finding-grid small {
  display: block;
  margin-top: 12px;
  color: rgba(49, 74, 100, 0.88);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.os-medical-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.os-medical-timeline span {
  position: relative;
  min-height: 64px;
  padding: 18px 14px 14px 34px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  color: rgba(21, 20, 19, 0.7);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.os-medical-timeline span::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(59, 139, 99, 0.78);
  box-shadow: 0 0 0 5px rgba(59, 139, 99, 0.12);
}

.os-medical-note {
  margin-top: auto;
  padding: 18px 20px;
}

.os-preview-cursor {
  --cursor-x-new: 48px;
  --cursor-y-new: 116px;
  --cursor-x-taskA: 58px;
  --cursor-y-taskA: 238px;
  --cursor-x-taskB: 58px;
  --cursor-y-taskB: 276px;
  --cursor-x: var(--cursor-x-new);
  --cursor-y: var(--cursor-y-new);
  position: absolute;
  z-index: 8;
  left: -228px;
  top: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
  transition: transform 820ms cubic-bezier(0.18, 0.78, 0.2, 1);
  filter:
    drop-shadow(0 10px 14px rgba(21, 20, 19, 0.22))
    drop-shadow(0 0 1px rgba(21, 20, 19, 0.42));
}

[data-preview-cursor="new"] .os-preview-cursor {
  --cursor-x: var(--cursor-x-new);
  --cursor-y: var(--cursor-y-new);
}

[data-preview-cursor="taskA"] .os-preview-cursor {
  --cursor-x: var(--cursor-x-taskA);
  --cursor-y: var(--cursor-y-taskA);
}

[data-preview-cursor="taskB"] .os-preview-cursor {
  --cursor-x: var(--cursor-x-taskB);
  --cursor-y: var(--cursor-y-taskB);
}

.os-preview-cursor__arrow {
  position: absolute;
  left: 8px;
  top: 7px;
  width: 17px;
  height: 22px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 34% 74%, 49% 100%, 65% 93%, 51% 68%, 87% 68%);
}

.os-preview-cursor__ripple {
  position: absolute;
  left: 3px;
  top: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.2);
  box-shadow:
    0 0 0 1px rgba(21, 20, 19, 0.08),
    0 0 22px rgba(255, 255, 255, 0.5);
}

.os-preview-cursor.is-clicking .os-preview-cursor__arrow {
  animation: osPreviewCursorTap 420ms cubic-bezier(0.18, 0.78, 0.2, 1) both;
}

.os-preview-cursor.is-clicking .os-preview-cursor__ripple {
  animation: osPreviewCursorRipple 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes osPreviewPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes osPreviewCursorTap {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  45% {
    transform: translate3d(1px, 1px, 0) scale(0.92);
  }
}

@keyframes osPreviewCursorRipple {
  0% {
    opacity: 0.72;
    transform: scale(0.15);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

.os-main-preview__trace {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 253, 249, 0.72);
}

.os-main-preview__trace span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.6);
  background: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
}

.client-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
}

.client-titlebar {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  color: var(--faint);
  background: rgba(255, 255, 255, 0.52);
}

.client-titlebar strong {
  justify-self: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.client-titlebar small {
  font-family: var(--mono);
  font-size: 11px;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-lights span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.traffic-lights span:nth-child(1) {
  background: #ff6b5f;
}

.traffic-lights span:nth-child(2) {
  background: #f5bf4f;
}

.traffic-lights span:nth-child(3) {
  background: #33c765;
}

.client-body {
  display: grid;
  grid-template-columns: 190px minmax(290px, 1fr) 250px;
  min-height: 460px;
}

.client-sidebar,
.client-review {
  background: rgba(238, 237, 246, 0.46);
}

.client-sidebar {
  padding: 18px 14px;
  border-right: 1px solid rgba(21, 20, 19, 0.075);
}

body[dir="rtl"] .client-sidebar {
  border-right: 0;
  border-left: 1px solid rgba(21, 20, 19, 0.075);
}

.client-logo-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 950;
}

.client-logo-mini img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sidebar-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  gap: 10px;
  margin-bottom: 8px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
  text-align: left;
}

.sidebar-item.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 24px rgba(24, 21, 18, 0.05);
}

.sidebar-item span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.sidebar-item em {
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-workspace {
  padding: 22px;
  background:
    linear-gradient(rgba(21, 20, 19, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.024) 1px, transparent 1px),
    rgba(255, 253, 249, 0.82);
  background-size: 44px 44px;
}

.prompt-card {
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.prompt-card span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.prompt-card p {
  margin: 10px 0 14px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
}

.prompt-progress {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.07);
}

.prompt-progress span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--brown-soft), var(--blue));
  animation: progressScan 3.4s ease-in-out infinite;
}

.artifact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.artifact-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  animation: rowLift 520ms ease both;
}

.artifact-row:nth-child(2) {
  animation-delay: 80ms;
}

.artifact-row:nth-child(3) {
  animation-delay: 160ms;
}

.artifact-row:nth-child(4) {
  animation-delay: 240ms;
}

.artifact-row:nth-child(5) {
  animation-delay: 320ms;
}

.artifact-row__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--brown);
  background: rgba(234, 214, 155, 0.22);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.artifact-row strong {
  display: block;
  font-size: 14px;
  font-weight: 950;
}

.artifact-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.artifact-row__state {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(59, 139, 99, 0.1);
  font-size: 11px;
  font-weight: 950;
}

.download-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(59, 139, 99, 0.16);
  border-radius: 8px;
  color: var(--green);
  background: rgba(59, 139, 99, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.download-ribbon strong {
  font-family: var(--mono);
}

.client-review {
  padding: 22px 18px;
  border-left: 1px solid rgba(21, 20, 19, 0.075);
}

body[dir="rtl"] .client-review {
  border-right: 1px solid rgba(21, 20, 19, 0.075);
  border-left: 0;
}

.client-review h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 24px;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.review-item::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 52%, rgba(255, 255, 255, 0.64) 52%),
    var(--green);
  box-shadow: 0 0 0 4px rgba(59, 139, 99, 0.1);
}

.evidence-metrics-section,
.science-statement,
.video-showcase,
.science-mode-spectrum,
.capability-marquee-section,
.artifact-flow-section,
.research-feature,
.mode-showcase-section,
.project-examples,
.capability-swap-section,
.platform-section,
.trust-section,
.faq-section,
.updates-section {
  padding: 118px 0 0;
}

.evidence-metrics-section {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.15);
}

.evidence-metrics-section .section-kicker {
  margin-top: 72px;
}

.evidence-metrics-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 64px;
  align-items: end;
}

.evidence-metrics-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.evidence-metrics-head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.evidence-metrics {
  width: 100%;
  margin-top: 48px;
}

.evidence-art-media {
  position: relative;
  overflow: hidden;
  width: min(100%, 1320px);
  height: clamp(360px, 42vw, 620px);
  margin: 52px auto 0;
  border: 1px solid rgba(21, 20, 19, 0.11);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.7);
  box-shadow: 0 34px 92px rgba(24, 21, 18, 0.11);
}

.evidence-art-media::before,
.evidence-art-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.evidence-art-media::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.12), transparent 28%, rgba(255, 253, 249, 0.18)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.56), transparent 46%);
}

.evidence-art-media::after {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
}

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

.evidence-art-media img {
  object-fit: cover;
  object-position: center;
}

.science-statement {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.15);
}

.science-statement .section-kicker {
  margin-top: 72px;
}

.science-statement h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.science-statement > p:not(.section-kicker) {
  max-width: 600px;
  margin: 22px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.video-showcase {
  width: min(100%, 1320px);
  max-width: 1320px;
  margin: 0 auto;
  scroll-snap-align: start;
}

.scroll-cinema {
  --cinema-entry-opacity: 0;
  --cinema-progress: 0;
  position: relative;
  min-height: 403vh;
  padding-top: 26px;
  border-top: 0;
}

.cinema-heading {
  position: relative;
  z-index: 3;
  width: min(100%, 860px);
  margin: 0 auto 34px;
  text-align: center;
}

.cinema-heading p:not(.section-kicker) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.cinema-sticky {
  position: sticky;
  top: 92px;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 116px);
}

.cinema-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 1320px);
  height: min(76svh, 720px);
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(18px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 18% 10%, rgba(234, 214, 155, 0.18), transparent 36%),
    linear-gradient(135deg, #1b1a17, #28241f 48%, #171614);
  box-shadow:
    0 46px 150px rgba(24, 21, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  opacity: calc(0.82 + var(--cinema-entry-opacity) * 0.18);
  transform: translate3d(0, calc((1 - var(--cinema-entry-opacity)) * 26px), 0) scale(calc(0.986 + var(--cinema-entry-opacity) * 0.014));
  transition: opacity 180ms linear;
}

.cinema-video,
.cinema-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cinema-video {
  opacity: 0;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(calc(1.035 - var(--cinema-progress) * 0.035));
  transition: opacity 520ms ease;
}

.cinema-poster {
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.1), rgba(18, 16, 14, 0.28)),
    url("assets/generated/research-cinema-5s-poster.jpg") center / cover no-repeat;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 900ms ease;
}

.scroll-cinema.has-video-frame .cinema-video {
  opacity: 1;
}

.scroll-cinema.has-video-frame .cinema-poster {
  opacity: 0;
  transform: scale(1.04);
}

.cinema-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.78), rgba(14, 13, 12, 0.18) 28%, rgba(14, 13, 12, 0.2) 68%, rgba(14, 13, 12, 0.72)),
    linear-gradient(180deg, rgba(14, 13, 12, 0.64), rgba(14, 13, 12, 0.12) 42%, rgba(14, 13, 12, 0.74)),
    radial-gradient(circle at calc(18% + var(--cinema-progress) * 54%) 38%, rgba(234, 214, 155, 0.18), transparent 34%);
}

.cinema-stage::before,
.cinema-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.cinema-stage::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(clamp(18px, 2.4vw, 34px) - 10px);
}

.cinema-stage::after {
  inset: -25% -8%;
  opacity: 0.22;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.32) 42%, transparent 50%),
    linear-gradient(70deg, transparent 0 56%, rgba(234, 214, 155, 0.16) 62%, transparent 72%);
  transform: translate3d(calc(-18% + var(--cinema-progress) * 26%), 0, 0);
}

.cinema-copy {
  position: absolute;
  z-index: 4;
  width: min(430px, 38vw);
  color: #fffdf9;
  opacity: 0;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
  will-change: transform, opacity, filter;
}

.cinema-copy--left {
  top: 22%;
  left: clamp(28px, 5vw, 78px);
}

.cinema-copy--right {
  top: 24%;
  right: clamp(28px, 5vw, 78px);
}

.cinema-copy--lower {
  top: auto;
  bottom: 17%;
}

.cinema-copy--final {
  top: auto;
  bottom: 16%;
}

.cinema-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: rgba(255, 253, 249, 0.8);
  font-family: var(--mono);
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cinema-copy > span::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(234, 214, 155, 0.76);
}

.cinema-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.cinema-copy p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.46;
}

.cinema-word {
  display: inline-block;
  opacity: var(--word-visible, 0);
  transform: translate3d(0, calc((1 - var(--word-visible, 0)) * 12px), 0);
  filter: blur(calc((1 - var(--word-visible, 0)) * 6px));
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 320ms ease;
}

.cinema-progress {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  z-index: 5;
  overflow: hidden;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.18);
}

.cinema-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(234, 214, 155, 0.88), rgba(255, 253, 249, 0.92));
  box-shadow: 0 0 18px rgba(234, 214, 155, 0.38);
}

.cinema-frame-meta {
  position: absolute;
  right: 34px;
  bottom: 44px;
  left: 34px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 249, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hero-cinema-bridge {
    top: 50vh;
    width: calc(100vw - 68px);
    height: min(62vh, 600px);
    min-height: 390px;
  }

  .video-showcase.scroll-cinema {
    min-height: 378vh;
  }

  .cinema-sticky {
    top: 108px;
    min-height: calc(100svh - 132px);
  }

  .cinema-stage {
    height: min(72svh, 640px);
    min-height: 500px;
  }

  .cinema-copy {
    width: min(390px, 42vw);
  }

  .cinema-copy h2 {
    font-size: clamp(36px, 6vw, 64px);
  }

  .cinema-copy p {
    font-size: clamp(16px, 1.75vw, 20px);
  }
}

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

  .video-showcase.scroll-cinema {
    min-height: 320vh;
    padding-top: 34px;
  }

  .cinema-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .cinema-sticky {
    top: 88px;
    min-height: calc(100svh - 96px);
  }

  .cinema-stage {
    height: min(74svh, 620px);
    min-height: 520px;
    border-radius: 20px;
  }

  .cinema-stage::before {
    inset: 10px;
    border-radius: 14px;
  }

  .cinema-scrim {
    background:
      linear-gradient(180deg, rgba(14, 13, 12, 0.72), rgba(14, 13, 12, 0.18) 34%, rgba(14, 13, 12, 0.84)),
      radial-gradient(circle at 50% 72%, rgba(234, 214, 155, 0.16), transparent 42%);
  }

  .cinema-copy,
  .cinema-copy--left,
  .cinema-copy--right,
  .cinema-copy--lower,
  .cinema-copy--final {
    top: auto;
    right: 22px;
    bottom: 76px;
    left: 22px;
    width: auto;
    max-width: none;
  }

  .cinema-copy > span {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .cinema-copy > span::before {
    width: 26px;
  }

  .cinema-copy h2 {
    max-width: 92%;
    font-size: clamp(34px, 10vw, 52px);
    line-height: 0.98;
  }

  .cinema-copy p {
    max-width: 92%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.48;
  }

  .cinema-frame-meta {
    right: 22px;
    bottom: 38px;
    left: 22px;
    font-size: 8px;
  }

  .cinema-progress {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(182, 155, 74, 0.14), transparent 38%),
    rgba(255, 253, 249, 0.82);
  box-shadow: 0 26px 72px rgba(24, 21, 18, 0.1);
}

.video-card__media {
  aspect-ratio: 16 / 9;
  background: #171614;
}

.video-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__copy {
  padding: 20px 22px 24px;
}

.video-card__copy strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}

.video-card__copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.science-mode-spectrum {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
  max-width: 1320px;
  min-height: calc(92svh - 88px);
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.13);
  scroll-snap-align: start;
}

.science-mode-spectrum__copy h2 {
  margin: 0;
  font-family: var(--serif);
  max-width: 760px;
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.science-mode-spectrum__copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.science-mode-spectrum__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.science-mode-spectrum__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.72);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(24, 21, 18, 0.045);
  font-size: 12px;
  font-weight: 900;
}

.science-mode-spectrum__visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(21, 20, 19, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(rgba(21, 20, 19, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(182, 155, 74, 0.16), transparent 32%),
    radial-gradient(circle at 18% 86%, rgba(78, 110, 142, 0.12), transparent 34%),
    rgba(255, 253, 249, 0.8);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.09);
}

.science-mode-card {
  min-height: 164px;
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(24, 21, 18, 0.045);
}

.science-mode-card img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 21, 18, 0.08));
}

.science-mode-card strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
}

.science-mode-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

[data-split-reveal] {
  overflow: hidden;
}

.split-word,
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.52em);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-word {
  margin-right: 0.18em;
}

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

[data-reveal].is-visible .split-word:nth-child(2),
[data-reveal].is-visible .split-char:nth-child(2) { transition-delay: 35ms; }
[data-reveal].is-visible .split-word:nth-child(3),
[data-reveal].is-visible .split-char:nth-child(3) { transition-delay: 70ms; }
[data-reveal].is-visible .split-word:nth-child(4),
[data-reveal].is-visible .split-char:nth-child(4) { transition-delay: 105ms; }
[data-reveal].is-visible .split-word:nth-child(5),
[data-reveal].is-visible .split-char:nth-child(5) { transition-delay: 140ms; }
[data-reveal].is-visible .split-word:nth-child(6),
[data-reveal].is-visible .split-char:nth-child(6) { transition-delay: 175ms; }
[data-reveal].is-visible .split-word:nth-child(n + 7),
[data-reveal].is-visible .split-char:nth-child(n + 7) { transition-delay: 210ms; }

.spotlight-surface {
  --spotlight-opacity: 0;
  position: relative;
  overflow: hidden;
}

.spotlight-surface > .spotlight-glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  opacity: var(--spotlight-opacity);
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.72), transparent 0 18%, rgba(182, 155, 74, 0.16) 19%, transparent 46%);
  mix-blend-mode: soft-light;
  transition: opacity 180ms ease;
}

.spotlight-surface:hover,
.spotlight-surface:focus-within {
  --spotlight-opacity: 1;
}

.capability-marquee-section {
  position: relative;
  max-width: 1320px;
  min-height: 520px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.12);
  overflow: hidden;
}

.capability-marquee-section::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 22%;
  width: min(380px, 38vw);
  height: min(380px, 38vw);
  border: 1px solid rgba(21, 20, 19, 0.06);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 253, 249, 0.8) 0 23%, transparent 24%),
    conic-gradient(from 120deg, transparent 0 18%, rgba(182, 155, 74, 0.18) 18% 21%, transparent 21% 48%, rgba(78, 110, 142, 0.14) 48% 52%, transparent 52% 100%);
  opacity: 0.72;
  animation: flowRotate 28s linear infinite;
}

.capability-marquee-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.capability-marquee-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.capability-marquee-head p:not(.section-kicker) {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.capability-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 54px -64px 0;
  padding: 18px 0 40px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.capability-marquee__row {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marqueeDrift 34s linear infinite;
}

.capability-marquee__row--reverse {
  animation-direction: reverse;
  animation-duration: 42s;
}

.capability-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 25px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 249, 0.58)),
    rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 48px rgba(24, 21, 18, 0.07);
  white-space: nowrap;
}

.capability-pill img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(24, 21, 18, 0.08));
}

.capability-pill span {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1;
}

.artifact-flow-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  gap: 58px;
  align-items: center;
  max-width: 1320px;
  min-height: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.12);
}

.artifact-flow-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.9vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.artifact-flow-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.flow-keywords,
.feature-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flow-keywords {
  margin-top: 28px;
}

.flow-keywords span,
.feature-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.74);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(24, 21, 18, 0.045);
  font-size: 12px;
  font-weight: 900;
}

.artifact-flow-visual {
  position: relative;
  min-height: 640px;
}

.evidence-report-section {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1.42fr);
  min-height: 760px;
}

.evidence-report-section .artifact-flow-visual {
  min-height: 560px;
}

.evidence-report-demo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(222, 219, 207, 0.84) 0 43%, rgba(255, 253, 249, 0.94) 43% 100%),
    var(--paper-soft);
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.1);
}

.evidence-report-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.46), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(182, 155, 74, 0.1), transparent 28%),
    linear-gradient(rgba(21, 20, 19, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.022) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
}

.evidence-report-demo__chrome {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 253, 249, 0.68);
}

.evidence-report-demo__chrome strong {
  justify-self: center;
  color: rgba(21, 20, 19, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.evidence-report-demo__chrome em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(59, 139, 99, 0.1);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.evidence-report-demo__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  height: calc(100% - 48px);
}

.evidence-report-demo__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 34px 18px;
  border-right: 1px solid rgba(21, 20, 19, 0.08);
}

.evidence-report-demo__rail strong {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.06;
}

.evidence-report-demo__rail span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.68);
  background: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
}

.evidence-report-demo__scroll {
  overflow-y: auto;
  padding: 34px;
  scrollbar-color: rgba(21, 20, 19, 0.22) transparent;
  scrollbar-width: thin;
}

.evidence-report-demo__scroll::-webkit-scrollbar {
  width: 8px;
}

.evidence-report-demo__scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.2);
}

.evidence-report-card {
  min-height: 720px;
  padding: 34px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(24, 21, 18, 0.08);
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-card-header span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(59, 139, 99, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.report-card-header span img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.report-card-header span em {
  color: inherit;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
}

.report-card-header em {
  color: rgba(21, 20, 19, 0.46);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.report-card-header span em {
  color: inherit;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
}

.evidence-report-card h3 {
  max-width: 720px;
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.report-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.48;
}

.report-evidence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.report-evidence-tags span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.report-block {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 20, 19, 0.1);
}

.report-block strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
}

.report-block ul {
  display: grid;
  gap: 13px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.report-block li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.report-block li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(59, 139, 99, 0.55);
}

.report-block--muted {
  padding: 22px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(241, 236, 227, 0.36);
}

.report-block--muted p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.report-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.report-source-grid article {
  min-height: 102px;
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
}

.report-source-grid b {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
}

.report-source-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.flow-orbit {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(rgba(21, 20, 19, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 54% 48%, rgba(182, 155, 74, 0.22), transparent 24%),
    radial-gradient(circle at 72% 16%, rgba(78, 110, 142, 0.12), transparent 30%),
    rgba(255, 253, 249, 0.76);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.1);
}

.flow-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 249, 0.96) 0 16%, transparent 17%),
    conic-gradient(from 110deg, transparent 0 14%, rgba(182, 155, 74, 0.34) 15% 18%, transparent 19% 44%, rgba(78, 110, 142, 0.24) 45% 49%, transparent 50% 100%);
  opacity: 0.78;
  animation: flowRotate 22s linear infinite;
}

.flow-orbit__ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 50%;
}

.flow-orbit__ring--two {
  inset: 27% 18%;
  border-color: rgba(182, 155, 74, 0.2);
  transform: rotate(-16deg) scaleX(1.2);
}

.flow-orbit__line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(78, 110, 142, 0.48), rgba(182, 155, 74, 0.48), transparent);
  animation: linePulse 3.8s ease-in-out infinite;
}

.flow-orbit__line--one {
  top: 36%;
  left: 16%;
  width: 64%;
  transform: rotate(6deg);
}

.flow-orbit__line--two {
  top: 58%;
  left: 22%;
  width: 54%;
  transform: rotate(-20deg);
  animation-delay: -1.2s;
}

.flow-orbit__line--three {
  top: 47%;
  left: 34%;
  width: 40%;
  transform: rotate(54deg);
  animation-delay: -2.1s;
}

.flow-node {
  position: absolute;
  display: inline-grid;
  grid-template-columns: 36px auto;
  align-items: center;
  min-height: 54px;
  gap: 10px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(21, 20, 19, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 44px rgba(24, 21, 18, 0.1);
  backdrop-filter: blur(12px);
  animation: statusFloat 5.2s ease-in-out infinite;
}

.flow-node b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--brown);
  background: rgba(234, 214, 155, 0.34);
  font-family: var(--mono);
  font-size: 11px;
}

.flow-node em {
  color: var(--ink);
  font-style: normal;
  font-size: 14px;
  font-weight: 950;
}

.flow-node--prompt { top: 46%; left: 8%; }
.flow-node--evidence { top: 18%; left: 34%; animation-delay: -0.9s; }
.flow-node--analysis { top: 49%; right: 13%; animation-delay: -1.6s; }
.flow-node--artifact { right: 30%; bottom: 15%; animation-delay: -2.4s; }
.flow-node--review { top: 15%; right: 9%; animation-delay: -3.2s; }

.research-stack {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.13);
}

.research-panel {
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: 104px 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.research-panel + .research-panel {
  border-top: 1px solid rgba(21, 20, 19, 0.1);
}

.research-panel:nth-child(odd) {
  grid-template-columns: minmax(0, 1.28fr) minmax(350px, 0.72fr);
}

.research-panel:nth-child(odd) .research-panel__copy {
  grid-column: 2;
}

.research-panel:nth-child(odd) .research-panel__visual {
  grid-column: 1;
  grid-row: 1;
}

.research-panel__copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(21, 20, 19, 0.44);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.research-panel__copy > span img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 21, 18, 0.08));
}

.research-panel__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.024em;
}

.research-panel__copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.research-panel__visual {
  min-width: 0;
}

.system-window {
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(rgba(21, 20, 19, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.024) 1px, transparent 1px),
    linear-gradient(135deg, rgba(238, 237, 246, 0.72), rgba(255, 255, 255, 0.9) 42%, rgba(241, 236, 227, 0.52)),
    #fff;
  background-size: 46px 46px, 46px 46px, auto, auto;
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.09);
}

.system-window--project {
  background:
    linear-gradient(90deg, rgba(222, 219, 207, 0.74) 0 36%, rgba(255, 253, 249, 0.94) 36% 100%),
    var(--paper-soft);
}

.artifact-history-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin: 0;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 30px;
  background: #f7f2e9;
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.09);
  isolation: isolate;
}

.artifact-history-visual::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.artifact-history-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 42% 48%, transparent 0 42%, rgba(255, 253, 249, 0.12) 70%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.06), rgba(255, 253, 249, 0.18));
  pointer-events: none;
}

.artifact-history-visual picture,
.artifact-history-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.artifact-history-visual img {
  min-height: 540px;
  object-fit: cover;
  transform: scale(1.012);
}

.system-window--review {
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 139, 99, 0.1), transparent 34%),
    linear-gradient(rgba(21, 20, 19, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.022) 1px, transparent 1px),
    rgba(255, 253, 249, 0.9);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.system-analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.system-evidence-card,
.system-code-card,
.system-project-board article,
.system-review-list article {
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 48px rgba(24, 21, 18, 0.06);
}

.system-evidence-card {
  min-height: 404px;
  padding: 26px;
}

.system-card-icon,
.system-project-icon,
.system-review-icon {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 21, 18, 0.07));
}

.system-card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
}

.system-evidence-card em,
.system-code-card b,
.system-project-board span {
  color: var(--brown);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.system-evidence-card strong {
  display: block;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.02;
}

.system-evidence-card span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.system-code-card {
  min-height: 404px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.system-code-card .system-card-icon {
  margin-bottom: 16px;
}

.system-code-card code {
  display: block;
  margin-top: 22px;
  padding: 18px;
  border-radius: 16px;
  color: rgba(21, 20, 19, 0.7);
  background: rgba(21, 20, 19, 0.045);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  white-space: normal;
}

.system-project-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
}

.system-project-board article {
  min-height: 194px;
  padding: 24px;
}

.system-project-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.system-project-board strong {
  display: block;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.06;
}

.system-project-board em {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.system-review-list {
  display: grid;
  gap: 14px;
  padding: 34px;
}

.system-review-list article {
  position: relative;
  min-height: 130px;
  padding: 28px 28px 28px 78px;
}

.system-review-icon {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 36px;
  height: 36px;
}

.system-review-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
}

.system-review-list span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.research-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.12);
}

.research-feature--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
}

.research-feature--reverse .feature-copy {
  grid-column: 2;
}

.research-feature--reverse .feature-visual {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy span {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(21, 20, 19, 0.44);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.feature-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.feature-keywords {
  margin-top: 24px;
}

.feature-visual {
  min-width: 0;
}

.visual-window,
.artifact-ledger,
.project-board,
.review-checklist {
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(238, 237, 246, 0.78), rgba(255, 255, 255, 0.9) 38%, rgba(241, 236, 227, 0.52)),
    #fff;
  box-shadow: 0 28px 90px rgba(24, 21, 18, 0.09);
}

.visual-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.visual-toolbar b,
.notebook-pane b,
.figure-pane b {
  font-size: 14px;
  font-weight: 950;
}

.visual-toolbar span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.evidence-query {
  margin: 24px 24px 0;
  padding: 16px 18px;
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.68);
  background: rgba(255, 255, 255, 0.75);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.evidence-stack {
  display: grid;
  gap: 12px;
  padding: 22px 24px 26px;
}

.evidence-stack article,
.review-checklist article,
.artifact-ledger article,
.project-board div {
  border-top: 1px solid rgba(21, 20, 19, 0.12);
  padding: 18px 0 0;
}

.evidence-stack strong,
.review-checklist strong,
.artifact-ledger strong,
.project-board b {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.evidence-stack span,
.review-checklist span,
.artifact-ledger span,
.project-board span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.evidence-stack em {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.visual-window--split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 440px;
}

.notebook-pane,
.figure-pane {
  padding: 26px;
}

.notebook-pane {
  border-right: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

.notebook-pane code {
  display: block;
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  color: rgba(21, 20, 19, 0.68);
  background: rgba(21, 20, 19, 0.045);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  white-space: normal;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
  margin-top: 32px;
}

.mini-chart span {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(78, 110, 142, 0.74), rgba(59, 139, 99, 0.52));
}

.mini-chart span:nth-child(1) { height: 42%; }
.mini-chart span:nth-child(2) { height: 72%; }
.mini-chart span:nth-child(3) { height: 55%; }
.mini-chart span:nth-child(4) { height: 92%; }
.mini-chart span:nth-child(5) { height: 68%; }

.scatter-field {
  height: 310px;
  margin-top: 24px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 32%, #56a0d3 0 4px, transparent 5px),
    radial-gradient(circle at 42% 45%, #dd7f67 0 4px, transparent 5px),
    radial-gradient(circle at 61% 34%, #55b67a 0 4px, transparent 5px),
    radial-gradient(circle at 72% 63%, #b69b4a 0 4px, transparent 5px),
    radial-gradient(circle at 36% 70%, #8f7ac8 0 4px, transparent 5px),
    radial-gradient(circle at 54% 58%, #56a0d3 0 3px, transparent 4px),
    linear-gradient(rgba(21, 20, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.65);
  background-size: auto, auto, auto, auto, auto, auto, 38px 38px, 38px 38px, auto;
}

.artifact-ledger,
.project-board,
.review-checklist {
  display: grid;
  gap: 22px;
  padding: 34px;
}

.artifact-ledger article {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: 24px;
}

.artifact-ledger span {
  margin-top: 0;
  color: var(--brown);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.project-board div {
  min-height: 160px;
}

.review-checklist article {
  position: relative;
  padding-left: 48px;
}

.review-checklist article::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 52%, rgba(255, 255, 255, 0.75) 52%),
    var(--green);
}

.mode-showcase-section {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.14);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.mode-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.9), rgba(255, 255, 255, 0.68)),
    rgba(255, 253, 249, 0.84);
  box-shadow: 0 24px 70px rgba(24, 21, 18, 0.07);
  transition:
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.mode-card::before,
.mode-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mode-card::before {
  inset: 0;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(182, 155, 74, 0.24), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(78, 110, 142, 0.14), transparent 32%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mode-card::after {
  right: -26%;
  bottom: -18%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(21, 20, 19, 0.06) 42.5%, transparent 44%),
    radial-gradient(circle at 50% 50%, rgba(182, 155, 74, 0.12), transparent 64%);
}

.mode-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118, 68, 31, 0.22);
  box-shadow: 0 34px 90px rgba(24, 21, 18, 0.12);
}

.mode-card:hover::before {
  opacity: 1;
}

.mode-card > * {
  position: relative;
  z-index: 1;
}

.mode-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--brown);
  background: rgba(234, 214, 155, 0.34);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.mode-card strong {
  display: block;
  margin-top: 74px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.25vw, 38px);
  line-height: 1.02;
}

.mode-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.mode-card em {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: var(--brown);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mode-card--medical {
  background:
    linear-gradient(180deg, rgba(249, 251, 248, 0.94), rgba(255, 255, 255, 0.7)),
    rgba(235, 244, 238, 0.62);
}

.mode-card--goal {
  background:
    linear-gradient(180deg, rgba(248, 246, 255, 0.94), rgba(255, 255, 255, 0.7)),
    rgba(238, 237, 246, 0.72);
}

.mode-card--knowledge {
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.94), rgba(255, 255, 255, 0.7)),
    rgba(241, 236, 227, 0.72);
}

.mode-workbench {
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(222, 219, 207, 0.78) 0 37%, rgba(255, 253, 249, 0.94) 37% 100%),
    var(--paper-soft);
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.09);
}

.mode-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 28px 0;
  padding: 5px;
  border-radius: 999px;
  background: rgba(241, 236, 227, 0.8);
}

.mode-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.66);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.mode-tabs span.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(24, 21, 18, 0.07);
}

.mode-workbench__body {
  display: grid;
  grid-template-columns: minmax(310px, 0.46fr) minmax(0, 0.54fr);
  gap: 42px;
  padding: 28px;
}

.mode-workbench__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mode-workbench__copy article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
}

.mode-inline-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 21, 18, 0.08));
}

.mode-workbench__copy strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.06;
}

.mode-workbench__copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.mode-workbench__screen {
  overflow: hidden;
  min-height: 438px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(rgba(21, 20, 19, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.028) 1px, transparent 1px),
    rgba(255, 255, 255, 0.88);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 24px 70px rgba(24, 21, 18, 0.08);
}

.mode-screen-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 253, 249, 0.72);
}

.mode-screen-toolbar strong {
  font-size: 14px;
  font-weight: 950;
}

.mode-screen-toolbar span {
  color: rgba(21, 20, 19, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mode-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 24px 0;
}

.mode-screen-grid article {
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
}

.mode-screen-grid span {
  display: block;
  color: rgba(21, 20, 19, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mode-screen-grid b {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 0.9;
}

.mode-screen-grid em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.mode-screen-list {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.mode-screen-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.mode-screen-list b {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 52%, rgba(255, 255, 255, 0.75) 52%),
    var(--green);
}

.mode-screen-list em {
  color: rgba(21, 20, 19, 0.68);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.project-examples {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(21, 20, 19, 0.14);
}

.project-examples .section-heading {
  max-width: 1040px;
  margin-bottom: 38px;
}

.project-examples .section-heading h2 {
  font-size: clamp(36px, 3.7vw, 52px);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 20, 19, 0.12);
}

.example-grid article {
  min-height: 320px;
  padding: 34px;
  border-right: 1px solid rgba(21, 20, 19, 0.12);
}

.example-icon {
  display: block;
  width: 66px;
  height: 66px;
  margin-bottom: 26px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(24, 21, 18, 0.08));
}

.example-grid article:last-child {
  border-right: 0;
}

.example-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
}

.example-grid p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.project-workbench {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  overflow: hidden;
  min-height: 650px;
  margin-top: 44px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(234, 214, 155, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(246, 241, 233, 0.78));
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.11);
}

.project-workbench__rail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid rgba(21, 20, 19, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 253, 249, 0.4)),
    rgba(246, 241, 233, 0.54);
}

.project-workbench__item {
  appearance: none;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.project-workbench__item:hover,
.project-workbench__item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(21, 20, 19, 0.1);
  background: rgba(255, 255, 255, 0.58);
  outline: none;
}

.project-workbench__item.is-active {
  border-color: rgba(21, 20, 19, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 42px rgba(24, 21, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.project-workbench__item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(24, 21, 18, 0.08));
}

.project-workbench__item strong,
.project-workbench__item small,
.project-workbench__item em {
  display: block;
}

.project-workbench__item strong {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.18;
}

.project-workbench__item small {
  margin-top: 5px;
  color: rgba(21, 20, 19, 0.56);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
}

.project-workbench__item em {
  color: rgba(21, 20, 19, 0.42);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.project-workbench__stage {
  min-width: 0;
  padding: 22px;
}

.project-artifact-panel {
  overflow: hidden;
  height: 100%;
  min-height: 604px;
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow:
    0 24px 62px rgba(24, 21, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.project-artifact-panel.is-active {
  display: flex;
  flex-direction: column;
}

.project-artifact-panel__chrome {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.project-artifact-panel__chrome strong {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 950;
}

.project-artifact-panel__chrome em {
  margin-left: auto;
  color: rgba(21, 20, 19, 0.46);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-artifact-panel__body {
  flex: 1;
  min-height: 0;
}

.project-artifact-panel__body--evidence {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
}

.project-artifact-panel__sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
  border-right: 1px solid rgba(21, 20, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(246, 241, 233, 0.7), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.4);
}

.project-artifact-panel__sidebar img {
  width: 142px;
  height: auto;
  margin-bottom: 12px;
}

.project-artifact-panel__sidebar > span {
  min-height: 34px;
  padding: 9px 11px;
  border-radius: 11px;
  color: rgba(21, 20, 19, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.project-artifact-panel__sidebar > span.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(21, 20, 19, 0.08);
}

.project-mini-metrics {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
}

.project-mini-metrics b {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.project-mini-metrics small {
  align-self: end;
  color: rgba(21, 20, 19, 0.52);
  font-size: 11px;
  font-weight: 850;
}

.project-report-scroll {
  overflow: auto;
  min-width: 0;
  max-height: 550px;
  padding: 28px;
  scroll-behavior: smooth;
}

.project-report-scroll::-webkit-scrollbar {
  width: 8px;
}

.project-report-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.16);
}

.project-report {
  max-width: 760px;
  margin: 0 auto;
}

.project-report__status,
.project-mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(59, 139, 99, 0.18);
  border-radius: 999px;
  color: rgba(30, 105, 69, 0.92);
  background: rgba(235, 247, 240, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.project-report__status {
  justify-content: space-between;
  width: 100%;
  border-radius: 16px;
}

.project-report__status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-report__status img,
.project-mode-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.project-report__status em {
  color: rgba(21, 20, 19, 0.46);
  font-family: var(--mono);
  font-style: normal;
}

.project-report h3,
.science-artifact-ledger h3 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.project-report__lead,
.science-artifact-ledger p {
  margin: 18px 0 0;
  color: rgba(21, 20, 19, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.project-report__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.project-report__anchors span {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #254d7a;
  background: rgba(78, 110, 142, 0.1);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 28px;
}

.project-report__block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
}

.project-report__block h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 950;
}

.project-report__block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-report__block li {
  position: relative;
  padding-left: 18px;
  color: rgba(21, 20, 19, 0.68);
  font-size: 13px;
  line-height: 1.46;
}

.project-report__block li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(59, 139, 99, 0.72);
}

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

.project-report__block--grid article {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 16px;
  background: rgba(246, 241, 233, 0.58);
}

.project-report__block--grid strong,
.project-report__block--grid span {
  display: block;
}

.project-report__block--grid strong {
  font-size: 13px;
  font-weight: 950;
}

.project-report__block--grid span {
  margin-top: 8px;
  color: rgba(21, 20, 19, 0.56);
  font-size: 12px;
  line-height: 1.32;
}

.project-report__block--muted {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.project-report__block--muted p {
  margin: 0;
  color: rgba(21, 20, 19, 0.62);
  font-size: 13px;
  line-height: 1.48;
}

.project-artifact-panel__body--science {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 0;
}

.science-artifact-shot {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 28px;
  border-right: 1px solid rgba(21, 20, 19, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(78, 110, 142, 0.14), transparent 32%),
    rgba(246, 241, 233, 0.46);
}

.science-artifact-shot img {
  display: block;
  width: 100%;
  max-height: 488px;
  object-fit: contain;
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(24, 21, 18, 0.12);
}

.science-artifact-ledger {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px 28px;
}

.science-artifact-files {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.science-artifact-files span {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.science-artifact-files b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.science-artifact-files strong {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.science-artifact-files em {
  color: rgba(21, 20, 19, 0.48);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.science-review-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.science-review-strip span {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(30, 105, 69, 0.9);
  background: rgba(235, 247, 240, 0.82);
  font-size: 11px;
  font-weight: 900;
  line-height: 30px;
}

.project-artifact-panel--real {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 241, 0.86)),
    rgba(255, 253, 249, 0.9);
}

.report-showcase-mount,
.report-showcase {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 604px;
}

.report-showcase-loading {
  display: grid;
  place-items: center;
  min-height: 604px;
  color: rgba(21, 20, 19, 0.48);
  font-size: 13px;
  font-weight: 850;
}

.report-showcase-loading--error {
  color: rgba(139, 54, 39, 0.86);
}

.report-showcase__chrome strong {
  overflow: hidden;
  max-width: min(58vw, 720px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-showcase__body {
  flex: 1;
  min-height: 0;
}

.report-showcase__body--medical {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
}

.report-showcase__body--science {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.report-showcase__sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 20px 18px;
  border-right: 1px solid rgba(21, 20, 19, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(191, 151, 86, 0.12), transparent 35%),
    rgba(250, 247, 241, 0.72);
}

.report-showcase__sidebar > img {
  width: 145px;
  height: auto;
  margin: 2px 0 14px;
}

.report-showcase__sidebar > span {
  min-height: 35px;
  padding: 9px 12px;
  border-radius: 12px;
  color: rgba(21, 20, 19, 0.58);
  font-size: 12px;
  font-weight: 880;
}

.report-showcase__sidebar > span.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(21, 20, 19, 0.08),
    0 10px 26px rgba(24, 21, 18, 0.06);
}

.report-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.report-showcase__sidebar .report-metric-grid {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
}

.report-metric-grid span {
  display: grid;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.64);
}

.report-metric-grid b {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.report-metric-grid small {
  align-self: end;
  color: rgba(21, 20, 19, 0.52);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.report-showcase__scroll {
  overflow: auto;
  min-width: 0;
  max-height: 550px;
  padding: 30px clamp(22px, 4vw, 46px) 42px;
  scroll-behavior: smooth;
}

.report-showcase__scroll::-webkit-scrollbar {
  width: 8px;
}

.report-showcase__scroll::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 253, 249, 0.86);
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.18);
}

.report-showcase__scroll--medical {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.74), rgba(255, 255, 255, 0.58)),
    #fff;
}

.report-showcase__scroll--science {
  background:
    linear-gradient(180deg, rgba(246, 241, 233, 0.44), rgba(255, 255, 255, 0.72)),
    #fff;
}

.report-mode-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  margin-bottom: 20px;
  color: rgba(21, 20, 19, 0.56);
  font-size: 11px;
  font-weight: 900;
}

.report-mode-banner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(59, 139, 99, 0.18);
  border-radius: 999px;
  color: rgba(30, 105, 69, 0.95);
  background: rgba(235, 247, 240, 0.82);
}

.report-mode-banner img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.report-mode-banner em {
  overflow: hidden;
  margin-left: auto;
  color: rgba(21, 20, 19, 0.38);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-showcase h3 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.9vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.report-lead {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(21, 20, 19, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.report-section {
  max-width: 900px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
}

.report-section h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 950;
}

.report-paragraph {
  margin: 0 0 14px;
  color: rgba(21, 20, 19, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.report-evidence-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: 8px;
  vertical-align: baseline;
}

.report-evidence-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: #254d7a;
  background: rgba(78, 110, 142, 0.1);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.report-checklist {
  display: grid;
  gap: 12px;
}

.report-checkitem {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.report-checkitem i {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(59, 139, 99, 0.88);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.78);
}

.report-checkitem--caution i {
  background: rgba(191, 151, 86, 0.95);
}

.report-checkitem strong,
.report-checkitem small {
  display: block;
}

.report-checkitem strong {
  font-size: 13px;
  font-weight: 950;
}

.report-checkitem small {
  margin-top: 4px;
  color: rgba(21, 20, 19, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.report-bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(21, 20, 19, 0.68);
  font-size: 13px;
  line-height: 1.58;
}

.report-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(59, 139, 99, 0.72);
}

.report-artifact-embed {
  overflow: hidden;
  margin: 20px 0 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(24, 21, 18, 0.08);
}

.report-artifact-embed__media {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(78, 110, 142, 0.12), transparent 34%),
    rgba(246, 241, 233, 0.5);
}

.report-artifact-embed img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 13px;
}

.report-artifact-embed figcaption {
  display: grid;
  gap: 7px;
  padding: 13px 16px 15px;
}

.report-artifact-embed figcaption strong {
  font-size: 13px;
  font-weight: 950;
}

.report-artifact-embed figcaption span {
  color: rgba(21, 20, 19, 0.62);
  font-size: 12px;
  line-height: 1.48;
}

.report-artifact-embed code,
.report-reference-card code,
.science-command-list code {
  overflow: hidden;
  color: rgba(21, 20, 19, 0.54);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-finding-grid,
.report-reference-list {
  display: grid;
  gap: 12px;
}

.report-finding-card,
.report-reference-card,
.report-section--card {
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.report-finding-card {
  padding: 15px;
}

.report-finding-card strong,
.report-finding-card p {
  display: block;
}

.report-finding-card strong {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 950;
}

.report-finding-card p {
  margin: 7px 0 0;
  color: rgba(21, 20, 19, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.report-confidence {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: rgba(30, 105, 69, 0.92);
  background: rgba(235, 247, 240, 0.86);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-confidence--warning,
.report-confidence--caution {
  color: rgba(139, 92, 18, 0.92);
  background: rgba(255, 244, 214, 0.86);
}

.report-reference-card {
  display: grid;
  gap: 7px;
  padding: 13px 15px;
}

.report-reference-card > span {
  color: rgba(30, 105, 69, 0.9);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-reference-card strong {
  font-size: 13px;
  font-weight: 950;
}

.report-reference-card p,
.report-section--card p {
  margin: 0;
  color: rgba(21, 20, 19, 0.62);
  font-size: 12px;
  line-height: 1.52;
}

.report-section--card {
  padding: 18px;
}

.science-artifact-ledger--real {
  overflow: auto;
  gap: 18px;
  max-height: 550px;
  padding: 30px 24px;
  border-left: 1px solid rgba(21, 20, 19, 0.08);
  background:
    radial-gradient(circle at 30% 0%, rgba(78, 110, 142, 0.13), transparent 34%),
    rgba(250, 247, 241, 0.76);
}

.science-artifact-ledger--real .report-metric-grid {
  margin-top: 4px;
}

.science-artifact-files--real {
  margin-top: 0;
}

.science-artifact-files--real span {
  grid-template-columns: 10px minmax(0, 1fr) minmax(58px, auto);
  min-height: 44px;
}

.science-claim-list,
.science-command-list {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
}

.science-claim-list h4,
.science-command-list h4 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 950;
}

.science-claim-list article {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.science-claim-list strong {
  color: rgba(21, 20, 19, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.science-command-list code {
  display: block;
  padding: 9px 10px;
  border-radius: 11px;
  background: rgba(21, 20, 19, 0.05);
}

.capability-swap-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  max-width: 1320px;
  min-height: 690px;
  margin: 0 auto;
  padding-top: 38px;
  border-top: 1px solid rgba(21, 20, 19, 0.14);
  scroll-snap-align: start;
}

.capability-swap-copy {
  max-width: 560px;
}

.capability-swap-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.026em;
}

.capability-swap-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.capability-swap-current {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.66);
  box-shadow: 0 12px 30px rgba(24, 21, 18, 0.06);
}

.capability-swap-current span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--paper-soft);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.capability-swap-current strong {
  font-size: 14px;
  font-weight: 900;
}

.capability-swap-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.capability-swap-dot {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.14);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.capability-swap-dot:hover,
.capability-swap-dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(21, 20, 19, 0.32);
}

.capability-swap-dot.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--ink), var(--brown));
}

.capability-swap-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(21, 20, 19, 0.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 16%, rgba(234, 214, 155, 0.34), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(78, 110, 142, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.88), rgba(242, 235, 225, 0.78));
  box-shadow: 0 34px 96px rgba(24, 21, 18, 0.12);
}

.capability-swap-stage::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  pointer-events: none;
}

.capability-swap-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(rgba(21, 20, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
  pointer-events: none;
}

.capability-swap-cards {
  position: relative;
  z-index: 1;
  min-height: 464px;
}

.capability-swap-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 22px;
  min-height: 464px;
  padding: clamp(24px, 3.1vw, 38px);
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 249, 0.96)),
    var(--paper-soft);
  box-shadow: 0 26px 72px rgba(24, 21, 18, 0.14);
  opacity: 0;
  pointer-events: none;
  transform-origin: 82% 88%;
  transition:
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 500ms ease,
    filter 500ms ease;
}

.capability-swap-card:not([data-position="0"]) > * {
  opacity: 0;
}

.capability-swap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 12%, rgba(234, 214, 155, 0.18), transparent 26%),
    linear-gradient(135deg, transparent, rgba(78, 110, 142, 0.08));
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.capability-swap-card[data-position="0"]::before {
  opacity: 1;
}

.capability-swap-card[data-position="0"] {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.capability-swap-card[data-position="1"] {
  z-index: 4;
  opacity: 0.64;
  transform: translate3d(28px, 26px, 0) rotate(2.4deg) scale(0.95);
  filter: saturate(0.92);
}

.capability-swap-card[data-position="2"] {
  z-index: 3;
  opacity: 0.36;
  transform: translate3d(56px, 52px, 0) rotate(4.6deg) scale(0.9);
  filter: saturate(0.76);
}

.capability-swap-card[data-position="3"] {
  z-index: 2;
  opacity: 0.18;
  transform: translate3d(82px, 78px, 0) rotate(6.8deg) scale(0.85);
  filter: saturate(0.62);
}

.capability-swap-card[data-position="4"] {
  z-index: 1;
  opacity: 0;
  transform: translate3d(108px, 102px, 0) rotate(8deg) scale(0.82);
}

.capability-swap-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(21, 20, 19, 0.58);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.capability-swap-card__head img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(24, 21, 18, 0.1));
}

.capability-swap-card h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.018em;
}

.capability-swap-card p {
  max-width: 470px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.capability-screenshot-board {
  --capability-tone: rgba(139, 101, 60, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 8%, var(--capability-tone), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 241, 233, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.capability-screenshot-board--green {
  --capability-tone: rgba(59, 139, 99, 0.22);
}

.capability-screenshot-board--blue {
  --capability-tone: rgba(78, 110, 142, 0.22);
}

.capability-screenshot-board--gold {
  --capability-tone: rgba(189, 160, 75, 0.24);
}

.capability-screenshot-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 20px 54px rgba(24, 21, 18, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.capability-screenshot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.capability-screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.capability-swap-card[data-position="0"] .capability-screenshot-frame img {
  transform: scale(1.015);
}

.capability-screenshot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 12px 4px 0;
}

.capability-screenshot-meta .capability-keywords {
  position: static;
  inset: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-screenshot-meta .capability-keywords span {
  min-height: 30px;
  border-color: rgba(21, 20, 19, 0.08);
  color: rgba(21, 20, 19, 0.68);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(24, 21, 18, 0.05);
}

.capability-card-visual {
  position: relative;
  overflow: hidden;
  align-self: end;
  min-height: 198px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(rgba(21, 20, 19, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 19, 0.03) 1px, transparent 1px),
    rgba(246, 241, 233, 0.72);
  background-size: 36px 36px, 36px 36px, auto;
}

.capability-keywords {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 999px;
  color: rgba(21, 20, 19, 0.62);
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 850;
}

.source-stack {
  position: absolute;
  top: 16px;
  left: 20px;
  display: grid;
  gap: 8px;
}

.source-stack span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 138px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 800;
}

.source-stack img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.claim-card {
  position: absolute;
  top: 26px;
  right: 22px;
  width: min(45%, 280px);
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 18px 42px rgba(24, 21, 18, 0.08);
}

.claim-card b,
.claim-card em {
  display: block;
  font-style: normal;
  font-weight: 900;
}

.claim-card b {
  font-family: var(--serif);
  font-size: 26px;
}

.claim-card p {
  margin: 10px 0 16px;
  font-size: 14px;
}

.claim-card em {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
}

.capability-card-visual--analysis {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(160px, 1fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: 22px;
}

.mini-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: start;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

.mini-table span,
.mini-table b {
  border-right: 1px solid rgba(21, 20, 19, 0.06);
  border-bottom: 1px solid rgba(21, 20, 19, 0.06);
}

.mini-table span {
  background: rgba(78, 110, 142, 0.12);
}

.mini-table b:nth-child(5),
.mini-table b:nth-child(7) {
  background: rgba(59, 139, 99, 0.16);
}

.capability-card-visual--analysis pre {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 14px;
  color: rgba(21, 20, 19, 0.7);
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 72px;
  padding: 0 6px;
}

.mini-chart i {
  width: 18px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(59, 139, 99, 0.28));
}

.mini-chart i:nth-child(1) { height: 34px; }
.mini-chart i:nth-child(2) { height: 54px; }
.mini-chart i:nth-child(3) { height: 44px; }
.mini-chart i:nth-child(4) { height: 70px; }

.capability-card-visual--artifact,
.capability-card-visual--review {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.capability-card-visual--artifact > span,
.capability-card-visual--review > span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 20, 19, 0.72);
  font-weight: 850;
}

.capability-card-visual--artifact b {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(21, 20, 19, 0.34);
  border-radius: 4px;
}

.capability-card-visual--review b {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 52%, rgba(255, 255, 255, 0.76) 52%),
    var(--green);
}

.capability-card-visual--domains {
  display: grid;
  grid-template-columns: minmax(120px, 0.48fr) 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

.capability-card-visual--domains strong {
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.9;
}

.capability-card-visual--domains > div:not(.capability-keywords) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-card-visual--domains > div:not(.capability-keywords) span {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 20, 19, 0.68);
  font-size: 13px;
  font-weight: 850;
  line-height: 38px;
}

.faq-section {
  max-width: 1120px;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid rgba(21, 20, 19, 0.14);
}

.faq-list details {
  border-bottom: 1px solid rgba(21, 20, 19, 0.12);
  padding: 26px 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.faq-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 38px;
  padding: 0 16px;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-links a:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(21, 20, 19, 0.24);
  transform: translateY(-1px);
}

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

.section-heading .section-kicker {
  margin-top: 0;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.05;
}

.section-heading p:not(.section-kicker) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.platform-card {
  min-height: 320px;
  padding: 22px;
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--soft-shadow);
}

.platform-card--mac {
  background:
    linear-gradient(135deg, rgba(182, 155, 74, 0.15), transparent 46%),
    rgba(255, 253, 249, 0.72);
}

.platform-card--win {
  background:
    linear-gradient(135deg, rgba(78, 110, 142, 0.13), transparent 46%),
    rgba(255, 253, 249, 0.72);
}

.platform-card--linux {
  background:
    linear-gradient(135deg, rgba(59, 139, 99, 0.12), transparent 46%),
    rgba(255, 253, 249, 0.72);
}

.platform-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
}

.platform-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 24px;
  font-weight: 950;
}

.platform-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.platform-card h3 {
  margin: 0;
  font-size: 24px;
}

.platform-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.asset-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.asset-button,
.empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 8px;
}

.asset-button {
  border: 1px solid rgba(21, 20, 19, 0.1);
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.asset-button:hover {
  transform: translateY(-1px);
  border-color: rgba(118, 68, 31, 0.26);
  background: rgba(255, 255, 255, 0.92);
}

.asset-button strong {
  display: block;
  max-width: 220px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-button__body {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: inherit;
  font-family: var(--sans);
}

.asset-button__icon,
.empty__icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.asset-button__text {
  min-width: 0;
}

.asset-button span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.asset-button .asset-button__body {
  color: inherit;
  font-family: var(--sans);
  font-size: inherit;
}

.asset-button .asset-button__text > span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.asset-button em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brown);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.empty {
  justify-content: center;
  border: 1px dashed rgba(21, 20, 19, 0.14);
  color: var(--faint);
  background: rgba(255, 255, 255, 0.36);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

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

.trust-section article {
  padding: 24px;
  border-top: 1px solid rgba(21, 20, 19, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent);
}

.trust-section span {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
}

.trust-section h3 {
  margin: 14px 0 9px;
  font-size: 23px;
}

.trust-section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.channel-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.68);
}

.channel-card strong {
  display: block;
  font-size: 14px;
  font-weight: 950;
}

.channel-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.channel-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.channel-state__icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.channel-state.is-ready {
  color: var(--green);
  background: rgba(59, 139, 99, 0.1);
}

.channel-state.is-pending {
  color: var(--faint);
  background: rgba(21, 20, 19, 0.06);
}

[data-reveal] {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translate3d(-22px, 18px, 0) scale(0.988);
}

[data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 720ms ease,
    clip-path 920ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes sourcePanelIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 139, 99, 0.42);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(59, 139, 99, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 139, 99, 0);
  }
}

@keyframes sweepShift {
  0% {
    transform: translate3d(-4%, 0, 0) rotate(-12deg);
  }
  100% {
    transform: translate3d(9%, 7%, 0) rotate(-8deg);
  }
}

@keyframes streamDrift {
  from {
    transform: translateX(-12vw);
  }
  to {
    transform: translateX(24vw);
  }
}

@keyframes flowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes statusFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes progressScan {
  0%,
  100% {
    width: 36%;
  }
  50% {
    width: 84%;
  }
}

@keyframes rowLift {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes verbIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1180px) {
  .site-shell {
    padding: 0 34px 84px;
  }

  .topbar {
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 12px 18px;
    padding: 0 34px;
  }

  .nav-cluster {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-bottom: 14px;
  }

  .topbar-actions {
    grid-column: 2;
  }

  .hero-section {
    gap: 36px;
    min-height: 0;
    padding: 58px 0 72px;
  }

  .hero-image-wash {
    right: -34px;
    left: -34px;
    height: 620px;
    min-height: 420px;
  }

  .hero-copy {
    max-width: 920px;
  }

  .os-main-preview {
    transform: none;
  }

  .os-main-preview__window {
    grid-template-columns: 188px minmax(0, 1fr);
  }

  .os-main-preview__workspace {
    padding: 52px 30px 32px;
  }

  .platform-grid,
  .hero-metrics,
  .evidence-metrics-head,
  .video-grid,
  .science-mode-spectrum,
  .artifact-flow-section,
  .capability-marquee-section,
  .research-feature,
  .research-feature--reverse,
  .capability-swap-section,
  .project-board,
  .mode-grid,
  .example-grid,
  .trust-section,
  .channel-list {
    grid-template-columns: 1fr;
  }

  .research-feature--reverse .feature-copy,
  .research-feature--reverse .feature-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .science-statement h2 {
    font-size: clamp(48px, 7vw, 78px);
  }

  .evidence-metrics-head {
    gap: 22px;
  }

  .science-mode-spectrum {
    gap: 34px;
    min-height: 0;
  }

  .science-mode-spectrum__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artifact-flow-section {
    min-height: 0;
    gap: 36px;
  }

  .research-panel,
  .research-panel:nth-child(odd) {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding: 94px 0;
  }

  .research-panel:nth-child(odd) .research-panel__copy,
  .research-panel:nth-child(odd) .research-panel__visual {
    grid-column: auto;
    grid-row: auto;
  }

  .system-window {
    min-height: 0;
  }

  .capability-marquee-section {
    min-height: 0;
  }

  .capability-swap-section {
    min-height: 0;
    gap: 36px;
  }

  .project-workbench {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-workbench__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(21, 20, 19, 0.09);
  }

  .project-artifact-panel {
    min-height: 620px;
  }

  .project-artifact-panel__body--science {
    grid-template-columns: 1fr;
  }

  .report-showcase__body--science {
    grid-template-columns: 1fr;
  }

  .science-artifact-ledger--real {
    max-height: none;
    border-left: 0;
    border-top: 1px solid rgba(21, 20, 19, 0.08);
  }

  .science-artifact-shot {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  }

  .science-artifact-ledger {
    padding: 28px;
  }

  .capability-swap-copy {
    max-width: 820px;
  }

  .capability-swap-stage {
    min-height: 540px;
  }

  .capability-screenshot-frame {
    min-height: 340px;
  }

  .artifact-flow-visual {
    min-height: 520px;
  }

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

  .evidence-report-demo {
    position: relative;
    min-height: 560px;
  }

  .mode-workbench__body {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mode-card {
    min-height: 260px;
  }

  .mode-card strong {
    margin-top: 42px;
  }

  .visual-window--split {
    grid-template-columns: 1fr;
  }

  .notebook-pane {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  }

  .example-grid article,
  .hero-metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 20, 19, 0.1);
  }

  .example-grid article:last-child,
  .hero-metrics article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 0 18px 64px;
  }

  .topbar {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    min-height: 64px;
    padding: 10px 18px 12px;
  }

  .topbar-left {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .brand-lockup__wordmark {
    width: 150px;
    max-width: 42vw;
  }

  .source-button {
    width: 38px;
    min-width: 0;
    min-height: 32px;
    gap: 6px;
    padding: 0;
  }

  .source-button__label {
    display: none;
  }

  .source-button__stars {
    display: none;
  }

  .source-panel {
    width: calc(100vw - 36px);
  }

  .nav-cluster {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 36px;
    overflow-x: auto;
  }

  .nav-link {
    padding: 0 11px;
    font-size: 12px;
  }

  .topbar-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .language-select {
    min-height: 32px;
    min-width: 96px;
    padding-left: 9px;
    padding-right: 24px;
  }

  .language-select select {
    max-width: 64px;
    font-size: 11px;
  }

  .project-workbench {
    margin-top: 30px;
    border-radius: 22px;
  }

  .project-workbench__rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px;
  }

  .project-workbench__item {
    flex: 0 0 min(82vw, 300px);
    min-height: 76px;
    padding: 12px;
  }

  .project-workbench__item img {
    width: 36px;
    height: 36px;
  }

  .project-workbench__stage {
    padding: 14px;
  }

  .project-artifact-panel {
    min-height: 0;
    border-radius: 18px;
  }

  .project-artifact-panel__chrome {
    min-height: 48px;
    padding: 0 12px;
  }

  .project-artifact-panel__chrome strong {
    overflow: hidden;
    max-width: 44vw;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .report-showcase__chrome em {
    display: none;
  }

  .project-artifact-panel__body--evidence {
    grid-template-columns: 1fr;
  }

  .report-showcase-mount,
  .report-showcase {
    min-height: 0;
  }

  .report-showcase__body--medical,
  .report-showcase__body--science {
    grid-template-columns: 1fr;
  }

  .report-showcase__sidebar {
    display: none;
  }

  .report-showcase__scroll {
    max-height: 560px;
    padding: 18px;
  }

  .report-showcase h3 {
    font-size: 28px;
  }

  .report-mode-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-mode-banner em {
    margin-left: 0;
    white-space: normal;
  }

  .report-artifact-embed__media {
    min-height: 210px;
    padding: 12px;
  }

  .report-artifact-embed img {
    max-height: 280px;
  }

  .science-artifact-ledger--real {
    max-height: none;
    padding: 18px;
    border-left: 0;
    border-top: 1px solid rgba(21, 20, 19, 0.08);
  }

  .science-artifact-files--real span {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .science-artifact-files--real em {
    display: none;
  }

  .project-artifact-panel__sidebar {
    display: none;
  }

  .project-report-scroll {
    max-height: 520px;
    padding: 18px;
  }

  .project-report h3,
  .science-artifact-ledger h3 {
    font-size: 28px;
  }

  .project-report__block--grid {
    grid-template-columns: 1fr;
  }

  .science-artifact-shot {
    padding: 16px;
  }

  .science-artifact-shot img {
    max-height: 300px;
  }

  .science-artifact-ledger {
    padding: 20px;
  }

  .hero-section {
    gap: 30px;
    padding: 34px 0 52px;
  }

  .hero-image-wash {
    inset: 360px -18px auto;
    height: 520px;
    min-height: 0;
    border-radius: 0;
    opacity: 0.28;
  }

  .hero-kicker-row {
    display: none;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1;
  }

  .hero-title__wordmark {
    width: min(82vw, 320px);
  }

  .hero-title__wordmark--lead {
    width: min(72vw, 280px);
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.62;
  }

  .verb-strip {
    font-size: 24px;
  }

  .hero-metrics {
    margin-top: 28px;
  }

  .hero-metrics article {
    min-height: 126px;
    padding: 20px 6px;
  }

  .evidence-art-media {
    height: 260px;
    margin-top: 34px;
    border-radius: 12px;
  }

  .evidence-metrics-section,
  .science-statement,
  .video-showcase,
  .science-mode-spectrum,
  .capability-marquee-section,
  .artifact-flow-section,
  .research-feature,
  .mode-showcase-section,
  .project-examples,
  .capability-swap-section,
  .platform-section,
  .faq-section,
  .updates-section {
    padding-top: 76px;
  }

  .science-statement .section-kicker {
    margin-top: 46px;
  }

  .evidence-metrics-section .section-kicker {
    margin-top: 46px;
  }

  .science-statement h2,
  .evidence-metrics-head h2,
  .video-showcase .section-heading h2,
  .science-mode-spectrum__copy h2,
  .capability-marquee-head h2,
  .artifact-flow-copy h2,
  .research-panel__copy h2,
  .feature-copy h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .science-statement > p:not(.section-kicker),
  .evidence-metrics-head p,
  .video-showcase .section-heading p:not(.section-kicker),
  .science-mode-spectrum__copy > p:not(.section-kicker),
  .capability-marquee-head p:not(.section-kicker),
  .artifact-flow-copy p:not(.section-kicker),
  .research-panel__copy p,
  .feature-copy p {
    font-size: 16px;
  }

  .capability-marquee-section {
    min-height: 0;
  }

  .capability-swap-copy h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .capability-swap-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .capability-swap-current {
    margin-top: 24px;
  }

  .capability-swap-stage {
    min-height: 500px;
    padding: 18px;
    border-radius: 24px;
  }

  .capability-swap-cards {
    min-height: 462px;
  }

  .capability-swap-card {
    min-height: 442px;
    padding: 20px;
    border-radius: 22px;
  }

  .capability-swap-card[data-position="1"] {
    transform: translate3d(18px, 22px, 0) rotate(2.6deg) scale(0.94);
  }

  .capability-swap-card[data-position="2"] {
    transform: translate3d(36px, 44px, 0) rotate(4.8deg) scale(0.88);
  }

  .capability-swap-card[data-position="3"] {
    transform: translate3d(48px, 62px, 0) rotate(7deg) scale(0.82);
  }

  .capability-swap-card h3 {
    font-size: 28px;
  }

  .capability-swap-card p {
    font-size: 15px;
  }

  .capability-card-visual {
    min-height: 210px;
  }

  .capability-screenshot-board {
    min-height: 0;
    padding: 9px;
    border-radius: 18px;
  }

  .capability-screenshot-frame {
    min-height: 310px;
    border-radius: 14px;
  }

  .capability-screenshot-frame img {
    object-fit: contain;
    background: #fff;
  }

  .capability-screenshot-meta {
    min-height: 36px;
    padding-top: 9px;
  }

  .source-stack {
    top: 18px;
    left: 18px;
  }

  .source-stack span {
    min-width: 118px;
    min-height: 42px;
    font-size: 18px;
  }

  .claim-card {
    top: 20px;
    right: 18px;
    width: min(48%, 190px);
    padding: 16px;
  }

  .claim-card b {
    font-size: 22px;
  }

  .capability-card-visual--analysis,
  .capability-card-visual--domains {
    grid-template-columns: 1fr;
  }

  .capability-card-visual--analysis pre {
    display: none;
  }

  .capability-marquee-section::before {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: 32px;
  }

  .capability-marquee {
    gap: 12px;
    margin: 34px -18px 0;
    padding-bottom: 18px;
  }

  .capability-pill {
    min-height: 58px;
    padding: 0 17px;
  }

  .capability-pill img {
    width: 26px;
    height: 26px;
  }

  .science-mode-spectrum__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }

  .science-mode-card {
    min-height: 142px;
    padding: 14px;
  }

  .science-mode-card img {
    width: 44px;
    height: 44px;
  }

  .science-mode-card strong {
    margin-top: 12px;
    font-size: 16px;
  }

  .science-mode-card span {
    font-size: 12px;
  }

  .capability-pill span {
    font-size: 20px;
  }

  .flow-keywords {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-keywords span {
    justify-content: center;
    min-width: 0;
    padding: 0 10px;
  }

  .artifact-flow-visual {
    min-height: 420px;
  }

  .evidence-report-section .artifact-flow-visual {
    min-height: 0;
  }

  .evidence-report-demo {
    height: 640px;
    min-height: 0;
    border-radius: 22px;
  }

  .evidence-report-demo__layout {
    grid-template-columns: 1fr;
  }

  .evidence-report-demo__rail {
    display: none;
  }

  .evidence-report-demo__scroll {
    padding: 18px;
  }

  .evidence-report-card {
    min-height: 780px;
    padding: 20px;
    border-radius: 20px;
  }

  .evidence-report-card h3 {
    font-size: 24px;
    line-height: 1.04;
  }

  .report-lead {
    font-size: 14px;
  }

  .report-block {
    margin-top: 22px;
    padding-top: 18px;
  }

  .report-block strong {
    font-size: 22px;
  }

  .report-block li,
  .report-block--muted p {
    font-size: 13px;
  }

  .report-source-grid {
    grid-template-columns: 1fr;
  }

  .flow-orbit {
    border-radius: 22px;
  }

  .flow-node {
    grid-template-columns: 28px auto;
    min-height: 44px;
    padding: 7px 10px 7px 7px;
  }

  .flow-node b {
    width: 28px;
    height: 28px;
  }

  .flow-node em {
    font-size: 12px;
  }

  .flow-node--prompt { left: 4%; }
  .flow-node--analysis { right: 4%; }
  .flow-node--artifact { right: 18%; }
  .flow-node--review { right: 4%; }

  .research-feature {
    gap: 34px;
  }

  .research-panel,
  .research-panel:nth-child(odd) {
    gap: 28px;
    padding: 82px 0;
    scroll-snap-align: start;
  }

  .research-panel__copy > span {
    margin-bottom: 18px;
  }

  .system-analysis-grid,
  .system-project-board {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .system-evidence-card,
  .system-code-card,
  .system-project-board article,
  .system-review-list article {
    border-radius: 20px;
  }

  .system-evidence-card,
  .system-code-card {
    min-height: 260px;
    padding: 20px;
  }

  .artifact-history-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .artifact-history-visual::before {
    border-radius: 23px;
  }

  .artifact-history-visual img {
    min-height: 360px;
  }

  .system-evidence-card strong {
    margin-top: 28px;
    font-size: 28px;
  }

  .system-code-card .mini-chart {
    height: 112px;
    margin-top: 22px;
  }

  .system-project-board article {
    min-height: 138px;
    padding: 20px;
  }

  .system-project-board strong {
    margin-top: 24px;
    font-size: 24px;
  }

  .system-review-list {
    gap: 12px;
    padding: 18px;
  }

  .system-review-list article {
    min-height: 116px;
    padding: 22px 20px 22px 58px;
  }

  .system-review-icon {
    top: 24px;
    left: 20px;
    width: 28px;
    height: 28px;
  }

  .system-review-list strong {
    font-size: 24px;
  }

  .mode-grid {
    gap: 10px;
  }

  .mode-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 18px 18px 0;
  }

  .mode-workbench__body {
    padding: 18px;
  }

  .mode-workbench__copy {
    grid-template-columns: 1fr;
  }

  .mode-workbench__copy article {
    min-height: 130px;
  }

  .mode-workbench__screen {
    min-height: 0;
  }

  .mode-screen-grid {
    grid-template-columns: 1fr;
  }

  .mode-card {
    min-height: 240px;
    padding: 22px;
    border-radius: 20px;
  }

  .artifact-ledger,
  .project-board,
  .review-checklist {
    padding: 24px;
  }

  .artifact-ledger article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visual-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .evidence-query {
    margin: 18px 18px 0;
    font-size: 16px;
  }

  .evidence-stack {
    padding: 18px;
  }

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

  .faq-list summary {
    font-size: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-download,
  .secondary-action {
    width: 100%;
  }

  .hero-preview {
    padding-top: 32px;
  }

  .os-main-preview {
    border-radius: 14px;
  }

  .os-main-preview__chrome {
    grid-template-columns: auto auto auto 24px 24px 1fr;
    min-height: 40px;
    padding: 0 12px;
  }

  .os-main-preview__chrome strong {
    margin-left: -60px;
    font-size: 11px;
  }

  .os-main-preview__window {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .os-main-preview__sidebar {
    display: none;
  }

  .os-main-preview__workspace {
    padding: 42px 18px 24px;
  }

  .os-preview-stage,
  .os-preview-panel,
  .os-medical-task {
    min-height: 460px;
  }

  .os-preview-panel--new {
    padding: 42px 18px 24px;
  }

  .os-preview-cursor {
    display: none;
  }

  .os-medical-task {
    padding: 30px 22px 24px;
  }

  .os-medical-task--report {
    min-height: 0;
    padding: 30px 18px 24px;
  }

  .os-medical-task h2 {
    font-size: 26px;
  }

  .os-artifact-hero,
  .os-product-artifact-report,
  .os-product-artifact-report--comparison,
  .os-artifact-provenance-grid {
    grid-template-columns: 1fr;
  }

  .os-product-artifact-report {
    gap: 18px;
    min-height: 0;
  }

  .os-product-report-card {
    padding: 12px 0;
  }

  .science-report-cardHeader {
    flex-wrap: wrap;
  }

  .science-report-cardHeader h3 {
    font-size: 15px;
  }

  .science-report-cardHeader__actions {
    justify-content: flex-start;
  }

  .os-product-report-document {
    max-height: 360px;
    padding: 0 2px 10px;
  }

  .science-report-embed__media img {
    max-height: 180px;
  }

  .os-artifact-hero {
    gap: 16px;
  }

  .os-artifact-copy h2 {
    font-size: 25px;
  }

  .os-artifact-file-list {
    margin-top: 16px;
  }

  .os-artifact-figure img {
    max-height: 220px;
  }

  .os-medical-finding-grid,
  .os-medical-timeline {
    grid-template-columns: 1fr;
  }

  .os-main-preview__workspace h2 {
    font-size: 30px;
  }

  .os-main-preview__subtitle {
    font-size: 13px;
  }

  .os-main-preview__agent-strip {
    width: 100%;
    justify-content: flex-start;
    overflow: hidden;
  }

  .agent-pill:nth-of-type(n + 4) {
    display: none;
  }

  .os-main-preview__prompt {
    border-radius: 20px;
  }

  .os-main-preview__prompt p {
    min-height: 74px;
    font-size: 13px;
  }

  .os-main-preview__cards {
    grid-template-columns: 1fr;
  }

  .os-main-preview__cards article:nth-child(n + 3) {
    display: none;
  }

  .os-main-preview__trace {
    display: none;
  }

  .os-home-preview {
    min-height: 0;
  }

  .os-home-preview__topbar {
    min-height: 58px;
    padding: 8px 12px;
  }

  .os-home-preview__topbar img {
    width: 170px;
  }

  .artifact-row {
    grid-template-columns: 34px 1fr;
  }

  .artifact-row__state {
    grid-column: 2;
    justify-self: start;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p:not(.section-kicker) {
    font-size: 16px;
  }
}

@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;
  }
}
