:root {
  --canvas: #fafaf8;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #69717f;
  --quiet: #939baa;
  --line: #e3e4e1;
  --blue: #006ac4;
  --blue-hover: #005da9;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
}

body {
  min-width: 320px;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

p,
h1 {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(0, 106, 196, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  height: 68px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(1508px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  width: fit-content;
  color: var(--ink);
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.brand:hover {
  opacity: 0.66;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
}

.button-brand {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button-brand:hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
}

.nav-cta {
  min-height: 37px;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 12px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.single-home {
  height: calc(100svh - 68px);
}

.single-hero {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  padding: 0 32px 22px;
}

.hero-stage {
  display: grid;
  min-height: 0;
  place-items: center;
}

.hero-center {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(780px, 76vw);
  padding: 30px 20px;
  text-align: center;
  transform: translateY(-14px);
}

.hero-kicker {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-center h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(58px, 6.8vw, 102px);
  font-weight: 770;
  letter-spacing: -0.074em;
  line-height: 0.91;
  text-wrap: balance;
}

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

.hero-copy {
  width: min(560px, 100%);
  margin-top: 28px;
  color: #5f6774;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.58;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.button-large {
  min-height: 48px;
  padding: 14px 21px;
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(23, 23, 23, 0.08);
  font-size: 14px;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button-large:hover {
  box-shadow: 0 2px 5px rgba(23, 23, 23, 0.12);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  margin-top: 14px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.5;
}

.hero-trust span + span::before {
  margin-right: 10px;
  content: "·";
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1320px, 100%);
  margin-inline: auto;
  border-top: 1px solid #d8d9d5;
  border-bottom: 1px solid #d8d9d5;
}

.workflow-rail article {
  display: grid;
  min-width: 0;
  min-height: 82px;
  align-items: center;
  padding: 17px 28px;
}

.workflow-rail article + article {
  border-left: 1px solid #dedfdd;
}

.workflow-rail article:nth-child(2) {
  justify-items: start;
  text-align: left;
}

.workflow-rail article:nth-child(3) {
  justify-items: start;
  text-align: left;
}

.workflow-rail article div {
  display: grid;
  gap: 5px;
}

.workflow-rail strong {
  color: #303136;
  font-size: 14px;
  font-weight: 680;
}

.workflow-rail small {
  overflow: hidden;
  color: var(--quiet);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .nav-shell {
    width: calc(100% - 32px);
    gap: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .nav-actions {
    gap: 12px;
  }

  .text-link {
    font-size: 11px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .single-home {
    height: calc(100svh - 64px);
  }

  .single-hero {
    padding: 0 18px 14px;
  }

  .hero-center {
    width: 100%;
    padding: 20px 0 10px;
    transform: translateY(-6px);
  }

  .hero-kicker {
    margin-bottom: 15px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero-center h1 {
    max-width: 370px;
    font-size: clamp(48px, 14.5vw, 62px);
    line-height: 0.94;
  }

  .hero-copy {
    width: min(348px, 96%);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    width: min(348px, 100%);
    margin-top: 19px;
  }

  .button-large {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .hero-trust {
    width: min(340px, 96%);
    margin-top: 12px;
    font-size: 10px;
  }

  .workflow-rail article {
    min-height: 66px;
    justify-items: start;
    padding: 10px 7px;
    text-align: left;
  }

  .workflow-rail article:nth-child(2),
  .workflow-rail article:nth-child(3) {
    justify-items: start;
    text-align: left;
  }

  .workflow-rail article div {
    gap: 3px;
  }

  .workflow-rail strong {
    font-size: 11.5px;
  }

  .workflow-rail small {
    max-width: 104px;
    font-size: 10px;
  }
}

@media (max-height: 680px) {
  .hero-center {
    padding-block: 12px;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-center h1 {
    font-size: clamp(48px, 6vw, 72px);
  }

  .hero-actions {
    margin-top: 15px;
  }

  .workflow-rail article {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
