:root {
  --color-text: #141b2b;
  --color-muted: #424754;
  --color-muted-soft: rgba(20, 27, 43, 0.6);
  --color-accent: #0058be;
  --color-accent-soft: rgba(0, 88, 190, 0.1);
  --color-page: #ffffff;
  --color-card: #f8f9ff;
  --color-card-alt: #f1f3ff;
  --color-card-strong: #e1e8fd;
  --color-line: #e5e7eb;
  --color-line-soft: #f1f4ff;
  --color-success: #16a34a;
  --color-success-bg: #dcfce7;
  --color-rose-bg: #fef2f2;
  --color-navy: #141b2b;
  --shadow-soft: 0 20px 25px -5px rgba(20, 27, 43, 0.05),
    0 8px 10px -6px rgba(20, 27, 43, 0.05);
  --shadow-lift: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-button: 4px 12px 10.4px -8px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 20px 25px -5px rgba(0, 88, 190, 0.2),
    0 8px 10px -6px rgba(0, 88, 190, 0.2);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-2xl: 48px;
  --gutter: 60px;
  --hero-height: 587px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-page);
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

textarea {
  resize: vertical;
}

.page {
  overflow: clip;
}

.shell {
  width: min(calc(100vw - (var(--gutter) * 2)), 1340px);
  margin: 0 auto;
}

.shell--header {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 32px;
}

.shell--hero {
  display: grid;
  grid-template-columns: minmax(540px, 696px) minmax(420px, 587px);
  justify-content: space-between;
  align-items: start;
  gap: 57px;
}

.shell--proof {
  display: grid;
  grid-template-columns: minmax(480px, 640px) minmax(420px, 660px);
  justify-content: space-between;
  align-items: start;
  gap: 64px;
}

.shell--dynamic {
  width: min(calc(100vw - (var(--gutter) * 2)), 1216px);
}

.shell--deliverables {
  width: min(calc(100vw - (var(--gutter) * 2)), 1340px);
}

.shell--overview {
  width: min(calc(100vw - (var(--gutter) * 2)), 1336px);
}

.shell--pricing {
  width: min(calc(100vw - (var(--gutter) * 2)), 1244px);
}

.shell--contact {
  width: min(calc(100vw - 126px), 1280px);
}

.site-header {
  padding: 30px 0 0;
}

.brand {
  opacity: 0;
  pointer-events: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  grid-column: 2 / 4;
}

