:root {
  color-scheme: light;
  --bg: #f7fafc;
  --bg-soft: #eef6f3;
  --surface: #ffffff;
  --surface-muted: #f1f6f9;
  --ink: #132235;
  --text: #24364a;
  --muted: #627386;
  --line: #d8e2ea;
  --line-strong: #c4d3dd;
  --blue: #2f6fdb;
  --blue-dark: #1f54ad;
  --navy: #020817;
  --navy-soft: #081426;
  --cyan: #21d3ee;
  --green: #1f9f78;
  --green-soft: #def5ec;
  --amber: #a66800;
  --amber-soft: #fff2d8;
  --red: #b74343;
  --red-soft: #fae3e3;
  --shadow: 0 24px 64px rgba(19, 34, 53, 0.11);
  --shadow-soft: 0 12px 32px rgba(19, 34, 53, 0.06);
  --radius: 8px;
  --container: 1160px;
  --section-y: 66px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 28%, #ffffff 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

p,
ul {
  margin-bottom: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(47, 111, 219, 0.24);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 226, 234, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.header-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-image {
  width: auto;
  height: clamp(38px, 3.4vw, 46px);
  max-width: min(58vw, 230px);
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 111, 219, 0.2);
}

.brand-mark .icon {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav,
.header-actions {
  display: none;
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.site-nav.is-open {
  position: fixed;
  inset: 72px 0 auto 0;
  display: grid;
  gap: 4px;
  padding: 16px 20px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 700;
}

.site-nav.is-open a {
  padding-inline: 8px;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), #0f5ee8);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(47, 111, 219, 0.2);
}

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

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-link {
  border-color: transparent;
  background: transparent;
  color: var(--blue-dark);
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover,
.button-link:hover {
  border-color: rgba(47, 111, 219, 0.4);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.button-full {
  width: 100%;
}

.email-cta {
  width: fit-content;
  margin-top: 6px;
}

.section {
  padding-block: var(--section-y);
}

.hero {
  position: relative;
  width: min(1580px, calc(100% - 24px));
  overflow: hidden;
  margin: 16px auto 0;
  padding-top: 54px;
  padding-bottom: 44px;
  border: 1px solid rgba(15, 34, 58, 0.9);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 18%, rgba(47, 111, 219, 0.28), transparent 34%),
    radial-gradient(circle at 14% 2%, rgba(33, 211, 238, 0.18), transparent 28%),
    linear-gradient(135deg, #020817 0%, #041123 58%, #071b32 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(2, 8, 23, 0.26);
}

.hero::before {
  position: absolute;
  inset: auto -12% -18% 46%;
  height: 70%;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(47, 111, 219, 0.24) 48% 49%, transparent 49%),
    linear-gradient(26deg, transparent 0 56%, rgba(33, 211, 238, 0.12) 56% 57%, transparent 57%);
  background-size: 86px 86px;
  opacity: 0.62;
  transform: perspective(520px) rotateX(54deg) rotateZ(-9deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: 2.65rem;
}

.hero h1 {
  max-width: 17.4ch;
  color: #ffffff;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 66ch;
  margin-top: 18px;
  color: rgba(235, 246, 255, 0.84);
  font-size: 1.06rem;
}

.hero-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(33, 211, 238, 0.18);
  border-radius: 999px;
  background: rgba(8, 26, 48, 0.86);
  color: var(--cyan);
}

.hero-pill .icon {
  width: 16px;
  height: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.hero .button-secondary:hover,
.hero .button-link:hover {
  border-color: rgba(33, 211, 238, 0.48);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero .button-link {
  color: rgba(235, 246, 255, 0.88);
}

.hero-assurance {
  display: grid;
  gap: 12px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(235, 246, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-assurance .icon {
  color: var(--cyan);
}

.metric-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.report-panel-header strong {
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.report-preview {
  width: 100%;
}

.preview-window {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(47, 111, 219, 0.46);
  border-radius: var(--radius);
  background: rgba(4, 15, 30, 0.72);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.preview-window::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(33, 211, 238, 0.07) 96% 100%),
    linear-gradient(0deg, transparent 0 96%, rgba(47, 111, 219, 0.1) 96% 100%);
  background-size: 30px 30px;
  opacity: 0.78;
  pointer-events: none;
}

.preview-header,
.preview-main,
.preview-summary {
  position: relative;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.preview-header strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.preview-header span {
  display: block;
  margin-top: 2px;
  color: rgba(235, 246, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
}

.preview-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(33, 211, 238, 0.13);
  color: var(--cyan);
}

.preview-main {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.preview-checks {
  display: grid;
  gap: 6px;
}

.score-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(6, 18, 34, 0.86);
}

.score-card strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 1;
}

.score-card p {
  margin-top: 8px;
  color: rgba(235, 246, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.score-ring {
  width: 92px;
  height: 92px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #061222 0 54%, transparent 55%),
    conic-gradient(var(--blue) 0 84%, rgba(255, 255, 255, 0.13) 84% 100%);
  color: #ffffff;
  font-weight: 800;
}

.score-ring span {
  font-size: 1.05rem;
}

.preview-checks span {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(235, 246, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.preview-checks i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(33, 211, 238, 0.1);
}

.preview-checks strong {
  margin-left: auto;
  color: rgba(235, 246, 255, 0.92);
  font-size: 0.78rem;
}

.preview-summary {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.preview-summary p {
  color: rgba(235, 246, 255, 0.76);
  font-size: 0.86rem;
}

.preview-summary .button {
  min-height: 40px;
  justify-self: start;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.hero .metric-label {
  color: rgba(235, 246, 255, 0.56);
}

.trust-strip {
  width: min(1580px, calc(100% - 24px));
  margin-inline: auto;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(19, 34, 53, 0.05);
}

.trust-grid {
  display: grid;
  gap: 16px;
  padding-block: 22px;
}

.trust-grid p {
  color: var(--ink);
  font-weight: 800;
}

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

.trust-grid li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 700;
}

.trust-grid .icon {
  color: var(--green);
}

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

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.section-heading-centred {
  margin-inline: auto;
  text-align: center;
}

.problem-section {
  background: #ffffff;
}

.feature-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.card-grid {
  display: grid;
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.issue-card,
.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.issue-card::before,
.feature-card::before,
.price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
  opacity: 0.78;
}

.issue-card {
  min-height: 120px;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: center;
}

.feature-card {
  min-height: 206px;
}

.feature-card p {
  color: var(--muted);
}

.icon-circle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--blue);
}

.icon-circle .icon {
  width: 20px;
  height: 20px;
}

.steps-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.steps-grid {
  display: grid;
  gap: 14px;
}

.step-card {
  position: relative;
  min-height: 214px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 13px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(47, 111, 219, 0.06);
  text-align: center;
}

.step-number {
  width: 30px;
  height: 30px;
  display: grid;
  justify-self: start;
  place-items: center;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--blue);
}

.step-icon .icon {
  width: 30px;
  height: 30px;
}

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

.sample-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sample-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.report-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow);
}

.report-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 16px;
}

.report-metrics span {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.report-metrics strong {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
}

.badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge-score {
  background: var(--surface-muted);
  color: var(--text);
}

.badge-critical {
  background: var(--red-soft);
  color: var(--red);
}

.badge-warning {
  background: var(--amber-soft);
  color: var(--amber);
}

.badge-passed {
  background: var(--green-soft);
  color: var(--green);
}

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

.finding-list li {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.finding-list p {
  color: var(--text);
  font-weight: 700;
}

.pricing-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

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

.price-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 22px;
}

.featured-plan {
  border-color: rgba(47, 111, 219, 0.38);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 58px rgba(47, 111, 219, 0.15);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.plan-heading {
  padding-right: 80px;
}

.plan-heading p {
  margin-top: 7px;
  color: var(--muted);
}

.price {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.faq-section {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  gap: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

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

.faq-list summary::after {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--blue);
  content: "+";
}

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

.faq-list details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  padding-block: 52px;
  width: min(1580px, calc(100% - 24px));
  margin: 0 auto 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 16%, rgba(33, 211, 238, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy), #0b2540);
  box-shadow: 0 24px 64px rgba(2, 8, 23, 0.18);
}

.final-cta-panel {
  display: grid;
  gap: 24px;
  align-items: center;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: #ffffff;
}

.final-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  justify-self: start;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  padding-block: 36px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

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

.footer-brand .brand-image {
  height: 46px;
  max-width: min(240px, 100%);
}

.footer-grid p {
  max-width: 44ch;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

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

.legal-main {
  padding-block: 64px;
}

.legal-layout {
  max-width: 860px;
}

.legal-layout h1 {
  max-width: 16ch;
}

.legal-card {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
}

.legal-card section {
  display: grid;
  gap: 8px;
}

.legal-card h2 {
  font-size: 1.24rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a:not(.button) {
  color: var(--blue-dark);
  font-weight: 800;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.notice-box {
  padding: 16px;
  border: 1px solid rgba(166, 104, 0, 0.26);
  border-radius: var(--radius);
  background: var(--amber-soft);
  color: var(--ink);
  font-weight: 700;
}

.status-note {
  width: fit-content;
  margin-inline: auto;
  padding: 9px 12px;
  border: 1px solid rgba(47, 111, 219, 0.18);
  border-radius: 999px;
  background: rgba(47, 111, 219, 0.08);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (min-width: 680px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

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

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

  .hero-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .finding-list li {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
  }
}

@media (min-width: 920px) {
  :root {
    --section-y: 88px;
  }

  .header-row {
    min-height: 76px;
    grid-template-columns: minmax(190px, 1fr) auto minmax(250px, 1fr);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .mobile-nav-actions {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.72fr);
    gap: 44px;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .preview-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px;
  }

  .trust-grid {
    grid-template-columns: 290px minmax(0, 1fr);
    align-items: center;
  }

  .trust-grid ul {
    grid-template-columns: repeat(4, auto);
    justify-content: end;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .step-card:not(:last-child)::after {
    position: absolute;
    top: 96px;
    right: -17px;
    z-index: 2;
    color: #9fb3ca;
    content: "→";
    font-size: 1.5rem;
    font-weight: 800;
  }

  .sample-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  }

  .final-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 3.55rem;
  }

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

  .preview-main {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  }
}

@media (max-width: 460px) {
  :root {
    --section-y: 58px;
  }

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

  .hero {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 22px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button-row .button-link {
    width: auto;
    min-height: 34px;
    padding-inline: 0;
    justify-self: start;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 1rem;
  }

  .button-row {
    margin-top: 22px;
  }

  .preview-window {
    padding: 12px;
  }

  .hero-assurance,
  .report-preview {
    display: none;
  }

  .score-card {
    align-items: center;
    padding: 13px;
  }

  .score-card strong,
  .report-panel-header strong {
    font-size: 1.65rem;
  }

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

  .preview-header {
    padding-inline: 4px;
  }

  .preview-summary .button {
    width: 100%;
  }

  .report-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

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