:root {
  --ink: #132031;
  --muted: #647184;
  --navy: #0b1724;
  --navy-soft: #13263a;
  --blue: #2f6df6;
  --blue-dark: #1e54ce;
  --ice: #eef4ff;
  --line: #dce3ec;
  --surface: #ffffff;
  --canvas: #f5f7fa;
  --green: #12774b;
  --green-bg: #e8f7ef;
  --orange: #a45a00;
  --orange-bg: #fff1dd;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(7, 26, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  z-index: 20;
  width: 100%;
  color: #fff;
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: #fff;
}

.brand-mark svg {
  width: 25px;
  fill: currentColor;
}

.brand-mark .mark-line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 34px;
  color: #bdc8d4;
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 24px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 0.9rem;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background:
    linear-gradient(116deg, rgba(12, 29, 45, 0) 45%, rgba(34, 92, 163, 0.2)),
    var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(47, 109, 246, 0.18);
  filter: blur(70px);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 72px;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: #9ebcff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow-blue {
  color: var(--blue-dark);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.03;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 34px;
  color: #bdc9d7;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button-primary {
  background: var(--blue);
}

.button-primary:hover {
  background: #3979ff;
}

.text-link {
  color: #dce6f2;
  font-weight: 700;
}

.text-link:hover {
  color: #fff;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 35px 0 0;
  padding: 0;
  color: #9fadb9;
  font-size: 0.84rem;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 16px;
}

.trust-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6a98ff;
  content: "";
}

.product-stage {
  position: relative;
  padding: 52px 0 28px 34px;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}

.stage-accent {
  position: absolute;
  border-radius: 18px;
}

.stage-accent-one {
  inset: 22px 18px 15px 60px;
  border: 1px solid rgba(132, 171, 255, 0.45);
  background: rgba(41, 99, 220, 0.16);
  transform: rotate(-3deg);
}

.stage-accent-two {
  right: -10px;
  bottom: -6px;
  width: 160px;
  height: 160px;
  border: 26px solid rgba(47, 109, 246, 0.13);
}

.dashboard-topbar,
.invoice-list-head,
.invoice-row,
.review-header,
.review-checks > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-kicker {
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dashboard-topbar h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-bg);
  font-size: 0.76rem;
  font-weight: 700;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21a367;
}

.metric-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  margin: 27px 0 28px;
}

.metric {
  min-height: 125px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
}

.metric-primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.metric span,
.metric small {
  display: block;
}

.metric span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.metric-primary span,
.metric-primary small {
  color: #dbe7ff;
}

.metric strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.metric small {
  color: #8a94a3;
  font-size: 0.72rem;
}

.invoice-list-head {
  padding: 0 4px 11px;
  border-bottom: 1px solid var(--line);
  color: #7c8795;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invoice-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 70px;
  border-bottom: 1px solid #e9edf2;
}

.invoice-row:last-child {
  border-bottom: 0;
}

.invoice-row > div:nth-child(2) {
  min-width: 0;
}

.invoice-row strong,
.invoice-row span {
  display: block;
}

.invoice-row strong {
  overflow: hidden;
  margin-bottom: 2px;
  font-size: 0.87rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invoice-row div > span {
  color: #7a8593;
  font-size: 0.74rem;
}

.invoice-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #244d9e;
  background: #e4edff;
  font-size: 0.68rem;
  font-weight: 800;
}

.invoice-icon-alt {
  color: #176c4a;
  background: #e6f5ed;
}

.invoice-icon-warn {
  color: #925500;
  background: #fff0d9;
}

.status {
  display: inline-flex !important;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem !important;
  font-weight: 800;
}

.status-ready,
.status-paid {
  color: var(--green) !important;
  background: var(--green-bg);
}

.status-review {
  color: var(--orange) !important;
  background: var(--orange-bg);
}

.proof-strip {
  color: #fff;
  background: #13263a;
}

.proof-grid {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1.6fr repeat(4, 0.7fr);
  align-items: center;
}

.proof-grid p {
  margin: 0;
  color: #9eacba;
  font-weight: 600;
}

.proof-grid div {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: flex-end;
}

.proof-grid strong {
  color: #7099f4;
  font-size: 0.72rem;
}

.proof-grid span {
  font-weight: 700;
}