.site-nav > a:not(.button) {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

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

.button--nav {
  width: 170px;
  min-height: 50px;
  background: var(--color-accent);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

.button--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.button--hero {
  width: 250px;
  min-height: 60px;
  box-shadow: var(--shadow-button);
  font-size: 20px;
  line-height: 20px;
}

.button--outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.button--full {
  width: 100%;
  min-height: 68px;
  border-radius: var(--radius-md);
  font-size: 20px;
  line-height: 28px;
}

.hero {
  padding: 91px 0 157px;
}

.hero__copy {
  padding-top: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 11px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow__icon {
  width: 10px;
  height: 12px;
}

.hero__title,
.section-title {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.hero__title {
  font-size: 72px;
  line-height: 76px;
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__lead,
.section-copy {
  margin: 36px 0 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 28px;
}

.hero__actions {
  display: flex;
  align-items: flex-end;
  gap: 23px;
  margin-top: 36px;
}

.hero__price-box {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.hero__price {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.hero__price-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 587px;
  margin: 0;
}

.hero-dashboard > img {
  width: 100%;
  min-height: var(--hero-height);
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-score-card {
  position: absolute;
  left: -32px;
  bottom: -32px;
  width: 208px;
  padding: 33px;
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lift);
}

.hero-score-card__label {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-score-card__value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 20px;
}

.hero-score-card__value strong {
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
}

.hero-score-card__value span {
  opacity: 0.3;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.hero-score-card__track {
  height: 8px;
  border-radius: 999px;
  background: var(--color-card-alt);
  overflow: hidden;
}

.hero-score-card__track span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-accent);
}

.proof {
  padding-bottom: 131px;
}

.proof__copy {
  max-width: 696px;
}

.section-title {
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.02em;
}

.section-title--split {
  display: grid;
  gap: 0;
}

.section-title .accent,
.section-title--split .accent {
  color: var(--color-accent);
}

.proof-list {
  display: grid;
  gap: 31px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 23px;
  align-items: start;
}

.proof-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--color-accent);
}

.proof-list__icon svg {
  width: 18px;
  height: 18px;
}

.proof-list__icon--blue {
  background: var(--color-card-alt);
}

.proof-list__icon--rose {
  background: var(--color-rose-bg);
}

.proof-list h3,
.feature-card h3,
.dynamic-data h3,
.deliverables-list h3,
.overview-card h3,
.pricing-card h3,
.contact-links strong,
.site-footer strong {
  margin: 0;
  color: var(--color-text);
}

.proof-list h3 {
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.proof-list p,
.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

.proof-list p {
  line-height: 26px;
}

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

.feature-card {
  min-height: 440px;
  padding: 61px 36px 40px;
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-lg);
  background: var(--color-card);
}

.feature-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 57px;
  color: var(--color-accent);
}

.feature-card__icon--wide {
  width: 48px;
  height: 32px;
  margin-top: 4px;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.feature-card p {
  line-height: 26px;
}

.dynamic-data {
  padding: 128px 0;
}

.dynamic-data__grid {
  display: grid;
  grid-template-columns: minmax(0, 689px) minmax(0, 479px);
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

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

.stats-panel,
.mini-card,
.overview-card,
.pricing-card--secondary,
.contact-form,
.site-footer {
  box-shadow: var(--shadow-soft);
}

.stats-panel {
  grid-column: 1 / -1;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--color-card-strong);
}

.stats-panel__top,
.mini-card__header,
.contact__grid,
.site-footer {
  display: flex;
}

.stats-panel__top {
  justify-content: space-between;
  gap: 24px;
}

.stats-panel h3,
.overview-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.stats-panel h3 {
  margin-bottom: 4px;
}

.stats-panel p,
.mini-card p,
.check-list p,
.deliverables-list p,
.overview-card p,
.pricing-card p,
.support-list p,
.contact-links small,
.contact-form__legal,
.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--color-muted);
}

.stats-panel p,
.deliverables-list p {
  font-size: 14px;
  line-height: 20px;
}

.status-pill {
  align-self: start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-success-bg);
  color: var(--color-success);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.stats-panel__metrics {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
}

.stats-panel__metrics strong,
.overview-card__metrics strong {
  display: block;
  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.stats-panel__metrics span {
  display: block;
  margin-top: 4px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats-divider {
  width: 1px;
  height: 48px;
  background: #c2c6d6;
}

.mini-card {
  min-height: 204px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
}

.mini-card--centered {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.score-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  border: 6px solid var(--color-accent);
  border-radius: 999px;
}

.score-ring span,
.overview-card__ring span {
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.mini-card h3 {
  font-size: 16px;
  line-height: 24px;
}

.mini-card p {
  font-size: 12px;
  line-height: 16px;
}

.mini-card--search {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-bottom: 68px;
}

.mini-card__header {
  align-items: center;
  gap: 16px;
}

.mini-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-card-strong);
  color: var(--color-accent);
}

.mini-card__badge svg {
  width: 18px;
  height: 18px;
}

.mini-card--search h3 {
  font-size: 14px;
  line-height: 20px;
}

.mini-card--search p {
  color: var(--color-success);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

.search-lines {
  display: grid;
  gap: 8px;
}

.search-lines span {
  height: 8px;
  border-radius: 999px;
  background: var(--color-card-alt);
}

.search-lines span:nth-child(2) {
  width: 201.5px;
}

.search-lines span:nth-child(3) {
  width: 134.33px;
}

.dynamic-data__copy {
  display: grid;
  gap: 32px;
}

.dynamic-data__copy .section-title {
  font-size: 36px;
  line-height: 45px;
}

.section-copy--large {
  margin-top: 0;
  font-size: 18px;
  line-height: 29.25px;
}

.check-list,
.deliverables-list,
.pricing-features,
.support-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  gap: 24px;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.check-list span svg {
  width: 10px;
  height: 8px;
}

.check-list h3 {
  font-size: 16px;
  line-height: 24px;
}

.check-list p {
  font-size: 14px;
  line-height: 20px;
}

.deliverables {
  padding: 128px 0;
  background: var(--color-navy);
}

.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 598px));
  justify-content: space-between;
  gap: 80px;
  padding: 0 32px;
}

.section-title--light {
  color: #fff;
  line-height: 48px;
}

.deliverables__copy {
  display: grid;
  gap: 48px;
  align-content: center;
}

.deliverables-list {
  gap: 32px;
}

.deliverables-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  min-height: 100px;
  padding: 24px;
  border-radius: 16px;
}

.deliverables-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
}

.deliverables-list__icon svg {
  width: 22px;
  height: 22px;
}

.deliverables-list h3 {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
}

