@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f7faff;
  --text: #071226;
  --muted: #596a84;
  --quiet: #8b99ad;
  --line: #dfe7f2;
  --line-strong: #cbd6e5;
  --primary: #1267ff;
  --primary-dark: #0754dc;
  --primary-soft: #edf4ff;
  --cyan: #18b8c6;
  --success: #1c9b73;
  --surface: #ffffff;
  --shadow: 0 28px 80px rgba(7, 18, 38, 0.08);
  --focus: 0 0 0 4px rgba(18, 103, 255, 0.18);
  --radius: 8px;
  --max: 1216px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family:
    "Plus Jakarta Sans", "Google Sans", "Product Sans", Inter, Manrope,
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#app {
  width: 100%;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.site-header,
.site-footer,
.hero,
.section {
  width: min(var(--max), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(7, 18, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  max-width: 34vw;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
  color: #26354b;
  font-size: 14px;
  font-weight: 760;
}

nav a,
.site-footer a,
.header-cta {
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

nav a {
  padding: 10px 0;
}

nav a:hover,
.site-footer a:hover,
.header-cta:hover {
  color: var(--primary);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(18, 103, 255, 0.22);
}

.header-cta:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
  padding: 78px 0 54px;
}

.hero-copy {
  min-width: 0;
}

h1,
.section h2,
.legal-page h1 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

.lead {
  max-width: 586px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  min-width: 154px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 820;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(18, 103, 255, 0.24);
}

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

.button.secondary {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(18, 103, 255, 0.42);
  color: var(--primary);
}

.product-scene {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.app-preview-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
}

.signal-map {
  position: relative;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.signal-map::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 248px);
  left: 168px;
  height: 1px;
  background: var(--primary);
  opacity: 0.9;
}

.signal-node {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 144px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(7, 18, 38, 0.06);
}

.signal-logo {
  display: block;
  width: 126px;
  height: auto;
}

.signal-node span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
}

.signal-rail {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 1px;
  background: var(--primary);
}

.signal-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 18px 0 18px 28px;
}

.signal-rail article + article {
  border-top: 1px solid var(--line);
}

.signal-rail article::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.signal-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--primary);
}

.signal-icon svg,
.proof-icon svg,
.flow-icon svg,
.trust-icon svg {
  width: 28px;
  height: 28px;
}

.signal-icon path,
.proof-icon path,
.flow-icon path,
.trust-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-rail strong,
.signal-rail span {
  display: block;
}

.signal-rail strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 820;
}

.signal-rail span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin: 42px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.proof-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 103, 255, 0.16);
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
}

.hero-proof dt {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 820;
}

.hero-proof dd {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  margin-bottom: 86px;
  padding-top: 68px;
  border-top: 1px solid var(--line);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 800;
}

.section-heading p:not(.section-label),
.section p {
  color: var(--muted);
}

.section-heading p:not(.section-label) {
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.65;
}

.flow-section {
  border-top: 0;
  padding-top: 34px;
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.flow-grid::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--primary), var(--line));
}

.flow-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
}

.flow-grid h3,
.feature-grid h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.flow-grid p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

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

.feature-grid article {
  min-height: 188px;
  padding: 28px 0 0;
  border-top: 3px solid var(--line);
}

.feature-grid article:first-child {
  border-color: var(--primary);
}

.feature-grid article:nth-child(2) {
  border-color: var(--cyan);
}

.feature-grid article:nth-child(3) {
  border-color: #6f8dff;
}

.feature-grid h3 {
  margin-top: 0;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(460px, 1.16fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
  padding-bottom: 82px;
}

.trust-section h2 {
  max-width: 460px;
}

.trust-section p {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.68;
}

.trust-visual {
  min-width: 0;
}

.trust-map {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-map-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
}

.trust-map-head strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 820;
}

.trust-map-head span {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 740;
  text-align: right;
}

.trust-map-row {
  display: grid;
  grid-template-columns: 92px minmax(80px, 1fr) 150px;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  border-top: 1px solid rgba(223, 231, 242, 0.8);
}

.trust-map-row span {
  color: var(--text);
  font-size: 14px;
  font-weight: 820;
}

.trust-map-row strong {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  text-align: right;
}

.trust-map-row i {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.trust-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.trust-links a {
  min-height: 106px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.trust-links a:hover {
  border-color: rgba(18, 103, 255, 0.4);
  box-shadow: 0 18px 42px rgba(7, 18, 38, 0.07);
  color: var(--primary);
  transform: translateY(-1px);
}

.trust-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
}

.trust-links strong {
  display: block;
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 820;
}

.trust-links span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legal-page {
  width: min(930px, calc(100% - 48px));
  margin: 52px auto 84px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 64px rgba(7, 18, 38, 0.06);
}

.legal-page a {
  color: var(--primary);
  font-weight: 780;
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  font-weight: 800;
}

.legal-page h2 {
  margin: 42px 0 12px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 800;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.legal-page ul,
.legal-page ol {
  margin: 12px 0 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-page li + li {
  margin-top: 8px;
}

.legal-page strong {
  color: var(--text);
}

.updated {
  margin-top: 10px;
  color: var(--quiet);
  font-size: 15px;
}

.legal-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.legal-quicklinks a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: #26354b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-top: 58px;
  }

  .signal-map {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .hero,
  .section {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    width: 136px;
    max-width: 52vw;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: start;
    gap: 8px 14px;
    font-size: 12px;
  }

  nav a {
    padding: 2px 0;
    white-space: normal;
    line-height: 1.22;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 46px 0 36px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.02;
  }

  .lead,
  .section-heading p:not(.section-label),
  .trust-section p {
    font-size: 16.5px;
  }

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

  .button {
    width: 100%;
  }

  .signal-map {
    display: block;
  }

  .signal-map::before,
  .signal-rail::before,
  .signal-rail article::before {
    display: none;
  }

  .signal-node {
    min-height: auto;
    margin-bottom: 12px;
    padding: 18px;
  }

  .signal-rail article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 76px;
    padding: 16px 0;
  }

  .signal-icon {
    width: 38px;
    height: 38px;
  }

  .hero-proof,
  .flow-grid,
  .feature-grid,
  .trust-links {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 18px;
    margin-top: 34px;
  }

  .flow-grid {
    gap: 24px;
  }

  .flow-grid::before {
    display: none;
  }

  .flow-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    justify-items: start;
    text-align: left;
  }

  .flow-icon {
    grid-row: 1 / 3;
  }

  .flow-grid h3 {
    margin: 0 0 8px;
  }

  .flow-grid p {
    grid-column: 2;
  }

  .section {
    margin-bottom: 64px;
    padding-top: 52px;
  }

  .section-heading {
    text-align: left;
  }

  .trust-map-head {
    display: block;
  }

  .trust-map-head span {
    margin-top: 4px;
    text-align: left;
  }

  .trust-map-row {
    grid-template-columns: 76px minmax(36px, 1fr);
    gap: 10px;
  }

  .trust-map-row strong {
    grid-column: 1 / -1;
    justify-self: start;
    padding-bottom: 12px;
    text-align: left;
  }

  .legal-page {
    width: calc(100% - 32px);
    margin-top: 34px;
    padding: 24px;
  }

  .legal-page p,
  .legal-page ul,
  .legal-page ol {
    font-size: 16px;
  }

  .site-footer {
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
