:root {
  --ink: #172033;
  --ink-soft: #31415d;
  --muted: #687892;
  --line: #dce4ee;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --soft-blue: #eaf2fc;
  --navy: #10284f;
  --blue: #174ea6;
  --blue-bright: #3478dc;
  --orange: #f47c20;
  --orange-soft: #fff0e5;
  --shadow: 0 24px 70px rgba(16, 40, 79, 0.12);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark,
.mini-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 850;
  letter-spacing: -0.06em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 0.86rem;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.button {
  min-height: 44px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 9px 22px rgba(23, 78, 166, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(23, 78, 166, 0.28);
}

.button-quiet {
  color: var(--ink-soft);
  background: transparent;
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.82rem;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  min-height: 600px;
  padding-top: 75px;
  padding-bottom: 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(430px, 1.09fr);
  gap: 62px;
  align-items: center;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 5.2vw, 5.1rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #3d9a71;
  box-shadow: 0 0 0 4px #e0f2e9;
}

.hero-visual {
  min-height: 410px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, #e8f1fc 0%, rgba(234, 242, 252, 0) 70%);
}

.product-card {
  width: min(100%, 550px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #d4e0ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.product-topbar {
  min-height: 54px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-mark {
  width: 23px;
  height: 23px;
  border-radius: 6px;
  font-size: 0.55rem;
}

.demo-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: #196445;
  background: #e1f2e9;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.product-body {
  min-height: 352px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
}

.product-sidebar {
  padding: 24px 17px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--navy);
}

.side-line {
  height: 7px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.21);
}

.side-line.active {
  background: var(--orange);
}

.side-line.short {
  width: 60%;
}

.product-main {
  padding: 25px 23px;
  background: #f7faff;
}

.product-heading,
.match-heading,
.match-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tiny-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.product-heading strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 0.63rem;
  font-weight: 800;
}

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

.metric-box,
.match-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.metric-box {
  min-height: 103px;
  padding: 13px;
}

.metric-box.accent {
  border-color: #f6d4bc;
  background: #fff9f4;
}

.metric-box span,
.metric-box small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
}

.metric-box strong {
  display: block;
  margin: 8px 0 1px;
  color: var(--navy);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.match-box {
  margin-top: 11px;
  padding: 14px;
}

.match-heading {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.match-heading strong {
  color: var(--blue);
  font-size: 1rem;
}

.progress {
  height: 7px;
  margin: 12px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5edf7;
}

.progress span {
  width: 87%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #66a5f3);
}

.match-footer {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.match-footer small {
  color: var(--muted);
}

.product-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.58rem;
}

.floating-note {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dbe6f1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 13px 35px rgba(16, 40, 79, 0.13);
}

.floating-note small,
.floating-note strong {
  display: block;
  line-height: 1.25;
}

.floating-note strong {
  color: var(--navy);
  font-size: 0.68rem;
}

.floating-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.61rem;
}

.note-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
  font-weight: 850;
}

.note-icon.orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.note-one {
  top: 13%;
  right: -2%;
}

.note-two {
  right: 0;
  bottom: 9%;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.trust-items {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.79rem;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-items strong {
  color: var(--orange);
  font-size: 0.7rem;
}

.section-block {
  padding-top: 112px;
  padding-bottom: 116px;
}

.section-intro {
  max-width: 730px;
}

.section-intro.centered {
  margin: 0 auto 38px;
  text-align: center;
}

.section-intro h2,
.flow-copy h2,
.demo-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-intro p:not(.eyebrow),
.flow-copy p:not(.eyebrow),
.demo-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.feature-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 245px;
  padding: 24px 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card:hover,
.audience-card:hover {
  border-color: #b4cbed;
  box-shadow: 0 14px 35px rgba(23, 78, 166, 0.08);
}

.feature-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.68rem;
  font-weight: 850;
}

.feature-card h3 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.feature-card p,
.audience-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.flow-section {
  padding: 93px 0;
  color: white;
  background: var(--navy);
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1.25fr);
  gap: 76px;
  align-items: center;
}

.flow-section .eyebrow {
  color: #ffb37e;
}

.flow-copy h2 {
  color: white;
}

.flow-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  gap: 8px;
  color: #ffbd8d;
  font-weight: 750;
  text-decoration: none;
}

.flow-steps {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-step {
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.flow-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.flow-step strong,
.flow-step small {
  display: block;
}

.flow-step strong {
  font-size: 0.92rem;
}

.flow-step small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.77rem;
}

.flow-connector {
  width: 1px;
  height: 20px;
  margin-left: 16px;
  background: rgba(255, 255, 255, 0.23);
}

.audience-section {
  padding-bottom: 100px;
}

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

.audience-card {
  min-height: 195px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.audience-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: 0.8rem;
  font-weight: 850;
}

.audience-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 1rem;
}

.demo-section {
  padding-bottom: 98px;
}

.demo-panel {
  padding: 47px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  border-radius: 18px;
  background: linear-gradient(120deg, #edf5ff, #fff7f0);
}

.demo-panel h2 {
  max-width: 670px;
}

.demo-actions {
  min-width: 210px;
  display: grid;
  gap: 12px;
}

.demo-actions span {
  color: var(--muted);
  font-size: 0.7rem;
}

.prototype-disclaimer {
  max-width: 740px;
  margin: 17px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.73rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-inner .brand {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 54px;
  }

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

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

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

  .flow-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .section-shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 70px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 45px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .hero-visual {
    min-height: 300px;
    margin: 0 -2px;
  }

  .product-card {
    transform: none;
  }

  .product-body {
    grid-template-columns: 49px minmax(0, 1fr);
  }

  .product-sidebar {
    padding: 23px 11px;
  }

  .product-main {
    padding: 17px 13px;
  }

  .product-heading strong {
    font-size: 0.86rem;
  }

  .metric-box {
    min-height: 88px;
    padding: 10px;
  }

  .metric-box strong {
    font-size: 1.45rem;
  }

  .match-footer {
    display: grid;
    gap: 3px;
  }

  .floating-note {
    min-width: 145px;
    padding: 8px;
  }

  .note-one {
    top: -2%;
    right: 0;
  }

  .note-two {
    right: -2%;
    bottom: -4%;
  }

  .trust-items {
    min-height: auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section-block {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .feature-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .flow-section {
    padding: 75px 0;
  }

  .flow-steps {
    padding: 20px;
  }

  .demo-panel {
    padding: 29px 23px;
    display: grid;
    gap: 25px;
  }

  .footer-inner {
    min-height: 110px;
    padding: 20px 0;
    display: grid;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
