* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text-heading);
  font-family: var(--font-sans);
}

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

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

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

.page {
  min-width: 1200px;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-landing-x);
}

.site-header {
  background: linear-gradient(180deg, var(--bg-app) 0%, #fff 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--r-nav);
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark.footer-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--r-input);
  font-size: 17px;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
}

.brand-subtitle {
  margin-top: 2px;
  font-size: var(--fs-micro);
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a,
.footer-link {
  color: var(--text-body);
  font-size: var(--fs-body);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-link:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 24px;
}

.login-link {
  color: var(--text-heading);
  font-size: var(--fs-body);
  font-weight: 600;
}

.login-link:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-input);
  font-weight: 600;
  line-height: 1;
  border: var(--bw-cta) solid transparent;
  white-space: nowrap;
}

.btn-sm {
  padding: 11px 22px;
  font-size: var(--fs-body);
}

.btn-md {
  padding: 14px 26px;
  font-size: 15px;
}

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

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

.btn-outline {
  color: var(--accent);
  background: #fff;
  border-color: var(--accent-border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.btn-inverse {
  color: var(--accent);
  background: #fff;
}

.btn-inverse:hover {
  background: var(--accent-tint);
  color: var(--accent-hover);
}

.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.btn-ghost-light:hover {
  border-color: #fff;
  color: #fff;
}

.play-dot {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  line-height: 1;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-app) 100%);
  padding: 40px 0 24px;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy,
.stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  background: var(--accent-tint);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: var(--fs-caption);
  font-weight: 700;
}

.hero h1,
.sub-hero h1 {
  margin: 0;
  color: var(--text-heading);
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
}

.sub-hero h1 {
  max-width: 780px;
}

.lead {
  margin: 0;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.6;
  max-width: 530px;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reassurance {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.check-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-body);
  font-size: var(--fs-body-sm);
}

.check-line strong,
.check {
  color: var(--accent);
  font-weight: 800;
}

.media-ph {
  min-height: 360px;
  border-radius: var(--r-panel);
  border: 1px solid var(--blue-150);
  background-color: var(--blue-50);
  background-image: repeating-linear-gradient(135deg, rgba(213, 224, 245, .9) 0 10px, rgba(232, 239, 252, .9) 10px 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: var(--blue-700);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: var(--fs-caption);
  line-height: 1.6;
}

.media-ph.compact {
  min-height: 280px;
}

.stats-strip {
  margin-top: 0;
  background: var(--blue-25);
  border-radius: var(--r-panel);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 24px;
}

.stat-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--blue-75);
}

.stat-tile:last-child {
  border-right: 0;
}

.stat-icon,
.feature-icon,
.step-number,
.benefit-icon,
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

.stat-value {
  color: var(--text-heading);
  font-size: var(--fs-kpi);
  font-weight: 800;
}

.stat-label {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
}

.trust-row {
  padding-top: 22px;
  padding-bottom: 0;
}

.trust-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: #fff;
  color: var(--text-body);
  font-size: var(--fs-body-sm);
}

.section {
  padding: 72px 0 56px;
}

.section.soft {
  background: var(--bg-app);
  padding: 56px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-title {
  margin: 0;
  color: var(--text-heading);
  font-size: var(--fs-h2);
  line-height: 1.2;
  font-weight: 800;
}

.section-copy {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.grid-6,
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px;
}

.card.hoverable:hover,
.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.feature-card {
  padding: 26px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-tint);
  border: 2px solid var(--blue-200);
  color: var(--accent);
  font-size: 24px;
}

.card-title {
  color: var(--text-heading);
  font-size: var(--fs-card-title);
  font-weight: 700;
}

.card-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-wrap: pretty;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.step-title {
  margin-bottom: 4px;
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 700;
}

.step-copy {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.55;
  text-wrap: pretty;
}

.benefit-row {
  padding-bottom: 72px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-app);
}

.benefit-icon,
.value-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-nav);
  background: var(--accent);
  color: #fff;
  font-size: 19px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rating {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: var(--fs-body-sm);
}

.quote {
  margin: 0;
  color: var(--text-body);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.person {
  margin-top: auto;
  border-top: 1px solid var(--row-divider);
  padding-top: 14px;
}

.person strong {
  display: block;
  color: var(--text-heading);
  font-size: var(--fs-body);
}

.person span {
  color: var(--text-muted);
  font-size: var(--fs-caption);
}

.cta-banner {
  margin: 0 auto 72px;
  background: var(--accent);
  border-radius: var(--r-cta);
  padding: 56px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-banner h2 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-banner p {
  margin: 16px 0 0;
  max-width: 520px;
  color: var(--blue-150);
  font-size: 16px;
  line-height: 1.6;
}

.sub-hero {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-app) 100%);
}

.module-card {
  min-height: 255px;
}

.module-card ul,
.pricing-card ul,
.contact-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-card li,
.pricing-card li,
.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-body);
  font-size: var(--fs-body-sm);
  line-height: 1.45;
}

.integration-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--blue-200);
  background: var(--accent-tint);
  color: var(--blue-700);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: var(--fs-body-sm);
  font-weight: 700;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: #fff;
  margin-top: 22px;
}

.toggle-option {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
  font-weight: 700;
}

.toggle-option.active {
  background: var(--accent);
  color: #fff;
}

.pricing-card {
  position: relative;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, var(--blue-25) 100%);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
}

.price {
  color: var(--text-heading);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.price span {
  color: var(--text-muted);
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 0;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--row-divider);
  text-align: left;
  font-size: var(--fs-body-sm);
}

.compare-table th {
  color: var(--text-heading);
  background: var(--bg-subtle);
  font-weight: 800;
}

.compare-table td {
  color: var(--text-body);
}

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

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

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--text-heading);
  font-size: var(--fs-card-title);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 24px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-heading);
  font-size: var(--fs-caption);
  font-weight: 700;
}

.field label span {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-input);
  background: #fff;
  color: var(--text-heading);
  padding: 12px 13px;
  font-size: var(--fs-body);
  outline: none;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .09);
}

.form-note {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: var(--fs-caption);
  line-height: 1.5;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-subtle);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-columns {
  display: flex;
  gap: 60px;
  margin-left: auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading {
  color: var(--text-heading);
  font-size: var(--fs-caption);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-link {
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
  font-weight: 400;
}

.footer-bottom {
  padding: 16px var(--pad-landing-x);
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
  color: var(--text-faint);
  font-size: var(--fs-caption);
}

@media (max-width: 1199px) {
  .page {
    min-width: 0;
  }
}

@media (max-width: 960px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-inner,
  .footer-inner,
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .header-actions,
  .footer-columns {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: 40px;
  }

  .stats-strip,
  .grid-6,
  .grid-4,
  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat-tile {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--blue-75);
    padding: 14px 0;
  }

  .stat-tile:last-child {
    border-bottom: 0;
  }

  .cta-banner {
    padding: 32px;
  }

  .section {
    padding: 54px 0 40px;
  }
}
