:root {
  --ink: #121927;
  --muted: #5f6b7b;
  --line: #dbe3e8;
  --paper: #fbfcf8;
  --white: #ffffff;
  --teal: #078c86;
  --teal-dark: #05635f;
  --poppy: #f27a35;
  --sky: #d7edf4;
  --blue: #315d7d;
  --green: #27a76f;
  --warning: #c56a16;
  --danger: #b43b45;
  --shadow: 0 24px 70px rgba(18, 25, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 10;
  background: var(--white);
}

.coa-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
}

.coa-strip span {
  color: #dfe9ee;
}

.top-scan-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px 6px;
}

.top-scan-shell.simple {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 244px;
  height: 92px;
  object-fit: contain;
}

.top-scan-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.top-scan-form input {
  min-height: 54px;
  background: var(--white);
  box-shadow: none;
  font-size: 17px;
}

.top-scan-form input::placeholder {
  color: #7a8794;
}

.small-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.scan-app {
  min-height: calc(100vh - 110px);
}

.psi-hero {
  display: grid;
  gap: 26px;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 46px 24px 28px;
  text-align: center;
}

.psi-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.psi-copy img {
  width: 132px;
  height: auto;
}

.psi-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.psi-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.psi-form {
  width: min(100%, 760px);
  padding: 8px;
  border: 1px solid #cfd9df;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 25, 39, 0.09);
}

.psi-form input {
  border-color: transparent;
}

.psi-form input:focus {
  outline: none;
  border-color: transparent;
}

.psi-form .button {
  min-height: 54px;
  padding: 0 28px;
}

.small-links a,
.text-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.small-links a:hover,
.text-links a:hover {
  color: var(--ink);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 130px);
  margin: 0 auto;
  padding: 64px 24px 56px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6.3vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-actions.text-links {
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(7, 140, 134, 0.22);
}

.button.primary:hover {
  background: var(--teal-dark);
}

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

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

.button.wide {
  width: 100%;
}

.score-panel {
  display: grid;
  gap: 14px;
}

.meter-card {
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 122, 53, 0.2), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #e8f7f6 52%, #f7eee1 100%);
  box-shadow: var(--shadow);
}

.meter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 850;
}

.meter-top strong {
  color: var(--ink);
  font-size: 56px;
  line-height: 1;
}

.meter-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 34px auto;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 62%, var(--poppy) 62% 82%, #e5edf0 82% 100%);
}

.meter-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--white);
}

.ring-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--sky);
  font-size: 28px;
  font-weight: 950;
}

.meter-status {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.meter-status strong {
  font-size: 22px;
}

.meter-status span {
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mini-grid span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.risk-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.risk-band div {
  display: grid;
  gap: 6px;
  min-height: 150px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.risk-band span {
  color: #ccd7df;
}

.assessment-shell,
.packages,
.loop-section,
.delta-section,
.terms-layout,
.disclaimer-callout,
.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px;
}

.scan-app .compact-report {
  padding-top: 10px;
  padding-bottom: 48px;
}

.compact-report .assessment-output {
  gap: 0;
}

.compact-report .report-card {
  min-height: 280px;
}

.compact-report .report-empty {
  min-height: 224px;
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.assessment-output {
  display: grid;
  gap: 16px;
}

.assessment-card,
.report-card,
.package-grid article,
.delta-grid article,
.terms-layout article,
.disclaimer-callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(18, 25, 39, 0.07);
}

.assessment-card {
  padding: 24px;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset + fieldset {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

legend {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 900;
}

label {
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #cfd9df;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(7, 140, 134, 0.18);
  border-color: var(--teal);
}

.inline-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 900;
}

.auto-scan-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #d8e5e8;
  border-radius: 8px;
  color: var(--ink);
  background: #f7faf9;
}

.auto-scan-card strong {
  font-size: 16px;
}

.auto-scan-card span {
  color: var(--muted);
  font-size: 14px;
}

.auto-scan-card.scanning {
  border-color: rgba(7, 140, 134, 0.5);
  background: #edf9f8;
}

.auto-scan-card.warning {
  border-color: rgba(197, 106, 22, 0.45);
  background: #fff8ed;
}

.report-card {
  min-height: 590px;
  padding: 28px;
}

.report-empty {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 520px;
  color: var(--muted);
  text-align: center;
}

.report-empty h3 {
  margin: 12px 0 6px;
  color: var(--ink);
  font-size: 28px;
}

.scan-progress {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  text-align: center;
}

.scan-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 154px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, var(--teal), var(--green), var(--poppy), var(--teal));
  box-shadow: 0 18px 50px rgba(18, 25, 39, 0.14);
  animation: scanSpin 4.8s linear infinite;
}

.scan-orbit::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--white);
}

.scan-orbit::after {
  content: "SB37";
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
  animation: scanSpin 4.8s linear infinite reverse;
}

.scan-orbit span {
  position: absolute;
  z-index: 1;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.34);
}

.scan-orbit span:nth-child(1) {
  top: 2px;
}

