:root {
  --ink: #15221e;
  --ink-soft: #40504a;
  --forest: #173f35;
  --forest-deep: #102f28;
  --forest-light: #24594a;
  --lime: #d8ff72;
  --lime-soft: #ecffc0;
  --cream: #f6f3ec;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #dcded7;
  --line-dark: rgba(255, 255, 255, 0.15);
  --muted: #5f6c66;
  --positive: #207255;
  --positive-soft: #e6f4ed;
  --warning: #9b6419;
  --warning-soft: #fff2d7;
  --critical: #a33d3d;
  --critical-soft: #fae9e7;
  --info: #356a85;
  --info-soft: #e7f2f7;
  --shadow-sm: 0 10px 30px rgba(21, 34, 30, 0.08);
  --shadow-md: 0 24px 70px rgba(10, 37, 31, 0.16);
  --shadow-dark: 0 34px 90px rgba(3, 20, 16, 0.35);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-scanning {
  cursor: progress;
}

body.checkout-busy {
  cursor: progress;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

svg {
  display: block;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 640;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 650;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--forest-deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

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

:focus-visible {
  outline: 3px solid #bdea4b;
  outline-offset: 3px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button-primary {
  background: var(--lime);
  color: var(--forest-deep);
  box-shadow: 0 10px 26px rgba(157, 205, 57, 0.15);
}

.button-primary:hover:not(:disabled) {
  background: #e2ff99;
  box-shadow: 0 14px 34px rgba(157, 205, 57, 0.22);
}

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

.button-secondary:hover:not(:disabled) {
  border-color: var(--forest);
  background: rgba(23, 63, 53, 0.05);
}

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

.button-dark:hover:not(:disabled) {
  background: var(--forest-deep);
}

.button-light {
  background: var(--white);
  color: var(--forest);
}

.button-light:hover:not(:disabled) {
  background: var(--lime);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 60px;
  padding: 17px 25px;
}

.button-full {
  width: 100%;
}

.button-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.18s ease;
}

.button:hover .button-arrow {
  transform: translateX(3px);
}

.button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.is-loading .button-spinner {
  display: block;
}

.is-loading .button-arrow {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--forest-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(216, 255, 114, 0.13);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-inner {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 9px;
  color: var(--lime);
  transform: rotate(-2deg);
}

.brand-mark span {
  position: absolute;
  bottom: 7px;
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: currentColor;
}

.brand-mark span:nth-child(1) {
  left: 7px;
  height: 10px;
}

.brand-mark span:nth-child(2) {
  left: 15px;
  height: 17px;
}

.brand-mark span:nth-child(3) {
  left: 23px;
  height: 13px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.1rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--lime);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.site-header .button-dark {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.site-header .button-dark:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 154px 0 96px;
  background: var(--forest);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 530px;
  height: 360px;
  border: 1px solid rgba(216, 255, 114, 0.2);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: -120px;
  right: 20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(97, 172, 139, 0.19), transparent 68%);
}

.hero-orb-two {
  bottom: -110px;
  left: 25%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(216, 255, 114, 0.08), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 70px;
}

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

.hero-copy .eyebrow {
  color: var(--lime);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.audit-form {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.main-field-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-url {
  min-width: 0;
  flex: 1;
}

.field label {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 730;
  line-height: 1.25;
}

.input-shell {
  position: relative;
}

.input-shell svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #70817a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transform: translateY(-50%);
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.input-shell input {
  padding-left: 45px;
}

.field input::placeholder {
  color: #8a9691;
}

.field input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(216, 255, 114, 0.28);
}

.field input[aria-invalid="true"] {
  border-color: #e79898;
  box-shadow: 0 0 0 3px rgba(231, 152, 152, 0.2);
}

.audit-submit {
  min-width: 188px;
  min-height: 54px;
}

.field-help {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.75rem;
  line-height: 1.4;
}

.form-error {
  margin: 10px 0 0;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 214, 214, 0.14);
  color: #ffdede;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.optional-fields {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.optional-fields summary {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding-top: 13px;
  color: rgba(255, 255, 255, 0.79);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.optional-fields summary::-webkit-details-marker {
  display: none;
}

.optional-fields summary span:last-child {
  color: rgba(255, 255, 255, 0.46);
  font-weight: 500;
}

.summary-plus {
  position: relative;
  width: 14px;
  height: 14px;
}

.summary-plus::before,
.summary-plus::after {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 10px;
  height: 1.5px;
  background: var(--lime);
  content: "";
  transition: transform 0.18s ease;
}

.summary-plus::after {
  transform: rotate(90deg);
}

.optional-fields[open] .summary-plus::after {
  transform: rotate(0);
}

.optional-fields-grid {
  display: grid;
  padding-top: 14px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.optional-fields-grid .field label {
  color: rgba(255, 255, 255, 0.72);
}

.optional-fields-grid .field input {
  min-height: 47px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 19px;
  margin-bottom: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.76rem;
  list-style: none;
}

.hero-assurance li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-assurance svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-report {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.report-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: #fbfaf6;
  color: var(--ink);
  box-shadow: var(--shadow-dark);
  transform: rotateY(-3deg) rotateZ(1deg);
}

.window-bar {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid #e2e4df;
  background: #f0f0eb;
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c2c7c2;
}

.window-bar > span:first-child {
  background: #d99d84;
}

.window-bar > span:nth-child(2) {
  background: #ddc36b;
}

.window-bar > span:nth-child(3) {
  background: #81b994;
}

.window-address {
  width: 55%;
  margin-left: 10px;
  padding: 5px 10px;
  border: 1px solid #d8dbd5;
  border-radius: 5px;
  background: #fff;
  color: #8a938f;
  font-size: 0.63rem;
  line-height: 1;
}

.preview-body {
  padding: 25px;
}

.preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 23px;
}

.preview-heading > div:first-child {
  display: flex;
  flex-direction: column;
}

.preview-heading small,
.preview-score small {
  color: #7d8984;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.preview-heading strong {
  margin-top: 4px;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.preview-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid #d9e9df;
  border-radius: 100px;
  background: #edf7f1;
  color: var(--positive);
  font-size: 0.58rem;
  font-weight: 750;
}

.preview-pulse i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #46a078;
  box-shadow: 0 0 0 3px rgba(70, 160, 120, 0.13);
}

.preview-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid #e3e5e0;
  border-radius: 10px;
  background: #fff;
}

.preview-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-score-ring {
  display: grid;
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  border: 6px solid #d9f4ad;
  border-right-color: var(--forest-light);
  border-radius: 50%;
  place-items: center;
  transform: rotate(12deg);
}

.preview-score-ring b {
  font-size: 1.1rem;
  transform: rotate(-12deg);
}

.preview-score > div {
  display: flex;
  flex-direction: column;
}

.preview-score strong {
  margin-top: 2px;
  font-size: 0.76rem;
  letter-spacing: -0.01em;
}

.preview-mini-chart {
  display: flex;
  width: 102px;
  height: 45px;
  align-items: flex-end;
  gap: 5px;
  padding: 7px 9px;
  border-bottom: 1px solid #dfe2dd;
}

.preview-mini-chart i {
  width: 9px;
  height: var(--h);
  min-height: 5px;
  border-radius: 2px 2px 0 0;
  background: var(--forest-light);
  opacity: 0.36;
}

.preview-mini-chart i:nth-child(1) { height: 34%; }
.preview-mini-chart i:nth-child(2) { height: 58%; }
.preview-mini-chart i:nth-child(3) { height: 45%; }
.preview-mini-chart i:nth-child(4) { height: 78%; }
.preview-mini-chart i:nth-child(5) { height: 64%; }
.preview-mini-chart i:nth-child(6) { height: 86%; }

.preview-mini-chart i:nth-child(4),
.preview-mini-chart i:nth-child(6) {
  background: #9fcb43;
  opacity: 0.8;
}

.preview-checks {
  margin-top: 13px;
}

.preview-checks > div {
  display: grid;
  align-items: center;
  padding: 11px 2px;
  border-bottom: 1px solid #e8eae5;
  grid-template-columns: 29px 1fr auto;
  gap: 9px;
}

.check-icon {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  place-items: center;
}

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

.check-icon-good {
  background: var(--positive-soft);
  color: var(--positive);
}

.check-icon-warn {
  background: var(--warning-soft);
  color: var(--warning);
}

.preview-checks > div > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.preview-checks b {
  font-size: 0.73rem;
  letter-spacing: -0.01em;
}

.preview-checks small {
  color: #84908b;
  font-size: 0.58rem;
}

.preview-checks em {
  color: #93a09a;
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.preview-locked {
  display: grid;
  align-items: center;
  margin-top: 15px;
  padding: 13px;
  border: 1px solid #e5e1c8;
  border-radius: 8px;
  background: #fffdef;
  grid-template-columns: 31px 1fr 65px;
  gap: 9px;
}

.mini-lock {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 7px;
  background: #f1e8aa;
  color: #655619;
  place-items: center;
}

.mini-lock svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.preview-locked > div {
  display: flex;
  flex-direction: column;
}

.preview-locked b {
  font-size: 0.7rem;
}

.preview-locked small {
  color: #8b896e;
  font-size: 0.56rem;
}

.blur-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  filter: blur(2.5px);
}

.blur-lines i {
  display: block;
  height: 5px;
  border-radius: 5px;
  background: #aaa993;
}

.blur-lines i:last-child {
  width: 65%;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(15, 51, 41, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.19);
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.66rem;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.floating-note span {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: var(--lime);
  color: var(--forest);
  font-size: 0.58rem;
  place-items: center;
}

.floating-note-one {
  top: 28%;
  right: -31px;
  animation: float 4.8s ease-in-out infinite;
}

.floating-note-two {
  bottom: 13%;
  left: -37px;
  animation: float 4.8s 1.2s ease-in-out infinite;
}

.check-strip {
  border-bottom: 1px solid #d8dbd4;
  background: #edebe4;
}

.check-strip-inner {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.check-strip p {
  margin: 0;
  color: #596761;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.check-strip ul {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-strip li {
  position: relative;
  padding-left: 16px;
  color: #51605a;
  font-size: 0.8rem;
  font-weight: 700;
}

.check-strip li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest-light);
  content: "";
  transform: translateY(-50%);
}

.scan-status {
  padding: 52px 0;
  background: var(--cream);
}

.scan-card {
  display: grid;
  min-height: 150px;
  align-items: center;
  padding: 30px 38px;
  border: 1px solid #d7dcd5;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 76px 1fr auto;
  gap: 25px;
}

.scan-card .eyebrow {
  margin-bottom: 8px;
}

.scan-card h2 {
  margin-bottom: 7px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.scan-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.scan-animation {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #edf6f0;
  color: var(--forest-light);
  place-items: center;
}

.scan-animation svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.scan-ring {
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-top-color: var(--lime);
  border-right-color: var(--forest-light);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.scan-dots {
  display: flex;
  gap: 6px;
}

.scan-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-light);
  animation: pulse-dot 1.2s infinite;
}

.scan-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.scan-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

.results {
  padding: 88px 0 110px;
  background: var(--paper);
  outline: none;
}

.results-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.results-topline .eyebrow {
  margin-bottom: 9px;
}

.results-topline h2 {
  margin-bottom: 6px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.report-site {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.agency-report-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0 0;
  padding: 6px 10px;
  border-left: 3px solid var(--agency-accent, var(--positive));
  border-radius: 3px 8px 8px 3px;
  background: #edf5f1;
  background: color-mix(in srgb, var(--agency-accent, var(--positive)) 10%, white);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

#copy-report svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.result-overview {
  display: grid;
  margin-top: 26px;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 20px;
}

.overall-card {
  display: flex;
  min-height: 285px;
  align-items: center;
  gap: 33px;
  padding: 37px;
  border: 1px solid #dbe0da;
  border-radius: var(--radius);
  background: var(--cream);
}

.score-ring {
  --score: 0;
  --score-colour: var(--forest-light);
  position: relative;
  display: grid;
  width: 164px;
  height: 164px;
  flex: 0 0 164px;
  border-radius: 50%;
  background: conic-gradient(var(--score-colour) calc(var(--score) * 1%), #dfe4dd 0);
  place-items: center;
}

.score-ring::before {
  position: absolute;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--cream);
  content: "";
}

.score-ring > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
}

.score-ring strong {
  font-size: 3.15rem;
  font-weight: 640;
  letter-spacing: -0.08em;
  line-height: 1;
}

.score-ring span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.overall-copy {
  min-width: 0;
}

.grade-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 100px;
  background: var(--positive-soft);
  color: var(--positive);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.overall-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.overall-copy > p {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--muted);
}

.result-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid #d8ddd7;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: #52605a;
  font-size: 0.7rem;
  font-weight: 700;
}

