/* Simplicio V2 — evidence-led product landing.
   Scoped to body.sp-page so the shared SimpleTI pages keep their current visual system. */

body.sp-page {
  --sp-ink: #07110e;
  --sp-ink-2: #0d1b17;
  --sp-panel: #11231d;
  --sp-paper: #f5f2e9;
  --sp-paper-2: #ece7da;
  --sp-white: #fffdf8;
  --sp-text: #17201d;
  --sp-muted: #66716c;
  --sp-line: rgba(19, 42, 34, .15);
  --sp-line-dark: rgba(220, 255, 239, .14);
  --sp-green: #28dc94;
  --sp-green-soft: #baf6d9;
  --sp-green-dark: #086644;
  --sp-amber: #eab65d;
  --sp-red: #c65d53;
  --sp-radius: 22px;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--sp-paper);
  color: var(--sp-text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sp-page *,
.sp-page *::before,
.sp-page *::after {
  box-sizing: border-box;
}

.sp-page a {
  color: inherit;
}

.sp-page button,
.sp-page select {
  font: inherit;
}

.sp-page img,
.sp-page svg {
  display: block;
  max-width: 100%;
}

.sp-page ::selection {
  background: var(--sp-green);
  color: var(--sp-ink);
}

.sp-page :focus-visible {
  outline: 3px solid var(--sp-amber);
  outline-offset: 4px;
}

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

.sp-mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.sp-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--sp-white);
  color: var(--sp-ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

/* Navigation */
.sp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 17, 14, .88);
  color: #effaf5;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sp-nav__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.sp-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #f7fff9;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.sp-logo img {
  width: 22px;
  height: 22px;
}

.sp-logo__slash {
  color: #71837b;
}

.sp-logo__product {
  color: var(--sp-green);
}

.sp-nav__links {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sp-nav__links a {
  padding: 9px 11px;
  border-radius: 9px;
  color: #aabbb3;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.sp-nav__links a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

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

.sp-lang {
  max-width: 118px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: #10201b;
  color: #d1ded8;
  padding: 9px 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.sp-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--sp-green);
  border-radius: 10px;
  background: var(--sp-green);
  color: #03100b;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

/* Hero */
.sp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(40, 220, 148, .16), transparent 30rem),
    radial-gradient(circle at 12% 78%, rgba(234, 182, 93, .09), transparent 25rem),
    var(--sp-ink);
  color: #f5fbf7;
}

.sp-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

.sp-hero::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -11rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(40, 220, 148, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(40, 220, 148, .025),
    0 0 0 140px rgba(40, 220, 148, .018);
  content: "";
}

.sp-hero__grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-block: 94px 88px;
}

.sp-eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--sp-green-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sp-eyebrow::before {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.sp-hero .sp-eyebrow {
  color: var(--sp-green);
}

.sp-hero h1 {
  max-width: 790px;
  margin: 0;
  color: #f8fcfa;
  font-size: clamp(3.25rem, 6.2vw, 5.65rem);
  font-weight: 800;
  letter-spacing: -.066em;
  line-height: .98;
}

.sp-hero h1 span {
  color: var(--sp-green);
}

.sp-hero__lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: #b9c8c1;
  font-size: clamp(1.06rem, 1.8vw, 1.26rem);
  line-height: 1.7;
}

.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.sp-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.sp-button--primary {
  border-color: var(--sp-green);
  background: var(--sp-green);
  box-shadow: 0 14px 40px rgba(40, 220, 148, .17);
  color: #03130c;
}

.sp-button--outline {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .045);
  color: #eff8f3;
}

.sp-button--dark {
  background: var(--sp-ink);
  color: white;
}

.sp-button__arrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
}

.sp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--sp-line-dark);
}

.sp-hero__trust-item {
  display: grid;
  gap: 2px;
}

.sp-hero__trust-item strong {
  color: #eef8f3;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .04em;
}

.sp-hero__trust-item span {
  color: #71857b;
  font-size: 11px;
}

