:root {
  --ink: #10161d;
  --navy: #0e2740;
  --navy-hover: #0a1e31;
  --slate: #59636e;
  --slate-soft: #7a828c;
  --line: #e5e9ef;
  --line-strong: #e9ecf1;
  --section: #f6f8fa;
  --surface: #fbfcfd;
  --green: #1f9c5e;
  --green-hover: #17814d;
  --green-link: #1f8a54;
  --green-tint: #e7f4ec;
  --amber: #e0a32e;
  --amber-deep: #b27c13;
  --red: #c0492f;
  --bluegray: #3e5163;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.state-open {
  overflow: hidden;
}

a {
  color: var(--green-link);
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

input {
  width: 100%;
  border: 1px solid #dce2ea;
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  font-size: 15px;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 156, 94, 0.15);
}

::selection {
  background: #cdead9;
}

@keyframes artpulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 163, 46, 0.55);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(224, 163, 46, 0);
  }
}

@keyframes artscan {
  0% {
    top: 7%;
  }
  100% {
    top: 88%;
  }
}

.app {
  min-height: 100vh;
  background: #ffffff;
}

.site-header,
.state-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  border-bottom: 1px solid var(--line-strong);
  background: #ffffff;
}

.brand img,
.site-header img,
.state-header img {
  display: block;
  width: auto;
  height: 25px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--navy);
}

.outline-link,
.outline-button {
  border: 1px solid #d3dae2;
  border-radius: 9px;
  color: var(--ink) !important;
  background: #ffffff;
  padding: 9px 16px;
}

.outline-link:hover,
.outline-button:hover {
  border-color: var(--navy);
}

.hero {
  background: var(--section);
  padding: 76px 64px 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 60px;
  max-width: 1312px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.state-kicker,
.regulatory-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--slate);
}

.eyebrow span,
.report-banner span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.hero h1 {
  max-width: 15ch;
  margin: 20px 0 0;
  font-family: "Spectral", Georgia, serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  margin: 16px 0 0;
  font-family: "Spectral", Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  color: var(--bluegray);
}

.hero-text {
  max-width: 46ch;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
}

.hero-form {
  max-width: 530px;
  margin-top: 30px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 46px -28px rgba(16, 39, 64, 0.3);
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--slate-soft);
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

#code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
}

.primary-button,
.navy-button {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  color: #ffffff;
  background: var(--green);
  font-weight: 600;
  font-size: 15px;
}

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

.primary-button.compact {
  width: auto;
  margin: 0;
  padding: 10px 16px;
}

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

.navy-button:hover {
  background: var(--navy-hover);
}

.microcopy {
  max-width: 530px;
  margin: 14px 0 0;
  color: var(--slate-soft);
  font-size: 13px;
  line-height: 1.5;
}

.scan-wrap {
  position: relative;
  width: 100%;
  padding: 8px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.scan-browser {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 34px 66px -36px rgba(16, 39, 64, 0.4);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--surface);
  border-bottom: 1px solid #eef1f5;
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e2e6ec;
}

.browser-bar span {
  flex: 1;
  margin-left: 8px;
  padding: 5px 12px;
  border-radius: 6px;
  background: #eef1f5;
  color: var(--slate-soft);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11.5px;
}

.browser-body {
  position: relative;
  height: 340px;
  overflow: hidden;
  padding: 24px;
}

.wire {
  border-radius: 5px;
  background: #edf0f4;
}

.wire.title {
  width: 55%;
  height: 26px;
}

.wire.line {
  height: 12px;
  margin-top: 14px;
  background: #f2f4f7;
}

.wire.line.medium {
  width: 72%;
  margin-top: 8px;
}

.wire.line.long {
  width: 80%;
}

.wire.line.short {
  width: 64%;
  margin-top: 22px;
}

.wire.line.tiny {
  width: 50%;
  margin-top: 8px;
}

.wire-cards {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.wire-cards div {
  flex: 1;
  height: 90px;
  border-radius: 8px;
  background: #edf0f4;
}

.tech-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px -10px rgba(16, 39, 64, 0.25);
  color: #2c3742;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
}

.tech-tag b {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.cat-measurement {
  background: var(--green);
}

.cat-behavior {
  background: var(--amber);
}

.cat-risk {
  background: var(--red);
}

.tag-ga {
  top: 30px;
  right: 24px;
}

.tag-gtm {
  top: 32px;
  left: 36px;
}

.tag-hotjar {
  top: 118px;
  left: 46px;
}

.tag-meta {
  top: 148px;
  right: 44px;
}

.tag-clarity {
  right: 34px;
  bottom: 92px;
}

.tag-gravity {
  right: 128px;
  bottom: 28px;
}

.tag-cookies {
  bottom: 28px;
  left: 36px;
}

.scan-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 16px 3px rgba(31, 156, 94, 0.5);
  animation: artscan 2.4s ease-in-out infinite alternate;
}

