:root {
  color-scheme: light;
  --ink: #0d121a;
  --ink-2: #263142;
  --muted: #637083;
  --paper: #f4f8fb;
  --surface: #ffffff;
  --soft: #edf3f7;
  --line: rgba(13, 18, 26, 0.13);
  --line-strong: rgba(13, 18, 26, 0.28);
  --navy: #081116;
  --blue: #2563eb;
  --green: #0e765b;
  --completion-green: #22c55e;
  --red: #ca3229;
  --amber: #b87500;
  --max: 1180px;
  --font-body: "Geist", "Aptos", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(16, 20, 27, 0.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(16, 20, 27, 0.032) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

code {
  background: rgba(16, 20, 27, 0.07);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  overflow-wrap: anywhere;
  padding: 0.05em 0.28em;
  white-space: normal;
}

.skip-link {
  background: var(--navy);
  color: #fff;
  left: 16px;
  min-height: 44px;
  padding: 12px 14px;
  position: absolute;
  top: -64px;
  z-index: 99;
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  align-items: center;
  background: rgba(246, 249, 252, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  height: 72px;
  justify-content: space-between;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-height: 44px;
}

.brand-logo {
  display: block;
  height: 40px;
  object-fit: contain;
  width: 40px;
}

.brand-name {
  font-size: 15px;
  font-weight: 780;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a {
  align-items: center;
  color: rgba(16, 20, 27, 0.64);
  display: flex;
  font-size: 13px;
  font-weight: 720;
  min-height: 44px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 780;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.button.primary {
  background: var(--navy);
  color: #fff;
}

.button.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

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

.button.primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  padding: 58px 18px 48px;
}

.hero-grid {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1320px;
}

.hero-copy {
  max-width: 1080px;
  min-width: 0;
}

.eyebrow {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 760;
  gap: 9px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 8px;
  width: 8px;
}

h1 {
  font-size: 54px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.02;
  max-width: 1080px;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.headline-mobile {
  display: none;
}

.lead-mobile {
  display: none;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.55;
  margin-top: 22px;
  max-width: 780px;
  overflow-wrap: break-word;
}

.hero-kicker {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.42;
  margin-top: 14px;
}

.hero-kicker-mobile {
  display: none;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 760px;
}

.proof-strip div {
  border-right: 1px solid var(--line);
  min-height: 92px;
  padding: 16px 15px 14px 0;
}

.proof-strip div:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-strip strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.08;
  margin-bottom: 7px;
}

.proof-strip span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.42;
}

.trust-strip {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  max-width: 760px;
  padding-top: 18px;
}

.hero-report-shot {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 28px 74px rgba(28, 45, 70, 0.14);
  margin: 8px auto 0;
  max-height: 860px;
  overflow: hidden;
  width: min(1280px, 100%);
}

.hero-report-shot img {
  display: block;
  height: auto;
  width: 100%;
}

.trust-label {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.3;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.logo-carousel {
  margin-left: -4px;
  max-width: 460px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  align-items: center;
  display: flex;
  width: max-content;
  animation: logo-marquee 18s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-group {
  align-items: center;
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.logo-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  min-width: 112px;
  padding: 0 18px;
}

.logo-tile img {
  display: block;
  height: 24px;
  max-width: 82px;
  object-fit: contain;
  width: auto;
}

.logo-tile.google img {
  height: 24px;
  max-width: 92px;
}

.logo-tile.apple img {
  height: 23px;
  max-width: 72px;
}

.logo-tile.mili img {
  height: 21px;
  max-width: 78px;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.metric-carousel,
.info-carousel {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 1%, #000 99%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 1%, #000 99%, transparent);
}

.metric-track,
.info-track {
  display: flex;
  width: max-content;
  animation: card-marquee 54s linear 6s infinite;
}

.metric-carousel:hover .metric-track,
.info-carousel:hover .info-track {
  animation-play-state: paused;
}

.metric-group,
.info-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.metric-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  flex: 0 0 304px;
  min-width: 250px;
  padding: 22px;
}

.metric-card {
  min-height: 176px;
}

.metric-card b {
  color: var(--blue);
  display: block;
  font-family: var(--font-mono);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 16px;
}

.metric-card strong,
.info-card h3 {
  color: var(--ink);
  display: block;
  font-size: 19px;
  line-height: 1.16;
  text-wrap: balance;
}

.metric-card span,
.info-card p {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  margin-top: 12px;
}

.info-card {
  flex-basis: 250px;
  min-height: 174px;
  width: 250px;
}

@keyframes card-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .metric-track,
  .info-track {
    animation: none;
  }
}

.report-window {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 28px 74px rgba(28, 45, 70, 0.14);
  display: flex;
  flex-direction: column;
  max-height: min(860px, calc(100vh - 116px));
  min-width: 0;
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.report-window::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--surface) 88%);
  bottom: 0;
  content: "";
  display: none;
  height: 48px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.report-window :is(h2, p, strong, span, code),
.section :is(h2, h3, p, summary),
.final-cta :is(h2, p),
.site-footer span {
  overflow-wrap: anywhere;
}

.report-topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 16px;
}

.report-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.report-title strong {
  font-size: 14px;
  line-height: 1.2;
}

.report-title span,
.report-status {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-status {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.report-body {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px 18px 22px;
}

.report-tabs-mini {
  border-bottom: 1px solid var(--line);
  cursor: grab;
  display: flex;
  gap: 8px;
  overscroll-behavior-x: contain;
  overflow-x: auto;
  padding: 16px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(13, 18, 26, 0.34) transparent;
  scrollbar-width: thin;
}

.report-tabs-mini::-webkit-scrollbar,
.snapshot-mini::-webkit-scrollbar,
.impact-grid-mini::-webkit-scrollbar,
.issues-found-mini::-webkit-scrollbar,
.top-issues-mini::-webkit-scrollbar {
  height: 10px;
}

.report-tabs-mini::-webkit-scrollbar-track,
.snapshot-mini::-webkit-scrollbar-track,
.impact-grid-mini::-webkit-scrollbar-track,
.issues-found-mini::-webkit-scrollbar-track,
.top-issues-mini::-webkit-scrollbar-track {
  background: rgba(13, 18, 26, 0.06);
}

.report-tabs-mini::-webkit-scrollbar-thumb,
.snapshot-mini::-webkit-scrollbar-thumb,
.impact-grid-mini::-webkit-scrollbar-thumb,
.issues-found-mini::-webkit-scrollbar-thumb,
.top-issues-mini::-webkit-scrollbar-thumb {
  background: rgba(13, 18, 26, 0.34);
  border-radius: 999px;
}

.report-tabs-mini span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 760;
  min-height: 36px;
  padding: 0 10px;
  scroll-snap-align: start;
  white-space: nowrap;
}

.report-tabs-mini .is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.report-tabs-mini:focus-visible,
.snapshot-mini:focus-visible,
.impact-grid-mini:focus-visible,
.issues-found-mini:focus-visible,
.top-issues-mini:focus-visible {
  outline: 3px solid rgba(12, 122, 91, 0.28);
  outline-offset: 3px;
}

.verdict-card {
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  padding: 18px 18px 20px;
}

.verdict-card.is-p1 {
  border-left-color: #c88a00;
}

.verdict-card.is-p2 {
  border-left-color: var(--blue);
}

.verdict-card .kicker,
.section-kicker {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.verdict-card h2 {
  font-size: 26px;
  line-height: 1.08;
  margin-top: 10px;
  text-wrap: balance;
}

.verdict-card p {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
  margin-top: 12px;
}

.verdict-list {
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.verdict-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 116px minmax(0, 1fr);
  padding: 11px 12px;
}

.verdict-row:last-child {
  border-bottom: 0;
}

.verdict-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.verdict-row strong {
  font-size: 13px;
  line-height: 1.35;
}

.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.example-chips code {
  background: var(--soft);
  border: 1px solid rgba(16, 20, 27, 0.08);
  font-size: 11px;
  padding: 5px 7px;
}

.report-disclosure-strip {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.report-disclosure-strip details {
  background: var(--soft);
  border: 1px solid var(--line);
}

.report-disclosure-strip summary {
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  padding: 10px 12px;
}

.report-disclosure-strip p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.45;
  padding: 10px 12px 12px;
}

.report-section-label {
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 820;
  margin: 22px 0 12px;
  padding-top: 20px;
}

.impact-grid-mini {
  cursor: grab;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: rgba(13, 18, 26, 0.34) transparent;
  scrollbar-width: thin;
}

.impact-card-mini {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(16, 20, 27, 0.07);
  min-width: 0;
  padding: 12px;
}

.impact-card-mini span {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.25;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.impact-card-mini strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-card-mini p {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.36;
}

.impact-card-mini em {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 820;
  margin-top: 8px;
}

.issues-found-mini {
  cursor: grab;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: rgba(13, 18, 26, 0.34) transparent;
  scrollbar-width: thin;
}

.issues-found-mini div {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(16, 20, 27, 0.06);
  min-width: 0;
  padding: 12px;
}

.issues-found-mini span {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.issues-found-mini strong {
  color: var(--green);
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1;
}

.top-issues-mini {
  border: 1px solid var(--line);
  cursor: grab;
  overflow-x: auto;
  scrollbar-color: rgba(13, 18, 26, 0.34) transparent;
  scrollbar-width: thin;
}

.top-issue-row {
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  display: grid;
  font-size: 16px;
  font-weight: 680;
  gap: 10px;
  grid-template-columns: 64px minmax(220px, 1.1fr) minmax(150px, .8fr) minmax(190px, .9fr) minmax(220px, 1fr) minmax(190px, .9fr);
  line-height: 1.32;
  min-width: 1120px;
  padding: 10px;
}

.top-issue-row:last-child {
  border-bottom: 0;
}

.top-issue-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.top-issue-head {
  background: var(--soft);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-card-stack {
  display: grid;
  gap: 10px;
}

.report-issue-card-static {
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16, 20, 27, 0.08);
  padding: 14px;
}

.report-issue-head-static {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.report-issue-head-static h2 {
  font-size: 20px;
  line-height: 1.18;
}

.report-issue-head-static p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
  margin-top: 5px;
}

.report-issue-fields-static {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-top: 11px;
}

.report-issue-fields-static div {
  display: grid;
  gap: 10px;
  grid-template-columns: 82px minmax(0, 1fr);
  min-width: 0;
}

.report-issue-fields-static dt {
  font-size: 12px;
  font-weight: 820;
}

.report-issue-fields-static dd {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.42;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.snapshot-mini {
  cursor: grab;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: rgba(13, 18, 26, 0.34) transparent;
  scrollbar-width: thin;
}

.snapshot-mini div {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(16, 20, 27, 0.06);
  min-height: 86px;
  padding: 12px;
}

.snapshot-mini strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
  margin-top: 8px;
  white-space: nowrap;
}

.snapshot-mini span {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.report-tabs-mini.is-dragging,
.snapshot-mini.is-dragging,
.impact-grid-mini.is-dragging,
.issues-found-mini.is-dragging,
.top-issues-mini.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.ranked-table {
  border: 1px solid var(--line);
  margin-top: 16px;
  overflow: hidden;
  min-width: 0;
}

.ranked-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 54px minmax(130px, 0.88fr) minmax(120px, 0.74fr) minmax(160px, 1fr);
  padding: 12px;
  min-width: 0;
}

.ranked-row > span,
.memo-line > span,
.memo-line > b,
.verdict-row > span,
.verdict-row > strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ranked-row:last-child {
  border-bottom: 0;
}

.ranked-head {
  background: var(--soft);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.ranked-row:not(.ranked-head) {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.38;
}

.rank {
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 820;
  justify-content: center;
  min-width: 34px;
  padding: 5px 7px;
}

.rank.p0 {
  background: #fdecea;
  color: var(--red);
}

.rank.p1 {
  background: #fff3cf;
  color: var(--amber);
}

.rank.p2 {
  background: #e8f1ff;
  color: var(--blue);
}

.section {
  padding: 68px 18px;
  scroll-margin-top: 88px;
}

.section.alt {
  background: rgba(255, 255, 255, 0.56);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section.dark {
  background: var(--navy);
  color: #fff;
}

.wrap {
  margin: 0 auto;
  max-width: var(--max);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  margin-bottom: 30px;
  min-width: 0;
}

.section-head h2,
.split-copy h2,
.final-cta h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.case-study-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-heading img {
  display: inline-block;
  height: 0.78em;
  width: auto;
}

.coming-soon-banner {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(13, 18, 26, 0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(28, 45, 70, 0.1);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
}

.coming-soon-banner::after {
  background: var(--completion-green);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.coming-soon-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.coming-soon-copy span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.coming-soon-copy strong {
  color: var(--ink);
  display: block;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.coming-soon-copy p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
  max-width: 680px;
}

.coming-soon-steps {
  align-self: stretch;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
}

.coming-soon-steps div {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 78px;
  padding: 16px;
}

.coming-soon-steps div:last-child {
  border-bottom: 0;
}

.coming-soon-steps b {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 13px;
}

.coming-soon-steps span {
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.1;
}

.section-head p,
.split-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.52;
}

.dark .section-head p,
.dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

.problem-card,
.deliverable-card,
.trust-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 210px;
  min-width: 0;
  padding: 22px;
}

.problem-card h3,
.deliverable-card h3,
.trust-card h3,
.faq-item h3 {
  font-size: 20px;
  line-height: 1.18;
  text-wrap: balance;
}

.problem-card p,
.deliverable-card p,
.trust-card p,
.faq-item p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  margin-top: 12px;
}

.problem-card b,
.deliverable-card b,
.trust-card b {
  color: var(--blue);
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 16px;
}

.trust-card {
  min-height: 184px;
}

.trust-card strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  line-height: 1.35;
  margin-top: 13px;
}

.report-showcase {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.64fr) minmax(420px, 1fr);
  overflow: hidden;
}

.report-copy {
  border-right: 1px solid var(--line);
  padding: 28px;
}

.report-copy h2 {
  font-size: 34px;
  line-height: 1.08;
  text-wrap: balance;
}

.report-copy p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.52;
  margin-top: 14px;
}

.report-copy ul {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.report-copy li {
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.42;
  padding: 14px 0;
}

.report-copy li:last-child {
  border-bottom: 0;
}

.report-preview {
  background: #fbfcfd;
  min-width: 0;
  padding: 22px;
}

.full-report-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(28, 45, 70, 0.12);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.full-report-header {
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.full-report-header h3 {
  font-size: 17px;
  line-height: 1.22;
}

.full-report-header span {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  margin-top: 5px;
  text-transform: uppercase;
}

.full-report-body {
  max-height: 520px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.full-report-body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  bottom: 0;
  content: "";
  height: 90px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.memo-verdict {
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  padding: 15px;
}

.memo-verdict h4 {
  font-size: 22px;
  line-height: 1.08;
  margin: 8px 0 0;
}

.memo-verdict p {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  margin-top: 10px;
}

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

.mini-metrics div {
  background: var(--soft);
  border: 1px solid rgba(16, 20, 27, 0.08);
  padding: 10px;
}

.mini-metrics strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
}

.mini-metrics span {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 720;
  line-height: 1.3;
  margin-top: 6px;
}

.memo-table {
  border: 1px solid var(--line);
  margin-top: 14px;
}

.memo-line {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 44px minmax(0, 1fr) minmax(0, 0.86fr);
  padding: 10px;
}

.memo-line:last-child {
  border-bottom: 0;
}

.memo-line b {
  font-size: 12px;
  line-height: 1.3;
}

.memo-line span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

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

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 220px;
  min-width: 0;
  padding: 22px;
}

.dark-card strong {
  color: #fff;
  display: block;
  font-size: 20px;
  line-height: 1.18;
  text-wrap: balance;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.48;
  margin-top: 12px;
}

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

.faq-list {
  background: var(--surface);
  border: 1px solid var(--line);
  min-width: 0;
}

.faq-disclosure {
  border-bottom: 1px solid var(--line);
}

.faq-disclosure:last-child {
  border-bottom: 0;
}

.faq-disclosure summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 780;
  justify-content: space-between;
  line-height: 1.25;
  list-style: none;
  min-height: 68px;
  padding: 0 20px;
}

.faq-disclosure summary::-webkit-details-marker {
  display: none;
}

.faq-disclosure summary::after {
  color: var(--blue);
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 760;
  margin-left: 18px;
}

.faq-disclosure[open] summary::after {
  content: "-";
}

.faq-disclosure p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.52;
  margin: 0;
  max-width: 860px;
  padding: 0 20px 20px;
}

.final-cta {
  padding: 72px 18px;
}

.trace-counter-section {
  padding-bottom: 24px;
  padding-top: 64px;
}

.trace-counter-band {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  padding: 34px 0;
}

.trace-counter-band h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  max-width: 760px;
}

.trace-counter-copy {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.trace-counter-value {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(48px, 6.8vw, 86px);
  font-weight: 840;
  line-height: 0.92;
  white-space: nowrap;
}

.trace-counter-copy p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  max-width: 360px;
}

.final-box {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--max);
  min-width: 0;
  padding: 30px;
}

.final-cta p {
  margin-top: 12px;
  max-width: 720px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  padding: 24px 18px 36px;
}

.site-footer .wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer span {
  min-width: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(12, 122, 91, 0.36);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .site-nav {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .report-showcase {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .report-copy {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .report-window {
    max-width: 780px;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: 66px;
  }

  .site-nav .button {
    display: none;
  }

  .site-nav .nav-actions .button.primary {
    display: inline-flex;
    min-height: 40px;
    padding: 0 12px;
    width: auto;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid,
  .wrap {
    max-width: calc(100vw - 36px);
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
    width: 100%;
  }

  h1 {
    font-size: 38px;
    line-height: 1.06;
    max-width: 100%;
    text-wrap: wrap;
    word-break: normal;
  }

  .headline-desktop {
    display: none;
  }

  .headline-mobile {
    display: inline;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: block;
  }

  .lead {
    font-size: 16px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-kicker {
    font-size: 14px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .coming-soon-banner,
  .snapshot-mini,
  .problem-grid,
  .deliverable-grid,
  .trust-grid,
  .dark-grid,
  .faq-grid,
  .final-box,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
    padding: 14px 0;
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

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

  .proof-strip div {
    border-right: 1px solid var(--line);
    padding: 14px 12px 14px 0;
  }

  .proof-strip div:nth-child(2n) {
    border-right: 0;
    padding-left: 12px;
    padding-right: 0;
  }

  .proof-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .coming-soon-banner {
    grid-template-columns: 1fr;
  }

  .report-body,
  .report-preview {
    padding: 18px;
  }

  .snapshot-mini div {
    flex-basis: min(220px, 72vw);
  }

  .impact-grid-mini,
  .issues-found-mini {
    grid-template-columns: 1fr;
  }

  .report-body {
    overflow-y: visible;
  }

  .report-window,
  .report-showcase,
  .full-report-shell,
  .ranked-table,
  .memo-table {
    max-height: none;
    width: 100%;
  }

  .report-window::after {
    display: none;
  }

  .ranked-row,
  .top-issue-row,
  .memo-line,
  .verdict-row {
    grid-template-columns: 1fr;
  }

  .ranked-head,
  .top-issue-head {
    display: none;
  }

  .ranked-row:not(.ranked-head) {
    gap: 7px;
  }

  .section,
  .final-cta {
    padding: 48px 18px;
  }

  .section-head h2,
  .report-copy h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .report-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .problem-card,
  .deliverable-card,
  .trust-card,
  .faq-item,
  .dark-card {
    min-height: 0;
  }
}

/* Landing polish: composed hero, quieter proof, less template rhythm. */
:root {
  --ink: #0d121a;
  --ink-2: #263142;
  --muted: #637083;
  --paper: #f4f8fb;
  --surface: #ffffff;
  --soft: #edf3f7;
  --line: rgba(13, 18, 26, 0.13);
  --line-strong: rgba(13, 18, 26, 0.28);
  --navy: #081116;
  --blue: #2563eb;
  --green: #0e765b;
  --completion-green: #22c55e;
  --red: #ca3229;
  --amber: #b87500;
  --shadow: 0 32px 90px rgba(28, 45, 70, 0.16);
}

body {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(37, 99, 235, 0.048) 1px, transparent 1px) 0 0 / 92px 92px,
    radial-gradient(900px 520px at 72% 10%, rgba(34, 197, 94, 0.11), transparent 62%),
    var(--paper);
}

.site-nav {
  background: rgba(244, 248, 251, 0.9);
  height: 76px;
}

.brand-logo {
  background: transparent;
}

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

.button {
  border-radius: 0;
  min-height: 48px;
  padding: 0 19px;
}

.button.primary {
  background: var(--navy);
  border-color: var(--navy);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line-strong);
}

.button.primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.hero {
  border-bottom: 1px solid var(--line);
  min-height: 0;
  overflow: hidden;
  padding: 72px 18px 74px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 17, 22, 0.045) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, rgba(8, 17, 22, 0.04) 1px, transparent 1px) 0 0 / 46px 46px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0.74) 62%, transparent);
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  align-items: start;
  gap: 44px;
  grid-template-columns: 1fr;
  max-width: 1400px;
  position: relative;
}

.hero-copy {
  max-width: 1160px;
  padding-top: 6px;
}

.eyebrow {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.eyebrow::before {
  background: var(--blue);
  height: 7px;
  width: 7px;
}

h1 {
  font-size: clamp(62px, 7.2vw, 116px);
  letter-spacing: 0;
  line-height: 0.95;
  max-width: 1160px;
}

.lead {
  color: #536174;
  font-size: 21px;
  line-height: 1.42;
  margin-top: 24px;
  max-width: 820px;
}

.hero-kicker {
  color: var(--ink-2);
  font-size: 15px;
  margin-top: 16px;
}

.actions {
  margin-top: 32px;
}

.proof-strip {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 860px;
}

.proof-strip div {
  min-height: 104px;
  padding: 18px 16px;
}

.proof-strip strong {
  font-size: 20px;
}

.proof-strip span {
  font-size: 12px;
}

.trust-strip {
  align-items: center;
  display: flex;
  gap: 18px;
  max-width: 860px;
}

.trust-label {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.logo-carousel {
  margin-left: 0;
  max-width: none;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.logo-track {
  animation: none;
  width: auto;
}

.logo-group {
  flex-wrap: wrap;
  gap: 8px;
  padding-right: 0;
}

.logo-group[aria-hidden="true"] {
  display: none;
}

.logo-tile {
  background: rgba(255, 255, 255, 0.64);
  height: 44px;
  min-width: 104px;
  padding: 0 16px;
}

.report-window {
  box-shadow: var(--shadow);
  transform: translateY(8px);
}

.hero-report-shot {
  box-shadow: var(--shadow);
  margin-top: 10px;
  max-height: 780px;
  position: relative;
}

.report-tabs-mini {
  flex-wrap: nowrap;
  gap: 7px;
  overflow-x: auto;
  padding: 14px 16px 18px;
}

.report-tabs-mini span {
  font-size: 9px;
  min-height: 34px;
  padding: 0 9px;
}

.report-body {
  padding: 22px 16px;
}

.snapshot-mini {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
}

.snapshot-mini div {
  min-height: 76px;
  padding: 11px;
}

.snapshot-mini strong {
  font-size: 20px;
  white-space: nowrap;
}

.impact-grid-mini {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
}

.impact-card-mini {
  padding: 11px;
}

.impact-card-mini strong {
  font-size: 19px;
}

.impact-card-mini p {
  font-size: 10px;
  line-height: 1.34;
}

.issues-found-mini {
  grid-template-columns: repeat(5, minmax(170px, 1fr));
}

.top-issue-row {
  font-size: 12px;
  gap: 8px;
  grid-template-columns: 56px minmax(210px, 1.1fr) minmax(140px, 0.8fr) minmax(180px, 0.9fr) minmax(210px, 1fr) minmax(180px, 0.9fr);
  min-width: 1040px;
  padding: 9px 8px;
}

.top-issue-head {
  font-size: 12px;
}

.report-topbar {
  background: linear-gradient(180deg, #fff, #fbfcfd);
}

.verdict-card {
  border-left: 1px solid var(--line);
  border-top: 5px solid var(--red);
}

.verdict-card.is-p1 {
  border-left-color: var(--line);
  border-top-color: #c88a00;
}

.verdict-card.is-p2 {
  border-left-color: var(--line);
  border-top-color: var(--blue);
}

.section {
  padding: 86px 18px;
}

.section.alt {
  background: rgba(255, 255, 255, 0.52);
}

.section-head {
  align-items: start;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 0.98;
}

.section-head p,
.split-copy p,
.final-cta p {
  font-size: 18px;
  line-height: 1.5;
}

.metric-carousel,
.info-carousel {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.metric-track,
.info-track {
  animation: none;
  display: block;
  width: auto;
}

.metric-group,
.info-group {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-right: 0;
}

.metric-group[aria-hidden="true"],
.info-group[aria-hidden="true"] {
  display: none;
}

.metric-card,
.info-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  flex: none;
  min-height: 0;
  min-width: 0;
  padding: 26px;
  width: auto;
}

.metric-card:nth-child(3n),
.info-card:nth-child(3n) {
  border-right: 0;
}

.metric-card:nth-last-child(-n + 3),
.info-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.metric-card b {
  color: var(--green);
  font-size: 44px;
  letter-spacing: 0;
}

.problem-grid {
  border-top: 1px solid var(--line);
  display: block;
}

.problem-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 82px minmax(0, 1fr);
  min-height: 0;
  padding: 26px 0;
}

.problem-card b {
  color: var(--green);
  font-size: 34px;
  margin-bottom: 0;
}

.problem-card h3 {
  grid-column: 2;
  font-size: 26px;
}

.problem-card p {
  font-size: 16px;
  grid-column: 2;
  max-width: 720px;
}

.section.dark {
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--navy);
}

.section.dark .info-group {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(8, 17, 22, 0.2),
    0 24px 70px rgba(0, 0, 0, 0.18);
}

.section.dark .info-card {
  border-color: rgba(8, 17, 22, 0.18);
}

.section.dark .info-card:nth-child(odd),
.section.dark .info-card:nth-child(3n) {
  border-right: 1px solid rgba(8, 17, 22, 0.18);
}

.section.dark .info-card:nth-child(even) {
  border-right: 0;
}

.section.dark .info-card:nth-child(-n + 2),
.section.dark .info-card:nth-last-child(-n + 3) {
  border-bottom: 1px solid rgba(8, 17, 22, 0.18);
}

.section.dark .info-card:nth-child(n + 3) {
  border-bottom: 0;
}

.dark-grid {
  border: 1px solid rgba(255, 255, 255, 0.18);
  gap: 0;
}

.dark-card {
  background: rgba(255, 255, 255, 0.055);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 236px;
  padding: 26px;
}

.dark-card:last-child {
  border-right: 0;
}

.dark-card strong {
  font-size: 24px;
}

.dark-card p {
  font-size: 15px;
}

.faq-list {
  box-shadow: 0 18px 54px rgba(28, 45, 70, 0.08);
}

.final-box {
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.1) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--navy);
  border: 0;
  box-shadow: 0 28px 80px rgba(8, 17, 22, 0.18);
  color: #fff;
  padding: 34px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.final-box .button.primary {
  background: var(--completion-green);
  border-color: var(--completion-green);
  color: var(--navy);
}

.final-box .button.primary:hover {
  background: #4ade80;
  border-color: #4ade80;
  color: var(--navy);
}

@media (max-width: 1060px) {
  .hero {
    min-height: 0;
    padding-top: 64px;
  }

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

  .report-window {
    transform: none;
  }

  .hero-report-shot {
    max-height: none;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 42px 18px 40px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.98;
  }

  .lead {
    font-size: 17px;
  }

  .hero-copy,
  .proof-strip,
  .trust-strip {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-kicker {
    font-size: 14px;
    line-height: 1.42;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    width: min(100%, calc(100vw - 36px));
  }

  .actions .button.secondary {
    display: inline-flex;
  }

  .proof-strip {
    background: rgba(255, 255, 255, 0.36);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
  }

  .proof-strip div {
    min-width: 0;
    min-height: 112px;
    padding: 15px 12px;
  }

  .proof-strip strong,
  .proof-strip span {
    overflow-wrap: anywhere;
  }

  .logo-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .logo-tile {
    min-width: 0;
    width: 100%;
  }

  .metric-group,
  .info-group {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .info-card,
  .metric-card:nth-child(3n),
  .info-card:nth-child(3n),
  .metric-card:nth-last-child(-n + 3),
  .info-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .metric-card:last-child,
  .info-card:last-child {
    border-bottom: 0;
  }

  .problem-card {
    gap: 16px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .problem-card h3 {
    font-size: 22px;
  }

  .dark-grid {
    grid-template-columns: 1fr;
  }

  .dark-card,
  .dark-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    min-height: 0;
  }

  .dark-card:last-child {
    border-bottom: 0;
  }

  .final-box {
    padding: 24px;
  }

  .report-body {
    max-height: 660px;
    overflow: hidden;
    position: relative;
  }

  .report-body::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
    bottom: 0;
    content: "";
    height: 84px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
  }
}

/* Requested carousels: logos + Mili case-study metrics. */
.logo-carousel {
  max-width: min(460px, 100%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  align-items: center;
  animation: logo-marquee 22s linear infinite;
  display: flex;
  width: max-content;
}

.logo-carousel:hover .logo-track,
.metric-carousel:hover .metric-track {
  animation-play-state: paused;
}

.logo-group,
.logo-group[aria-hidden="true"] {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 8px;
  padding-right: 8px;
}

.logo-tile {
  flex: 0 0 auto;
}

.metric-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent);
}

.metric-track {
  animation: card-marquee 58s linear infinite;
  display: flex;
  width: max-content;
}

.metric-group,
.metric-group[aria-hidden="true"] {
  background: transparent;
  border: 0;
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
}

.metric-group .metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  flex: 0 0 clamp(250px, 24vw, 318px);
  min-height: 184px;
  padding: 24px;
  width: auto;
}

@media (max-width: 760px) {
  .logo-carousel {
    max-width: 100%;
  }

  .metric-group .metric-card {
    flex-basis: 286px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .metric-track {
    animation: none;
  }

  .logo-carousel,
  .metric-carousel {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-group[aria-hidden="true"],
  .metric-group[aria-hidden="true"] {
    display: none;
  }

  .metric-track {
    display: block;
    width: auto;
  }

  .metric-group {
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 0;
  }

  .metric-group .metric-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    flex: none;
    min-height: 0;
    width: auto;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .hero-copy,
  .proof-strip,
  .trust-strip,
  .hero-report-shot,
  .report-window,
  .wrap {
    max-width: calc(100vw - 36px);
    min-width: 0;
    width: calc(100vw - 36px);
  }

  .hero-grid .report-window,
  .hero-grid .hero-report-shot {
    max-width: 100%;
    width: 100%;
  }

  .hero-kicker {
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-kicker-desktop {
    display: none;
  }

  .hero-kicker-mobile {
    display: inline;
  }

  .report-tabs-mini,
  .snapshot-mini,
  .ranked-table,
  .top-issues-mini {
    max-width: 100%;
    min-width: 0;
  }

  .report-tabs-mini {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 10px;
    scrollbar-width: thin;
  }

  .report-body {
    max-height: none;
    min-width: 0;
    overflow: visible;
    padding: 16px 12px;
    width: 100%;
  }

  .report-body::after {
    display: none;
  }

  .report-body > *,
  .snapshot-mini div,
  .impact-card-mini,
  .issues-found-mini div {
    max-width: 100%;
    min-width: 0;
  }

  .impact-card-mini p,
  .top-issue-row span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .snapshot-mini {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    overflow-x: auto;
  }

  .snapshot-mini div {
    flex: none;
    min-width: 0;
  }

  .impact-grid-mini {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  }

  .issues-found-mini {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
  }

  .top-issue-row {
    grid-template-columns: 56px minmax(210px, 1.1fr) minmax(140px, 0.8fr) minmax(180px, 0.9fr) minmax(210px, 1fr) minmax(180px, 0.9fr);
    min-width: 1040px;
  }

  .top-issue-head {
    display: grid;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2n) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1060px) {
  .trace-counter-band {
    grid-template-columns: 1fr;
  }

  .trace-counter-copy {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .trace-counter-section {
    padding-bottom: 8px;
    padding-top: 42px;
  }

  .trace-counter-band {
    gap: 20px;
    padding: 26px 0;
  }

  .trace-counter-value {
    font-size: clamp(44px, 14vw, 66px);
  }

  .trace-counter-copy p {
    font-size: 16px;
  }
}

/* Landing refresh: production infra positioning. */
.hero h1 {
  font-size: clamp(46px, 5.6vw, 64px);
  max-width: 1240px;
}

.hero .lead {
  max-width: 920px;
}

.hero-report-shot {
  aspect-ratio: 3454 / 1924;
  max-height: none;
  width: min(1120px, 100%);
  height: auto;
}

.hero-report-shot img {
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.logo-carousel {
  max-width: none;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.logo-track {
  animation: none;
  width: auto;
}

.logo-group {
  flex-wrap: wrap;
}

.logo-group[aria-hidden="true"] {
  display: none;
}

.problem-section .section-head,
.solution-section .section-head,
.product-matrix .section-head,
#faq .section-head {
  display: block;
  max-width: 820px;
}

.problem-section .section-head h2,
.solution-section .section-head h2,
.product-matrix .section-head h2,
#faq .section-head h2 {
  max-width: 820px;
}

.problem-section .section-head p,
.solution-section .section-head p,
.product-matrix .section-head p,
#faq .section-head p {
  margin-top: 18px;
  max-width: 760px;
}

.problem-section {
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--navy);
  color: #fff;
  padding-bottom: 34px;
}

.problem-section .eyebrow,
.problem-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.problem-section .section-head h2 {
  color: #fff;
  font-size: 46px;
}

.problem-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(28, 45, 70, 0.08);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-panel p {
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.52;
  margin: 0;
  min-width: 0;
  padding: 28px;
}

.problem-panel p + p {
  border-left: 1px solid var(--line);
}

.solution-section {
  background: var(--paper);
  padding-top: 34px;
}

.solution-list {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(28, 45, 70, 0.08);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.solution-list li {
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.36;
  min-height: 72px;
  min-width: 0;
  padding: 18px 24px 18px 56px;
  position: relative;
}

.solution-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.solution-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.solution-list li::before {
  align-items: center;
  background: rgba(14, 118, 91, 0.1);
  color: var(--green);
  content: ">";
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 840;
  height: 26px;
  justify-content: center;
  left: 22px;
  position: absolute;
  top: 19px;
  width: 26px;
}

.product-matrix {
  color: #fff;
}

.product-matrix .section-head h2,
.product-matrix .matrix-card h3 {
  color: #fff;
}

.matrix-grid {
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.matrix-card {
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 168px;
  min-width: 0;
  padding: 24px 28px;
}

.matrix-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.matrix-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.matrix-card span {
  color: var(--completion-green);
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 820;
  margin-bottom: 20px;
}

.matrix-card h3 {
  font-size: 30px;
  line-height: 1.02;
}

.matrix-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.42;
  margin-top: 12px;
  max-width: 460px;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--navy);
  border-top: 0;
  color: rgba(255, 255, 255, 0.66);
  padding: 34px 18px 42px;
}

.site-footer .wrap {
  justify-content: space-between;
}

.site-footer .wrap > div {
  display: grid;
  gap: 6px;
}

.footer-brand {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 840;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 760;
  min-height: 32px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: clamp(42px, 6.4vw, 64px);
  }

  .problem-section .section-head h2 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1;
  }

  .hero-report-shot {
    height: auto;
  }

  .hero-report-shot img {
    height: auto;
    object-fit: contain;
  }

  .lead-mobile {
    display: block;
  }

  .problem-section {
    padding-bottom: 24px;
  }

  .problem-section .section-head h2 {
    font-size: 29px;
  }

  .solution-section {
    padding-top: 24px;
  }

  .problem-panel,
  .solution-list,
  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .logo-carousel {
    width: 100%;
  }

  .logo-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .problem-panel p {
    font-size: 16px;
    padding: 22px;
  }

  .problem-panel p + p {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .solution-list li,
  .solution-list li:nth-child(odd),
  .solution-list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    font-size: 16px;
    min-height: 0;
    padding: 15px 18px 15px 52px;
  }

  .solution-list li:last-child {
    border-bottom: 0;
  }

  .solution-list li::before {
    left: 18px;
    top: 14px;
  }

  .matrix-card,
  .matrix-card:nth-child(odd),
  .matrix-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    min-height: 0;
    padding: 20px 22px;
  }

  .matrix-card:last-child {
    border-bottom: 0;
  }

  .matrix-card h3 {
    font-size: 25px;
  }

  .matrix-card span {
    margin-bottom: 18px;
  }

  .site-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
