:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5f6c7d;
  --subtle: #7a8794;
  --line: #d9e3e8;
  --line-strong: #c8d7de;
  --surface: #ffffff;
  --soft: #eef5f7;
  --teal: #0f7c80;
  --teal-strong: #075d62;
  --teal-soft: #d9eeee;
  --warm: #d9992f;
  --warm-soft: #f8edd9;
  --slate: #253242;
  --shadow: 0 20px 48px rgba(23, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(140deg, rgba(15, 124, 128, 0.14), transparent 32%),
    linear-gradient(310deg, rgba(217, 153, 47, 0.14), transparent 30%),
    #f4f8fa;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 227, 232, 0.76);
  background: rgba(247, 250, 251, 0.94);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.hero-proof-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #ffffff;
  background: var(--slate);
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-strong);
  background: rgba(15, 124, 128, 0.1);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 1.02fr);
  gap: 54px;
  align-items: center;
  min-height: min(660px, calc(100vh - 112px));
  padding-top: 38px;
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--slate);
  font-size: clamp(4rem, 7.4vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: nowrap;
  word-break: normal;
}

h2 {
  margin: 0;
  color: var(--slate);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #526173;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-strong);
}

.button-secondary {
  color: var(--teal-strong);
  background: rgba(255, 255, 255, 0.72);
}

.hero-product {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-product img {
  width: 100%;
}

.hero-proof-strip {
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.hero-proof-strip span {
  color: var(--teal-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.workflow-grid,
.audience-grid,
.proof-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-grid li,
.audience-grid article,
.trust-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.05);
}

.workflow-grid p,
.audience-grid p,
.trust-grid p {
  margin: 10px 0 0;
  font-size: 0.96rem;
}

.step-number,
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 7px;
  font-weight: 900;
}

.step-number {
  width: 44px;
  color: var(--teal-strong);
  background: var(--teal-soft);
  font-size: 0.78rem;
}

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

.icon-chip {
  width: 32px;
  color: #ffffff;
  background: var(--slate);
  font-size: 0.86rem;
}

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

figure {
  margin: 0;
}

.proof-grid figure,
.preview-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(23, 32, 51, 0.11);
  overflow: hidden;
}

.proof-grid figure img {
  width: 100%;
  transform: scale(1.035);
  transform-origin: center;
}

.preview-panel img {
  width: 100%;
}

figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.preview {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
  align-items: center;
}

.preview-copy p {
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate);
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  color: var(--teal-strong);
  background: var(--warm-soft);
  content: "+";
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  line-height: 18px;
}

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

.trust-grid article {
  border-top: 4px solid var(--warm);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid rgba(149, 225, 223, 0.22);
  border-radius: 8px;
  background: var(--slate);
}

.cta h2 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.cta .eyebrow {
  color: #95e1df;
}

.cta .button {
  flex: 0 0 auto;
  border-color: #95e1df;
  background: #ffffff;
  color: var(--teal-strong);
}

:focus-visible {
  outline: 3px solid rgba(217, 153, 47, 0.8);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
    gap: 34px;
  }

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

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    position: static;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    min-height: auto;
    padding: 14px 17px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 4px;
  }

  .nav-links a {
    padding: 7px 4px;
    text-align: center;
    font-size: 0.78rem;
  }

  .section-band {
    width: min(100% - 34px, 1180px);
    padding: 48px 0;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(3.25rem, 14vw, 4.2rem);
  }

  .workflow-grid,
  .audience-grid,
  .proof-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