/* Hero evidence card */
.sp-signal {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(174, 247, 213, .18);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    #0b1914;
  box-shadow: 0 38px 100px rgba(0, 0, 0, .33);
}

.sp-signal::before,
.sp-signal::after {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--sp-green);
  content: "";
  opacity: .65;
}

.sp-signal::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-radius: 26px 0 0;
}

.sp-signal::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-radius: 0 0 26px;
}

.sp-signal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sp-signal__case {
  color: #91a79d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sp-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sp-green-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.sp-live::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sp-green);
  box-shadow: 0 0 0 5px rgba(40, 220, 148, .1);
  content: "";
}

.sp-signal__metric {
  margin-top: 42px;
}

.sp-signal__number {
  color: #fbfffc;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .86;
}

.sp-signal__label {
  max-width: 290px;
  margin: 18px 0 0;
  color: #b6c6be;
  font-size: 14px;
  line-height: 1.55;
}

.sp-signal__bar {
  display: flex;
  height: 14px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: #17261f;
}

.sp-signal__bar-cache {
  width: 98.0134%;
  background: linear-gradient(90deg, #159c66, var(--sp-green));
}

.sp-signal__bar-fresh {
  width: 1.9866%;
  min-width: 5px;
  background: var(--sp-amber);
}

.sp-signal__legend {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 11px;
  color: #81958b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.sp-signal__rows {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--sp-line-dark);
}

.sp-signal__row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--sp-line-dark);
}

.sp-signal__row span {
  color: #82978d;
  font-size: 12px;
}

.sp-signal__row strong {
  color: #ecf7f1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  text-align: right;
}

.sp-signal__foot {
  margin: 20px 0 0;
  color: #70847a;
  font-size: 10px;
  line-height: 1.55;
}

/* Proof ribbon */
.sp-proof-ribbon {
  border-bottom: 1px solid #cbded3;
  background: var(--sp-green-soft);
  color: #0c3123;
}

.sp-proof-ribbon__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding-block: 18px;
}

.sp-proof-ribbon__label {
  padding: 6px 8px;
  border: 1px solid rgba(8, 102, 68, .3);
  border-radius: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sp-proof-ribbon p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.sp-proof-ribbon a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-underline-offset: 3px;
}

/* Shared sections */
.sp-section {
  position: relative;
  padding-block: clamp(82px, 10vw, 128px);
  scroll-margin-top: 92px;
}

.sp-section--paper {
  background: var(--sp-paper);
}

.sp-section--white {
  background: var(--sp-white);
}

.sp-section--soft {
  background: var(--sp-paper-2);
}

.sp-section--dark {
  background: var(--sp-ink);
  color: #eef8f3;
}

.sp-section-head {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, .65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 58px;
}

.sp-section-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--sp-text);
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.sp-section--dark .sp-section-head h2 {
  color: #f2fbf6;
}

.sp-section-head__copy {
  margin: 0 0 5px;
  color: var(--sp-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sp-section--dark .sp-section-head__copy {
  color: #93a69d;
}

/* Evidence */
.sp-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: stretch;
  gap: 22px;
}

.sp-chart-card,
.sp-report-card,
.sp-metric-card,
.sp-proof-note {
  min-width: 0;
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  background: var(--sp-white);
}

.sp-chart-card {
  padding: clamp(24px, 4vw, 42px);
}

.sp-card-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
}

.sp-tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-tag--observed {
  background: #d7f8e8;
  color: #075b3c;
}

.sp-tag--calculated {
  background: #e7edf8;
  color: #2e4d76;
}

.sp-tag--scenario {
  background: #fae8c7;
  color: #754c08;
}

