:root {
  color-scheme: dark;
  --bg: #0a0b0b;
  --bg-soft: #0d0f0e;
  --card: #111313;
  --card-raised: #161918;
  --card-soft: #1a1d1c;
  --border: rgba(226, 233, 228, 0.1);
  --border-strong: rgba(226, 233, 228, 0.18);
  --text: #f4f5f2;
  --text-soft: #d0d4d1;
  --muted: #a1a7a3;
  --lime: #b7ff4a;
  --lime-dark: #131b09;
  --keep: #78d69a;
  --replace: #e9b45f;
  --remove: #ed7a72;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 14px 38px rgba(0, 0, 0, 0.22);
  --section-space: 92px;
  --section-space-mobile: 56px;
}

@property --hero-score {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 36%);
  mask-image: linear-gradient(to bottom, black, transparent 36%);
}

::selection {
  background: var(--lime);
  color: var(--lime-dark);
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--lime);
  color: var(--lime-dark);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 11, 11, 0.75);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.topbar-inner,
.footer-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.brand-glyph,
.window-mark {
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(183, 255, 74, 0.18);
  background: #050706;
  font-weight: 900;
}

.brand-glyph img,
.window-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.34);
}

.brand-glyph {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  font-size: 14px;
}

.nav-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-cta span {
  color: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 100svh);
  overflow: hidden;
  align-items: center;
  padding: 120px 0 88px;
  border-bottom: 1px solid var(--border);
}

.hero-light {
  position: absolute;
  top: -340px;
  right: -210px;
  width: 920px;
  height: 920px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 74, 0.095), rgba(183, 255, 74, 0.018) 43%, transparent 70%);
  filter: blur(12px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
  column-gap: 30px;
}

.hero-copy {
  grid-column: 1 / span 5;
}

.hero-window {
  grid-column: 6 / span 7;
  border-color: rgba(162, 178, 168, 0.28);
  background: linear-gradient(180deg, #131615 0%, #0e100f 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(183, 255, 74, 0.025), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.eyebrow,
.section-kicker {
  color: var(--lime);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.135em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.eyebrow > span,
.access-copy .section-kicker > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(183, 255, 74, 0.075);
}

h1 {
  max-width: 510px;
  margin-bottom: 21px;
  font-size: clamp(4rem, 5.1vw, 4.55rem);
  font-weight: 780;
  letter-spacing: -0.058em;
  line-height: 0.945;
}

.hero-body {
  max-width: 510px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-copy .button {
  min-width: 226px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--lime-dark);
  box-shadow: 0 12px 34px rgba(183, 255, 74, 0.11);
}

.button-primary:hover {
  background: #c3ff68;
  box-shadow: 0 17px 44px rgba(183, 255, 74, 0.16);
}

.hero .button:active {
  transform: translateY(0) scale(0.985);
}

.button-secondary {
  border-color: var(--border-strong);
  background: var(--card-raised);
  color: var(--text);
}

.button-secondary:hover {
  border-color: #4c554f;
  background: #1b1f1d;
}

.platforms {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.platforms i {
  margin-inline: 7px;
  color: #4c514e;
  font-style: normal;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  align-items: center;
  margin-top: 16px;
}

.privacy-proof {
  margin: 0;
  color: #858c87;
  font-size: 11px;
  font-weight: 620;
}

.privacy-proof i {
  margin-inline: 6px;
  color: #424844;
  font-style: normal;
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.window-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: #101211;
}

.window-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}

.window-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 13px;
}

.window-brand > div {
  display: flex;
  flex-direction: column;
}

.window-brand strong {
  font-size: 12px;
  letter-spacing: -0.015em;
}

.window-brand small {
  color: var(--muted);
  font-size: 8px;
}

.sample-badge,
.complete-pill,
.audit-complete {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sample-badge {
  padding: 6px 9px;
  border: 1px solid var(--border-strong);
  background: var(--card-raised);
  color: var(--text-soft);
}

.hero-window .window-bar {
  background: rgba(13, 16, 14, 0.94);
}

.hero-ui {
  padding: 18px;
}

.hero-ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.score-lockup {
  display: flex;
  gap: 13px;
  align-items: center;
}

.score-ring {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-content: center;
  border-radius: 50%;
  text-align: center;
}

.score-ring::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: inherit;
  background: var(--card);
  content: "";
}

.score-ring-64 {
  --hero-score: 64;
  background: conic-gradient(var(--lime) 0 calc(var(--hero-score) * 1%), #252a27 calc(var(--hero-score) * 1%) 100%);
}

.hero-window .score-ring {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.score-ring strong,
.score-ring span {
  position: relative;
  z-index: 1;
}

.score-ring strong {
  font-size: 22px;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.score-ring span {
  color: var(--muted);
  font-size: 7px;
}

.score-lockup > div:last-child {
  display: flex;
  flex-direction: column;
}

.score-lockup > div:last-child > span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.score-lockup > div:last-child > strong {
  font-size: 13px;
}

.hero-window .score-lockup > div:last-child > strong {
  font-size: 14px;
}

.score-lockup > div:last-child > small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.audit-complete {
  color: var(--keep);
}

.hero-window .audit-complete {
  padding: 6px 8px;
  border: 1px solid rgba(120, 214, 154, 0.18);
  background: rgba(120, 214, 154, 0.045);
}

.audit-complete i,
.complete-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px rgba(120, 214, 154, 0.42);
}

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

.mini-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.84;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-soft);
}

.hero-window .mini-photo {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.sample-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: #282d2a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.profile-a .photo-1 {
  background-image: url("/assets/profiles/profile-a/web/photo-1.jpg");
  background-position: 50% 35%;
}

.profile-a .photo-2 {
  background-image: url("/assets/profiles/profile-a/web/photo-2.jpg");
  background-position: 50% 42%;
}

.profile-a .photo-3 {
  background-image: url("/assets/profiles/profile-a/web/photo-3.jpg");
  background-position: 58% 50%;
  background-size: auto 88%;
  background-color: #111411;
}

.profile-a .photo-4 {
  background-image: url("/assets/profiles/profile-a/web/photo-4.jpg");
  background-position: 50% 42%;
}

.profile-b .photo-1 {
  background-image: url("/assets/profiles/profile-b/web/photo-1.jpg");
  background-position: 50% 34%;
}

.profile-b .photo-2 {
  background-image: url("/assets/profiles/profile-b/web/photo-2.jpg");
  background-position: 50% 42%;
}

.profile-b .photo-3 {
  background-image: url("/assets/profiles/profile-b/web/photo-3.jpg");
  background-position: 50% 44%;
}

.profile-b .photo-4 {
  background-image: url("/assets/profiles/profile-b/web/photo-4.jpg");
  background-position: 50% 35%;
}

.profile-c .photo-1 {
  background-image: url("/assets/profiles/profile-c/web/photo-1.jpg");
  background-position: 46% 32%;
}

.profile-c .photo-2 {
  background-image: url("/assets/profiles/profile-c/web/photo-2.jpg");
  background-position: 46% 40%;
  background-size: contain;
  background-color: #111411;
}

.profile-c .photo-3 {
  background-image: url("/assets/profiles/profile-c/web/photo-3.jpg");
  background-position: 50% 31%;
}

.profile-c .photo-4 {
  background-image: url("/assets/profiles/profile-c/web/photo-4.jpg");
  background-position: 37% 42%;
  background-size: contain;
  background-color: #111411;
}

.mini-photo .sample-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
}

.mini-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  background: linear-gradient(to top, rgba(5, 7, 6, 0.94), transparent);
  content: "";
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-keep {
  color: var(--keep);
}

.status-replace {
  color: var(--replace);
}

.status-remove {
  color: var(--remove);
}

.mini-photo > .status {
  position: absolute;
  z-index: 2;
  bottom: 9px;
  left: 9px;
}

.hero-window .mini-photo > .status {
  padding: 4px 6px;
  border: 1px solid currentColor;
  background: rgba(7, 9, 8, 0.76);
  line-height: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.mini-photo > b {
  position: absolute;
  right: 9px;
  bottom: 7px;
  z-index: 2;
  font-size: 14px;
  letter-spacing: -0.04em;
}

.hero-insight-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8px;
  margin-top: 8px;
}

.recommendation-card,
.mini-scores {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0d100e;
}

.recommendation-card {
  position: relative;
  overflow: hidden;
  padding: 12px 13px;
  border-color: #4c5b3c;
}

.hero-window .recommendation-card::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: var(--lime);
  content: "";
  transform: scaleY(0);
  transform-origin: center;
}

.recommendation-card > span {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recommendation-card > span i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 5px;
  background: rgba(183, 255, 74, 0.12);
  font-style: normal;
}

.recommendation-card strong {
  display: block;
  font-size: 11px;
  line-height: 1.35;
}

.recommendation-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.mini-scores {
  padding: 10px 12px;
}

.mini-scores > div,
.score-rows > div {
  display: grid;
  align-items: center;
}

.mini-scores > div {
  grid-template-columns: 80px 1fr 22px;
  gap: 7px;
  min-height: 25px;
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
}

.mini-scores i,
.score-rows i {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #292e2b;
}

.mini-scores i b,
.score-rows i b {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: var(--lime);
}

.hero-window .mini-scores i b {
  transform-origin: left center;
}

.bar-54 {
  width: 54%;
}

.bar-60 {
  width: 60%;
}

.bar-62 {
  width: 62%;
}

.bar-78 {
  width: 78%;
}

.bar-81 {
  width: 81%;
}

.mini-scores strong {
  color: var(--text-soft);
  font-size: 8px;
  text-align: right;
}

.section {
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 3.5vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.access-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 3.8vw, 3.4rem);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.01;
}

.blind-section,
.compare-section,
.checks-section {
  background: var(--bg-soft);
}

.blind-section {
  position: relative;
  overflow: hidden;
}

.blind-section::before {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 760px;
  height: 560px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(183, 255, 74, 0.045), transparent 67%);
  content: "";
  transform: translateX(-50%);
}

.blind-section > .container {
  position: relative;
  z-index: 1;
}

.blind-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 36px;
}

.blind-heading h2 {
  max-width: 700px;
}

.blind-heading > p {
  max-width: 410px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.blind-card {
  --blind-accent: #a9baff;
  --blind-accent-soft: rgba(169, 186, 255, 0.065);
  --blind-accent-border: rgba(169, 186, 255, 0.18);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 200px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--blind-accent-soft), transparent 38%), var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.blind-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blind-accent), transparent 70%);
  content: "";
  opacity: 0.52;
}