.result-count i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.result-count.positive {
  color: var(--positive);
}

.result-count.warning {
  color: var(--warning);
}

.result-count.critical {
  color: var(--critical);
}

.next-step-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 31px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
}

.next-step-card::after {
  position: absolute;
  right: -40px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(216, 255, 114, 0.22);
  border-radius: 50%;
  content: "";
}

.card-number {
  margin-bottom: 13px;
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.next-step-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
}

.next-step-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

.next-step-card .button {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-size: 0.82rem;
}

.next-step-card > small {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

.result-section {
  margin-top: 54px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.compact-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.compact-heading .eyebrow {
  margin-bottom: 8px;
}

.compact-heading h3 {
  margin: 0;
  font-size: 1.65rem;
}

.compact-heading > p {
  max-width: 420px !important;
  font-size: 0.82rem !important;
  text-align: right;
}

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

.category-card {
  padding: 18px;
  border: 1px solid #dce0da;
  border-radius: 11px;
  background: var(--white);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 13px;
}

.category-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: capitalize;
}

.category-icon {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #edf2ef;
  color: var(--forest-light);
  font-size: 0.68rem;
  font-weight: 800;
  place-items: center;
}

.category-score {
  color: var(--score-colour, var(--ink));
  font-size: 0.98rem;
  font-weight: 800;
}

.category-score small {
  color: #9aa49f;
  font-size: 0.6rem;
}

.category-track {
  overflow: hidden;
  height: 6px;
  border-radius: 10px;
  background: #e8ebe7;
}

.category-track i {
  display: block;
  width: calc(var(--category-score) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--score-colour, var(--forest-light));
  transition: width 0.6s ease;
}

.findings-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.65fr);
  gap: 22px;
}