.sp-card-kicker > span:last-child {
  color: var(--sp-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.sp-chart-title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  line-height: 1.15;
}

.sp-chart-copy {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--sp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sp-stack {
  display: flex;
  height: 68px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  background: #e5e2d9;
}

.sp-stack__cache,
.sp-stack__fresh {
  display: flex;
  min-width: 0;
  align-items: center;
  padding-inline: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.sp-stack__cache {
  width: 98.0134%;
  justify-content: space-between;
  gap: 10px;
  background: var(--sp-green);
  color: #052416;
}

.sp-stack__fresh {
  width: 1.9866%;
  min-width: 12px;
  overflow: hidden;
  padding: 0;
  background: var(--sp-amber);
  color: #3a2705;
}

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

.sp-legend-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.sp-legend-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 3px;
  background: var(--sp-green);
}

.sp-legend-dot--fresh {
  background: var(--sp-amber);
}

.sp-legend-item strong,
.sp-legend-item span {
  display: block;
}

.sp-legend-item strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.sp-legend-item span {
  margin-top: 2px;
  color: var(--sp-muted);
  font-size: 11px;
}

.sp-report-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.2vw, 34px);
  background: var(--sp-ink);
  color: #ecf6f1;
}

.sp-report-card__mark {
  width: 58px;
  height: 70px;
  border: 1px solid rgba(40, 220, 148, .45);
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 67%, rgba(40, 220, 148, .28) 68%),
    #10231c;
}

.sp-report-card h3 {
  margin: 26px 0 0;
  color: #f7fff9;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.sp-report-card p {
  margin: 12px 0 0;
  color: #91a49a;
  font-size: 13px;
  line-height: 1.65;
}

.sp-report-meta {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--sp-line-dark);
}

.sp-report-meta div {
  display: grid;
  gap: 3px;
}

.sp-report-meta span {
  color: #71847b;
  font-size: 10px;
}

.sp-report-meta code {
  color: #bfcec6;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.sp-report-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px solid rgba(40, 220, 148, .32);
  border-radius: 10px;
  color: var(--sp-green-soft);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

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

.sp-metric-card {
  padding: 21px;
}

.sp-metric-card strong {
  display: block;
  margin-top: 18px;
  color: var(--sp-text);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.sp-metric-card p {
  margin: 9px 0 0;
  color: var(--sp-muted);
  font-size: 11px;
  line-height: 1.55;
}

.sp-proof-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.sp-proof-note {
  padding: 26px;
}

.sp-proof-note h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
}

.sp-proof-note h3::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  background: #d8f7e8;
  color: #075e3e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.sp-proof-note--limit h3::before {
  content: "!";
  background: #fae8c7;
  color: #754c08;
}

.sp-proof-note ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sp-proof-note li {
  position: relative;
  padding-left: 16px;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.sp-proof-note li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7e8b85;
  content: "";
}

/* Process */
.sp-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: spflow;
}

.sp-flow__card {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--sp-line-dark);
  border-radius: 18px;
  background: var(--sp-ink-2);
  counter-increment: spflow;
}

