:root {
  --ink: #17202a;
  --muted: #5d6877;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --line: #d9e1e8;
  --brand: #2f6f83;
  --brand-dark: #174d62;
  --green: #067647;
  --red: #b42318;
  --gold: #b7791f;
  --shadow: 0 24px 70px rgba(15, 23, 42, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(217, 225, 232, .82);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.logo img {
  width: min(324px, 42vw);
  height: auto;
}

.nav-links,
.nav-actions,
.hero-actions,
.legal-links,
.contact-form-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 22px;
  color: #344054;
  font-size: .94rem;
  font-weight: 760;
}

.nav-links a:hover,
.legal-links a:hover,
.text-link:hover {
  color: var(--brand-dark);
}

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #e9eef2;
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-large {
  min-height: 50px;
  padding: 0 19px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: #344054;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.text-button {
  justify-self: start;
  padding: 0;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-button:disabled {
  color: var(--muted);
  cursor: wait;
}

.hero {
  min-height: calc(100vh - 74px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #13232d;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 24, 33, .92) 0%, rgba(14, 24, 33, .68) 44%, rgba(14, 24, 33, .18) 100%),
    linear-gradient(0deg, rgba(14, 24, 33, .72) 0%, rgba(14, 24, 33, .08) 46%);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 34px;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: #83d3ce;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  width: min(920px, 100%);
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.35rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
  line-height: 1.58;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 72px;
}

.proof-item {
  min-width: 0;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.proof-item span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-head {
  width: min(740px, 100%);
  margin-bottom: 34px;
}

.section-head.centered {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.06;
}

.section-head p,
.intro-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.56;
}

.intro-band {
  background: linear-gradient(180deg, #fff 0%, #f7faf9 100%);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: 42px;
  align-items: end;
  padding-bottom: 22px;
}

.intro-layout .section-head {
  margin: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.benefit-grid,
.pricing-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid.section-inner {
  padding-top: 22px;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.trust-grid div {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.trust-grid strong {
  color: var(--ink);
  font-size: .98rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.market-band {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 131, .14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f3f8f8 100%);
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 20px;
}

.market-layout .section-head {
  margin: 0;
}

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

.market-stats article {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 131, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.market-stats span,
.chart-head span,
.source-note {
  color: var(--muted);
}

.market-stats span {
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.market-stats strong {
  color: var(--brand-dark);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
}

.market-stats p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}

.stats-story {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(340px, .74fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
}

.market-chart,
.data-value-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.chart-head strong {
  font-size: 1.08rem;
}

.chart-head span {
  font-size: .84rem;
  font-weight: 800;
  text-align: right;
}

.market-bar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 66px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: #344054;
  font-size: .88rem;
  font-weight: 850;
}

.market-bar i {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef2;
}

.market-bar i::before {
  content: "";
  display: block;
  width: calc(var(--value) * 1%);
  height: 100%;
  border-radius: inherit;
  background: #9eb8c3;
}

.market-bar.highlight i::before {
  background: var(--brand);
}

.market-bar strong {
  text-align: right;
}

.roi-card {
  display: grid;
  align-content: start;
}

.roi-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.roi-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, .7fr) minmax(90px, .7fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  color: #344054;
  font-weight: 820;
}

.roi-row:first-child {
  border-top: 0;
}

.roi-row.head {
  background: #f8fafc;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.roi-row.featured {
  background: #eef8f8;
}

.roi-row strong {
  color: var(--brand-dark);
  font-size: 1.18rem;
  text-align: right;
  white-space: nowrap;
}

.roi-row.featured strong {
  color: var(--green);
  font-size: 1.34rem;
}

.source-note {
  margin: 14px 0 0;
  font-size: .78rem;
  line-height: 1.4;
}

.source-note a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.data-value-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.data-points {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.data-points div {
  display: grid;
  gap: 3px;
  padding-left: 12px;
  border-left: 3px solid rgba(47, 111, 131, .34);
}

.data-points strong {
  color: var(--ink);
  font-size: .96rem;
}

.data-points span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.4;
}

.tile,
.price-card,
.legal-grid article,
.contact-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, .05);
}

.tile {
  min-height: 224px;
}

.tile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
}

.tile-icon svg {
  width: 22px;
  height: 22px;
}

.tile:nth-child(2) .tile-icon {
  background: var(--brand);
}

.tile:nth-child(3) .tile-icon {
  background: var(--green);
}

.tile:nth-child(4) .tile-icon {
  background: var(--gold);
}

.tile h3,
.price-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.25;
}

.tile p,
.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.48;
}

.tile p {
  margin: 10px 0 0;
}

.product-band {
  background: var(--soft);
}

.product-band .section-inner {
  width: min(1180px, calc(100% - 32px));
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-bottom: 28px;
}

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: .9rem;
}

.product-points {
  display: grid;
  gap: 12px;
}

.product-points div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-points strong,
.product-points span {
  display: block;
}

.product-points span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.48;
}

