:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6978;
  --line: #dde3e8;
  --paper: #ffffff;
  --soft: #f4f7f7;
  --teal: #0f9f92;
  --teal-dark: #08796f;
  --amber: #f59e0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand img {
  border-radius: 8px;
}

.brand strong {
  font-size: 18px;
}

.site-header nav {
  display: flex;
  gap: 30px;
  color: #344052;
  font-size: 14px;
}

.site-header nav a,
.header-entry,
.hero-actions a,
footer a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.language-control {
  display: block;
}

.language-control select {
  width: 116px;
  min-height: 40px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #344052;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
}

.site-header nav a:hover,
footer > a:last-child:hover {
  color: var(--teal-dark);
}

.header-entry {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.header-entry:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: #ffffff;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82svh;
  max-height: 780px;
  padding: 128px clamp(20px, 7vw, 108px) clamp(54px, 8vh, 88px);
  overflow: hidden;
  background-color: #eaf4f3;
  background-image: url("/assets/voxensus-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
}

.hero-kicker,
.section-heading > p,
.trust-copy > p {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1;
}

.hero-copy {
  margin: 22px 0 8px;
  font-size: 28px;
  font-weight: 750;
}

.hero-detail {
  max-width: 460px;
  margin: 0;
  color: #3f4b59;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
}

.primary-action {
  gap: 14px;
  background: var(--ink);
  color: #ffffff;
}

.primary-action:hover {
  background: var(--teal-dark);
}

.secondary-action {
  border: 1px solid rgba(17, 24, 39, 0.32);
  background: rgba(255, 255, 255, 0.72);
}

.secondary-action:hover {
  border-color: var(--ink);
  background: #ffffff;
}

.product-band,
.trust-band,
footer {
  padding-inline: clamp(20px, 7vw, 108px);
}

.product-band {
  padding-top: 76px;
  padding-bottom: 86px;
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
}

.section-heading > p {
  margin-bottom: 5px;
}

.section-heading h2,
.trust-copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

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

.product-points article {
  min-width: 0;
  padding: 32px 32px 0 0;
}

.product-points article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.product-points article > span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.product-points h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.product-points p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  padding-top: 82px;
  padding-bottom: 82px;
  background: var(--ink);
  color: #ffffff;
}

.trust-copy > p {
  color: #55d4c8;
}

.trust-copy > span {
  display: block;
  max-width: 520px;
  margin-top: 22px;
  color: #aeb8c6;
  font-size: 15px;
  line-height: 1.8;
}

.trust-list > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-list span {
  color: #8390a1;
  font-size: 13px;
}

.trust-list strong,
.trust-list a {
  font-size: 14px;
}

.trust-list a:hover {
  color: #55d4c8;
}

.legal-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 100px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: #596474;
  font-size: 13px;
}

.footer-brand {
  color: var(--ink);
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 16px;
  }

  .site-header nav {
    display: none;
  }

  .header-entry {
    padding: 9px 13px;
  }

  .language-control {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding: 104px 20px 46px;
    background-position: 58% center;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.42);
  }

  .hero h1 {
    font-size: 48px;
  }

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

  .hero-detail {
    max-width: 360px;
    font-size: 15px;
  }

  .hero-actions a {
    min-width: 0;
  }

  .product-band {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .section-heading {
    display: block;
    padding-bottom: 26px;
  }

  .section-heading h2,
  .trust-copy h2 {
    font-size: 30px;
  }

  .product-points {
    grid-template-columns: 1fr;
  }

  .product-points article,
  .product-points article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-points h3 {
    margin-top: 14px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .trust-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: 88px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  * {
    transition: none !important;
  }
}