.scan-orbit span:nth-child(2) {
  right: 14px;
  bottom: 28px;
}

.scan-orbit span:nth-child(3) {
  left: 14px;
  bottom: 28px;
}

.scan-copy h3 {
  margin: 10px 0 4px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1;
}

.scan-copy p {
  margin: 0;
  color: var(--muted);
}

.scan-bar {
  overflow: hidden;
  width: min(100%, 520px);
  height: 12px;
  border-radius: 999px;
  background: #dce7e9;
}

.scan-bar span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--poppy));
  animation: scanSweep 2.8s ease-in-out infinite;
}

.scan-phase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  color: var(--muted);
}

.scan-phase strong {
  color: var(--ink);
}

.scan-phase span {
  min-width: 52px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sky);
  font-weight: 950;
}

.scan-modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 860px;
}

.scan-modules span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #f8fbfc;
  font-size: 12px;
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.scan-modules span.active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.scan-modules span.done {
  color: var(--teal-dark);
  border-color: rgba(7, 140, 134, 0.22);
  background: #edf9f8;
}

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

@keyframes scanSweep {
  0% {
    transform: translateX(-105%);
  }
  55% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(230%);
  }
}

.report-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--sky);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-result {
  display: grid;
  gap: 14px;
}

.report-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.score-number {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 40px;
  font-weight: 950;
}

.status-low .score-number {
  background: var(--green);
}

.status-medium .score-number {
  background: var(--warning);
}

.status-high .score-number {
  background: var(--danger);
}

.score-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f3fbfa);
}

.score-hero h3 {
  margin: 8px 0 6px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.score-hero p {
  margin: 0 0 10px;
  color: var(--muted);
}

.score-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 152px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(var(--score-color) 0 var(--score), #e3ebef var(--score) 360deg);
  box-shadow: 0 16px 44px rgba(18, 25, 39, 0.12);
}

.score-ring.watch {
  background: conic-gradient(var(--score-color) 0 var(--score), #e3ebef var(--score) 360deg);
}

.score-ring.alert {
  background: conic-gradient(var(--score-color) 0 var(--score), #e3ebef var(--score) 360deg);
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background:
    conic-gradient(#b43b45 0 40%, #c56a16 40% 75%, #27a76f 75% 100%);
  opacity: 0.16;
}

.score-pointer {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: 50% 68px;
  transform: translateX(-50%) rotate(calc(var(--score) - 180deg));
  transition: transform 0.08s linear;
}

.score-ring-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
}

.score-ring-core strong {
  font-size: 40px;
  line-height: 1;
}

.score-ring-core span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-score h3 {
  margin: 0 0 6px;
  font-size: 26px;
}

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

.report-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
}

.report-list.compact li {
  padding: 12px 14px;
}

.report-statline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.report-statline span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.market-board {
  display: grid;
  gap: 10px;
}

.market-row {
  display: grid;
  grid-template-columns: 150px 1fr 54px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.market-name {
  font-size: 13px;
  font-weight: 900;
}

.market-track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e9ed;
}

.market-fill {
  width: var(--pct);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.market-row.watch .market-fill {
  background: linear-gradient(90deg, var(--poppy), #f2bd35);
}

.market-row.alert .market-fill {
  background: linear-gradient(90deg, var(--danger), var(--poppy));
}

.market-percent {
  font-weight: 950;
  text-align: right;
}

.review-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
}

.review-row strong {
  display: block;
  font-size: 15px;
}

.review-row span {
  color: var(--muted);
  font-size: 13px;
}

.review-row p {
  max-width: 760px;
  margin: 6px 0 0;
  color: #3f4b5a;
  font-size: 13px;
}

.review-row.watch {
  border-color: rgba(197, 106, 22, 0.35);
  background: #fff8ed;
}

.review-row.alert {
  border-color: rgba(180, 59, 69, 0.3);
  background: #fff4f5;
}

.produce-report-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(7, 140, 134, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, #f2fbfa 0%, #ffffff 72%);
}

.produce-copy {
  display: grid;
  gap: 6px;
}

.next-step-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.full-breakdown {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
}

.full-breakdown summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.full-breakdown .market-board {
  margin-top: 12px;
}

.next-step-card p {
  margin: 0;
  color: var(--muted);
}

.next-step-card h4 {
  margin: 8px 0 4px;
}

.produce-report-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.produce-report-card p {
  margin: 0;
  color: var(--muted);
}

.produce-report-card form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: end;
}

.produce-report-card label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.produce-report-card input {
  min-height: 46px;
  font-size: 15px;
  text-transform: none;
}

.produce-report-card select {
  min-height: 46px;
  font-size: 15px;
}

.phone-field div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 6px;
}

.phone-field select,
.phone-field input {
  width: 100%;
}

.produce-report-card .consent-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(7, 140, 134, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.produce-report-card .consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
}

.produce-report-card .button {
  min-height: 46px;
  white-space: nowrap;
}

.report-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-benefits span {
  padding: 6px 9px;
  border: 1px solid rgba(7, 140, 134, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.evidence-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
}

.evidence-card strong {
  display: block;
  margin-bottom: 4px;
}

.evidence-card span {
  color: var(--muted);
  font-size: 13px;
}

.loop-grid,
.package-grid,
.delta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.loop-grid div {
  display: grid;
  gap: 16px;
  min-height: 180px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.loop-grid strong {
  font-size: 36px;
}

.loop-grid span {
  color: #e8f0f4;
  font-weight: 800;
}

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

.package-grid article,
.delta-grid article,
.terms-layout article {
  padding: 24px;
}

.package-grid article {
  display: grid;
  gap: 12px;
  min-height: 250px;
}

.package-grid article.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.package-grid h3,
.delta-grid h3 {
  margin: 0;
  font-size: 24px;
}

.package-grid p,
.delta-grid p,
.terms-layout p {
  margin: 0;
  color: var(--muted);
}

.package-grid article.featured p {
  color: #d9e3e8;
}

.package-grid strong {
  align-self: end;
  font-size: 22px;
}

.package-kicker {
  color: var(--poppy);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.page-hero {
  padding-top: 74px;
  padding-bottom: 38px;
}

.page-hero.legal {
  border-bottom: 1px solid var(--line);
}

.terms-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.terms-layout h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.disclaimer-callout {
  margin-bottom: 72px;
  background: #fff7ef;
}

.disclaimer-callout h2 {
  margin: 0 0 10px;
}

.disclaimer-callout p {
  max-width: 900px;
  color: var(--muted);
}

.disclaimer-callout a {
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 26px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.example-page {
  background: #f7fafb;
}

.example-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 24px 70px;
}

.example-hero {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 560px;
  align-content: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 140, 134, 0.1), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #eef8f7 100%);
  box-shadow: 0 18px 48px rgba(18, 25, 39, 0.08);
}

.example-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 850;
}

.example-brand-row img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--white);
}