.section {
  padding: 118px 0;
}

.workflow {
  background: var(--surface);
}

.section-heading h2,
.feature-copy h2,
.closing-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.split-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.step-card {
  position: relative;
  min-height: 345px;
  padding: 38px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.step-card:last-child {
  border-right: 0;
}

.featured-step {
  background: #f5f8ff;
}

.step-number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: #a9b3c0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--ice);
}

.step-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.step-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
}

.feature-section {
  background: var(--canvas);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 535px;
  margin: 24px 0 35px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 13px;
}

.feature-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #dfeaff;
  font-weight: 800;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  margin-bottom: 3px;
}

.feature-list small {
  color: var(--muted);
  font-size: 0.89rem;
}

.review-panel {
  position: relative;
  padding: 38px;
  border: 1px solid #d4dce8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(38, 59, 86, 0.1);
}

.review-panel::before {
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border-radius: 18px;
  background: #dfe8f8;
  content: "";
}

.review-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.review-header div span,
.review-header div strong {
  display: block;
}

.review-header div span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.review-header div strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.review-details {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 14px;
  margin: 0 0 28px;
}

.review-details dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.review-details dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.review-checks {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.review-checks > div {
  min-height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.review-checks > div:last-child {
  border-bottom: 0;
}

.review-checks span {
  color: var(--muted);
  font-size: 0.86rem;
}

.review-checks strong {
  color: var(--green);
  font-size: 0.82rem;
}

.progress-line {
  height: 6px;
  margin: 27px 0 12px;
  border-radius: 999px;
  background: #e8edf3;
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.review-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.roles-section {
  padding-bottom: 130px;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.roles-grid article {
  min-height: 280px;
  padding: 35px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.roles-grid article:first-child {
  border-left: 1px solid var(--line);
}

.role-label {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.roles-grid h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  line-height: 1.4;
}

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

.closing-section {
  padding: 0 0 96px;
}

.closing-card {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 55px 64px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(71, 131, 255, 0.32), transparent 34%),
    var(--navy);
}

.closing-card h2 {
  max-width: 680px;
}

.button-light {
  flex: 0 0 auto;
  color: var(--navy);
  background: #fff;
}

.button-light:hover {
  background: #edf3ff;
}

.site-footer {
  padding: 50px 0 30px;
  color: #9aa8b7;
  background: #08121d;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px 32px;
  align-items: center;
}

.brand-footer {
  color: #fff;
}

.footer-grid > p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #c5cfda;
  font-size: 0.87rem;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .desktop-cta {
    margin-left: auto;
    margin-right: 14px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 160px;
    padding-bottom: 90px;
  }

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

  .product-stage {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 24px;
  }

  .proof-grid p {
    grid-column: 1 / -1;
    text-align: center;
  }

  .proof-grid div {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .feature-copy {
    max-width: 700px;
  }

  .review-panel {
    width: min(100%, 720px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 620px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background: transparent;
  }

  .menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }

  .mobile-menu {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: #122233;
    box-shadow: var(--shadow);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 13px 14px;
    border-radius: 8px;
    color: #d7e0e9;
    font-weight: 600;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }

  .hero-grid {
    gap: 48px;
    padding-top: 130px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    text-align: center;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-stage {
    padding: 30px 4px 18px;
  }

  .dashboard-card {
    padding: 22px;
    transform: none;
  }

  .stage-accent-one {
    inset: 9px -4px 0 15px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 105px;
  }

  .invoice-row {
    grid-template-columns: 36px minmax(0, 1fr);
    padding-block: 10px;
  }

  .invoice-row > .status {
    grid-column: 2;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 17px 8px;
  }

  .section {
    padding: 86px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .steps-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:last-child,
  .roles-grid article,
  .roles-grid article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .step-card {
    min-height: 285px;
    padding: 32px;
  }

  .step-icon {
    margin-bottom: 38px;
  }

  .review-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-panel {
    padding: 28px 22px;
  }

  .roles-grid {
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .roles-grid article {
    min-height: auto;
  }

  .role-label {
    margin-bottom: 28px;
  }

  .closing-section {
    padding-bottom: 64px;
  }

  .closing-card {
    min-height: 360px;
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 30px;
  }

  .button-light {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