.findings-layout.single-column {
  grid-template-columns: 1fr;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.finding-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.finding-heading .eyebrow {
  margin-bottom: 7px;
}

.finding-heading h3 {
  margin: 0;
  font-size: 1.65rem;
}

.finding-count {
  padding: 5px 9px;
  border: 1px solid #d8ddd7;
  border-radius: 100px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.finding-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.finding-card {
  display: grid;
  align-items: flex-start;
  padding: 19px;
  border: 1px solid #dfe3dd;
  border-radius: 11px;
  background: var(--white);
  grid-template-columns: 34px 1fr auto;
  gap: 13px;
}

.finding-status {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  place-items: center;
}

.finding-status svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.finding-card.is-good .finding-status {
  background: var(--positive-soft);
  color: var(--positive);
}

.finding-card.is-warning .finding-status {
  background: var(--warning-soft);
  color: var(--warning);
}

.finding-card.is-critical .finding-status {
  background: var(--critical-soft);
  color: var(--critical);
}

.finding-card.is-info .finding-status {
  background: var(--info-soft);
  color: var(--info);
}

.finding-copy {
  min-width: 0;
}

.finding-copy h4 {
  margin: 0 0 5px;
  font-size: 0.93rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.finding-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.48;
}

.finding-copy .finding-paid-detail {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #edf0eb;
  color: #53625b;
}

.finding-copy .finding-paid-detail + .finding-paid-detail {
  margin-top: 5px;
  padding-top: 0;
  border-top: 0;
}

.finding-paid-detail strong {
  color: var(--ink);
}

.finding-paid-detail.recommendation {
  color: var(--forest-light);
}

.action-plan {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.action-plan li {
  display: grid;
  min-height: 154px;
  padding: 20px;
  border: 1px solid #dce1da;
  border-radius: 12px;
  background: var(--cream);
  grid-template-columns: 37px 1fr;
  gap: 13px;
}

.action-number {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  place-items: center;
}

.action-meta {
  min-height: 24px;
}

.action-priority {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 100px;
  background: var(--info-soft);
  color: var(--info);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.priority-critical,
.priority-high {
  background: var(--critical-soft);
  color: var(--critical);
}

.priority-medium {
  background: var(--warning-soft);
  color: var(--warning);
}

.priority-low {
  background: var(--positive-soft);
  color: var(--positive);
}

.action-plan h4 {
  margin: 7px 0 5px;
  font-size: 0.94rem;
  line-height: 1.3;
}

.action-plan p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.finding-category {
  padding: 4px 7px;
  border-radius: 4px;
  background: #f0f2ee;
  color: #6b7771;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.finding-empty {
  padding: 24px;
  border: 1px dashed #cfd5cf;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.locked-results {
  position: sticky;
  top: 28px;
  margin-top: 54px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid #dfdac0;
  border-radius: var(--radius);
  background: #fffcf0;
}

.locked-results::after {
  position: absolute;
  z-index: 0;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(216, 255, 114, 0.16);
  content: "";
}

.locked-results > * {
  position: relative;
  z-index: 1;
}

.locked-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.lock-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #f1e8a9;
  color: #6e5d17;
  place-items: center;
}

.lock-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.locked-heading .eyebrow {
  margin-bottom: 5px;
  color: #817126;
}

.locked-heading h3 {
  margin: 0;
  font-size: 1.23rem;
}

.locked-results > p {
  margin: 15px 0 18px;
  color: #77745e;
  font-size: 0.81rem;
}

.locked-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.locked-item {
  position: relative;
  overflow: hidden;
  padding: 13px;
  border: 1px solid #e4dfc7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.locked-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.locked-item-top span:first-child {
  color: #6f735e;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locked-item-top svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #877823;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.locked-title {
  margin: 0 0 8px;
  color: #464b3f;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.locked-blur {
  display: flex;
  flex-direction: column;
  gap: 5px;
  filter: blur(3px);
  opacity: 0.52;
  user-select: none;
}

.locked-blur i {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #9da398;
}

.locked-blur i:last-child {
  width: 63%;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  color: #85816c;
  font-size: 0.64rem;
}

.secure-note svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.how-section {
  padding: 110px 0;
  border-top: 1px solid #d9ddd6;
  background: var(--cream);
}

.centred-heading {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
  text-align: center;
}

.centred-heading .eyebrow {
  justify-content: center;
}

.centred-heading h2 {
  margin-bottom: 17px;
}

.centred-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: none;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps-grid li {
  position: relative;
  min-height: 290px;
  padding: 33px;
  border-top: 1px solid #ccd2cb;
  border-bottom: 1px solid #ccd2cb;
}

.steps-grid li + li {
  border-left: 1px solid #ccd2cb;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #5f6c66;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 47px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--lime);
  place-items: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.steps-grid h3 {
  font-size: 1.23rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-section {
  padding: 110px 0 92px;
  background: var(--forest);
  color: var(--white);
}

.pricing-section .eyebrow {
  color: var(--lime);
}

.pricing-section .centred-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.pricing-grid-top {
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid-bottom {
  margin-top: 16px;
  grid-template-columns: 1fr 1fr;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.price-card-featured {
  border-color: var(--lime);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.popular-label {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.plan-tag {
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.price-card-featured .plan-tag {
  color: var(--forest-light);
}

.price-card h3 {
  margin: 13px 0 10px;
  font-size: 1.45rem;
}

.price-card-top > p {
  min-height: 70px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.84rem;
}

.price-card-featured .price-card-top > p {
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 22px;
}

.price strong {
  font-size: 2.65rem;
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.71rem;
}

.price-card-featured .price span {
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 27px;
  padding: 21px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.price-card-featured .feature-list {
  border-color: #e2e5df;
}

.feature-list li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
}

.price-card-featured .feature-list li {
  color: #4f5e58;
}

.feature-list li::before {
  position: absolute;
  top: 0.38em;
  left: 1px;
  width: 10px;
  height: 6px;
  border-bottom: 1.7px solid var(--lime);
  border-left: 1.7px solid var(--lime);
  content: "";
  transform: rotate(-45deg);
}

.price-card-featured .feature-list li::before {
  border-color: var(--positive);
}

.price-card > .button {
  margin-top: auto;
}

.pricing-section .price-card:not(.price-card-featured) .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.pricing-section .price-card:not(.price-card-featured) .button-secondary:hover {
  border-color: var(--lime);
  background: rgba(216, 255, 114, 0.08);
}

.price-card-horizontal {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.8fr) auto;
  gap: 24px;
}

.price-card-horizontal .price-card-top > p {
  min-height: 0;
  margin: 0;
}

.price-card-horizontal .feature-list {
  margin: 0;
  padding: 0;
  border: 0;
}

.horizontal-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.horizontal-price .price {
  margin-bottom: 13px;
}

.horizontal-price .price strong {
  font-size: 2rem;
}

.horizontal-price .button {
  min-width: 153px;
}

.agency-card {
  background: rgba(216, 255, 114, 0.09);
}

.agency-card .button-dark {
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--forest-deep);
}

.pricing-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  text-align: center;
}

.human-section {
  padding: 125px 0;
  overflow: hidden;
  background: var(--paper);
}

.human-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.human-visual {
  position: relative;
  min-height: 420px;
}

.human-visual::before {
  position: absolute;
  top: 42%;
  left: 44%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: #e8efd8;
  content: "";
  transform: translate(-50%, -50%);
}

.human-visual::after {
  position: absolute;
  top: 39%;
  left: 42%;
  width: 315px;
  height: 315px;
  border: 1px solid #cad4bb;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.human-card {
  position: absolute;
  z-index: 2;
  width: 320px;
  border: 1px solid #d7dcd6;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.human-card-back {
  top: 26px;
  left: 10px;
  height: 276px;
  padding: 25px;
  opacity: 0.8;
  transform: rotate(-8deg);
}

.human-card-back span {
  color: #78847e;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.human-card-back i {
  display: block;
  width: 86%;
  height: 8px;
  margin-top: 23px;
  border-radius: 5px;
  background: #dfe3de;
}

.human-card-back i:nth-child(3) {
  width: 67%;
}

.human-card-back i:nth-child(4) {
  width: 78%;
}

.human-card-front {
  top: 70px;
  left: 116px;
  padding: 23px;
  transform: rotate(4deg);
}

.human-card-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e4e7e2;
}

.person-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
}

.human-card-header > span:last-child {
  display: flex;
  flex-direction: column;
}

.human-card-header b {
  font-size: 0.84rem;
}

.human-card-header small {
  color: var(--muted);
  font-size: 0.6rem;
}

.review-line {
  display: grid;
  align-items: center;
  margin: 11px 0;
  grid-template-columns: 26px 1fr;
  gap: 9px;
}

.review-line > b {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: var(--lime-soft);
  color: var(--forest-light);
  font-size: 0.63rem;
  place-items: center;
}

.review-line > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-line strong {
  color: #4a5751;
  font-size: 0.69rem;
}

.review-line i {
  display: block;
  width: 78%;
  height: 5px;
  border-radius: 4px;
  background: #e1e4e0;
}

.annotation {
  position: absolute;
  z-index: 3;
  padding: 8px 13px;
  border-radius: 100px;
  background: var(--forest);
  box-shadow: 0 10px 30px rgba(21, 34, 30, 0.15);
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 750;
}

.annotation-one {
  top: 41px;
  right: 6px;
}

.annotation-two {
  bottom: 50px;
  left: 39px;
}

.human-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.human-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
}

.human-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 31px;
}

.human-points > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
}

.human-points svg {
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  background: var(--lime-soft);
  fill: none;
  stroke: var(--forest-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.human-points span {
  display: flex;
  flex-direction: column;
}

.human-points b {
  margin-bottom: 3px;
  font-size: 0.91rem;
}

.human-points small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-light);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.18s ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.faq-section {
  padding: 110px 0;
  border-top: 1px solid #d8dcd6;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 35px;
}

.faq-intro h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-intro a {
  color: var(--forest-light);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid #cad0c9;
}

.faq-list details {
  border-bottom: 1px solid #cad0c9;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 1px solid #bac2bb;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 11px;
  left: 7px;
  width: 9px;
  height: 1px;
  background: var(--forest);
  content: "";
  transition: transform 0.18s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--forest-light);
}

.faq-list details > p {
  max-width: 680px;
  margin: -7px 42px 23px 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 75px 0;
  background: var(--forest-light);
  color: var(--white);
}

.final-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50%, black, transparent 77%);
}