.dashboard-wrap {
  padding-top: 0;
}

.evidence-wrap {
  padding-top: 12px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  gap: 16px;
}

.dashboard-preview {
  overflow: hidden;
  border: 1px solid #cfd7e2;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.preview-top {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.preview-logo {
  font-weight: 950;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1.52fr);
  min-height: 460px;
}

.preview-form,
.preview-results {
  padding: 18px;
}

.preview-form {
  border-right: 1px solid var(--line);
  background: #fbfcfd;
}

.preview-form h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.preview-form p {
  margin: 5px 0 16px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.4;
}

.preview-results {
  display: grid;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #e7f6ec;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.badge-neutral {
  background: #eef2f6;
  color: #344054;
}

.fake-field {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  margin-bottom: 10px;
  border: 1px solid #cfd7e2;
  background: #fff;
  color: #344054;
}

.fake-field span,
.fake-field strong {
  min-width: 0;
}

.extras-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 14px;
}

.extras-preview span,
.breakdown-preview span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #344054;
  font-size: .78rem;
  font-weight: 780;
  line-height: 1.2;
}

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

.preview-metrics div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.preview-metrics span,
.preview-metrics strong,
.quote-card-preview strong,
.quote-card-preview span {
  display: block;
}

.preview-metrics span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 820;
}

.preview-metrics strong {
  margin-top: 7px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.quote-card-preview {
  display: grid;
  grid-template-columns: minmax(150px, 1.08fr) minmax(130px, .72fr) minmax(180px, 1.2fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quote-card-preview.best {
  border-color: rgba(47, 111, 131, .34);
  box-shadow: inset 4px 0 0 var(--brand);
}

.quote-card-preview strong {
  font-size: 1.02rem;
  font-weight: 950;
}

.quote-card-preview b {
  display: block;
  font-size: 1.32rem;
  line-height: 1.1;
  white-space: nowrap;
}

.quote-card-preview span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.32;
}

.breakdown-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.history-strip,
.insight-strip {
  padding: 12px 14px;
  border: 1px solid #b7d9c6;
  border-radius: var(--radius);
  background: #effaf3;
  color: #216e43;
}

.history-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

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

.insight-strip div {
  min-width: 0;
}

.history-strip strong,
.insight-strip strong {
  display: block;
  color: var(--green);
}

.history-strip span,
.insight-strip span {
  display: block;
  margin-top: 3px;
  color: #2f6b49;
  font-size: .88rem;
  line-height: 1.42;
}

.history-preview-card,
.stats-preview-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.preview-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.preview-card-head span:first-child {
  display: block;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-card-head strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.history-preview-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.history-preview-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr .95fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: #344054;
  font-size: .84rem;
  line-height: 1.25;
}

.history-preview-row:first-child {
  border-top: 0;
}

.history-preview-row.head {
  background: #f8fafc;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.history-preview-row small {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 760;
}

.history-preview-row strong {
  color: var(--ink);
  font-size: .95rem;
  white-space: nowrap;
}

.stats-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.stats-preview-metrics div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.stats-preview-metrics span {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.stats-preview-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.1;
}

.mini-chart {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.mini-chart div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) 64px;
  gap: 8px;
  align-items: center;
  color: #344054;
  font-size: .78rem;
  font-weight: 850;
}

.mini-chart i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef2;
}

