:root {
  color-scheme: light;
  --ink: #17233a;
  --muted: #64748b;
  --soft: #eef4fb;
  --paper: #f8fafc;
  --panel: #ffffff;
  --line: #dbe5ef;
  --blue: #2563eb;
  --blue-dark: #1e3a8a;
  --blue-soft: #e7efff;
  --green: #10b981;
  --shadow: 0 22px 60px rgba(23, 35, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 229, 239, 0.8);
  backdrop-filter: blur(16px);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
  color: #ffffff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  letter-spacing: 0;
  width: 38px;
}

.brand-name,
.footer-logo {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-name span,
.footer-logo span {
  color: var(--blue);
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

nav a {
  color: #46566d;
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-cta {
  background: var(--blue-dark);
  border-radius: 999px;
  color: #ffffff;
  padding: 9px 14px;
}

main {
  overflow: hidden;
}

.hero,
.problem-section,
.solution-section,
.audience-section,
.cta-section {
  margin: 0 auto;
  max-width: 1130px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.82fr);
  min-height: 670px;
  padding: clamp(56px, 9vw, 104px) clamp(20px, 5vw, 32px) clamp(46px, 8vw, 86px);
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(37, 99, 235, 0.14), transparent 26rem),
    radial-gradient(circle at 82% 26%, rgba(16, 185, 129, 0.11), transparent 22rem);
  content: "";
  inset: 0 -18vw auto -18vw;
  height: 620px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  color: #101b31;
  font-size: clamp(3rem, 7.4vw, 5.9rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  color: #142033;
  font-size: clamp(2rem, 4.3vw, 3.45rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  color: #17233a;
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 7px;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.problem-section > p,
.cta-section p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 660px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--blue);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.26);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #1d4ed8;
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--blue-dark);
}

.workflow-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 239, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 30px);
  position: relative;
}

.workflow-card::before {
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 999px;
  content: "";
  height: calc(100% - 62px);
  left: 46px;
  opacity: 0.18;
  position: absolute;
  top: 50px;
  width: 3px;
}

.workflow-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.workflow-header p {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 850;
  margin: 0;
}

.status-dot {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
  height: 10px;
  width: 10px;
}

.workflow-list {
  display: grid;
  gap: 15px;
}

.workflow-item {
  align-items: flex-start;
  background: #f8fbff;
  border: 1px solid #e3ebf5;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 40px 1fr;
  padding: 16px;
  position: relative;
}

.workflow-item.active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.workflow-item span {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-dark);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.workflow-item.active span {
  border-color: rgba(255, 255, 255, 0.2);
}

.workflow-item h3,
.workflow-item p {
  margin: 0;
}

.workflow-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.workflow-item.active h3 {
  color: #ffffff;
}

.workflow-item.active p {
  color: rgba(255, 255, 255, 0.75);
}

.problem-section {
  align-items: end;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 35, 58, 0.07);
  display: grid;
  gap: clamp(20px, 5vw, 54px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.82fr);
  padding: clamp(28px, 5vw, 48px);
}

.problem-section p:last-child {
  margin-bottom: 0;
}

.solution-section,
.audience-section,
.cta-section {
  margin-top: clamp(62px, 9vw, 106px);
  padding-left: clamp(20px, 5vw, 32px);
  padding-right: clamp(20px, 5vw, 32px);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 35, 58, 0.07);
  min-height: 220px;
  padding: clamp(23px, 4vw, 30px);
}

.step.featured {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 20px 54px rgba(37, 99, 235, 0.13);
}

.step span {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 8px;
  color: var(--blue-dark);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 20px;
  width: 38px;
}

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

.audience-section {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
}

.business-list {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-list span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(23, 35, 58, 0.06);
  color: #334155;
  font-weight: 850;
  padding: 11px 15px;
}

.cta-section {
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #17233a, var(--blue-dark));
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #ffffff;
  padding-bottom: clamp(34px, 6vw, 58px);
  padding-top: clamp(34px, 6vw, 58px);
  text-align: center;
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 255, 255, 0.76);
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section .button.primary {
  background: #ffffff;
  box-shadow: none;
  color: var(--blue-dark);
  margin-top: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(58px, 9vw, 94px);
  padding: 28px clamp(20px, 5vw, 72px);
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1130px;
}

.footer-logo,
.footer-copy {
  margin: 0;
}

.footer-socials {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-socials a {
  color: var(--blue-dark);
  font-weight: 850;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.footer-copy {
  color: var(--muted);
  text-align: right;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .problem-section,
  .steps,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

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

  .workflow-card::before {
    left: 40px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-bottom: 12px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta,
  .button,
  .hero-actions {
    width: 100%;
  }

  .workflow-item {
    grid-template-columns: 1fr;
  }

  .workflow-card::before {
    display: none;
  }
}