.sp-flow__card::after {
  position: absolute;
  right: 16px;
  bottom: -17px;
  color: rgba(255, 255, 255, .04);
  content: "0" counter(spflow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 88px;
  font-weight: 700;
}

.sp-flow__code {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(40, 220, 148, .2);
  border-radius: 7px;
  color: var(--sp-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.sp-flow__card h3 {
  position: relative;
  z-index: 1;
  margin: 48px 0 0;
  color: #f1faf5;
  font-size: 20px;
  letter-spacing: -.03em;
}

.sp-flow__card p {
  position: relative;
  z-index: 1;
  margin: 11px 0 0;
  color: #8da198;
  font-size: 13px;
  line-height: 1.65;
}

.sp-runtime-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(40, 220, 148, .23);
  border-radius: 16px;
  background: rgba(40, 220, 148, .06);
}

.sp-runtime-note strong {
  color: var(--sp-green-soft);
  font-size: 14px;
}

.sp-runtime-note p {
  max-width: 730px;
  margin: 0;
  color: #96aaa0;
  font-size: 12px;
  line-height: 1.65;
}

/* Compatibility */
.sp-compatible {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 64px;
}

.sp-compatible h2 {
  margin: 0;
  color: var(--sp-text);
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  letter-spacing: -.055em;
  line-height: 1.04;
}

.sp-compatible p {
  margin: 20px 0 0;
  color: var(--sp-muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.sp-chip {
  display: flex;
  min-width: 0;
  min-height: 78px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--sp-line);
  border-radius: 13px;
  background: var(--sp-white);
  font-size: 12px;
  font-weight: 800;
}

.sp-chip__dot {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--sp-ink);
  color: var(--sp-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

/* Install */
.sp-install-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.sp-install-copy h2 {
  margin: 0;
  color: var(--sp-text);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  letter-spacing: -.06em;
  line-height: 1.03;
}

.sp-install-copy > p {
  margin: 22px 0 0;
  color: var(--sp-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sp-install-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sp-install-points li {
  display: flex;
  gap: 10px;
  color: #3c4a44;
  font-size: 13px;
}

.sp-install-points li::before {
  color: var(--sp-green-dark);
  content: "✓";
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.sp-terminal {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #24352e;
  border-radius: 20px;
  background: #08130f;
  box-shadow: 0 32px 80px rgba(21, 29, 25, .2);
}

.sp-terminal__bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #0d1c17;
}

.sp-terminal__lights {
  display: flex;
  gap: 6px;
}

.sp-terminal__lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42544c;
}

.sp-terminal__lights i:first-child {
  background: #d26b5e;
}

.sp-terminal__lights i:nth-child(2) {
  background: #d9a856;
}

.sp-terminal__lights i:last-child {
  background: #51b983;
}

.sp-terminal__title {
  color: #70857a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-install-tabs {
  display: flex;
  gap: 7px;
  padding: 18px 18px 0;
}

.sp-install-tabs button {
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: transparent;
  color: #72877d;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
}

.sp-install-tabs button.active {
  border-color: rgba(40, 220, 148, .35);
  background: rgba(40, 220, 148, .09);
  color: var(--sp-green-soft);
}

.sp-command {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 27px 22px 30px;
}

.sp-command__prompt {
  color: var(--sp-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.sp-command code {
  min-width: 0;
  color: #d9e7df;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.sp-copy {
  min-height: 35px;
  padding: 0 10px;
  border: 1px solid rgba(40, 220, 148, .3);
  border-radius: 8px;
  background: rgba(40, 220, 148, .08);
  color: var(--sp-green-soft);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
}

.sp-terminal__note {
  margin: 0;
  padding: 0 22px 24px 46px;
  color: #6f8379;
  font-size: 10px;
  line-height: 1.6;
}

/* Pricing */
.sp-price-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(440px, .88fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.sp-price-copy h2 {
  margin: 0;
  color: #f4fcf8;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  letter-spacing: -.06em;
  line-height: 1.03;
}

.sp-price-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #91a59b;
  font-size: 15px;
  line-height: 1.75;
}

.sp-price-card {
  min-width: 0;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(40, 220, 148, .3);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0, rgba(40, 220, 148, .12), transparent 18rem),
    #0e1f19;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
}

.sp-price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sp-price-card h3 {
  margin: 0;
  color: #f2fbf6;
  font-size: 22px;
  letter-spacing: -.03em;
}

.sp-price-badge {
  padding: 6px 8px;
  border-radius: 7px;
  background: var(--sp-green);
  color: #052316;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.sp-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.sp-tier-option,
.sp-billing-option {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
  color: #91a49a;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color .2s, background-color .2s, color .2s, box-shadow .2s;
}

.sp-tier-option:hover,
.sp-tier-option:focus-visible,
.sp-tier-option.active,
.sp-billing-option:hover,
.sp-billing-option:focus-visible,
.sp-billing-option.active {
  border-color: var(--sp-green);
  background: rgba(40, 220, 148, .09);
  color: #effaf5;
  box-shadow: inset 0 0 0 1px rgba(40, 220, 148, .15);
}

.sp-tier-name {
  font-size: 11px;
  font-weight: 700;
}

.sp-tier-price {
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
}

.sp-tier-meta,
.sp-billing-option small {
  color: #6f8379;
  font-size: 10px;
  line-height: 1.45;
}

.sp-tier-option.active .sp-tier-meta,
.sp-billing-option.active small {
  color: #a9d8c1;
}

.sp-billing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.sp-billing-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  text-align: left;
}

.sp-plan-summary {
  margin: 15px 0 0;
  color: #b8dacc;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .sp-tier-grid,
  .sp-billing-options {
    grid-template-columns: 1fr;
  }

  .sp-billing-option {
    align-items: flex-start;
  }
}

.sp-price-list {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--sp-line-dark);
  list-style: none;
}

.sp-price-list li {
  display: flex;
  gap: 10px;
  color: #a7b9b0;
  font-size: 12px;
  line-height: 1.55;
}

.sp-price-list li::before {
  color: var(--sp-green);
  content: "✓";
  font-family: "IBM Plex Mono", monospace;
}

.sp-price-card .sp-button {
  width: 100%;
  margin-top: 28px;
}

.sp-price-disclaimer {
  margin: 13px 0 0;
  color: #6f8278;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

/* FAQ */
.sp-faq {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
  gap: 70px;
}

.sp-faq h2 {
  position: sticky;
  top: 120px;
  margin: 0;
  color: var(--sp-text);
  font-size: clamp(2.5rem, 4.7vw, 4.2rem);
  letter-spacing: -.06em;
  line-height: 1.02;
}

.sp-faq__list {
  border-top: 1px solid var(--sp-line);
}

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

.sp-faq summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--sp-text);
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.sp-faq summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--sp-line);
  border-radius: 50%;
  content: "+";
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.sp-faq details[open] summary::after {
  content: "−";
}

.sp-faq details p {
  max-width: 700px;
  margin: -8px 50px 30px 0;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Footer */
.sp-footer {
  border-top: 1px solid var(--sp-line-dark);
  background: var(--sp-ink);
  color: #c6d3cd;
}

.sp-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(120px, .45fr));
  gap: 36px;
  padding-block: 62px;
}

.sp-footer__statement {
  max-width: 420px;
  margin: 18px 0 0;
  color: #788c82;
  font-size: 13px;
  line-height: 1.7;
}

.sp-footer h3 {
  margin: 0 0 16px;
  color: #eff9f4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-footer__links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.sp-footer__links a {
  color: #879a91;
  font-size: 12px;
  text-decoration: none;
}

.sp-footer__links a:hover {
  color: var(--sp-green-soft);
}

.sp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 30px;
  border-top: 1px solid var(--sp-line-dark);
  color: #5f7369;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: 1.5;
}

/* Scroll reveal only after JS has been detected. */
.js .sp-page .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .sp-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 980px) {
  .sp-hero__grid,
  .sp-evidence-grid,
  .sp-compatible,
  .sp-install-layout,
  .sp-price-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .sp-hero__grid {
    gap: 58px;
    padding-block: 82px;
  }

  .sp-signal {
    width: min(100%, 680px);
  }

  .sp-section-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

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

  .sp-compatible {
    gap: 40px;
  }

  .sp-install-layout,
  .sp-price-shell {
    gap: 52px;
  }

  .sp-faq {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .sp-faq h2 {
    position: static;
  }

  .sp-footer__top {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(100px, .5fr));
  }
}

@media (max-width: 760px) {
  .sp-shell {
    width: min(100% - 28px, 1180px);
  }

  .sp-nav__inner {
    min-height: 64px;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-block: 10px 9px;
  }

  .sp-logo {
    flex: 1;
  }

  .sp-nav__actions {
    gap: 7px;
  }

  .sp-lang {
    max-width: 92px;
    padding: 8px;
  }

  .sp-nav__cta {
    min-height: 36px;
    padding-inline: 11px;
  }

  .sp-nav__links {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1px;
    scrollbar-width: none;
  }

  .sp-nav__links::-webkit-scrollbar {
    display: none;
  }

  .sp-nav__links a {
    padding: 5px 9px;
    font-size: 11px;
  }

  .sp-hero__grid {
    min-height: auto;
    padding-block: 66px 74px;
  }

  .sp-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.5rem);
  }

  .sp-hero__trust {
    gap: 14px 22px;
  }

  .sp-proof-ribbon__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 14px;
  }

  .sp-proof-ribbon a {
    grid-column: 2;
  }

  .sp-section {
    scroll-margin-top: 116px;
  }

  .sp-proof-notes,
  .sp-chart-legend {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .sp-runtime-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .sp-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .sp-nav__cta {
    display: none;
  }

  .sp-hero__actions,
  .sp-button {
    width: 100%;
  }

  .sp-hero__actions .sp-button {
    width: 100%;
  }

  .sp-signal__legend {
    align-items: flex-start;
    flex-direction: column;
  }

  .sp-signal__row {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .sp-signal__row strong {
    text-align: left;
  }

  .sp-flow,
  .sp-page .plan-options {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .sp-section {
    padding-block: 68px;
  }

  .sp-metric-card {
    padding: 16px;
  }

  .sp-metric-card strong {
    font-size: 1.45rem;
  }

  .sp-flow__card {
    min-height: 205px;
  }

  .sp-flow__card h3 {
    margin-top: 30px;
  }

  .sp-chip {
    min-height: 64px;
    padding: 11px;
  }

  .sp-stack {
    height: 54px;
  }

  .sp-stack__cache {
    padding-inline: 12px;
    font-size: 10px;
  }

  .sp-command {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sp-copy {
    grid-column: 2;
    justify-self: start;
  }

  .sp-terminal__note {
    padding-left: 22px;
  }

  .sp-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .sp-footer__brand {
    grid-column: auto;
  }

  .sp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sp-page *,
  .sp-page *::before,
  .sp-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .sp-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Monthly launch offer — keeps the evidence-led, industrial green language. */
.sp-page .plan-offer {
  color: #8cf0c0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sp-price-promo {
  position: relative;
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 16px 18px 16px 20px;
  overflow: hidden;
  border: 1px solid rgba(40, 220, 148, .55);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(40, 220, 148, .17), rgba(40, 220, 148, .045)),
    #07140f;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .045);
}

.sp-price-promo::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--sp-green);
  content: "";
}

.sp-price-promo__eyebrow {
  color: var(--sp-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sp-price-promo strong {
  color: #f1fff8;
  font-size: 16px;
  line-height: 1.35;
}

.sp-price-promo__detail {
  color: #a7b9b0;
  font-size: 11px;
  line-height: 1.55;
}

.sp-price-promo code {
  padding: 2px 5px;
  border: 1px solid rgba(40, 220, 148, .35);
  border-radius: 5px;
  background: rgba(2, 13, 9, .7);
  color: #b3f8d6;
  font-family: "IBM Plex Mono", monospace;
  font-size: .95em;
  font-weight: 700;
}

@media (max-width: 560px) {
  .sp-price-promo {
    padding: 15px 15px 15px 18px;
  }

  .sp-price-promo strong {
    font-size: 15px;
  }
}

/* Inline OpenRouter evidence record. */
.sf-evidence-record {
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 45px #1d38550c;
  overflow: hidden;
}

.sf-evidence-record img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #f5f8fc;
}

.sf-evidence-record figcaption {
  margin: 14px 2px 0;
  color: #6e7784;
  font-size: 11px;
  line-height: 1.7;
}


/* Installation hierarchy: one clear reading path on every screen size. */
body.sf-page .sp-install-layout {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(40px, 6vw, 84px);
}

body.sf-page .sp-install-copy {
  padding-top: clamp(8px, 2vw, 24px);
}

body.sf-page .sp-install-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.75rem, 4.4vw, 4.1rem);
  line-height: .98;
}