.deliverables-list p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.audit-card {
  padding: 33px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.audit-card__surface {
  display: grid;
  gap: 16px;
  min-height: 399px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
}

.audit-card__header,
.audit-card__id,
.audit-card__verified {
  display: flex;
  align-items: start;
}

.audit-card__header {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-line);
}

.audit-card__id {
  gap: 8px;
}

.audit-card__id-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.audit-card__id strong {
  display: block;
  color: var(--color-text);
  font-size: 14px;
  line-height: 20px;
}

.audit-card__id p {
  font-size: 10px;
  line-height: 15px;
}

.audit-card__verified {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.audit-card__stars {
  color: #f9c846;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.audit-card__pill {
  padding: 1.5px 8px;
  border-radius: 999px;
  background: var(--color-success-bg);
  color: #15803d;
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-transform: uppercase;
}

.audit-card__quote {
  display: grid;
  gap: 5px;
  padding: 15.5px 16px 13px;
  border-radius: 16px;
  background: var(--color-card);
}

.audit-card__quote blockquote {
  margin: 0;
  color: var(--color-text);
  font-size: 12px;
  font-style: italic;
  line-height: 19.5px;
}

.audit-card__sentiment {
  justify-self: end;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 8px;
  font-style: italic;
  font-weight: 700;
  line-height: 13px;
}

.audit-card__certificate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding-top: 8px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.audit-card__certificate svg {
  width: 11px;
  height: 11px;
}

.audit-card__scores {
  display: grid;
  gap: 12px;
}

.audit-card__scores > div {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 9px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
}

.audit-card__scores p {
  color: var(--color-muted);
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-transform: uppercase;
}

.audit-card__scores strong {
  color: var(--color-accent);
  font-size: 10px;
  line-height: 15px;
}

.overview {
  padding: 128px 0 126px;
}

.overview__header,
.pricing__header {
  display: grid;
  gap: 16px;
}

.section-title--center,
.section-copy--center {
  text-align: center;
}

.section-title--center {
  font-size: 36px;
  line-height: 40px;
}

.section-copy--center {
  width: min(100%, 672px);
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
}

.overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 397px 278px;
  gap: 32px;
  margin-top: 84px;
}

.overview-card {
  border-radius: var(--radius-2xl);
}

.overview-card--stats {
  grid-column: 1 / span 2;
  display: grid;
  gap: 24px;
  padding: 41px;
  border: 1px solid var(--color-line-soft);
  background: var(--color-card);
}

.overview-card--stats > p,
.overview-card--search > p,
.overview-card--social > p,
.overview-card--perception p {
  font-size: 16px;
  line-height: 26px;
}

.overview-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
}

.overview-card__metrics > div {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 33px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
}

.overview-card__metrics strong {
  color: var(--color-accent);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
}

.overview-card__metrics span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overview-card--search,
.overview-card--social,
.overview-card--perception {
  background: var(--color-card-strong);
}

.overview-card--search {
  grid-column: 3;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 40px 40px 121px;
}

.overview-card--search::after,
.overview-card--search::before {
  content: "";
  position: absolute;
  opacity: 0.18;
  border: 8px solid var(--color-card-alt);
}

.overview-card--search::before {
  right: 14px;
  bottom: 10px;
  width: 22px;
  height: 22px;
}

.overview-card--search::after {
  right: 36px;
  bottom: 28px;
  width: 18px;
  height: 18px;
}

.overview-card__signal {
  width: 228px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
}

.overview-card__signal-bar {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 8px;
  background: rgba(0, 88, 190, 0.2);
}

.overview-card__lines {
  display: grid;
  gap: 16px;
  opacity: 0.4;
}

.overview-card__lines span {
  display: block;
  border-radius: 8px;
}

.overview-card__lines span:nth-child(1) {
  width: 152px;
  height: 8px;
  background: var(--color-accent);
}

.overview-card__lines span:nth-child(2) {
  width: 100%;
  height: 4px;
  background: #9ca3af;
}

.overview-card__lines span:nth-child(3) {
  width: 253px;
  height: 4px;
  background: #9ca3af;
}

.overview-card--social {
  grid-column: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 40px;
}

.overview-card__symbol {
  width: 48px;
  height: 46px;
  color: var(--color-accent);
}

.overview-card--perception {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: 245px 1fr;
  align-items: center;
  gap: 32px;
  padding: 41px;
  border: 1px solid var(--color-line);
}

.overview-card__ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  border: 12px solid var(--color-accent);
  border-radius: 999px;
}

.overview-card__ring span {
  color: var(--color-accent);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
}