.scan-chip {
  position: absolute;
  right: 16px;
  bottom: -14px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 34px -18px rgba(14, 39, 64, 0.6);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.section {
  padding: 78px 64px;
  background: #ffffff;
}

.section-muted {
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
  background: var(--section);
}

.section-inner,
.regulatory-inner,
.about-inner,
.footer-grid,
.footer-bottom {
  max-width: 1312px;
  margin: 0 auto;
}

.section-kicker {
  color: var(--green);
}

.section h2,
.state-view h2,
.report-shell h2 {
  margin: 12px 0 0;
  font-family: "Spectral", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
}

.section h2 {
  max-width: 22ch;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #ffffff;
}

.feature-card h3,
.step-card h3,
.findings h4 {
  margin: 18px 0 8px;
  font-family: "Spectral", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background-color: var(--green-tint);
  background-position: center;
  background-repeat: no-repeat;
}

.target-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%231F9C5E' stroke-width='1.6'%3E%3Ccircle cx='11' cy='11' r='8.2'/%3E%3Ccircle cx='11' cy='11' r='3.4'/%3E%3Ccircle cx='11' cy='11' r='0.9' fill='%231F9C5E' stroke='none'/%3E%3C/svg%3E");
}

.cookie-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%231F9C5E' stroke-width='1.6'%3E%3Ccircle cx='11' cy='11' r='8.2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.1' fill='%231F9C5E' stroke='none'/%3E%3Ccircle cx='13.5' cy='10' r='1.1' fill='%231F9C5E' stroke='none'/%3E%3Ccircle cx='9.5' cy='13.5' r='1.1' fill='%231F9C5E' stroke='none'/%3E%3C/svg%3E");
}

.policy-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%231F9C5E' stroke-width='1.6'%3E%3Crect x='5' y='3.5' width='12' height='15' rx='1.5'/%3E%3Cline x1='8' y1='8' x2='14' y2='8'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3Cline x1='8' y1='14' x2='12' y2='14'/%3E%3C/svg%3E");
}

.maturity-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%231F9C5E' stroke-width='1.6'%3E%3Crect x='4' y='12' width='3' height='6' rx='0.8'/%3E%3Crect x='9.5' y='9' width='3' height='9' rx='0.8'/%3E%3Crect x='15' y='5' width='3' height='13' rx='0.8'/%3E%3C/svg%3E");
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 44px;
}

.step-card {
  border-top: 2px solid #c9d2dc;
  padding-top: 22px;
}

.step-card.active {
  border-color: var(--green);
}

.step-card div {
  color: var(--green);
  font-family: "Spectral", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.step-card h3 {
  margin-top: 16px;
  font-size: 19px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.65;
}

.regulatory {
  padding: 34px 64px;
  background: var(--navy);
}

.regulatory-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.regulatory-kicker {
  color: #7e99b2;
}

.regulatory p {
  max-width: 34ch;
  margin: 6px 0 0;
  color: #f4f7fa;
  font-family: "Spectral", Georgia, serif;
  font-size: 20px;
}

.regulatory-chips {
  display: flex;
  gap: 14px;
}

.regulatory-chips div {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.regulatory-chips strong,
.regulatory-chips span {
  display: block;
}

.regulatory-chips strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.regulatory-chips span {
  margin-top: 3px;
  color: #8fa6bc;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.03em;
}

.regulatory-chips div:first-child span {
  color: #69c596;
}

.about {
  padding: 74px 64px;
  background: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}

.about-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.about-brand img:first-child {
  height: 60px;
  width: auto;
}

.about-brand img:last-child {
  height: 26px;
  width: auto;
}

.about p {
  margin: 14px 0 0;
  color: #22303c;
  font-family: "Spectral", Georgia, serif;
  font-size: 23px;
  line-height: 1.45;
}

.about a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-link);
  font-size: 15px;
  font-weight: 500;
}

.footer {
  padding: 52px 64px 30px;
  border-top: 1px solid var(--line);
  background: var(--section);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer img {
  display: block;
  height: 24px;
  width: auto;
}

.footer p {
  max-width: 34ch;
  margin: 16px 0 0;
  color: var(--slate-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer h3 {
  margin: 0 0 14px;
  color: #9aa3ad;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-top: 11px;
  color: var(--slate);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8a929c;
  font-size: 12.5px;
}

.footer-bottom a {
  margin: 0;
  color: #a6aeb8;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.state-view {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: auto;
  background: var(--section);
}

.hidden {
  display: none !important;
}

.state-header div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9a6a12;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
  animation: artpulse 1.1s ease-in-out infinite;
}

.progress-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 78px 24px;
}

.state-kicker {
  color: var(--green);
}

.progress-shell p,
.waitlist-card p,
.score-card p,
.findings p {
  color: var(--slate);
  line-height: 1.6;
}

.progress-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.progress-meter div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e9ef;
}

.progress-meter span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.85s ease;
}