.blind-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(201, 205, 202, 0.42);
  content: attr(data-step);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.blind-card-favorite {
  --blind-accent: #d8bc77;
  --blind-accent-soft: rgba(216, 188, 119, 0.06);
  --blind-accent-border: rgba(216, 188, 119, 0.19);
}

.blind-card-apps {
  --blind-accent: #9bb4a5;
  --blind-accent-soft: rgba(155, 180, 165, 0.06);
  --blind-accent-border: rgba(155, 180, 165, 0.18);
}

.process-grid li:hover,
.checks-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: #151817;
}

.blind-icon,
.process-icon {
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  background: var(--card-raised);
  color: var(--lime);
}

.blind-icon {
  width: 44px;
  height: 44px;
  border-color: var(--blind-accent-border);
  border-radius: 12px;
  background: var(--blind-accent-soft);
  color: var(--blind-accent);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.blind-icon svg,
.process-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.blind-card > div > span {
  display: block;
  margin: 2px 0 24px;
  color: var(--blind-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blind-card h3 {
  max-width: 270px;
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.blind-card p {
  max-width: 285px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

@media (hover: hover) and (pointer: fine) {
  .blind-card:hover {
    transform: translateY(-3px);
    border-color: var(--blind-accent-border);
    background: linear-gradient(145deg, var(--blind-accent-soft), transparent 52%), #151817;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  }

  .blind-card:hover .blind-icon {
    transform: translateY(-1px);
    border-color: var(--blind-accent);
  }
}

.decision-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 44px 1.18fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(183, 255, 74, 0.025), transparent 34%), #101211;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.decision-panel::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 31px;
  background: linear-gradient(to bottom, transparent, rgba(183, 255, 74, 0.34));
  content: "";
}

.decision-panel > div:first-child {
  display: flex;
  flex-direction: column;
}

.decision-panel > div:first-child span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-panel > div:first-child strong {
  font-size: 14px;
  line-height: 1.35;
}

.decision-panel > div:first-child p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.decision-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(183, 255, 74, 0.2);
  border-radius: 50%;
  background: rgba(183, 255, 74, 0.035);
  color: var(--lime);
  font-size: 17px;
}

.decision-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.decision-pills span {
  position: relative;
  display: grid;
  min-height: 48px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.decision-pills span::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.34;
}

.decision-keep {
  color: var(--keep);
}

.decision-replace {
  color: var(--replace);
}

.decision-remove {
  color: var(--remove);
}

.decision-fix {
  border-color: #4a583a !important;
  background: rgba(183, 255, 74, 0.045) !important;
  color: var(--lime);
}

.heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.heading-split > p {
  max-width: 380px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.audit-dashboard {
  overflow: hidden;
  background: #101211;
}

.dashboard-bar {
  min-height: 70px;
  padding-inline: 22px;
}

.dashboard-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}

.dashboard-actions > span {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.dashboard-actions .complete-pill {
  border-color: rgba(120, 214, 154, 0.2);
  color: var(--keep);
}

.audit-score-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(108deg, rgba(183, 255, 74, 0.055), transparent 43%), #0d100e;
}

.audit-score-primary {
  display: flex;
  min-width: 0;
  gap: 18px;
  align-items: center;
}

.audit-score-ring {
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.audit-score-ring::before {
  inset: 6px;
  background: #111411;
}

.audit-score-ring strong {
  font-size: 29px;
}

.audit-score-ring span {
  margin-top: 3px;
  font-size: 8px;
}

.audit-score-primary > div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.audit-score-primary > div:last-child > span,
.audit-score-summary span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-score-primary > div:last-child > strong {
  margin: 3px 0 4px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.audit-score-primary p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.audit-score-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.audit-score-summary > div {
  position: relative;
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  align-content: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
}

.audit-score-summary span {
  grid-column: 1 / -1;
  font-size: 7px;
}

.audit-score-summary strong {
  font-size: 12px;
}

.audit-score-summary b {
  color: var(--text-soft);
  font-size: 13px;
}

.audit-score-summary > div:last-child b {
  color: var(--replace);
}

.dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.58fr);
  border-bottom: 1px solid var(--border);
}

.photo-analysis-panel {
  padding: 22px;
  border-right: 1px solid var(--border);
}

.module-heading {
  display: flex;
  min-height: 45px;
  align-items: flex-start;
  justify-content: space-between;
}

.module-heading > div {
  display: flex;
  flex-direction: column;
}

.module-heading span,
.fixes-heading span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-heading strong {
  margin-top: 2px;
  font-size: 13px;
}

.module-heading > span {
  padding-top: 3px;
}

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

.dashboard-photo-card {
  --photo-verdict: var(--text-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0b0d0c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.dashboard-photo-card[data-verdict="keep"] {
  --photo-verdict: var(--keep);
}

.dashboard-photo-card[data-verdict="replace"] {
  --photo-verdict: var(--replace);
}

.dashboard-photo-card[data-verdict="remove"] {
  --photo-verdict: var(--remove);
}

.dashboard-photo-card::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--photo-verdict), transparent);
  content: "";
  opacity: 0.5;
}

.dashboard-photo-card .sample-photo {
  aspect-ratio: 1.28;
  background-size: cover;
}

.dashboard-photo-card .sample-photo::after {
  position: absolute;
  inset: 56% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(6, 8, 7, 0.76));
  content: "";
}

.photo-index,
.photo-rating {
  position: absolute;
  top: 10px;
  display: grid;
  min-width: 29px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  background: rgba(7, 9, 8, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text-soft);
  font-size: 8px;
  font-weight: 850;
}

.photo-index {
  left: 10px;
}

.photo-rating {
  right: 10px;
  border-color: color-mix(in srgb, var(--photo-verdict) 38%, transparent);
  color: var(--photo-verdict);
}

.dashboard-photo-card > div:last-child {
  min-height: 101px;
  padding: 13px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 60%);
}

.dashboard-photo-card .status {
  gap: 4px;
  margin-bottom: 7px;
  padding: 4px 6px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.018);
  line-height: 1;
}

.dashboard-photo-card .status::before {
  font-size: 8px;
}

.dashboard-photo-card .status-keep::before {
  content: "✓";
}

.dashboard-photo-card .status-replace::before {
  content: "↻";
}

.dashboard-photo-card .status-remove::before {
  content: "×";
}

.dashboard-photo-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: -0.015em;
}

.dashboard-photo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .dashboard-photo-card:hover {
    z-index: 1;
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--photo-verdict) 40%, var(--border));
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  }
}

.score-panel {
  min-width: 0;
  padding: 22px;
  background: #0e100f;
}

.score-module-heading {
  min-height: 54px;
}

.score-panel-head {
  display: flex;
  min-height: 81px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.score-panel-head > div:first-child {
  display: flex;
  flex-direction: column;
}

.score-panel-head > div:first-child > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-panel-head > div:first-child > strong {
  font-size: 38px;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.score-panel-head small {
  color: var(--muted);
  font-size: 10px;
}

.score-ring-small {
  width: 54px;
  height: 54px;
}

.score-ring-small strong {
  font-size: 16px;
}

.score-rows {
  padding: 0 0 15px;
  border-bottom: 1px solid var(--border);
}

.score-rows > div {
  grid-template-columns: 116px 1fr 28px;
  gap: 10px;
  min-height: 36px;
  color: var(--muted);
  font-size: 9px;
}

.score-rows strong {
  color: var(--text-soft);
  font-size: 10px;
  text-align: right;
}

.score-rows i {
  height: 6px;
  background: #252a27;
}

.score-rows i b {
  background: linear-gradient(90deg, #88b947, var(--lime));
  box-shadow: 0 0 12px rgba(183, 255, 74, 0.12);
}

.score-rows > div:nth-child(4) i b {
  background: linear-gradient(90deg, #b58a43, var(--replace));
  box-shadow: none;
}

.finding-card {
  position: relative;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.016);
}

.finding-card > span {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finding-card > span i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-size: 9px;
  font-style: normal;
}

.finding-card > strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.finding-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.48;
}

.finding-issue {
  margin-top: 13px;
  border-color: rgba(216, 188, 119, 0.2);
  background: linear-gradient(135deg, rgba(216, 188, 119, 0.05), transparent 58%);
}

.finding-issue > span {
  color: #d8bc77;
}

.finding-fix {
  overflow: hidden;
  margin-top: 9px;
  padding: 16px;
  border-color: #536441;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(183, 255, 74, 0.075), rgba(183, 255, 74, 0.018));
  box-shadow: inset 3px 0 0 var(--lime), 0 14px 32px rgba(0, 0, 0, 0.16);
}

.finding-fix > span {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--lime);
}

.finding-fix > span i {
  font-style: normal;
}

.finding-fix > strong {
  font-size: 16px;
}

.finding-fix > small {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(183, 255, 74, 0.1);
  color: var(--lime);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fixes-module {
  padding: 21px 22px 22px;
  background: linear-gradient(180deg, #121513, #0f1110);
}

.fixes-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fixes-heading small {
  color: var(--muted);
  font-size: 8px;
}

.fixes-grid {
  display: grid;
  grid-template-columns: 1.22fr repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixes-grid li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  min-height: 76px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0d100e;
}

.fixes-grid li:first-child {
  border-color: rgba(183, 255, 74, 0.3);
  background: linear-gradient(135deg, rgba(183, 255, 74, 0.07), #0d100e 68%);
  box-shadow: inset 0 -1px 0 rgba(183, 255, 74, 0.22);
}

.fixes-grid li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: rgba(183, 255, 74, 0.08);
  color: var(--lime);
  font-size: 8px;
  font-weight: 850;
}

.fixes-grid li > div {
  min-width: 0;
}

.fixes-grid strong,
.fixes-grid small {
  display: block;
}

.fixes-grid strong {
  font-size: 10px;
  line-height: 1.25;
}

.fixes-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
}

.audit-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 19px 21px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
}

.audit-cta > div {
  min-width: 0;
}

.audit-cta > div span {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 720;
}

.audit-cta > div p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.audit-cta .button {
  flex: 0 0 auto;
}

.compare-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 64px;
  align-items: end;
}

.compare-heading > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.comparison-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.profile-board {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #101211;
  box-shadow: var(--shadow-card);
}

.profile-board::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  opacity: 0.72;
}

