:root {
  color-scheme: dark;
  --black: #020303;
  --ink: #f7f7f4;
  --muted: rgba(247, 247, 244, 0.66);
  --paper: #f5f3ee;
  --paper-ink: #141414;
  --paper-muted: #66625c;
  --line: rgba(255, 255, 255, 0.16);
  --paper-line: rgba(20, 20, 20, 0.14);
  --blue: #0877fa;
  --blue-dark: #035fc9;
  --gold: #c7a05a;
  --panel: #0b0d0e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.announcement {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 18px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 3, 3, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-tools,
.hero-actions,
.hero-stats,
.product-actions,
.support-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.nav {
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.nav a.active,
.text-link:hover {
  color: #fff;
}

.header-action,
.button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-tools {
  justify-content: flex-end;
  gap: 12px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.language-picker select {
  min-width: 72px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: 0;
}

.language-picker option {
  background: #090b0c;
  color: #fff;
}

.header-action {
  min-height: 40px;
  padding: 0 18px;
  border-color: var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.header-action:hover,
.button:hover,
.link-button:hover,
.finder-grid a:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 38px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.05) 46%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  padding: 96px 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-dark);
}

.hero h1,
.section-lead h2,
.split-copy h2,
.quick-finder h2,
.advantage h2,
.compare h2,
.story h2,
.support h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
}

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

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-stats {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stats span {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.quick-finder,
.product-stage,
.advantage,
.compare,
.story,
.support {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.quick-finder {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 74px 0;
  color: var(--paper-ink);
}

.quick-finder,
.compare,
.story {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.quick-finder h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
}

.finder-grid a {
  min-height: 142px;
  padding: 20px;
  background: #fff;
  transition: transform 160ms ease, background 160ms ease;
}

.finder-grid a:hover {
  background: #f8fbff;
}

.finder-grid span {
  display: block;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.finder-grid strong {
  display: block;
  font-size: 25px;
  line-height: 1.05;
}

.product-stage,
.advantage {
  padding: 96px 0;
}

.section-lead {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-lead h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.section-lead p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-lead.centered {
  display: block;
  max-width: 820px;
  text-align: center;
}

.section-lead.centered {
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: 330px 1fr auto;
  background: #080909;
}

.product-card.featured {
  background: #101214;
}

.product-media {
  display: block;
  overflow: hidden;
  background: #050505;
}

.product-media.light {
  background: #f4f4f2;
}

.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-info {
  padding: 24px 22px 18px;
}

.product-info p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.product-info span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.product-actions {
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 22px 24px;
}

.link-button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 14px;
}

.link-button.muted {
  border-color: var(--line);
  background: transparent;
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  min-height: 520px;
  background: #050505;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.split-copy {
  display: grid;
  align-content: center;
  padding: 72px max(34px, calc((100vw - 1180px) / 2)) 72px 72px;
  background: #050607;
}

.split.reverse .split-copy {
  padding: 72px 72px 72px max(34px, calc((100vw - 1180px) / 2));
  background: var(--paper);
  color: var(--paper-ink);
}

.split-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.split-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.75;
}

.split.reverse .split-copy p:not(.eyebrow) {
  color: var(--paper-muted);
}

.text-link {
  width: fit-content;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.dark-link {
  color: var(--paper-ink);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}

.advantage-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--panel);
}

.advantage-grid strong {
  color: var(--blue);
  font-size: 14px;
}

.advantage-grid h3 {
  margin: 36px 0 12px;
  font-size: 26px;
}

.advantage-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.compare {
  padding: 96px 0;
  color: var(--paper-ink);
}

.compare .section-lead p:last-child,
.story p {
  color: var(--paper-muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--paper-line);
  background: #fff;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--paper-line);
  text-align: left;
  line-height: 1.5;
}

th {
  color: var(--paper-muted);
  font-size: 12px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 0 0 96px;
  color: var(--paper-ink);
}

.story img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: #fff;
}

.story p {
  max-width: 560px;
  line-height: 1.75;
}

.support {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  padding: 72px 0 92px;
}

.support p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.support-actions {
  justify-content: flex-end;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100vh - 116px);
  border-bottom: 1px solid var(--line);
  background: #000;
}

.about-hero-copy {
  display: grid;
  align-content: center;
  padding: 92px 34px 92px max(34px, calc((100vw - 1180px) / 2));
}

.about-hero h1,
.about-manifesto h2,
.about-panel h2,
.about-values h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
  text-wrap: balance;
}

.about-hero-copy p:not(.eyebrow),
.about-manifesto p,
.about-panel p:not(.eyebrow),
.about-values p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-hero-media {
  min-height: 620px;
  overflow: hidden;
}

.about-hero-media img,
.about-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-manifesto,
.about-values {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  color: var(--paper-ink);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.about-manifesto {
  padding: 108px 0;
}

.about-manifesto h2 {
  max-width: 980px;
  font-size: clamp(40px, 6vw, 76px);
}

.about-manifesto p {
  color: var(--paper-muted);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-panel {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding: 72px max(34px, calc((100vw - 1180px) / 2)) 72px 72px;
}

.about-panel.dark-panel {
  background: #050607;
}

.about-panel.image-panel {
  padding: 0;
  overflow: hidden;
  background: #f3f1ea;
}

.about-panel h2 {
  font-size: clamp(36px, 5vw, 68px);
}

.about-process {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-process-grid article {
  min-height: 280px;
  padding: 30px;
  background: var(--panel);
}

.about-process-grid strong {
  color: var(--blue);
  font-size: 14px;
}

.about-process-grid h3 {
  margin: 42px 0 12px;
  font-size: 28px;
}

.about-process-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.about-values {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding: 96px 0;
}

.about-values h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.values-list {
  display: grid;
  gap: 18px;
}

.values-list p {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--paper-line);
  background: #fff;
  color: var(--paper-muted);
}

.about-cta {
  padding-top: 92px;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .product-grid,
  .finder-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 0 20px;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .header-action {
    display: none;
  }

  .header-tools {
    justify-self: end;
    order: 2;
  }

  .language-picker {
    padding: 0 10px;
  }

  .language-picker span {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 116px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(2, 3, 3, 0.96);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 18px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    align-self: end;
    padding: 80px 0 190px;
  }

  .hero-stats {
    left: 22px;
    right: 22px;
  }

  .quick-finder,
  .section-lead,
  .split,
  .about-hero,
  .about-split,
  .about-values,
  .story,
  .support {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-copy,
  .split.reverse .split-copy {
    padding: 54px 22px;
  }

  .about-hero-copy,
  .about-panel {
    padding: 58px 22px;
  }

  .about-hero-media,
  .about-panel {
    min-height: 460px;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .support-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .announcement {
    justify-content: space-between;
  }

  .site-header {
    min-height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

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

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

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

  .hero-scrim {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.08) 100%);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats span {
    min-width: 0;
    padding: 12px 10px;
    font-size: 12px;
  }

  .hero-stats strong {
    font-size: 24px;
  }

  .quick-finder,
  .product-stage,
  .advantage,
  .compare,
  .about-manifesto,
  .about-process,
  .about-values,
  .story,
  .support {
    width: calc(100% - 32px);
  }

  .product-grid,
  .finder-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 280px 1fr auto;
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .support-actions .button {
    width: 100%;
  }
}
