:root {
  color-scheme: light;
  --ink: #12151d;
  --muted: #5e6674;
  --subtle: #8b93a1;
  --line: #e4e8ef;
  --paper: #ffffff;
  --wash: #f6f8fb;
  --panel: rgba(255, 255, 255, 0.9);
  --blue: #3b66e4;
  --green: #2f9f69;
  --orange: #d98527;
  --red: #d85b4a;
  --shadow: 0 28px 90px rgba(27, 36, 56, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px 64px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(228, 232, 239, 0.76);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 820;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 4px;
  border-radius: 8px;
  background: #151922;
}

.brand-mark span {
  border-radius: 4px;
}

.brand-mark span:nth-child(1) { background: var(--blue); }
.brand-mark span:nth-child(2) { background: var(--green); }
.brand-mark span:nth-child(3) { background: var(--orange); }
.brand-mark span:nth-child(4) { background: #ffffff; }

.nav-links,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 64px 80px;
  background: #edf1f7;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.5;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 252, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 82px;
  line-height: 0.96;
}

h2 {
  font-size: 48px;
  line-height: 1.06;
}

h3 {
  font-size: 26px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  color: #2f3748;
  font-size: 24px;
  line-height: 1.4;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 820;
  text-decoration: none;
  border: 1px solid transparent;
}

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

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(18, 21, 29, 0.14);
}

.hero-dock {
  position: absolute;
  z-index: 2;
  right: 64px;
  bottom: 58px;
  display: flex;
  gap: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 21, 29, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.hero-dock img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-band div {
  min-height: 132px;
  padding: 30px 64px;
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.intro-band span,
.section-heading p,
.product-card p,
.trust-grid p,
.roadmap-list p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  padding: 96px 64px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-media {
  height: 290px;
  overflow: hidden;
  background: var(--wash);
  border-bottom: 1px solid var(--line);
}

.product-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 30px;
}

.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(23, 30, 45, 0.18);
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
}

.product-points li {
  padding: 7px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
}

.trust-section {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: #edf3ff;
  border-radius: 8px;
  font-weight: 850;
}

.roadmap-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 600px);
  gap: 42px;
  align-items: start;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 64px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.text-page {
  background: var(--wash);
}

.legal-page {
  max-width: 860px;
  margin: 64px auto 100px;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-page h1 {
  font-size: 54px;
  line-height: 1.02;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-page code {
  padding: 2px 5px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.92em;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
    padding-top: 92px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .hero-dock {
    left: 28px;
    right: auto;
    bottom: 32px;
  }

  .intro-band,
  .product-grid,
  .trust-grid,
  .roadmap-section {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    padding: 26px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav-links {
    width: 100%;
    gap: 12px;
  }

  .hero {
    min-height: 680px;
    padding-top: 64px;
  }

  .hero-bg {
    object-position: center;
    opacity: 0.32;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

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

  .button {
    width: 100%;
  }

  .hero-dock img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .product-media {
    height: 220px;
  }

  .product-body,
  .trust-grid article,
  .legal-page {
    padding: 24px;
  }

  .legal-page {
    margin: 28px;
  }

  .legal-page h1 {
    font-size: 38px;
  }
}