.board-before {
  border-color: rgba(201, 152, 147, 0.2);
  background: linear-gradient(145deg, rgba(237, 122, 114, 0.025), transparent 42%), #101211;
}

.board-before::before {
  background: linear-gradient(90deg, #b67b76, transparent 72%);
}

.board-after {
  border-color: #4d5b40;
  background: linear-gradient(145deg, rgba(183, 255, 74, 0.045), transparent 45%), #101311;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(183, 255, 74, 0.06);
}

.board-after::before {
  background: linear-gradient(90deg, var(--lime), transparent 72%);
}

.board-top {
  display: flex;
  min-height: 58px;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.board-top > div:first-child {
  display: flex;
  flex-direction: column;
}

.board-top > div:first-child > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-top > div:first-child > strong {
  margin-top: 3px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.board-state {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-state-before {
  border-color: rgba(237, 122, 114, 0.2);
  background: rgba(237, 122, 114, 0.04);
  color: #c99893;
}

.board-state-after {
  border-color: #46533b;
  background: rgba(183, 255, 74, 0.05);
  color: var(--lime);
}

.board-photo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #0a0c0b;
}

.board-photo-slot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: #111411;
}

.board-photo-row .sample-photo {
  overflow: hidden;
  aspect-ratio: 1.05;
  border-radius: 9px 9px 0 0;
}

.board-photo-row .sample-photo::before {
  position: absolute;
  inset: 50% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(5, 7, 6, 0.78));
  content: "";
}

.board-photo-row .sample-photo > span,
.board-photo-row .sample-photo > i {
  position: absolute;
  z-index: 2;
}

.board-photo-row .sample-photo > span {
  top: 6px;
  left: 6px;
  padding: 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(7, 9, 8, 0.76);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.board-photo-row .sample-photo > i {
  right: 6px;
  bottom: 6px;
  left: 6px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(183, 255, 74, 0.2);
  border-radius: 6px;
  background: rgba(6, 8, 7, 0.82);
  color: var(--lime);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.board-photo-slot figcaption {
  display: flex;
  min-height: 55px;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
}

.board-photo-slot figcaption strong,
.board-photo-slot figcaption small {
  display: block;
  overflow-wrap: anywhere;
}

.board-photo-slot figcaption strong {
  font-size: 10px;
  line-height: 1.25;
}

.board-photo-slot figcaption small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
}

.board-will-move,
.board-moved {
  border-color: rgba(183, 255, 74, 0.16);
}

.board-will-remove,
.board-remove {
  border-color: rgba(237, 122, 114, 0.2);
}

.board-replace {
  border-color: rgba(216, 188, 119, 0.22);
}

.board-replace .sample-photo > i {
  border-color: rgba(216, 188, 119, 0.3);
  color: var(--replace);
}

.board-dim::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(7, 9, 8, 0.36);
  content: "";
}

.board-remove .sample-photo {
  filter: saturate(0.45);
}

.board-remove .sample-photo > i,
.board-will-remove .sample-photo > i {
  border-color: rgba(237, 122, 114, 0.28);
  color: var(--remove);
}

.board-issues,
.board-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.board-issues span,
.board-actions span {
  display: inline-flex;
  gap: 5px;
  min-height: 31px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 750;
}

.board-issues span {
  border: 1px solid rgba(237, 122, 114, 0.16);
  background: rgba(237, 122, 114, 0.035);
  color: #c99893;
}

.board-actions span {
  border: 1px solid rgba(120, 214, 154, 0.16);
  background: rgba(120, 214, 154, 0.035);
  color: #a6cbb2;
}

.board-actions i {
  color: var(--keep);
  font-style: normal;
}

.compare-arrow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.compare-arrow span,
.compare-arrow small {
  font-weight: 800;
  text-transform: uppercase;
}

.compare-arrow span {
  color: var(--text-soft);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.compare-arrow small {
  max-width: 86px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.compare-arrow i {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(183, 255, 74, 0.24);
  border-radius: 50%;
  background: rgba(183, 255, 74, 0.04);
  color: var(--lime);
  font-size: 17px;
  font-style: normal;
}

.comparison-caption {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.section-heading-compact {
  max-width: 700px;
  margin-bottom: 34px;
}

.checks-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 64px;
  align-items: end;
}

.checks-heading > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.process-grid,
.checks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin: 0;
  padding: 0;
}

.process-grid {
  position: relative;
  gap: 16px;
  list-style: none;
}

.process-grid li {
  min-height: 226px;
  overflow: visible;
  padding: 20px;
  background: linear-gradient(145deg, rgba(183, 255, 74, 0.022), transparent 46%), #111311;
  box-shadow: var(--shadow-card);
}

.process-grid li::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 74, 0.28), transparent);
  content: "";
}

.process-meta {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
}

.process-grid .step-number {
  position: static;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.process-grid .step-number small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-status {
  padding: 5px 7px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-grid .process-icon {
  width: 48px;
  height: 48px;
  margin: 28px 0 23px;
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.process-grid h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.process-grid p {
  max-width: 230px;
  font-size: 12px;
  line-height: 1.5;
}

.process-connector {
  position: absolute;
  top: 50%;
  right: -23px;
  z-index: 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(183, 255, 74, 0.22);
  border-radius: 50%;
  background: #111411;
  color: var(--lime);
  font-size: 12px;
  transform: translateY(-50%);
}

.process-planned {
  border-style: dashed !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.012), transparent 48%), #101211 !important;
}

.process-planned::before {
  background: linear-gradient(90deg, transparent, rgba(201, 205, 202, 0.24), transparent) !important;
}

.process-planned .process-icon {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text-soft);
}

.process-trust {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.process-trust > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(120, 214, 154, 0.2);
  border-radius: 10px;
  background: rgba(120, 214, 154, 0.045);
  color: var(--keep);
}

.process-trust svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.process-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.process-trust strong {
  color: var(--text-soft);
}

.process-grid li,
.checks-grid article {
  position: relative;
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.process-grid li {
  min-height: 226px;
  padding: 20px;
}

.process-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  border-radius: 14px;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 21px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
}

.process-grid h3 {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 7px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.process-grid h3 small {
  padding: 3px 5px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.checks-grid article {
  min-height: 278px;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(145deg, rgba(183, 255, 74, 0.016), transparent 42%), #111311;
  box-shadow: var(--shadow-card);
}

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

.check-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.check-card-head span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.check-card-head .check-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.check-card-head .check-icon::before,
.check-card-head .check-icon::after {
  content: none;
}

.check-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.checks-grid h3 {
  min-height: 0;
  margin-bottom: 8px;
  font-size: 23px;
  letter-spacing: -0.035em;
  transition: color 180ms ease;
}

.checks-grid article > p {
  max-width: 510px;
  min-height: 44px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.check-signal-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.checks-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks-grid li {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 10px;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.checks-grid li::before {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #7e8a82;
  content: "";
  transition: background-color 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .checks-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(183, 255, 74, 0.2);
    background: linear-gradient(145deg, rgba(183, 255, 74, 0.045), transparent 50%), #141714;
  }

  .checks-grid article:hover .check-icon {
    transform: translateY(-1px);
    border-color: rgba(183, 255, 74, 0.32);
    background: rgba(183, 255, 74, 0.06);
  }

  .checks-grid article:hover h3 {
    color: var(--lime);
  }

  .checks-grid article:hover li {
    border-color: rgba(183, 255, 74, 0.13);
    background: rgba(183, 255, 74, 0.025);
  }

  .checks-grid article:hover li::before {
    background: var(--lime);
    transform: scale(1.15);
  }
}

.access-section {
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 8% 100%, rgba(183, 255, 74, 0.075), transparent 35%),
    var(--bg);
}

.access-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
  gap: 52px;
  align-items: start;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(183, 255, 74, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(183, 255, 74, 0.035), transparent 38%), #111411;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(183, 255, 74, 0.05);
}

.access-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent 72%);
  content: "";
  opacity: 0.54;
}

.access-copy .section-kicker {
  display: flex;
  gap: 9px;
  align-items: center;
}

.access-copy h2 {
  max-width: 620px;
  font-size: clamp(2.8rem, 3.8vw, 3.4rem);
  line-height: 1.01;
}

.access-copy > p:nth-of-type(2) {
  max-width: 520px;
  margin: 19px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.access-value-list {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.access-value-list li {
  display: grid;
  min-width: 0;
  min-height: 67px;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(8, 10, 9, 0.38);
}

.access-value-list li > i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: rgba(183, 255, 74, 0.09);
  color: var(--lime);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.access-value-list li > span,
.access-value-list strong,
.access-value-list small {
  display: block;
  min-width: 0;
}

.access-value-list strong {
  font-size: 11px;
  line-height: 1.3;
}

.access-value-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.access-preview {
  display: grid;
  max-width: 420px;
  grid-template-columns: 1fr auto;
  gap: 3px 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(183, 255, 74, 0.16);
  border-radius: 13px;
  background: rgba(10, 12, 11, 0.66);
}

.access-preview span {
  color: var(--muted);
  font-size: 10px;
}

.access-preview strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--lime);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.access-preview small {
  color: var(--text-soft);
  font-size: 9px;
}

.form-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 0;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 30%), #0a0c0b;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.form-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  content: "";
  opacity: 0.48;
}