.overview-card__body {
  display: grid;
  gap: 12px;
}

.pricing {
  padding: 128px 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
  gap: 32px;
  margin-top: 80px;
}

.pricing-card {
  border-radius: var(--radius-2xl);
}

.pricing-card--primary {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 50px 50px 112.75px;
  border: 2px solid var(--color-accent);
  background: #fff;
  box-shadow: var(--shadow-lift);
}

.pricing-card--primary h3,
.pricing-card--secondary h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 80px;
  margin: 0;
}

.pricing-card__price strong {
  color: var(--color-text);
  font-size: 69px;
  font-weight: 800;
  line-height: 72px;
}

.pricing-card__price span {
  color: var(--color-muted);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.pricing-card__price small {
  padding-bottom: 8px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.pricing-features {
  gap: 20px;
  padding: 16px 0 24px;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.pricing-features li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
}

.pricing-features__accent {
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-features__accent svg {
  width: 10px;
  height: 20px;
}

.pricing-card__note {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.pricing-card--secondary {
  display: grid;
  gap: 24px;
  padding: 49px;
  border: 1px solid var(--color-line-soft);
  background: var(--color-card);
}

.pricing-card__lead {
  font-size: 18px;
  line-height: 29.25px;
}

.support-list {
  gap: 32px;
  padding: 16px 0 24px;
}

.support-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.support-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.support-list__icon svg {
  width: 20px;
  height: 20px;
}

.support-list h4 {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.support-list p {
  font-size: 14px;
  line-height: 20px;
}

.pricing-card__footer {
  display: grid;
  gap: 24px;
  padding-top: 41px;
  border-top: 1px solid var(--color-line-soft);
}

.pricing-card__footer p {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.contact {
  padding: 128px 0 0;
  background: var(--color-card-alt);
}

.contact__grid {
  justify-content: space-between;
  align-items: start;
  gap: 80px;
}

.contact__copy {
  width: 460px;
  padding-top: 4px;
}

.contact__copy .section-title {
  line-height: 48px;
}

.contact-links {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.contact-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  color: var(--color-accent);
}

.contact-links span svg {
  width: 20px;
  height: 20px;
}

.contact-links small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  display: block;
  font-size: 20px;
  line-height: 28px;
  white-space: nowrap;
}

.contact__form-wrap {
  width: 676px;
  padding-bottom: 16px;
}

.contact-form {
  display: grid;
  gap: 31.1px;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: #fff;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  padding-left: 4px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-card-alt);
  color: var(--color-text);
  padding: 15px 16px 16px;
  font-size: 16px;
  line-height: 24px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(0, 88, 190, 0.16);
}

.contact-form__message textarea {
  min-height: 128px;
}

.contact-form__submit {
  min-height: 69px;
}

.contact-form__legal {
  padding: 0 40px;
  font-size: 10px;
  line-height: 16.25px;
  text-align: center;
}

.site-footer {
  justify-content: space-between;
  gap: 48px;
  margin-top: 128px;
  padding: 64px 48px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer__brand {
  width: 341px;
}

.site-footer__brand strong {
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.site-footer__brand p {
  margin-top: 23.25px;
  max-width: 320px;
  font-size: 14px;
  line-height: 22.75px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 154px));
  gap: 32px;
}

.site-footer__nav h3 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__nav a {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
}

.site-footer__meta {
  display: grid;
  justify-items: end;
  align-content: space-between;
  min-width: 280px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-card-strong);
  color: var(--color-accent);
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
}

.site-footer__meta p {
  font-size: 12px;
  line-height: 16px;
}

.contact-form__submit.is-submitted {
  background: #15803d;
  box-shadow: none;
}

@media (max-width: 1280px) {
  :root {
    --gutter: 40px;
  }

  .shell--hero,
  .shell--proof,
  .dynamic-data__grid,
  .deliverables__grid,
  .pricing__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .shell--hero,
  .shell--proof,
  .contact__grid {
    display: grid;
  }

  .hero__visual,
  .proof__cards {
    justify-self: stretch;
  }

  .hero-dashboard {
    margin: 0 auto;
  }

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

  .dynamic-data__cards,
  .deliverables__grid,
  .pricing__grid,
  .contact__grid {
    gap: 48px;
  }

  .dynamic-data__copy,
  .deliverables__copy,
  .contact__copy,
  .contact__form-wrap,
  .proof__copy {
    width: 100%;
    max-width: none;
  }

  .deliverables__grid {
    padding: 0;
  }

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

  .overview-card--stats,
  .overview-card--perception {
    grid-column: span 2;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    justify-items: start;
    gap: 24px;
  }
}

@media (max-width: 920px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    padding-top: 20px;
  }

  .shell--header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-card-alt);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--color-text);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--color-line-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .button--nav {
    width: 100%;
  }

  .hero {
    padding: 56px 0 104px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__title {
    font-size: 56px;
    line-height: 60px;
  }

  .section-title {
    font-size: 40px;
    line-height: 44px;
  }

  .dynamic-data__copy .section-title,
  .section-title--center {
    font-size: 32px;
    line-height: 38px;
  }

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

  .hero-score-card {
    left: 16px;
    bottom: 16px;
  }

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

  .feature-card {
    min-height: 0;
  }

  .dynamic-data__cards,
  .overview__grid,
  .pricing__grid,
  .contact-form__row,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .overview-card--stats,
  .overview-card--perception {
    grid-column: auto;
  }

  .overview-card--perception {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-card__price {
    flex-wrap: wrap;
  }

  .site-footer {
    margin-top: 96px;
    padding: 48px 0 56px;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: 44px;
    line-height: 48px;
  }

  .hero__lead,
  .section-copy--large {
    font-size: 18px;
    line-height: 28px;
  }

  .section-title {
    font-size: 34px;
    line-height: 38px;
  }

  .section-title--center,
  .dynamic-data__copy .section-title {
    font-size: 28px;
    line-height: 34px;
  }

  .button--hero,
  .button--full {
    width: 100%;
  }

  .hero-score-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }

  .stats-panel,
  .mini-card,
  .feature-card,
  .overview-card,
  .pricing-card--primary,
  .pricing-card--secondary,
  .contact-form {
    padding: 28px;
  }

  .stats-panel__top,
  .stats-panel__metrics,
  .support-list article,
  .contact-links a {
    grid-template-columns: 1fr;
  }

  .stats-panel__top,
  .stats-panel__metrics,
  .support-list article,
  .contact-links a {
    display: grid;
  }

  .stats-divider {
    width: 100%;
    height: 1px;
  }

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

  .deliverables-list li {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__meta {
    min-width: 0;
    width: 100%;
  }

  .site-footer__brand p {
    max-width: none;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes fillTrack {
  from { width: 0; }
  to   { width: 84%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); }
  50%       { box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* --- Hero entry animations --- */
.hero__copy .eyebrow {
  animation: fadeInUp 0.5s ease both 0.05s;
}

.hero__title {
  animation: fadeInUp 0.6s ease both 0.15s;
}

.hero__lead {
  animation: fadeInUp 0.6s ease both 0.3s;
}

.hero__actions {
  animation: fadeInUp 0.6s ease both 0.45s;
}

.hero__visual {
  animation: fadeIn 0.9s ease both 0.2s;
}

/* --- Floating score card --- */
.hero-score-card {
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 640px) {
  .hero-score-card { animation: none; }
}

/* --- Track fill on load --- */
.hero-score-card__track span {
  animation: fillTrack 1s cubic-bezier(0.4, 0, 0.2, 1) both 0.7s;
}

/* --- Status pill pulse --- */
.status-pill {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* --- Button shimmer --- */
.button--primary {
  position: relative;
  overflow: hidden;
}

.button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3.5s ease infinite 1.2s;
}

/* --- Scroll reveal system --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Card hover lifts --- */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--color-accent);
}

.overview-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.pricing-card--primary {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card--primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 64px -20px rgba(0, 88, 190, 0.28);
}

.pricing-card--secondary {
  transition: transform 0.3s ease;
}

.pricing-card--secondary:hover {
  transform: translateY(-4px);
}

.mini-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

/* --- Contact links slide --- */
.contact-links a {
  transition: transform 0.22s ease;
}

.contact-links a:hover {
  transform: translateX(8px);
}

/* --- Footer social hover --- */
.site-footer__social a {
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover {
  transform: translateY(-3px);
  background: var(--color-accent);
  color: #fff;
}

/* --- Nav underline --- */
.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  width: 100%;
}

/* --- List item hover nudge --- */
.check-list li {
  transition: transform 0.2s ease;
}

.check-list li:hover {
  transform: translateX(4px);
}

.deliverables-list li {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.deliverables-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

/* --- Score ring pulse on reveal --- */
.overview-card__ring,
.score-ring {
  transition: box-shadow 0.4s ease;
}

.overview-card--perception:hover .overview-card__ring,
.mini-card:hover .score-ring {
  box-shadow: 0 0 0 6px rgba(0, 88, 190, 0.12);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
