:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5b6863;
  --soft: #eef4f1;
  --line: #dce7e3;
  --paper: #ffffff;
  --deep: #0f1718;
  --teal: #16b8aa;
  --cyan: #66e1db;
  --amber: #f2a84f;
  --shadow: 0 24px 70px rgba(13, 27, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7faf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #f9fffd;
  background: linear-gradient(180deg, rgba(10, 16, 17, 0.78), rgba(10, 16, 17, 0));
}

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #06100f;
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  border-radius: 8px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, 0.94);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
}

.nav a {
  padding: 9px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.solid .nav a:hover {
  background: var(--soft);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.solid .nav-cta {
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 15, 0.92) 0%, rgba(8, 14, 15, 0.78) 35%, rgba(8, 14, 15, 0.18) 75%),
    linear-gradient(180deg, rgba(8, 14, 15, 0.28), rgba(8, 14, 15, 0.66));
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(720px, calc(100% - 36px));
  max-width: calc(100% - 36px);
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 72px;
  color: #f9fffd;
}

.hero-logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin: 0 0 24px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: min(580px, 100%);
  margin: 26px 0 0;
  color: rgba(249, 255, 253, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.button.primary {
  color: #07110f;
  background: var(--cyan);
}

.button.secondary {
  color: #f9fffd;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.identity-strip div {
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--paper);
}

.identity-strip span,
.details dt {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-strip strong {
  display: block;
  margin-top: 5px;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.copy-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-card,
.values article,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(28, 44, 41, 0.06);
}

.product-card {
  min-height: 300px;
  padding: 26px;
}

.product-logo-frame {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-logo-frame.dark {
  background: #020605;
}

.product-logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #102322;
}

.product-icon::after {
  position: absolute;
  inset: 12px;
  border: 3px solid var(--cyan);
  border-radius: 5px;
  content: "";
}

.product-icon.route::after {
  border-right-color: var(--amber);
  border-radius: 50%;
}

.product-icon.app::after {
  border-radius: 2px;
  transform: rotate(45deg);
}

.product-card h3,
.values h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.product-card p,
.values p {
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  margin-top: 10px;
  color: #087d75;
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 96px);
  background: #101819;
  color: #f9fffd;
}

.split .copy-block p {
  color: rgba(249, 255, 253, 0.72);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--soft);
}

.verification {
  background: #ffffff;
}

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

.verification-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.verification-grid h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.verification-grid p {
  color: var(--muted);
}

.verification-grid a,
.document a {
  color: #087d75;
  font-weight: 800;
}

.values article {
  padding: 26px;
}

.values span {
  display: inline-flex;
  margin-bottom: 46px;
  color: #087d75;
  font-weight: 900;
}

.legal-panel {
  margin: clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 52px);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.details div {
  padding: 18px;
  background: #fff;
}

.details dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(249, 255, 253, 0.72);
  background: #0e1516;
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #f9fffd;
  text-decoration: none;
}

.document-page {
  background: #fff;
}

.document {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.document h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.updated {
  color: var(--muted);
}

.document section {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.document h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.document p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 24px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-list div {
  padding: 16px;
  background: #fff;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.document-email {
  display: inline-flex;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  overflow-wrap: anywhere;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    min-height: auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 14, 15, 0.94), rgba(8, 14, 15, 0.82) 48%, rgba(8, 14, 15, 0.52)),
      linear-gradient(90deg, rgba(8, 14, 15, 0.65), rgba(8, 14, 15, 0.2));
  }

  .hero-content {
    align-self: start;
    width: calc(100% - 36px);
    max-width: 430px;
    margin: 0 18px;
    padding-top: 118px;
  }

  .hero-logo {
    width: 132px;
    margin-bottom: 18px;
    padding: 9px;
  }

  .hero-copy {
    font-size: 1.02rem;
    width: 100%;
  }

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

  .identity-strip,
  .product-grid,
  .split,
  .values,
  .verification-grid,
  .details {
    grid-template-columns: 1fr;
  }

  .legal-panel {
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }

  .product-card,
  .values article {
    padding: 22px;
  }
}