.form-heading {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.form-heading > span {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.field {
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.field > label,
.field legend {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.35;
}

.field-number {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
}

.field input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  outline: none;
  background: #101211;
  color: var(--text);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input[type="email"]::placeholder {
  color: #676d69;
}

.field input[type="email"]:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(183, 255, 74, 0.09);
}

.field-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

.field-error {
  min-height: 0;
  margin: 0;
  color: var(--remove);
  font-size: 9px;
  line-height: 1.4;
}

.field-error:not(:empty) {
  margin-top: 6px;
}

.field.is-invalid input[type="email"] {
  border-color: rgba(237, 122, 114, 0.64);
  background: rgba(237, 122, 114, 0.025);
  box-shadow: 0 0 0 3px rgba(237, 122, 114, 0.055);
}

.choice-grid {
  display: grid;
  gap: 7px;
}

.app-choices {
  grid-template-columns: repeat(4, 1fr);
}

.payment-choices {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid label {
  min-width: 0;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #101211;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.choice-grid input:focus-visible + span {
  outline: 3px solid rgba(183, 255, 74, 0.82);
  outline-offset: 2px;
}

.choice-grid input:checked + span {
  border-color: var(--lime);
  background: rgba(183, 255, 74, 0.1);
  color: var(--text);
  box-shadow: inset 0 -2px 0 rgba(183, 255, 74, 0.24);
}

.choice-field.is-invalid .choice-grid span {
  border-color: rgba(237, 122, 114, 0.42);
}

.price-field {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(183, 255, 74, 0.17);
  border-radius: 12px;
  background: rgba(183, 255, 74, 0.025);
}

.price-field legend {
  width: auto;
  max-width: calc(100% - 12px);
  padding: 0 5px;
  background: #0b0d0c;
}

.price-field .field-hint {
  margin: -2px 0 10px;
  font-size: 9.5px;
  line-height: 1.45;
}

.form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 1px;
  box-shadow: 0 13px 34px rgba(183, 255, 74, 0.12);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

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

.form-trust span {
  display: flex;
  min-height: 32px;
  gap: 4px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.form-trust i {
  color: var(--keep);
  font-style: normal;
}

.form-message {
  min-height: 0;
  margin: 0;
  color: var(--remove);
  font-size: 11px;
  text-align: center;
}

.form-message.is-error:not(:empty) {
  margin-top: 9px;
  padding: 9px;
  border: 1px solid rgba(237, 122, 114, 0.22);
  border-radius: 9px;
  background: rgba(237, 122, 114, 0.045);
}

.form-message:focus-visible {
  outline: 2px solid var(--remove);
  outline-offset: 2px;
}

.form-success {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-dark);
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 0 38px rgba(183, 255, 74, 0.16);
}

.form-success .section-kicker {
  margin-bottom: 8px;
}

.form-success h3 {
  margin-bottom: 6px;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.form-success > p:not(.section-kicker) {
  max-width: 280px;
  color: var(--muted);
  font-size: 13px;
}

.access-buy-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(183, 255, 74, 0.5);
  text-underline-offset: 5px;
}

.access-buy-link:hover {
  color: var(--lime);
}

.access-buy-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-success .purchase-after-signup {
  margin-top: 22px;
}

.form-success > small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.footer {
  padding: 16px 0;
}

.footer-inner {
  gap: 24px;
  min-height: 70px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.footer-note {
  max-width: 520px;
  line-height: 1.45;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.mobile-sticky-cta {
  display: none;
}

.js .hero .hero-copy > * {
  opacity: 0;
  transform: translateY(13px);
  transition: opacity 580ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-light {
  opacity: 0.58;
  transform: translate3d(3%, -2%, 0) scale(0.965);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero.is-hero-ready .hero-light {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .hero.is-hero-ready .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.js .hero.is-hero-ready .hero-copy > :nth-child(1) {
  transition-delay: 60ms;
}

.js .hero.is-hero-ready .hero-copy > :nth-child(2) {
  transition-delay: 115ms;
}

.js .hero.is-hero-ready .hero-copy > :nth-child(3) {
  transition-delay: 170ms;
}

.js .hero.is-hero-ready .hero-copy > :nth-child(4) {
  transition-delay: 225ms;
}

.js .hero.is-hero-ready .hero-copy > :nth-child(5) {
  transition-delay: 280ms;
}

.js .hero .hero-window {
  opacity: 0;
  transform: translateY(18px) scale(0.992);
  transition: opacity 680ms ease 150ms, transform 780ms cubic-bezier(0.22, 1, 0.36, 1) 150ms;
}

.js .hero.is-hero-ready .hero-window {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .hero .mini-photo {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero.is-hero-ready .mini-photo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .hero.is-hero-ready .mini-photo:nth-child(1) {
  transition-delay: 410ms;
}

.js .hero.is-hero-ready .mini-photo:nth-child(2) {
  transition-delay: 475ms;
}

.js .hero.is-hero-ready .mini-photo:nth-child(3) {
  transition-delay: 540ms;
}

.js .hero.is-hero-ready .mini-photo:nth-child(4) {
  transition-delay: 605ms;
}

.js .hero .mini-photo > .status {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 320ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero.is-hero-ready .mini-photo > .status {
  opacity: 1;
  transform: translateY(0);
}

.js .hero.is-hero-ready .mini-photo:nth-child(1) > .status {
  transition-delay: 700ms;
}

.js .hero.is-hero-ready .mini-photo:nth-child(2) > .status {
  transition-delay: 765ms;
}

.js .hero.is-hero-ready .mini-photo:nth-child(3) > .status {
  transition-delay: 830ms;
}

.js .hero.is-hero-ready .mini-photo:nth-child(4) > .status {
  transition-delay: 895ms;
}

.js .hero .score-ring-64 {
  --hero-score: 0;
}

.js .hero.is-hero-ready .score-ring-64 {
  animation: hero-score-fill 920ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
}

.js .hero .mini-scores i b {
  transform: scaleX(0);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero.is-hero-ready .mini-scores > div:nth-child(1) i b {
  transform: scaleX(1);
  transition-delay: 650ms;
}

.js .hero.is-hero-ready .mini-scores > div:nth-child(2) i b {
  transform: scaleX(1);
  transition-delay: 725ms;
}

.js .hero.is-hero-ready .mini-scores > div:nth-child(3) i b {
  transform: scaleX(1);
  transition-delay: 800ms;
}

.js .hero.is-hero-ready .recommendation-card::before {
  transform: scaleY(1);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1) 730ms;
}

@keyframes hero-score-fill {
  from {
    --hero-score: 0;
  }

  to {
    --hero-score: 64;
  }
}

.js .blind-section [data-blind-reveal],
.js .blind-section [data-blind-card],
.js .blind-section [data-blind-decision] {
  opacity: 0;
  transform: translateY(16px);
}

.js .blind-section [data-blind-reveal] {
  transition: opacity 520ms ease, transform 660ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .blind-section [data-blind-card] {
  transition: opacity 440ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.js .blind-section [data-blind-decision] {
  transition: opacity 480ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .blind-section [data-blind-card]::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .blind-section .decision-arrow {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .blind-section .decision-pills span {
  opacity: 0.34;
  filter: saturate(0.15);
  transform: translateY(5px);
}

.js .blind-section.is-blind-ready [data-blind-reveal],
.js .blind-section.is-blind-ready [data-blind-card],
.js .blind-section.is-blind-ready [data-blind-decision] {
  opacity: 1;
  transform: translateY(0);
}

.js .blind-section.is-blind-ready [data-blind-reveal] {
  transition-delay: 40ms;
}

.js .blind-section.is-blind-ready [data-blind-card]:nth-child(1) {
  transition-delay: 130ms;
}

.js .blind-section.is-blind-ready [data-blind-card]:nth-child(2) {
  transition-delay: 230ms;
}

.js .blind-section.is-blind-ready [data-blind-card]:nth-child(3) {
  transition-delay: 330ms;
}

.js .blind-section.is-blind-ready [data-blind-card]::before {
  transform: scaleX(1);
  transition-delay: 360ms;
}

.js .blind-section.is-blind-ready [data-blind-decision] {
  transition-delay: 480ms;
}

.js .blind-section.is-blind-ready .decision-arrow {
  opacity: 1;
  transform: scale(1);
  transition-delay: 600ms;
}

.js .blind-section.is-blind-ready .decision-pills span {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(0);
}

.js .blind-section.is-blind-ready .decision-pills span:nth-child(1) {
  transition-delay: 680ms;
}

.js .blind-section.is-blind-ready .decision-pills span:nth-child(2) {
  transition-delay: 770ms;
}

.js .blind-section.is-blind-ready .decision-pills span:nth-child(3) {
  transition-delay: 860ms;
}

.js .blind-section.is-blind-ready .decision-pills span:nth-child(4) {
  transition-delay: 950ms;
}

.js .audit-section [data-audit-bar] {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .audit-section.is-audit-metrics-ready [data-audit-bar] {
  transform: scaleX(1);
}

.js .audit-section.is-audit-metrics-ready .score-rows > div:nth-child(1) [data-audit-bar] {
  transition-delay: 80ms;
}

.js .audit-section.is-audit-metrics-ready .score-rows > div:nth-child(2) [data-audit-bar] {
  transition-delay: 150ms;
}

.js .audit-section.is-audit-metrics-ready .score-rows > div:nth-child(3) [data-audit-bar] {
  transition-delay: 220ms;
}

.js .audit-section.is-audit-metrics-ready .score-rows > div:nth-child(4) [data-audit-bar] {
  transition-delay: 290ms;
}

.js .audit-section.is-audit-metrics-ready .score-rows > div:nth-child(5) [data-audit-bar] {
  transition-delay: 360ms;
}

@keyframes audit-fix-pulse {
  0% {
    border-color: #536441;
    box-shadow: inset 3px 0 0 var(--lime), 0 14px 32px rgba(0, 0, 0, 0.16);
  }
  48% {
    border-color: rgba(183, 255, 74, 0.62);
    box-shadow: inset 3px 0 0 var(--lime), 0 0 0 3px rgba(183, 255, 74, 0.055), 0 18px 38px rgba(0, 0, 0, 0.2);
  }
  100% {
    border-color: #536441;
    box-shadow: inset 3px 0 0 var(--lime), 0 14px 32px rgba(0, 0, 0, 0.16);
  }
}

.js .audit-section.is-audit-metrics-ready [data-audit-fix-first] {
  animation: audit-fix-pulse 820ms ease 520ms both;
}

.js .audit-section [data-audit-fix-item] {
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 360ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background-color 180ms ease;
}

.js .audit-section.is-audit-fixes-ready [data-audit-fix-item] {
  opacity: 1;
  transform: translateY(0);
}

.js .audit-section.is-audit-fixes-ready [data-audit-fix-item]:nth-child(1) {
  transition-delay: 50ms;
}

.js .audit-section.is-audit-fixes-ready [data-audit-fix-item]:nth-child(2) {
  transition-delay: 120ms;
}

.js .audit-section.is-audit-fixes-ready [data-audit-fix-item]:nth-child(3) {
  transition-delay: 190ms;
}

.js .audit-section.is-audit-fixes-ready [data-audit-fix-item]:nth-child(4) {
  transition-delay: 260ms;
}

.js .audit-section.is-audit-fixes-ready [data-audit-fix-item]:nth-child(5) {
  transition-delay: 330ms;
}

.js .compare-section [data-compare-before],
.js .compare-section [data-compare-transition],
.js .compare-section [data-compare-after] {
  opacity: 0;
}

.js .compare-section [data-compare-before] {
  transform: translateX(-14px);
  transition: opacity 440ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .compare-section [data-compare-transition] {
  transform: scale(0.9);
  transition: opacity 360ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .compare-section [data-compare-after] {
  transform: translateX(14px);
  transition: opacity 480ms ease, transform 660ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .compare-section .board-after .board-photo-slot {
  opacity: 0.45;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .compare-section.is-compare-ready [data-compare-before],
.js .compare-section.is-compare-ready [data-compare-transition],
.js .compare-section.is-compare-ready [data-compare-after] {
  opacity: 1;
  transform: none;
}

.js .compare-section.is-compare-ready [data-compare-before] {
  transition-delay: 60ms;
}

.js .compare-section.is-compare-ready [data-compare-transition] {
  transition-delay: 330ms;
}

.js .compare-section.is-compare-ready [data-compare-after] {
  transition-delay: 560ms;
}

.js .compare-section.is-compare-ready .board-after .board-photo-slot {
  opacity: 1;
  transform: translateY(0);
}

.js .compare-section.is-compare-ready .board-after .board-photo-slot:nth-child(1) {
  transition-delay: 710ms;
}

.js .compare-section.is-compare-ready .board-after .board-photo-slot:nth-child(2) {
  transition-delay: 790ms;
}

.js .compare-section.is-compare-ready .board-after .board-photo-slot:nth-child(3) {
  transition-delay: 870ms;
}

.js .compare-section.is-compare-ready .board-after .board-photo-slot:nth-child(4) {
  transition-delay: 950ms;
}

.js .process-section [data-process-step] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background-color 180ms ease;
}

.js .process-section .process-connector {
  opacity: 0;
  transition: opacity 280ms ease;
}

.js .process-section.is-process-ready [data-process-step] {
  opacity: 1;
  transform: translateY(0);
}

.js .process-section.is-process-ready [data-process-step]:nth-child(1) {
  transition-delay: 50ms;
}

.js .process-section.is-process-ready [data-process-step]:nth-child(2) {
  transition-delay: 210ms;
}

.js .process-section.is-process-ready [data-process-step]:nth-child(3) {
  transition-delay: 370ms;
}

.js .process-section.is-process-ready [data-process-step]:nth-child(4) {
  transition-delay: 530ms;
}

.js .process-section.is-process-ready [data-process-step]:nth-child(1) .process-connector {
  opacity: 1;
  transition-delay: 170ms;
}

.js .process-section.is-process-ready [data-process-step]:nth-child(2) .process-connector {
  opacity: 1;
  transition-delay: 330ms;
}

.js .process-section.is-process-ready [data-process-step]:nth-child(3) .process-connector {
  opacity: 1;
  transition-delay: 490ms;
}

.js [data-reveal] {
  --reveal-distance: 14px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  transition-duration: 520ms, 620ms;
  transition-property: opacity, transform;
  transition-timing-function: ease, cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-motion-kind="heading"] {
  --reveal-distance: 11px;
}

.js [data-motion-kind="surface"] {
  --reveal-distance: 13px;
}

.js [data-motion-kind="card"] {
  --reveal-distance: 15px;
  transition-duration: 460ms, 580ms, 200ms, 200ms, 200ms;
  transition-property: opacity, transform, border-color, background-color, box-shadow;
  transition-timing-function: ease, cubic-bezier(0.22, 1, 0.36, 1), ease, ease, ease;
}

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

.js [data-reveal].is-motion-settled {
  transition-delay: 0ms;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.985);
  transition-duration: 90ms;
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta {
    transition: color 180ms ease, transform 180ms ease;
  }

  .nav-cta:hover {
    color: var(--text);
    transform: translateY(-1px);
  }

  .dashboard-photo-card .sample-photo,
  .board-photo-slot .sample-photo {
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dashboard-photo-card:hover .sample-photo,
  .board-photo-slot:hover .sample-photo {
    transform: scale(1.015);
  }

  .process-grid li:hover {
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  }
}

.mobile-sticky-cta.is-visible:active {
  transform: translateY(1px) scale(0.985);
  transition-duration: 90ms;
}

@media (max-width: 1050px) {
  .hero-copy {
    grid-column: 1 / span 6;
  }

  .hero-window {
    grid-column: 7 / span 6;
  }

  .hero-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-photo {
    aspect-ratio: 1.2;
  }

  .hero-insight-row {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .photo-analysis-panel {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .fixes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .access-panel {
    gap: 42px;
    padding: 40px;
  }
}

@media (max-width: 820px) {
  .section,
  .access-section {
    padding-block: 76px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-window {
    max-width: 720px;
    margin-top: 46px;
  }

  .hero-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .mini-photo {
    aspect-ratio: 0.84;
  }

  .hero-insight-row {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .audit-score-overview {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blind-cards {
    grid-template-columns: 1fr;
  }

  .blind-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blind-card {
    min-height: 134px;
  }

  .blind-card > div > span {
    margin-bottom: 15px;
  }

  .decision-panel,
  .heading-split {
    grid-template-columns: 1fr;
  }

  .decision-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .js .blind-section .decision-arrow {
    transform: rotate(90deg) scale(0.86);
  }

  .js .blind-section.is-blind-ready .decision-arrow {
    transform: rotate(90deg) scale(1);
  }

  .heading-split {
    gap: 15px;
  }

  .comparison-stage {
    grid-template-columns: 1fr;
  }

  .compare-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .compare-arrow {
    flex-direction: row;
    justify-content: center;
  }

  .compare-arrow i {
    transform: rotate(90deg);
  }

  .process-grid,
  .checks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-card {
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .topbar-inner {
    min-height: 62px;
  }

  .nav-cta {
    font-size: 8px;
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    padding: 98px 0 68px;
  }

  .hero-light {
    top: -160px;
    right: -310px;
    width: 700px;
    height: 700px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 9px;
  }

  .eyebrow {
    margin-bottom: 17px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 11.6vw, 3rem);
    line-height: 0.99;
  }

  .hero-body {
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-copy .button {
    min-width: 0;
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    margin-top: 12px;
  }

  .platforms,
  .privacy-proof {
    text-align: center;
  }

  .privacy-proof {
    font-size: 10px;
  }

  .hero-window {
    margin-top: 34px;
    border-radius: 18px;
  }

  .window-bar {
    min-height: 54px;
    padding-inline: 12px;
  }

  .window-mark {
    width: 25px;
    height: 25px;
  }

  .window-brand strong {
    font-size: 10px;
  }

  .sample-badge {
    padding: 5px 7px;
    font-size: 6px;
  }

  .hero-ui {
    padding: 10px;
  }

  .hero-ui-top {
    margin-bottom: 10px;
  }

  .score-ring {
    width: 57px;
    height: 57px;
  }

  .score-ring strong {
    font-size: 18px;
  }

  .score-lockup {
    gap: 9px;
  }

  .score-lockup > div:last-child > strong {
    font-size: 11px;
  }

  .audit-complete {
    font-size: 6px;
  }

  .hero-window .audit-complete {
    padding: 4px 6px;
  }

  .hero-thumbnails {
    gap: 4px;
  }

  .mini-photo {
    border-radius: 8px;
  }

  .mini-photo > .status {
    bottom: 6px;
    left: 6px;
    font-size: 5px;
  }

  .mini-photo > b {
    right: 6px;
    bottom: 5px;
    font-size: 10px;
  }

  .hero-insight-row {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 5px;
  }

  .recommendation-card {
    padding: 10px;
  }

  .recommendation-card strong {
    font-size: 10px;
  }

  .recommendation-card p {
    display: none;
  }

  .mini-scores {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading,
  .section-heading-compact {
    margin-bottom: 29px;
  }

  .section-heading h2,
  .access-copy h2 {
    font-size: clamp(2rem, 8.8vw, 2.3rem);
    line-height: 1.06;
  }

  .blind-card {
    gap: 14px;
    min-height: 128px;
    padding: 17px;
  }

  .blind-heading > p {
    font-size: 14px;
  }

  .blind-card::after {
    top: 15px;
    right: 15px;
  }

  .blind-icon {
    width: 39px;
    height: 39px;
  }

  .blind-card h3 {
    max-width: none;
    font-size: 16px;
  }

  .blind-card p {
    font-size: 12px;
  }

  .decision-panel {
    gap: 15px;
    padding: 16px;
  }

  .decision-panel > div:first-child p {
    font-size: 10px;
  }

  .decision-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-split > p {
    font-size: 15px;
  }

  .audit-dashboard {
    border-radius: 18px;
  }

  .audit-score-overview {
    gap: 11px;
    padding: 14px 11px;
  }

  .audit-score-primary {
    gap: 13px;
  }

  .audit-score-ring {
    width: 72px;
    height: 72px;
  }

  .audit-score-ring strong {
    font-size: 24px;
  }

  .audit-score-primary > div:last-child > strong {
    margin-block: 2px 3px;
    font-size: 17px;
  }

  .audit-score-primary p {
    font-size: 10px;
  }

  .audit-score-summary {
    gap: 6px;
  }

  .audit-score-summary > div {
    min-height: 58px;
    padding: 9px;
  }

  .dashboard-bar {
    min-height: 61px;
    padding-inline: 12px;
  }

  .dashboard-actions > span:not(.complete-pill) {
    display: none;
  }

  .dashboard-actions .complete-pill {
    font-size: 6px;
  }

  .photo-analysis-panel,
  .score-panel {
    padding: 11px;
  }

  .module-heading {
    min-height: 39px;
  }

  .dashboard-photo-grid {
    gap: 5px;
  }

  .dashboard-photo-card {
    border-radius: 10px;
  }

  .dashboard-photo-card .sample-photo {
    aspect-ratio: 1.12;
    background-size: cover;
  }

  .audit-dashboard.profile-b .dashboard-photo-card .photo-3 {
    background-size: contain;
    background-color: #111411;
  }

  .dashboard-photo-card > div:last-child {
    min-height: 92px;
    padding: 9px;
  }

  .dashboard-photo-card strong {
    font-size: 10px;
  }

  .dashboard-photo-card p {
    font-size: 8px;
    line-height: 1.4;
  }

  .score-panel-head {
    min-height: 68px;
  }

  .score-module-heading {
    min-height: 48px;
  }

  .score-rows > div {
    grid-template-columns: 104px 1fr 23px;
  }

  .finding-card p {
    font-size: 11px;
  }

  .finding-card > strong {
    font-size: 13px;
  }

  .finding-fix > strong {
    font-size: 15px;
  }

  .fixes-module {
    padding: 14px 11px;
  }

  .fixes-heading {
    align-items: flex-start;
  }

  .fixes-heading small {
    max-width: 125px;
    text-align: right;
  }

  .fixes-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .fixes-grid li {
    min-height: 58px;
  }

  .fixes-grid strong {
    font-size: 10px;
  }

  .audit-cta {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    padding: 16px;
  }

  .audit-cta .button {
    width: 100%;
  }

  .profile-board {
    padding: 13px;
  }

  .compare-heading > p {
    font-size: 14px;
    line-height: 1.48;
  }

  .board-top {
    min-height: 49px;
  }

  .structure-badge {
    max-width: 100px;
    text-align: center;
  }

  .board-photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .board-photo-row .sample-photo {
    aspect-ratio: 1.12;
  }

  .board-photo-row .sample-photo > span,
  .board-photo-row .sample-photo > i {
    font-size: 8px;
  }

  .board-photo-slot figcaption {
    min-height: 50px;
    padding: 8px;
  }

  .board-photo-slot figcaption strong {
    font-size: 11px;
  }

  .board-photo-slot figcaption small {
    font-size: 8px;
  }

  .board-issues,
  .board-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .board-issues span:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .board-issues span,
  .board-actions span {
    min-height: 40px;
    padding: 5px 7px;
    font-size: 8px;
    line-height: 1.3;
  }

  .compare-arrow {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .compare-arrow span {
    justify-self: end;
  }

  .compare-arrow small {
    max-width: 112px;
    justify-self: start;
    font-size: 7px;
    text-align: left;
  }

  .process-grid,
  .checks-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .checks-grid article {
    min-height: 196px;
    padding: 18px;
  }

  .process-icon {
    margin-bottom: 36px;
  }

  .checks-grid article {
    min-height: 220px;
  }

  .check-card-head {
    margin-bottom: 24px;
  }

  .checks-grid h3 {
    min-height: 0;
    margin-bottom: 14px;
  }

  .access-section {
    padding-block: 64px;
  }

  .access-panel {
    gap: 29px;
    padding: 20px;
    border-radius: 19px;
  }

  .access-copy > p:nth-of-type(2) {
    margin: 16px 0 22px;
    font-size: 16px;
  }

  .access-preview {
    max-width: none;
  }

  .form-card {
    min-height: 0;
    padding: 16px;
  }

  .app-choices {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-success {
    min-height: 390px;
  }

  .footer-inner {
    min-height: 74px;
  }
}

@media (min-width: 375px) and (max-width: 430px) {
  .topbar-inner {
    min-height: 56px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-glyph {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 13px;
  }

  .nav-cta {
    font-size: 7.5px;
    letter-spacing: 0.085em;
  }

  .hero {
    padding: 80px 0 42px;
  }

  .hero-light {
    top: -210px;
    right: -360px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 8.5px;
    letter-spacing: 0.13em;
  }

  .eyebrow > span {
    width: 6px;
    height: 6px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 42px;
    line-height: 0.99;
  }

  .hero-body {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.43;
  }

  .button {
    min-height: 52px;
  }

  .platforms {
    font-size: 11px;
  }

  .hero-proof {
    margin-top: 11px;
  }

  .hero-window {
    margin-top: 20px;
    border-radius: 16px;
  }

  .hero-window .window-bar {
    min-height: 50px;
  }

  .hero-ui {
    padding: 9px;
  }

  .hero-ui-top {
    margin-bottom: 8px;
  }

  .hero-window .score-ring {
    width: 54px;
    height: 54px;
  }

  .hero-window .score-lockup > div:last-child > strong {
    font-size: 11px;
  }

  .hero-thumbnails {
    gap: 4px;
  }

  .mini-photo > .status {
    bottom: 6px;
    left: 5px;
    font-size: 6.5px;
    letter-spacing: 0.08em;
  }

  .hero-window .mini-photo > .status {
    padding: 3px 4px;
  }

  .mini-photo > b {
    right: 5px;
    bottom: 4px;
    font-size: 10px;
  }

  .hero-insight-row {
    margin-top: 5px;
  }

  .recommendation-card {
    padding: 9px 10px;
  }

  .recommendation-card strong {
    font-size: 10px;
    line-height: 1.35;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading,
  .section-heading-compact {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .access-copy h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .section-kicker {
    margin-bottom: 10px;
  }

  .blind-cards {
    gap: 8px;
  }

  .blind-card {
    min-height: 104px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 15px;
  }

  .blind-icon {
    width: 38px;
    height: 38px;
  }

  .blind-card > div > span {
    margin: 0 0 7px;
    font-size: 8px;
  }

  .blind-card h3 {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .blind-card p {
    font-size: 11.5px;
  }

  .decision-panel {
    gap: 12px;
    margin-top: 8px;
    padding: 14px;
    border-radius: 15px;
  }

  .decision-panel > div:first-child strong {
    font-size: 12px;
  }

  .decision-pills {
    gap: 5px;
  }

  .decision-pills span {
    min-height: 38px;
    font-size: 9px;
  }

  .heading-split {
    gap: 10px;
  }

  .heading-split > p {
    font-size: 14px;
    line-height: 1.45;
  }

  .audit-section {
    padding-top: 58px;
  }

  .dashboard-bar {
    min-height: 58px;
  }

  .photo-analysis-panel,
  .score-panel {
    padding: 10px;
  }

  .module-heading {
    min-height: 42px;
  }

  .module-heading span,
  .fixes-heading span {
    font-size: 8px;
  }

  .module-heading strong {
    font-size: 13px;
  }

  .dashboard-photo-grid {
    gap: 6px;
  }

  .dashboard-photo-card > div:last-child {
    min-height: 92px;
    padding: 9px;
  }

  .dashboard-photo-card .status {
    margin-bottom: 7px;
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .dashboard-photo-card strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .dashboard-photo-card p {
    font-size: 9.5px;
    line-height: 1.4;
  }

  .photo-index,
  .photo-rating {
    top: 7px;
    min-width: 27px;
    height: 22px;
    font-size: 8px;
  }

  .photo-index {
    left: 7px;
  }

  .photo-rating {
    right: 7px;
  }

  .score-panel-head {
    min-height: 74px;
  }

  .score-panel-head > div:first-child > span {
    font-size: 9px;
  }

  .score-panel-head > div:first-child > strong {
    font-size: 40px;
  }

  .score-rows > div {
    min-height: 34px;
    grid-template-columns: 112px 1fr 24px;
    font-size: 9px;
  }

  .score-rows strong {
    font-size: 10px;
  }

  .finding-card > span {
    font-size: 8.5px;
  }

  .finding-card p {
    font-size: 12.5px;
  }

  .finding-fix {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
  }

  .fixes-module {
    padding: 14px 10px;
  }

  .fixes-heading small {
    font-size: 8px;
  }

  .fixes-grid li {
    min-height: 54px;
    padding: 10px;
  }

  .fixes-grid strong {
    overflow: visible;
    font-size: 11px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }

  .fixes-grid small {
    font-size: 8px;
  }

  .audit-cta {
    gap: 12px;
    margin-top: 8px;
    padding: 14px;
  }

  .audit-cta > div span {
    font-size: 14px;
  }

  .audit-cta > div p {
    font-size: 11.5px;
  }

  .comparison-stage {
    gap: 10px;
  }

  .profile-board {
    padding: 13px;
  }

  .compare-arrow {
    gap: 5px;
  }

  .compare-arrow i {
    width: 36px;
    height: 36px;
  }

  .board-issues span,
  .board-actions span {
    min-height: 40px;
    font-size: 8px;
  }

  .process-grid,
  .checks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .process-grid li {
    min-height: 170px;
    padding: 14px;
  }

  .process-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 26px;
  }

  .step-number {
    top: 16px;
    right: 14px;
  }

  .process-grid h3 {
    gap: 5px;
    margin-bottom: 6px;
    font-size: 17px;
  }

  .process-grid p {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .checks-grid article {
    min-height: 205px;
    padding: 14px;
  }

  .check-card-head {
    margin-bottom: 14px;
  }

  .checks-grid h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .checks-grid li {
    min-height: 26px;
    font-size: 10.5px;
  }

  .access-section {
    padding-block: 52px;
  }

  .access-panel {
    gap: 20px;
    padding: 16px;
  }

  .access-copy h2 {
    font-size: 32px;
  }

  .access-copy > p:nth-of-type(2) {
    margin: 14px 0 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .access-preview {
    padding: 13px 14px;
  }

  .access-preview strong {
    font-size: 22px;
  }

  .form-card {
    padding: 14px;
  }

  .field {
    margin-bottom: 16px;
  }

  .field input[type="email"] {
    min-height: 54px;
  }

  .choice-grid span {
    min-height: 46px;
    font-size: 9.5px;
  }

  .form-note {
    font-size: 8.5px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 200;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    background: var(--lime);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52), 0 5px 22px rgba(183, 255, 74, 0.18);
    color: var(--lime-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}

@media (max-width: 820px) {
  .checks-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-grid {
    gap: 16px;
  }

  .process-grid li:nth-child(2) .process-connector {
    top: auto;
    right: 50%;
    bottom: -24px;
    transform: translateX(50%) rotate(90deg);
  }
}

@media (max-width: 600px) {
  .access-section {
    padding-block: 52px;
  }

  .access-panel {
    gap: 18px;
    padding: 15px;
    border-radius: 20px;
  }

  .access-copy h2 {
    font-size: 32px;
    line-height: 1.02;
  }

  .access-copy > p:nth-of-type(2) {
    margin: 14px 0 18px;
    font-size: 15px;
    line-height: 1.48;
  }

  .access-value-list {
    gap: 6px;
    margin-bottom: 14px;
  }

  .access-value-list li {
    min-height: 66px;
    grid-template-columns: 22px 1fr;
    gap: 7px;
    padding: 8px;
  }

  .access-value-list li > i {
    width: 22px;
    height: 22px;
  }

  .access-value-list strong {
    font-size: 10.5px;
  }

  .access-value-list small {
    font-size: 7.5px;
  }

  .access-preview {
    padding: 12px 13px;
  }

  .form-card {
    max-width: none;
    padding: 16px;
    border-radius: 16px;
  }

  .form-heading {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .form-heading h3 {
    font-size: 20px;
  }

  .field {
    margin-bottom: 16px;
  }

  .field input[type="email"],
  .choice-grid span {
    min-height: 50px;
  }

  .app-choices {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-field {
    padding: 12px;
  }

  .form-submit {
    min-height: 56px;
  }

  .form-trust span {
    min-height: 34px;
    font-size: 8px;
  }

  .form-success {
    min-height: 500px;
  }

  .checks-heading > p {
    font-size: 14px;
    line-height: 1.48;
  }

  .checks-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checks-grid article {
    min-height: 0;
    padding: 17px;
  }

  .check-card-head {
    margin-bottom: 16px;
  }

  .check-card-head .check-icon {
    width: 38px;
    height: 38px;
  }

  .checks-grid h3 {
    margin-bottom: 7px;
    font-size: 21px;
  }

  .checks-grid article > p {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.5;
  }

  .check-signal-label {
    margin-bottom: 7px;
  }

  .checks-grid ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .checks-grid li {
    min-height: 38px;
    padding: 0 9px;
    font-size: 10px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-grid li {
    display: grid;
    min-height: 128px;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 14px;
    padding: 15px;
  }

  .process-meta {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .process-grid .process-icon {
    width: 42px;
    height: 42px;
    grid-column: 1;
    grid-row: 2 / 4;
    margin: 0;
  }

  .process-grid h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin-bottom: 4px;
    font-size: 18px;
  }

  .process-grid p {
    max-width: none;
    grid-column: 2;
    grid-row: 3;
    font-size: 12px;
    line-height: 1.45;
  }

  .process-grid li .process-connector,
  .process-grid li:nth-child(2) .process-connector {
    top: auto;
    right: 50%;
    bottom: -23px;
    transform: translateX(50%) rotate(90deg);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section,
  .access-section {
    padding-block: var(--section-space-mobile);
  }

  .section-heading,
  .section-heading-compact {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .access-copy h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .button {
    min-height: 52px;
    gap: 22px;
    padding-inline: 20px;
    border-radius: 11px;
  }

  .product-window,
  .audit-dashboard,
  .access-panel {
    border-radius: 16px;
  }

  .mini-photo {
    border-radius: 9px;
  }

  .blind-card,
  .decision-panel,
  .audit-cta,
  .profile-board,
  .process-grid li,
  .checks-grid article {
    border-radius: 16px;
  }

  .blind-card {
    padding: 15px;
  }

  .decision-panel {
    padding: 15px;
  }

  .dashboard-photo-card {
    border-radius: 12px;
  }

  .profile-board {
    padding: 14px;
  }

  .process-grid li {
    padding: 15px;
  }

  .checks-grid {
    gap: 10px;
  }

  .checks-grid article {
    padding: 16px;
  }

  .check-card-head {
    margin-bottom: 14px;
  }

  .checks-grid article > p {
    margin-bottom: 14px;
  }

  .checks-grid li {
    min-height: 36px;
  }

  .access-panel {
    gap: 20px;
    padding: 16px;
  }

  .form-card {
    padding: 18px;
    border-radius: 15px;
  }

  .field input[type="email"],
  .choice-grid span {
    border-radius: 11px;
  }

  .form-submit {
    min-height: 56px;
  }
}

@media (min-width: 375px) and (max-width: 430px) {
  .nav-cta {
    min-height: 44px;
    padding-left: 8px;
  }

  .hero .button-primary {
    box-shadow: 0 14px 34px rgba(183, 255, 74, 0.16);
  }

  .hero-window .window-brand small,
  .hero-window .sample-badge {
    font-size: 7px;
  }

  .hero-window .mini-photo {
    aspect-ratio: 1;
  }

  .hero-window .mini-photo > .status {
    font-size: 7px;
  }

  .recommendation-card strong {
    font-size: 10.5px;
  }

  .section,
  .access-section {
    padding-block: 52px;
  }

  .section-heading,
  .section-heading-compact {
    margin-bottom: 22px;
  }

  .section-kicker {
    margin-bottom: 9px;
  }

  .blind-cards {
    gap: 7px;
  }

  .blind-card {
    min-height: 100px;
    padding: 13px;
  }

  .blind-icon {
    width: 36px;
    height: 36px;
  }

  .decision-panel {
    margin-top: 7px;
    padding: 13px;
  }

  .decision-pills span {
    min-height: 36px;
  }

  .audit-section {
    padding-top: 54px;
  }

  .audit-score-overview {
    padding: 12px 10px;
  }

  .photo-analysis-panel,
  .score-panel {
    padding: 9px;
  }

  .dashboard-photo-card .sample-photo {
    aspect-ratio: 1.18;
  }

  .dashboard-photo-card > div:last-child {
    min-height: 84px;
    padding: 8px;
  }

  .score-rows > div {
    min-height: 32px;
  }

  .finding-card {
    padding: 12px;
  }

  .finding-fix {
    margin-top: 8px;
  }

  .fixes-module {
    padding: 12px 9px;
  }

  .fixes-grid li {
    min-height: 50px;
    padding: 9px;
  }

  .audit-cta {
    padding: 13px;
  }

  .comparison-stage {
    gap: 8px;
  }

  .profile-board {
    padding: 12px;
  }

  .board-photo-row {
    gap: 5px;
    padding: 5px;
  }

  .board-photo-row .sample-photo {
    aspect-ratio: 1.18;
  }

  .board-photo-slot figcaption {
    min-height: 46px;
    padding: 7px;
  }

  .board-issues span,
  .board-actions span {
    min-height: 36px;
  }

  .comparison-caption {
    margin-top: 12px;
  }

  .process-trust {
    gap: 10px;
    align-items: flex-start;
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 13px;
  }

  .process-trust > span {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .process-trust p {
    font-size: 11.5px;
    line-height: 1.48;
  }

  .checks-grid {
    gap: 8px;
  }

  .checks-grid article {
    padding: 15px;
  }

  .check-card-head {
    margin-bottom: 12px;
  }

  .check-card-head .check-icon {
    width: 36px;
    height: 36px;
  }

  .checks-grid h3 {
    font-size: 20px;
  }

  .checks-grid article > p {
    margin-bottom: 12px;
    font-size: 11.75px;
  }

  .checks-grid ul {
    gap: 4px;
  }

  .checks-grid li {
    min-height: 34px;
  }

  .access-panel {
    gap: 18px;
    padding: 15px;
  }

  .access-value-list li {
    min-height: 60px;
    padding: 7px;
  }

  .access-preview {
    padding: 11px 12px;
  }

  .form-card {
    padding: 17px;
  }

  .form-heading {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .field {
    margin-bottom: 14px;
  }

  .field input[type="email"] {
    min-height: 52px;
  }

  .choice-grid {
    gap: 6px;
  }

  .choice-grid span {
    min-height: 48px;
  }

  .price-field {
    margin-bottom: 14px;
    padding: 10px;
  }

  .price-field .field-hint {
    font-size: 10px;
  }

  .form-trust {
    margin-top: 8px;
  }

  .footer-inner {
    gap: 16px;
  }

  .footer-links {
    gap: 14px;
    order: 3;
    width: 100%;
  }

  .footer-links a {
    min-height: 44px;
    font-size: 10px;
  }

  .footer-note {
    max-width: 220px;
    font-size: 8.5px;
    line-height: 1.35;
  }
}

@media (max-width: 370px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  h1 {
    font-size: 2.5rem;
  }

  .score-lockup > div:last-child > small,
  .audit-complete {
    display: none;
  }

  .score-rows > div {
    grid-template-columns: 92px 1fr 23px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

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

  .js .hero .hero-copy > *,
  .js .hero .hero-window,
  .js .hero .mini-photo,
  .js .hero .mini-photo > .status {
    opacity: 1;
    transform: none;
  }

  .js .hero .score-ring-64 {
    --hero-score: 64;
    animation: none;
  }

  .js .hero .mini-scores i b,
  .js .hero .recommendation-card::before {
    transform: scale(1);
  }
}

/* Audit measurement explainer */
.measurement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 16px;
  align-items: start;
}

.checks-grid.measurement-dimensions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.measurement-dimensions article {
  min-height: 0;
  padding: 18px;
}

.measurement-dimensions article:last-child {
  grid-column: 1 / -1;
}

.measurement-dimensions .check-card-head {
  margin-bottom: 13px;
}

.measurement-dimensions .check-card-head .check-icon {
  width: 36px;
  height: 36px;
}

.measurement-dimensions .check-icon svg {
  width: 18px;
  height: 18px;
}

.measurement-dimensions h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.measurement-dimensions article > p {
  min-height: 0;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 11.5px;
  line-height: 1.48;
}

.measurement-focus {
  display: grid;
  gap: 4px;
  padding-top: 11px;
  border-top: 1px solid var(--border);
}

.measurement-focus span {
  color: var(--muted);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measurement-focus strong {
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 650;
  line-height: 1.35;
}

.measurement-sample {
  position: sticky;
  top: 92px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(183, 255, 74, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 2%, rgba(183, 255, 74, 0.08), transparent 18rem),
    linear-gradient(145deg, rgba(20, 25, 18, 0.98), rgba(12, 14, 13, 0.98));
  box-shadow: var(--shadow-card);
}

.measurement-sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.measurement-sample-head > div {
  display: grid;
  gap: 3px;
}

.measurement-sample-head span,
.measurement-sample-head small {
  color: var(--lime);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measurement-sample-head strong {
  font-size: 12px;
}

.measurement-sample-head small {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}

.measurement-score {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 19px 0;
}

.measurement-score-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(183, 255, 74, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, #111512 83%, transparent 84%),
    conic-gradient(var(--lime) 64%, rgba(255, 255, 255, 0.07) 0);
}

.measurement-score-mark span {
  color: var(--muted);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measurement-score-mark strong {
  font-size: 44px;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.measurement-score-mark small {
  color: var(--muted);
  font-size: 8px;
}

.measurement-verdict {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.measurement-score > div:last-child p {
  margin: 0;
  color: var(--text-soft);
  font-size: 10.5px;
  line-height: 1.48;
}

.measurement-score-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.018);
  list-style: none;
}

.measurement-score-list li > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  color: var(--text-soft);
  font-size: 8.5px;
}

.measurement-score-list li strong {
  color: var(--lime);
  font-size: 9px;
}

.measurement-score-list li > i {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.measurement-score-list li > i b {
  display: block;
  width: var(--measurement-value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #82bb45, var(--lime));
}

.measurement-sample-verdicts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.measurement-sample-verdicts > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.measurement-sample-verdicts span,
.measurement-sample-verdicts small {
  overflow: hidden;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.measurement-sample-verdicts small {
  min-height: 15px;
  line-height: 1.25;
  white-space: normal;
}

.measurement-sample-verdicts strong {
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.measurement-sample-verdicts .measurement-keep {
  color: var(--keep);
}

.measurement-sample-verdicts .measurement-reorder {
  color: var(--replace);
}

.measurement-sample-verdicts .measurement-replace {
  color: var(--remove);
}

.measurement-disclaimer {
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .measurement-layout {
    grid-template-columns: 1fr;
  }

  .measurement-sample {
    position: static;
  }
}

@media (max-width: 600px) {
  .checks-grid.measurement-dimensions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .measurement-dimensions article {
    padding: 13px;
  }

  .measurement-dimensions .check-card-head {
    margin-bottom: 10px;
  }

  .measurement-dimensions .check-card-head .check-icon {
    width: 31px;
    height: 31px;
  }

  .measurement-dimensions h3 {
    font-size: 16px;
  }

  .measurement-dimensions article > p {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .measurement-focus {
    padding-top: 9px;
  }

  .measurement-focus strong {
    font-size: 7.5px;
  }

  .measurement-sample {
    padding: 15px;
    border-radius: 17px;
  }

  .measurement-score {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 13px;
    padding: 15px 0;
  }

  .measurement-score-mark {
    width: 92px;
    height: 92px;
  }

  .measurement-score-mark strong {
    font-size: 38px;
  }

  .measurement-score-list {
    padding: 12px;
  }

  .measurement-sample-verdicts > div {
    padding: 8px;
  }
}

@media (max-width: 370px) {
  .checks-grid.measurement-dimensions {
    grid-template-columns: 1fr;
  }

  .measurement-dimensions article:last-child {
    grid-column: auto;
  }
}

/* Interactive landing-page sample audit */
.landing-sample-audit {
  overflow: hidden;
  border-color: rgba(183, 255, 74, 0.17);
  background:
    radial-gradient(circle at 92% 2%, rgba(183, 255, 74, 0.07), transparent 24rem),
    #0f1210;
}

.sample-audit-bar {
  min-height: 66px;
  padding-inline: 20px;
}

.sample-audit-demo-badge {
  padding: 6px 9px;
  border: 1px solid rgba(183, 255, 74, 0.2);
  border-radius: 999px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sample-audit-overview {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: center;
  padding: 19px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(105deg, rgba(183, 255, 74, 0.05), transparent 45%);
}

.sample-audit-score {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sample-audit-score .score-ring {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
}

.sample-audit-score .score-ring::before {
  inset: 6px;
  background: #111511;
}

.sample-audit-score .score-ring strong {
  font-size: 29px;
}

.sample-audit-score .score-ring span {
  font-size: 8px;
}

.sample-audit-score > div:last-child {
  display: grid;
  gap: 3px;
}

.sample-audit-score > div:last-child > span,
.sample-module-heading span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-audit-score > div:last-child > strong {
  font-size: 19px;
  letter-spacing: -0.035em;
}

.sample-audit-score p {
  max-width: 330px;
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.4;
}

.sample-audit-dimensions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.sample-audit-dimensions > div {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.sample-audit-dimensions span {
  overflow: hidden;
  color: var(--text-soft);
  font-size: 7px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sample-audit-dimensions i {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.sample-audit-dimensions i b {
  display: block;
  width: var(--sample-score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #82bb45, var(--lime));
}

.sample-audit-dimensions strong {
  color: var(--lime);
  font-size: 10px;
  line-height: 1;
}

.sample-audit-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  border-bottom: 1px solid var(--border);
}

.sample-photo-explorer,
.sample-repair-panel {
  padding: 20px;
}

.sample-photo-explorer {
  border-right: 1px solid var(--border);
}

.sample-module-heading {
  display: flex;
  min-height: 41px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sample-module-heading > div {
  display: grid;
  gap: 2px;
}

.sample-module-heading strong {
  font-size: 13px;
}

.sample-module-heading small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sample-photo-buttons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.sample-photo-button {
  --sample-verdict: var(--replace);
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #080a09;
  color: var(--text);
  box-shadow: none;
  isolation: isolate;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sample-photo-button[data-verdict="keep"] {
  --sample-verdict: var(--keep);
}

.sample-photo-button[data-verdict="replace"] {
  --sample-verdict: var(--remove);
}

.sample-photo-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.sample-photo-button:nth-child(1) img { object-position: 50% 38%; }
.sample-photo-button:nth-child(2) img { object-position: 50% 34%; }
.sample-photo-button:nth-child(3) img { object-position: 50% 45%; }
.sample-photo-button:nth-child(4) img { object-position: 55% 45%; }
.sample-photo-button:nth-child(5) img { object-position: 50% 48%; }
.sample-photo-button:nth-child(6) img { object-position: 50% 45%; }

.sample-photo-button::after {
  position: absolute;
  inset: 45% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 7, 6, 0.88));
  content: "";
}

.sample-photo-button > span,
.sample-photo-button > b,
.sample-photo-button > strong {
  position: absolute;
  z-index: 2;
}

.sample-photo-button > span,
.sample-photo-button > b {
  top: 7px;
  padding: 4px 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(7, 9, 8, 0.7);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  font-size: 6px;
  line-height: 1;
}

.sample-photo-button > span {
  left: 7px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sample-photo-button > b {
  right: 7px;
  color: var(--sample-verdict);
  font-size: 8px;
}

.sample-photo-button > strong {
  right: 7px;
  bottom: 7px;
  left: 7px;
  color: var(--sample-verdict);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.sample-photo-button.is-selected {
  border-color: var(--sample-verdict);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--sample-verdict) 22%, transparent);
  transform: translateY(-2px);
}

.sample-photo-button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .sample-photo-button:hover {
    border-color: color-mix(in srgb, var(--sample-verdict) 65%, var(--border));
    transform: translateY(-2px);
  }

  .sample-photo-button:hover img {
    transform: scale(1.018);
  }
}

.sample-photo-reason {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(183, 255, 74, 0.15);
  border-radius: 11px;
  background: rgba(183, 255, 74, 0.03);
}

.sample-photo-reason > div {
  display: grid;
  gap: 2px;
}

.sample-photo-reason > div span,
.sample-photo-reason > small {
  color: var(--muted);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-photo-reason > div strong {
  font-size: 11px;
}

.sample-reason-verdict {
  align-self: start;
  padding: 5px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--replace);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-reason-verdict[data-verdict="keep"] { color: var(--keep); }
.sample-reason-verdict[data-verdict="replace"] { color: var(--remove); }

.sample-photo-reason > p {
  grid-column: 1 / -1;
  margin: 3px 0 0;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.45;
}

.sample-photo-reason > small {
  grid-column: 1 / -1;
  color: var(--lime);
}

.sample-repair-panel {
  background: rgba(255, 255, 255, 0.012);
}

.sample-repair-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-repair-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.sample-repair-list li > span {
  color: rgba(183, 255, 74, 0.5);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.sample-repair-list strong {
  font-size: 10.5px;
}

.sample-repair-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8.5px;
  line-height: 1.4;
}

.sample-paid-note {
  display: flex;
  gap: 8px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

.sample-paid-note span {
  color: var(--lime);
}

.sample-order-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
}

.sample-order-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.sample-order-row > span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-order-recommended > span {
  color: var(--lime);
}

.sample-order-row ol {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-order-row li {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #0a0c0b;
}

.sample-order-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-order-row li b {
  position: absolute;
  top: 4px;
  left: 4px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  background: rgba(7, 9, 8, 0.75);
  color: var(--text-soft);
  font-size: 6px;
}

.sample-order-replace {
  border-color: rgba(237, 122, 114, 0.4) !important;
  opacity: 0.62;
}

.sample-order-new {
  display: grid;
  place-items: center;
  border-color: rgba(183, 255, 74, 0.35) !important;
  border-style: dashed !important;
  color: var(--lime);
}

.sample-order-new > span {
  font-size: 18px;
}

.sample-order-new small {
  position: absolute;
  right: 3px;
  bottom: 3px;
  font-size: 5px;
  font-weight: 850;
  text-transform: uppercase;
}

.sample-order-arrow {
  display: grid;
  place-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-order-arrow i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(183, 255, 74, 0.22);
  border-radius: 50%;
  color: var(--lime);
  font-size: 14px;
  font-style: normal;
}

.audit-cta .button-primary {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .sample-audit-overview {
    grid-template-columns: 1fr;
  }

  .sample-audit-main {
    grid-template-columns: 1fr;
  }

  .sample-photo-explorer {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .sample-order-preview {
    grid-template-columns: 1fr;
  }

  .sample-order-arrow {
    grid-template-columns: 1fr auto 1fr;
  }

  .sample-order-arrow::before,
  .sample-order-arrow::after {
    height: 1px;
    background: var(--border);
    content: "";
  }

  .sample-order-arrow i {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .sample-audit-bar {
    min-height: 58px;
    padding-inline: 12px;
  }

  .sample-audit-demo-badge {
    font-size: 6px;
  }

  .sample-audit-overview {
    gap: 13px;
    padding: 14px 12px;
  }

  .sample-audit-score .score-ring {
    width: 72px;
    height: 72px;
  }

  .sample-audit-score > div:last-child > strong {
    font-size: 16px;
  }

  .sample-audit-score p {
    font-size: 8.5px;
  }

  .sample-audit-dimensions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .sample-audit-dimensions > div {
    grid-template-columns: minmax(0, 1fr) 52px 20px;
    gap: 7px;
    align-items: center;
    padding: 8px;
  }

  .sample-audit-dimensions > div:last-child {
    grid-column: 1 / -1;
  }

  .sample-audit-dimensions span {
    white-space: normal;
  }

  .sample-photo-explorer,
  .sample-repair-panel {
    padding: 12px;
  }

  .sample-module-heading {
    min-height: 39px;
  }

  .sample-photo-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .sample-photo-button {
    aspect-ratio: 0.9 / 1;
  }

  .sample-photo-reason {
    margin-top: 9px;
    padding: 11px;
  }

  .sample-photo-reason > p {
    font-size: 9.5px;
  }

  .sample-repair-list li {
    padding: 10px;
  }

  .sample-order-preview {
    gap: 10px;
    padding: 13px 12px;
  }

  .sample-order-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sample-order-row ol {
    gap: 4px;
  }

  .sample-order-row li b {
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
  }

  .audit-cta .button-primary {
    width: 100%;
  }
}