.final-cta::before {
  position: absolute;
  top: -135px;
  left: 48%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(216, 255, 114, 0.22);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  margin-bottom: 9px;
  color: var(--lime);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.site-footer {
  padding: 70px 0 25px;
  background: var(--forest-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.brand-footer {
  margin-bottom: 20px;
}

.footer-top > div:first-child > p {
  max-width: 350px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.footer-top .endorsed {
  font-size: 0.74rem !important;
}

.footer-top .endorsed a {
  color: var(--lime);
  font-weight: 700;
}

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

.footer-links > div {
  display: flex;
  min-width: 125px;
  flex-direction: column;
  gap: 9px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.79rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
}

.footer-bottom p:last-child {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100% - 44px));
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-size: 0.81rem;
  font-weight: 650;
}

.toast.is-error {
  border-color: #e4a3a3;
  background: #782f2f;
}

.noscript-message {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 15px;
  border: 2px solid var(--warning);
  border-radius: 8px;
  background: var(--warning-soft);
  color: var(--ink);
  text-align: center;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes pulse-dot {
  0%, 60%, 100% { opacity: 0.24; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 38px;
    grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 6.3vw, 4.7rem);
  }

  .floating-note-one {
    right: -15px;
  }

  .floating-note-two {
    left: -18px;
  }

  .result-overview {
    grid-template-columns: 1fr;
  }

  .next-step-card {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 6px 28px;
  }

  .next-step-card .card-number,
  .next-step-card h3,
  .next-step-card p {
    grid-column: 1;
  }

  .next-step-card .button,
  .next-step-card > small {
    grid-column: 2;
  }

  .next-step-card .button {
    grid-row: 1 / 4;
  }

  .next-step-card > small {
    grid-row: 4;
    margin: 0;
    text-align: center;
  }

  .findings-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  }

  .price-card-horizontal {
    grid-template-columns: 1fr auto;
  }

  .horizontal-features {
    grid-column: 1;
  }

  .horizontal-price {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .human-grid {
    gap: 55px;
  }

  .human-card-front {
    left: 75px;
  }

  .annotation-one {
    right: -4px;
  }

  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 138px;
  }

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

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

  .hero-report {
    width: min(620px, 94%);
    margin: 20px auto 0;
  }

  .report-window {
    transform: rotateY(0) rotateZ(0.5deg);
  }

  .check-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    gap: 12px;
  }

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

  .findings-layout {
    grid-template-columns: 1fr;
  }

  .locked-results {
    position: static;
    margin-top: 22px;
  }

  .steps-grid li {
    padding: 27px;
  }

  .pricing-grid-top,
  .pricing-grid-bottom {
    grid-template-columns: 1fr;
  }

  .price-card-top > p {
    min-height: 0;
  }

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

  .human-visual {
    order: 2;
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .human-copy {
    max-width: 700px;
  }

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

  .faq-intro {
    position: static;
    max-width: 600px;
  }
}

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

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

  .header-inner {
    height: 70px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 117px 0 75px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .main-field-row {
    align-items: stretch;
    flex-direction: column;
  }

  .audit-submit {
    width: 100%;
  }

  .optional-fields-grid {
    grid-template-columns: 1fr;
  }

  .hero-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-report {
    width: 100%;
  }

  .floating-note {
    display: none;
  }

  .preview-body {
    padding: 17px;
  }

  .preview-score-row {
    padding: 12px;
  }

  .preview-mini-chart {
    display: none;
  }

  .preview-locked {
    grid-template-columns: 31px 1fr;
  }

  .preview-locked .blur-lines {
    display: none;
  }

  .check-strip ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px 20px;
  }

  .scan-status {
    padding: 35px 0;
  }

  .scan-card {
    padding: 24px;
    grid-template-columns: 57px 1fr;
    gap: 18px;
  }

  .scan-animation {
    width: 54px;
    height: 54px;
  }

  .scan-dots {
    display: none;
  }

  .results,
  .how-section,
  .pricing-section,
  .human-section,
  .faq-section {
    padding: 76px 0;
  }

  .results-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .overall-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 27px;
  }

  .score-ring {
    width: 130px;
    height: 130px;
    flex-basis: 130px;
  }

  .score-ring::before {
    width: 101px;
    height: 101px;
  }

  .score-ring strong {
    font-size: 2.55rem;
  }

  .next-step-card {
    display: flex;
    align-items: stretch;
  }

  .next-step-card .button {
    align-self: stretch;
  }

  .compact-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-heading > p {
    text-align: left;
  }

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

  .action-plan {
    grid-template-columns: 1fr;
  }

  .finding-card {
    grid-template-columns: 32px 1fr;
  }

  .finding-category {
    display: none;
  }

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

  .steps-grid li {
    min-height: auto;
    padding: 27px 7px;
    border-bottom: 1px solid #ccd2cb;
    border-left: 0 !important;
  }

  .steps-grid li + li {
    border-top: 0;
  }

  .step-icon {
    margin-bottom: 27px;
  }

  .price-card {
    padding: 25px;
  }

  .price-card-horizontal {
    display: flex;
    align-items: stretch;
  }

  .horizontal-price {
    align-items: stretch;
  }

  .human-grid {
    gap: 40px;
  }

  .human-visual {
    min-height: 340px;
    transform: scale(0.83);
    transform-origin: top center;
    margin-bottom: -55px;
  }

  .faq-grid {
    gap: 35px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    gap: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

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

  .hero h1 {
    font-size: 2.72rem;
  }

  .audit-form {
    padding: 13px;
  }

  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-checks em {
    display: none;
  }

  .preview-checks > div {
    grid-template-columns: 29px 1fr;
  }

  .finding-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .locked-results {
    padding: 22px;
  }

  .human-visual {
    left: 50%;
    width: 460px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
    margin-bottom: -90px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

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

@media (forced-colors: active) {
  .button,
  .score-ring,
  .finding-status,
  .category-icon,
  .lock-icon {
    border: 1px solid ButtonText;
  }

  .score-ring::before {
    display: none;
  }
}