body.sf-page .sp-install-copy > p {
  max-width: 38rem;
  margin-top: 24px;
  font-size: 15px;
}

body.sf-page .sp-install-points {
  max-width: 34rem;
  gap: 10px;
  margin-top: 28px;
}

body.sf-page .sp-install-points li {
  align-items: flex-start;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  background: #f8faff;
  line-height: 1.5;
}

body.sf-page .sp-install-points li::before {
  flex: 0 0 auto;
  margin-top: 1px;
}

body.sf-page .sp-terminal {
  align-self: start;
  border-color: #dce5f1;
  border-radius: 16px;
  background: #f7f9fc;
  box-shadow: 0 22px 50px #1f4c7d12;
}

body.sf-page .sp-terminal__bar {
  min-height: 56px;
  padding: 0 18px;
  border-color: #dce5f1;
  background: #eef3fa;
}

body.sf-page .sp-terminal__title {
  color: #506680;
  font-size: 10px;
}

body.sf-page .sp-install-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 16px 0;
}

body.sf-page .sp-install-tabs button {
  min-height: 42px;
  padding: 9px 10px;
  border-color: #dce5f1;
  border-radius: 8px;
  background: #fff;
  color: #61728a;
  text-align: center;
  line-height: 1.3;
  overflow-wrap: anywhere;
  white-space: normal;
}

