:root {
  --blue: #0072bc;
  --blue-dark: #005d98;
  --blue-soft: rgba(0, 114, 188, 0.1);
  --text: #000000;
  --white: #ffffff;
  --muted: rgba(0, 0, 0, 0.68);
  --line: rgba(0, 114, 188, 0.2);
  --stripe: rgba(0, 0, 0, 0.5);
  --ice: #f4f9fd;
  --panel-shadow: 0 10px 10px rgba(0, 0, 0, 0.13);
  --button-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  --radius: 30px;
  --radius-small: 16px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

.brand img {
  width: 177px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  font-weight: 700;
}

.main-nav a.active {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 114, 188, 0.2);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--button-shadow);
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--blue);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0 24px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-nav a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-nav a.active {
  color: var(--blue);
}

.mobile-menu-cta {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 40px;
  border-radius: var(--radius-small);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

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

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

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

.button-secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--button-shadow);
}

.button-outline {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--button-shadow);
}

.hero {
  padding: 34px 0 0;
}

.hero-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.eyebrow {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

.light {
  color: var(--white);
}

.hero h1 {
  max-width: 659px;
  margin-top: 22px;
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero h1 span,
.cta-panel h2 span {
  color: var(--blue);
}

.hero-text {
  max-width: 668px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.4;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 540px;
  margin-top: 56px;
}

.hero-metrics article {
  text-align: center;
}

.hero-metrics article strong,
.stats-grid article strong {
  display: block;
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.hero-metrics article span {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
  min-height: 636px;
}

.hero-image {
  width: min(120%, 735px);
  height: auto;
  max-width: none;
}

.stripe {
  padding: 74px 0;
}

.stripe p {
  max-width: 965px;
  margin: 0 auto;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.stripe-dark {
  background: #000000;
}

.stripe-muted {
  background: var(--stripe);
}

.section {
  padding: 96px 0;
}

.section h2,
.cta-panel h2 {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.section-intro {
  max-width: 1160px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 64px;
}

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

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

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-card img,
.integration-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.icon-card h3,
.integration-card h3,
.step-card h3 {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.icon-card p,
.integration-card p,
.step-card p,
.stats-grid p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.35;
}

.highlight-box {
  margin-top: 42px;
  padding: 34px 40px;
  border-radius: var(--radius);
  background: var(--blue);
}

.highlight-box p {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.step-card {
  text-align: center;
}

.step-number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.section-audience {
  background: var(--white);
}

.bordered {
  padding: 48px 36px 40px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--panel-shadow);
}

.section-customization {
  background: rgba(0, 114, 188, 0.1);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.pill {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--panel-shadow);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.section-integrations {
  background: var(--blue);
}

.section-integrations h2 {
  color: var(--white);
}

.integrations-grid {
  margin-top: 64px;
}

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.integration-card h3 {
  margin-top: 40px;
}

.section-cta {
  padding-top: 110px;
  padding-bottom: 110px;
}

.cta-panel {
  padding: 82px 48px;
  border-radius: var(--radius);
  background: #000000;
}

.cta-panel h2 {
  color: var(--white);
  margin-top: 0;
}

.cta-panel p {
  max-width: 964px;
  margin: 28px auto 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.cta-panel .button {
  display: flex;
  width: fit-content;
  margin: 32px auto 0;
}

.site-footer {
  background: #000000;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  gap: 36px;
}

.legal-page {
  padding-top: 0;
}

.legal-hero {
  padding: 56px 0 44px;
  background: linear-gradient(180deg, var(--white) 0%, var(--ice) 100%);
  border-bottom: 1px solid rgba(0, 114, 188, 0.12);
}

.legal-hero-inner {
  text-align: center;
}

.legal-hero h1 {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.legal-intro {
  max-width: 860px;
  margin: 22px auto 0;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.legal-content {
  padding: 72px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 118px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--panel-shadow);
}

.legal-toc-label {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}

.legal-toc-links a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.legal-toc-links a:hover {
  color: var(--blue);
}

.legal-main {
  min-width: 0;
}

.legal-summary,
.legal-callout,
.legal-note,
.legal-contact-card {
  border-radius: var(--radius);
}

.legal-summary {
  padding: 28px 32px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  box-shadow: var(--panel-shadow);
}

.legal-summary p,
.legal-section p,
.legal-list li {
  font-size: 17px;
  line-height: 1.6;
}

.legal-section {
  margin-top: 28px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 120px;
}

.legal-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--panel-shadow);
}

.legal-section h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.legal-section p {
  margin-top: 18px;
}

.legal-section a {
  color: var(--blue);
  font-weight: 700;
}

.legal-subhead {
  margin-top: 24px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.legal-list {
  margin: 18px 0 0;
  padding-left: 24px;
}

.legal-list li + li {
  margin-top: 10px;
}

.legal-list-warn li::marker {
  color: #b44e00;
}

.legal-callout,
.legal-note {
  margin-top: 18px;
  padding: 22px 24px;
}

.legal-callout {
  background: rgba(0, 114, 188, 0.08);
  border: 1px solid var(--line);
}

.legal-callout-light {
  background: var(--ice);
}

.legal-note {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-callout p,
.legal-note p {
  margin-top: 0;
}

.legal-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-table th {
  background: var(--ice);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 28px 32px;
  background: #000000;
  color: var(--white);
}

.legal-contact-copy {
  max-width: 520px;
}

.legal-contact-card h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.legal-contact-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.legal-contact-card .button {
  width: fit-content;
  min-width: 160px;
  padding: 12px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--white);
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.legal-right-card {
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: var(--ice);
}

.legal-right-card h3 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.legal-right-card p {
  margin-top: 10px;
}

.about-page {
  padding-top: 0;
}

.about-hero {
  padding: 48px 0 0;
}

.about-hero-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(320px, 612px);
  align-items: end;
  gap: 42px;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 80px;
}

.about-hero h1 {
  margin-top: 22px;
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.about-hero h1 span {
  color: var(--blue);
}

.about-hero-text {
  margin-top: 26px;
  max-width: 570px;
}

.about-hero-text p {
  font-size: 20px;
  line-height: 1.4;
}

.about-hero-text p + p {
  margin-top: 20px;
}

.about-hero-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 632px;
  padding-right: 46px;
  overflow: visible;
}

.about-hero-image {
  width: min(112%, 686px);
  height: auto;
  max-width: none;
}

.about-vision {
  padding: 98px 0 104px;
  background: var(--blue);
  text-align: center;
}

.about-section-narrow {
  width: min(calc(100% - 32px), 1160px);
  margin: 0 auto;
}

.about-vision h2 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 36px);
}

.about-vision-copy {
  max-width: 1160px;
  margin: 56px auto 0;
  color: var(--white);
  text-align: center;
}

.about-vision-copy p {
  font-size: 20px;
  line-height: 1.4;
}

.about-vision-copy p + p {
  margin-top: 30px;
}

.about-mission {
  padding: 102px 0 86px;
}

.about-mission h2,
.about-values h2,
.about-callout-panel h2 {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.about-mission-lead {
  max-width: 1160px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 64px;
}

.about-pill-card {
  text-align: center;
}

.about-pill {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--panel-shadow);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.about-pill-card p {
  margin-top: 46px;
  font-size: 16px;
  line-height: 1.2;
}

.about-values {
  padding: 24px 0 78px;
}

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

.about-value-card {
  text-align: center;
}

.about-value-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.about-value-card h3 {
  margin-top: 24px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.about-value-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.22;
}

.about-callout {
  padding: 50px 0 92px;
}

.about-callout-panel {
  padding: 62px 48px 56px;
  border-radius: var(--radius);
  background: #000000;
}

.about-callout-panel h2 {
  color: var(--white);
  margin-top: 0;
}

.about-callout-panel p {
  margin-top: 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.about-callout-panel .button {
  display: flex;
  width: fit-content;
  margin: 20px auto 0;
  min-height: 42px;
  padding: 12px 28px;
}

.pricing-page {
  padding-top: 49px;
}

.pricing-hero {
  padding: 0 0 96px;
}

.pricing-hero h1,
.pricing-faq h2 {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.pricing-intro {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 64px;
}

.pricing-card {
  position: relative;
  padding: 54px 34px 34px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--panel-shadow);
  text-align: center;
}

.pricing-card-featured {
  background: var(--blue-soft);
}

.pricing-chip {
  position: absolute;
  top: -22px;
  left: 50%;
  min-width: 154px;
  padding: 12px 18px;
  border: 1px solid var(--blue);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: var(--button-shadow);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.pricing-chip-featured {
  background: var(--blue);
  color: var(--white);
}

.pricing-card h2 {
  margin-top: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-summary {
  min-height: 76px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.35;
}

.pricing-price {
  margin-top: 44px;
  font-size: 16px;
  line-height: 1.2;
}

.pricing-price span {
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
}

.pricing-meta {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.pricing-features {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-features li {
  position: relative;
  margin-top: 14px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.35;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.pricing-card .button {
  width: fit-content;
  min-height: 42px;
  margin: 34px auto 0;
  padding: 12px 28px;
}

.pricing-note {
  margin-top: 56px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.pricing-faq {
  padding: 94px 0 109px;
  background: rgba(0, 0, 0, 0.1);
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 66px;
}

.faq-card {
  padding: 28px 30px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--panel-shadow);
}

.faq-card h3 {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.35;
}

.pricing-cta {
  padding-top: 96px;
}

.contact-page {
  padding-top: 49px;
}

.contact-hero {
  padding: 0 0 54px;
}

.contact-hero h1 {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.contact-intro {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 96px;
}

.contact-card {
  min-height: 184px;
  padding: 50px 24px 32px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--panel-shadow);
  text-align: center;
}

.contact-card-featured,
.contact-highlight {
  background: var(--blue-soft);
}

.contact-card h2,
.contact-highlight h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.contact-card p,
.contact-highlight p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.contact-email-asset {
  display: block;
  width: auto;
  height: 18px;
  max-width: min(100%, 240px);
  margin: 20px auto 0;
}

.contact-highlight {
  margin-top: 20px;
  padding: 54px 36px 40px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--panel-shadow);
}

.contact-form-section {
  padding: 0 0 58px;
}

.contact-form-shell {
  position: relative;
}

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

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #bebebe;
  border-radius: 16px;
  background: var(--white);
  box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

.contact-field input {
  min-height: 72px;
  padding: 0 28px;
  font-size: 16px;
}

.contact-field select {
  min-height: 72px;
  padding: 0 28px;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
}

.contact-field textarea {
  min-height: 211px;
  padding: 24px 28px;
  resize: vertical;
  font-size: 16px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text);
  opacity: 1;
}

.contact-submit {
  width: fit-content;
  margin: 0 auto;
  border: none;
  box-shadow: var(--button-shadow);
}

.contact-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.contact-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.contact-form-status.is-error {
  color: #b42318;
}

.contact-form-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
}

.contact-form-overlay[hidden] {
  display: none !important;
}

.contact-form-overlay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  padding: 24px;
  text-align: center;
}

.contact-form-overlay-card p {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contact-form-reset img {
  width: 32px;
  height: 32px;
}

.demo-page {
  padding-top: 49px;
}

.demo-hero {
  padding: 0 0 48px;
}

.demo-hero h1 {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.demo-intro {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 84px;
}

.demo-card {
  min-height: 213px;
  padding: 38px 28px 24px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue-soft);
  text-align: center;
}

.demo-card h2 {
  margin: 0;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.demo-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.25;
}

.demo-form-section {
  padding: 6px 0 58px;
}

.demo-form {
  gap: 16px;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .hero-grid,
  .card-grid-4,
  .card-grid-3,
  .steps-grid,
  .stats-grid,
  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
    justify-content: flex-end;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .about-hero-grid,
  .about-pill-grid,
  .about-values-grid,
  .pricing-grid,
  .contact-cards,
  .demo-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-image-wrap {
    order: 2;
    justify-content: flex-end;
  }

  .about-hero-image {
    width: 100%;
    max-width: 100%;
  }

  .about-hero-copy {
    order: 1;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 80px;
    gap: 16px;
  }

  .brand img {
    width: 140px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-copy {
    order: 1;
    padding-bottom: 0;
  }

  .hero-image-wrap {
    order: 2;
    height: fit-content;
    min-height: 0;
    padding-top: 40px;
    margin-top: 0;
    overflow: visible;
    max-height: none;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .hero-grid,
  .card-grid-4,
  .card-grid-3,
  .steps-grid,
  .stats-grid,
  .pill-grid,
  .hero-metrics,
  .footer-inner,
  .about-hero-grid,
  .about-pill-grid,
  .about-values-grid,
  .pricing-grid,
  .contact-cards,
  .demo-cards {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 20px;
  }

  .section,
  .stripe,
  .section-cta {
    padding-block: 72px;
  }

  .highlight-box,
  .cta-panel,
  .bordered,
  .about-callout-panel {
    padding-inline: 24px;
  }

  .about-page {
    padding-top: 20px;
  }

  .about-hero-grid {
    gap: 0;
  }

  .about-hero-copy {
    padding-bottom: 0;
  }

  .about-hero-image-wrap {
    min-height: 0;
    height: fit-content;
    padding-top: 40px;
  }

  .about-hero-image {
    width: 100%;
    max-width: 100%;
  }

  .about-mission-lead {
    font-size: 22px;
  }

  .about-pill-card p {
    margin-top: 22px;
  }

  .pricing-page {
    padding-top: 20px;
  }

  .contact-page {
    padding-top: 20px;
  }

  .demo-page {
    padding-top: 20px;
  }

  .pricing-intro,
  .pricing-note {
    font-size: 18px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .pricing-summary {
    min-height: 0;
  }

  .contact-intro {
    font-size: 18px;
  }

  .demo-intro {
    font-size: 18px;
  }

  .contact-cards {
    margin-top: 72px;
  }

  .contact-email-asset {
    height: 18px;
    max-width: min(100%, 230px);
  }

  .demo-cards {
    margin-top: 64px;
  }

  .contact-highlight {
    padding-inline: 24px;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-form-overlay-card p {
    font-size: 22px;
  }

  .footer-inner,
  .footer-links,
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    gap: 12px;
  }

  .button,
  .cta-panel .button {
    width: 100%;
  }

  .legal-contact-card {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-rights-grid {
    grid-template-columns: 1fr;
  }
}