.example-brand-row strong {
  color: var(--teal-dark);
  background: var(--sky);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  text-transform: uppercase;
}

.example-score {
  display: grid;
  place-items: center;
  width: 134px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--teal-dark);
  background:
    radial-gradient(circle at center, var(--white) 0 56%, transparent 57%),
    conic-gradient(var(--green) 0 100%);
  box-shadow: 0 12px 30px rgba(39, 167, 111, 0.18);
}

.example-score span {
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
}

.example-score small {
  margin-top: -30px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.example-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
}

.example-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.example-grid article,
.example-band {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.example-grid span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.example-grid h2,
.example-band h2 {
  margin: 8px 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

.example-grid p,
.example-band p {
  margin: 0;
  color: var(--muted);
}

.example-band {
  margin-top: 18px;
  background: #fffdf8;
}

@media (max-width: 920px) {
  .top-scan-shell {
    grid-template-columns: auto 1fr;
  }

  .hero,
  .assessment-grid,
  .risk-band,
  .terms-layout {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .meter-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .coa-strip {
    display: none;
    align-items: center;
    text-align: center;
  }

  .top-scan-shell,
  .top-scan-shell.simple {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 8px 14px 4px;
  }

  .brand {
    justify-content: start;
  }

  .brand img {
    width: 156px;
    height: 58px;
  }

  .psi-hero {
    padding: 28px 16px 18px;
    gap: 20px;
  }

  .psi-copy img {
    width: 116px;
  }

  .psi-copy h1 {
    font-size: 34px;
  }

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

  .top-scan-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-scan-form input,
  .top-scan-form .button {
    min-height: 50px;
    width: 100%;
    font-size: 16px;
  }

  .small-links {
    justify-content: end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .small-links a {
    font-size: 12px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-lede,
  .page-hero p {
    font-size: 17px;
  }

  .hero {
    padding: 28px 16px 36px;
    gap: 24px;
  }

  .assessment-shell,
  .packages,
  .loop-section,
  .delta-section,
  .terms-layout,
  .disclaimer-callout,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .scan-app .compact-report {
    padding-top: 12px;
    padding-bottom: 20px;
  }

  .compact-report .report-card {
    min-height: 240px;
    padding: 18px;
  }

  .compact-report .report-empty {
    min-height: 190px;
  }

  .mini-grid,
  .loop-grid,
  .package-grid,
  .delta-grid {
    grid-template-columns: 1fr;
  }

  .inline-field {
    grid-template-columns: 1fr;
  }

  .report-score {
    grid-template-columns: 1fr;
  }

  .score-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px;
  }

  .score-ring {
    width: 156px;
  }

  .score-ring-core {
    width: 110px;
  }

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

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

  .review-row,
  .produce-report-card form,
  .next-step-card,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .produce-report-card {
    padding: 16px;
  }

  .produce-report-card form {
    gap: 12px;
  }

  .produce-report-card .button,
  .next-step-card .button {
    width: 100%;
  }

  .example-shell {
    padding: 18px 14px 44px;
  }

  .example-hero {
    min-height: auto;
    padding: 24px;
  }

  .example-hero h1 {
    font-size: 36px;
  }

  .market-percent {
    text-align: left;
  }

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