.mini-chart i::before {
  content: "";
  display: block;
  width: calc(var(--value) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.mini-chart strong {
  text-align: right;
  white-space: nowrap;
}

.stats-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.stats-preview-tags span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef8f8;
  color: var(--brand-dark);
  font-size: .74rem;
  font-weight: 850;
}

.preview-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.42;
}

.demo-detail-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(47, 111, 131, .28);
  border-radius: var(--radius);
  background: #f3fbf6;
}

.demo-detail-total span {
  color: var(--muted);
  font-weight: 850;
}

.demo-detail-total strong {
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1;
}

.demo-detail-list {
  display: grid;
  gap: 0;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.demo-detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.demo-detail-list div:last-child {
  border-bottom: 0;
}

.demo-detail-list span {
  color: #475467;
}

.demo-detail-list strong {
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.workflow {
  display: grid;
  gap: 12px;
}

.workflow-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  display: grid;
  gap: 13px;
  align-items: start;
  min-height: 210px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

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

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-grid {
  width: min(860px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.price-card.featured {
  border-color: rgba(47, 111, 131, .42);
  box-shadow: 0 22px 60px rgba(47, 111, 131, .16);
}

.price {
  margin: 16px 0 4px;
  font-size: 2.45rem;
  font-weight: 950;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  margin: 0;
}

.price-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.quote-band {
  background: var(--ink);
  color: #fff;
}

.quote-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.quote-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.quote-band p {
  margin: 12px 0 0;
  color: #cfd7e2;
  line-height: 1.5;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 18px;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

footer {
  background: #f8fafc;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: .92rem;
}

.legal-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.legal-section {
  background: #f8fafc;
}

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

.legal-grid h2 {
  margin: 0;
  font-size: 1.18rem;
}

.legal-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.legal-page {
  width: min(1080px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 0 72px;
}

.legal-page .logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.legal-page .logo img {
  width: min(280px, 72vw);
}

.legal-page h1 {
  width: 100%;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-hero {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(47, 111, 131, .92), rgba(23, 77, 98, .92)),
    #174d62;
  color: #fff;
  box-shadow: var(--shadow);
}

.legal-hero .eyebrow {
  color: #a7efea;
}

.legal-hero h1 {
  width: min(800px, 100%);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  overflow-wrap: break-word;
}

.legal-hero p {
  width: min(720px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .84);
}

.legal-content {
  width: 100%;
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.legal-card {
  min-width: 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, .05);
}

.legal-card h2 {
  margin-top: 0;
  line-height: 1.14;
}

.legal-card p {
  margin: 8px 0 0;
}

.legal-card ul {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card :last-child {
  margin-bottom: 0;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-actions .btn {
  white-space: normal;
}

.legal-page p {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.legal-hero p {
  width: min(720px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .84);
}

.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-card ul {
  margin-bottom: 0;
}

.legal-page h2 {
  margin: 38px 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-page .legal-card h2 {
  margin: 0 0 8px;
  line-height: 1.14;
}

.legal-page .legal-card p {
  margin: 8px 0 0;
}

.legal-page .legal-card ul {
  margin: 8px 0 0;
}

.legal-page h3 {
  margin: 26px 0 8px;
  font-size: 1.08rem;
}

.legal-page ul {
  margin: 12px 0 24px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-page li {
  margin: 7px 0;
}

.legal-note {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid #f2d9a7;
  border-radius: var(--radius);
  background: #fff8e8;
  color: #744210;
  line-height: 1.55;
}

.legal-meta {
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: .95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 18px;
  margin: 28px 0 34px;
}

.contact-page {
  width: min(1080px, calc(100% - 32px));
}

.contact-hero {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(47, 111, 131, .92), rgba(23, 77, 98, .92)),
    #174d62;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-hero .eyebrow {
  color: #a7efea;
}

.contact-hero h1 {
  width: min(780px, 100%);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  overflow-wrap: break-word;
}

.contact-hero p {
  width: min(700px, 100%);
  color: rgba(255, 255, 255, .84);
}

.contact-hero-actions,
.contact-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-hero-actions .btn,
.contact-bottom-actions .btn,
.contact-note a {
  overflow-wrap: anywhere;
  white-space: normal;
}

.contact-card strong,
.contact-card span,
.support-list strong,
.support-list span,
.contact-note strong,
.contact-note a {
  display: block;
  overflow-wrap: break-word;
}

.support-list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-card-head {
  margin-bottom: 18px;
}

.contact-card h2,
.contact-card h3 {
  margin-top: 0;
}

.contact-card-head h2 {
  margin-bottom: 0;
}

.contact-card-head p {
  margin: 8px 0 0;
  font-size: .98rem;
}

.contact-card p {
  margin: 10px 0 0;
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.contact-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 131, .24);
  border-radius: var(--radius);
  background: #f3fbf6;
}

.contact-note a {
  margin-top: 6px;
}

.contact-faq-head {
  margin: 44px 0 18px;
}

.contact-bottom-actions {
  margin-top: 28px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(16, 24, 40, .46);
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(540px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-head,
.modal-body {
  padding: 20px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.modal h2 {
  margin: 0;
  font-size: 1.35rem;
}

.modal p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f2f4f7;
  color: #344054;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.form-grid {
  display: grid;
  gap: 13px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #f5f7fa;
}

.auth-tab {
  min-height: 38px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
}

.auth-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 5px rgba(16, 24, 40, .10);
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: #344054;
  font-size: .84rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 43px;
  padding: 9px 10px;
  border: 1px solid #cfd7e2;
  border-radius: 7px;
  outline: none;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47, 111, 131, .13);
}

.check-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #344054;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--brand);
}

.notice {
  padding: 12px 13px;
  border: 1px solid #b7d9c6;
  border-radius: var(--radius);
  background: #effaf3;
  color: var(--green);
  font-weight: 800;
  line-height: 1.35;
}

.notice.error {
  border-color: #f0b4b4;
  background: #fff4f4;
  color: var(--red);
}

.demo-access {
  display: grid;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid #e4e9f0;
}

.mini {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}

@media (max-width: 1060px) {
  .benefit-grid,
  .benefit-grid.role-grid,
  .trust-grid,
  .market-stats,
  .workflow-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .quote-card-preview {
    grid-template-columns: minmax(0, 1fr) minmax(140px, auto);
  }

  .quote-card-preview .breakdown-preview {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(14, 24, 33, .92), rgba(14, 24, 33, .62));
  }

  .hero-inner {
    padding-top: 86px;
  }

  .intro-layout,
  .market-layout,
  .stats-story,
  .evidence-grid,
  .product-layout,
  .pricing-grid,
  .quote-band .section-inner,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .preview-form {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-form .btn {
    width: 100%;
  }

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

@media (max-width: 620px) {
  .nav {
    width: min(100% - 18px, 1180px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    min-height: auto;
    padding: 8px 0 10px;
  }

  .logo img {
    width: min(255px, 82vw);
  }

  .nav-actions,
  .hero-actions {
    width: 100%;
    gap: 8px;
  }

  .nav-actions {
    flex-wrap: nowrap;
  }

  .nav-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding-inline: 10px;
    font-size: .92rem;
  }

  .hero-actions .btn,
  .quote-band .btn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-inner,
  .section-inner {
    width: calc(100vw - 18px);
  }

  .hero-inner {
    max-width: calc(100vw - 18px);
    padding: 34px 0 18px;
  }

  .hero-content,
  .hero-copy,
  .eyebrow {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: .7rem;
    line-height: 1.35;
  }

  h1 {
    max-width: 100%;
    font-size: 2.05rem;
    line-height: 1.04;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .hero-copy {
    max-width: 390px;
    font-size: .96rem;
    line-height: 1.48;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions .btn {
    min-height: 46px;
  }

  .benefit-grid,
  .benefit-grid.role-grid,
  .trust-grid,
  .market-stats,
  .market-layout,
  .stats-story,
  .evidence-grid,
  .workflow-wide {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 8px;
  }

  .proof-item {
    width: 100%;
    min-height: auto;
    padding: 10px;
    background: rgba(255, 255, 255, .92);
  }

  .proof-item strong {
    font-size: 1rem;
    line-height: 1.15;
  }

  .proof-item span {
    margin-top: 5px;
    font-size: .74rem;
    line-height: 1.28;
  }

  .section-inner {
    padding: 42px 0;
  }

  .benefit-grid.section-inner {
    padding-top: 16px;
  }

  .product-layout {
    gap: 28px;
  }

  .tile,
  .market-stats article,
  .market-chart,
  .data-value-card,
  .history-preview-card,
  .stats-preview-card,
  .price-card,
  .legal-grid article,
  .legal-card,
  .contact-card,
  .product-points div,
  .trust-grid div {
    padding: 16px;
  }

  .legal-card {
    padding: 12px 14px 14px;
  }

  .tile {
    min-height: auto;
  }

  .market-layout {
    gap: 18px;
    padding-bottom: 14px;
  }

  .market-stats {
    gap: 8px;
  }

  .market-stats article {
    gap: 5px;
  }

  .stats-story {
    gap: 10px;
  }

  .chart-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
  }

  .chart-head span {
    text-align: left;
  }

  .market-bar {
    grid-template-columns: 74px minmax(0, 1fr) 54px;
    gap: 7px;
    font-size: .78rem;
  }

  .market-bar i {
    height: 9px;
  }

  .roi-row {
    grid-template-columns: minmax(0, 1fr) 62px 78px;
    gap: 7px;
    padding: 10px;
    font-size: .82rem;
  }

  .roi-row.head {
    font-size: .64rem;
  }

  .roi-row strong,
  .roi-row.featured strong {
    font-size: 1rem;
  }

  .evidence-wrap {
    padding-top: 4px;
  }

  .dashboard-preview {
    margin-inline: -1px;
    border-radius: 7px;
  }

  .preview-top,
  .preview-form,
  .preview-results {
    padding: 12px;
  }

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

  .fake-field {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .extras-preview span,
  .breakdown-preview span {
    min-height: 26px;
    padding: 4px 8px;
    font-size: .74rem;
  }

  .preview-metrics,
  .quote-card-preview,
  .insight-strip,
  .stats-preview-metrics,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .history-preview-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 7px 10px;
    padding: 10px;
  }

  .history-preview-row.head {
    display: none;
  }

  .history-preview-row strong {
    justify-self: start;
  }

  .mini-chart div {
    grid-template-columns: 82px minmax(0, 1fr) 58px;
    gap: 7px;
    font-size: .74rem;
  }

  .quote-card-preview {
    align-items: stretch;
  }

  .quote-card-preview .breakdown-preview {
    grid-column: auto;
  }

  .quote-card-preview .btn {
    width: 100%;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
    padding: 22px 0;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .contact-page {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
    overflow: hidden;
  }

  .legal-page {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
    overflow: hidden;
  }

  .contact-hero,
  .legal-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 24px 18px;
  }

  .contact-hero *,
  .legal-hero *,
  .legal-card,
  .contact-card,
  .support-list div {
    min-width: 0;
  }

  .contact-hero h1,
  .legal-hero h1 {
    font-size: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .legal-actions .btn,
  .contact-hero-actions .btn,
  .contact-bottom-actions .btn,
  .contact-form-actions .btn {
    width: 100%;
    text-align: center;
  }
}