body.sf-page .sp-install-tabs button.active {
  border-color: #7a9ddb;
  background: #e2ecff;
  color: #1f58b4;
}

body.sf-page .sp-command {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px 12px;
  margin: 16px;
  padding: 16px;
  border: 1px solid #e1e8f2;
  border-radius: 12px;
  background: #fff;
}

body.sf-page .sp-command__prompt {
  padding-top: 11px;
  color: #276bf1;
}

body.sf-page .sp-command code {
  display: block;
  padding: 10px 12px;
  border: 1px solid #e1e8f2;
  border-radius: 8px;
  background: #f5f8fc;
  color: #1e385f;
  font-size: clamp(11px, 1.15vw, 12px);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

body.sf-page .sp-copy {
  grid-column: 2;
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
  border-color: #c1d4f6;
  border-radius: 7px;
  background: #e2ecff;
  color: #2258b1;
}

body.sf-page .sp-terminal__note {
  padding: 0 18px 20px;
  color: #69788d;
}

body.sf-page .sp-terminal__note a {
  color: #2258b1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  body.sf-page .sp-install-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  body.sf-page .sp-install-copy {
    padding-top: 0;
  }

  body.sf-page .sp-install-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    line-height: 1;
  }

  body.sf-page .sp-install-copy > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  body.sf-page .sp-install-points {
    gap: 8px;
    margin-top: 22px;
  }

  body.sf-page .sp-install-points li {
    padding: 10px 12px;
    font-size: 12px;
  }

  body.sf-page .sp-terminal {
    border-radius: 14px;
  }

  body.sf-page .sp-terminal__bar {
    min-height: 50px;
    padding-inline: 14px;
  }

  body.sf-page .sp-install-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 12px 0;
  }

  body.sf-page .sp-install-tabs button {
    min-height: 48px;
    padding: 8px;
    font-size: 9px;
    text-align: left;
  }

  body.sf-page .sp-command {
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 8px;
    margin: 12px;
    padding: 13px;
  }

  body.sf-page .sp-command code {
    padding: 10px;
    font-size: 11px;
    line-height: 1.65;
  }

  body.sf-page .sp-copy {
    grid-column: 2;
    min-height: 38px;
  }

  body.sf-page .sp-terminal__note {
    padding: 0 14px 17px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  body.sf-page .sp-install-tabs {
    gap: 6px;
    padding: 10px 10px 0;
  }

  body.sf-page .sp-install-tabs button {
    min-height: 44px;
    font-size: 8px;
  }

  body.sf-page .sp-command {
    margin: 10px;
    padding: 11px;
  }

  body.sf-page .sp-command code {
    font-size: 10px;
  }
}


/* Evidence image affordance: inline preview opens the original at full size. */
body.sf-page .sf-evidence-record__link {
  display: block;
  cursor: zoom-in;
  border-radius: 10px;
}

body.sf-page .sf-evidence-record__link img {
  transition: transform .2s ease;
}

body.sf-page .sf-evidence-record__link:hover img {
  transform: scale(1.015);
}

body.sf-page .sf-evidence-record__link:focus-visible {
  outline: 3px solid #276bf1;
  outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
  body.sf-page .sf-evidence-record__link img {
    transition: none;
  }

  body.sf-page .sf-evidence-record__link:hover img {
    transform: none;
  }
}