.progress-meter strong {
  color: var(--green-link);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

.progress-steps {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 44px -30px rgba(16, 39, 64, 0.3);
}

.progress-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef1f5;
}

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

.progress-row .dot {
  width: 20px;
  height: 20px;
  border: 1px solid #cbd3dc;
  border-radius: 999px;
  background: #ffffff;
}

.progress-row.done .dot {
  border-color: var(--green);
  background: var(--green);
}

.progress-row.active .dot {
  border-color: var(--amber);
  background: var(--amber);
  animation: artpulse 1.1s ease-in-out infinite;
}

.progress-row.pending {
  opacity: 0.45;
}

.progress-row strong {
  display: block;
  color: var(--bluegray);
  font-weight: 500;
}

.progress-row.active strong {
  color: var(--ink);
}

.progress-row small,
.progress-row em {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-style: normal;
}

.progress-row small {
  color: #9aa3ad;
}

.progress-row em {
  color: #a6aeb8;
}

.progress-row.done em {
  color: var(--green-link);
}

.progress-row.active em {
  color: #9a6a12;
}

.report-view {
  background: #ffffff;
}

.report-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 64px;
  border-bottom: 1px solid #c9e6d5;
  background: var(--green-tint);
}

.report-banner div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f6d45;
  font-size: 14px;
  font-weight: 500;
}

.report-banner div:last-child {
  gap: 10px;
}

.outline-button {
  margin: 0;
  font-size: 14px;
}

.report-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px 64px 64px;
}

.report-shell h2 {
  overflow-wrap: anywhere;
  font-size: 32px;
}

.report-meta,
.report-note {
  color: #9aa3ad;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

.report-markdown {
  margin: 20px 0 0;
  padding: 22px;
  overflow-x: auto;
  white-space: pre-wrap;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: #26313d;
  background: #fbfcfd;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.65;
}

.score-card {
  margin-top: 28px;
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
}

.score-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.score-head span {
  color: var(--slate-soft);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.score-head strong {
  font-family: "Spectral", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.score-head b {
  color: var(--amber-deep);
}

.score-meter {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.score-meter span,
.score-meter i {
  flex: 1;
  height: 12px;
  border-radius: 4px;
}

.score-meter span {
  background: var(--green);
}

.score-meter i {
  background: #e4e9ef;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.stats-grid article {
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
}

.stats-grid strong {
  display: block;
  font-family: "Spectral", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.stats-grid .warning {
  color: var(--amber-deep);
}

.stats-grid .danger {
  color: var(--red);
}

.stats-grid span {
  display: block;
  margin-top: 9px;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.45;
}

.findings {
  margin-top: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
}

.findings h3 {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid #eef1f5;
  font-family: "Spectral", Georgia, serif;
  font-size: 20px;
}

.findings article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid #eef1f5;
}

.findings article:last-child {
  border-bottom: 0;
}

.sev {
  align-self: start;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.sev.high {
  color: #b23a22;
  background: #fbe9e4;
}

.sev.medium {
  color: #9a6a12;
  background: #fbf1dd;
}

.sev.low {
  color: var(--bluegray);
  background: #e9eef3;
}

.findings h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.findings p {
  margin: 0;
}

.waitlist-view {
  padding-top: 120px;
  background: var(--section);
}

.waitlist-card {
  width: min(480px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 34px 70px -40px rgba(16, 39, 64, 0.4);
}

.waitlist-card > img {
  display: block;
  height: 24px;
  width: auto;
}

.wait-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--amber-deep);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wait-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.waitlist-card h2 {
  margin-top: 12px;
  font-size: 27px;
}

.waitlist-card code {
  color: var(--red);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.waitlist-card form {
  margin-top: 24px;
}

.waitlist-card form p {
  margin: 12px 0 0;
  color: var(--slate-soft);
  font-size: 13px;
}

.wait-success {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #c9e6d5;
  border-radius: 10px;
  background: var(--green-tint);
  color: #1f6d45;
}

.wait-success strong,
.wait-success span {
  display: block;
}

.wait-success span {
  margin-top: 4px;
  color: var(--slate);
  line-height: 1.5;
}

.text-button {
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-link);
  font-weight: 500;
}

@media (max-width: 980px) {
  .site-header,
  .state-header,
  .hero,
  .section,
  .regulatory,
  .about,
  .footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

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

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

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

  .regulatory-inner,
  .report-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header,
  .state-header,
  .hero,
  .section,
  .regulatory,
  .about,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .field-row,
  .analysis-grid,
  .stats-grid,
  .regulatory-chips {
    grid-template-columns: 1fr;
  }

  .regulatory-chips {
    display: grid;
    width: 100%;
  }

  .scan-chip {
    position: static;
    display: inline-block;
    margin-top: 12px;
  }

  .report-shell {
    padding: 36px 20px 52px;
  }

  .score-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .findings article,
  .progress-row {
    grid-template-columns: 1fr;
  }
}
