:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #5e6970;
  --line: #dfe5e7;
  --panel: #ffffff;
  --accent: #117c7a;
  --accent-dark: #0d5558;
  --amber: #b86f18;
  --page: #f6f8f8;
  --shadow: 0 22px 70px rgba(23, 33, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.nav-links {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(13, 25, 29, 0.24);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(18px, 6vw, 80px) 72px;
  background: #142024;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 22, 0.92) 0%, rgba(9, 18, 22, 0.78) 42%, rgba(9, 18, 22, 0.3) 78%, rgba(9, 18, 22, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 18, 22, 0.5), rgba(9, 18, 22, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b7e7df;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  background: #ffffff;
  color: #102025;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.product-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -36px auto 0;
  padding: 0 clamp(18px, 4vw, 40px) 72px;
  position: relative;
  z-index: 2;
}

.route-panel {
  min-height: 260px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.route-panel:first-child {
  border-radius: 8px 0 0 8px;
}

.route-panel:last-child {
  border-radius: 0 8px 8px 0;
}

.route-label {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.route-panel p {
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.route-panel a {
  color: var(--accent-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 8px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
    align-items: start;
    padding-top: 170px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 18, 22, 0.92), rgba(9, 18, 22, 0.42));
  }

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

  .button {
    width: 100%;
  }

  .product-routes {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 24px;
  }

  .route-panel,
  .route-panel:first-child,
  .route-panel:last-child {
    border-radius: 8px;
  }
}
