:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #101418;
  background:
    linear-gradient(180deg, #eef6f2 0%, #f6f8fb 42%, #ffffff 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

.page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.hero,
.product-card,
.flows,
.footer {
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(16, 20, 24, 0.08);
}

.hero {
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
}

.toplinks {
  display: flex;
  gap: 16px;
  color: #53606c;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 12px;
  color: #007d59;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.92;
  margin-bottom: 16px;
}

.lede {
  max-width: 700px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  color: #42505c;
}

.cta-row,
.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary,
.secondary,
.text-link {
  border-radius: 8px;
  font-weight: 800;
}

.primary,
.secondary {
  padding: 13px 18px;
}

.primary {
  background: #101418;
  color: #ffffff;
}

.secondary {
  border: 1px solid rgba(16, 20, 24, 0.1);
  background: #ffffff;
}

.text-link {
  color: #42505c;
  padding: 13px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.hero-stats div,
.flow-grid div {
  border-radius: 8px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  background: #f8fafc;
  padding: 14px;
}

.hero-stats dt {
  font-size: 1.8rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: #53606c;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 8px;
  background: rgba(16, 20, 24, 0.82);
  color: #ffffff;
  padding: 14px 16px;
  line-height: 1.5;
}

.section {
  padding-top: 28px;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

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

.product-card {
  overflow: hidden;
}

.product-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-top {
  margin-bottom: 10px;
}

.track {
  display: inline-flex;
  margin-bottom: 8px;
  color: #53606c;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-top strong {
  display: block;
  font-size: 1.35rem;
}

.product-card p,
.flow-grid p,
.footer p {
  color: #42505c;
  line-height: 1.65;
}

ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #42505c;
  line-height: 1.7;
}

.accent-green {
  box-shadow: 0 20px 60px rgba(0, 125, 89, 0.12);
}

.accent-red {
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.12);
}

.accent-teal {
  box-shadow: 0 20px 60px rgba(13, 148, 136, 0.12);
}

.accent-orange {
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.12);
}

.flows {
  padding: 20px;
}

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

.footer {
  margin-top: 28px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 920px) {
  .page {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .hero-grid,
  .product-grid,
  .flow-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .footer,
  .toplinks {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-row,
  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary,
  .secondary,
  .text-link {
    text-align: center;
  }
}
