:root {
  --ink: #11110f;
  --ink-2: #1c1b17;
  --metal: #d8d4c9;
  --paper: #f3f0e8;
  --paper-2: #e5e0d4;
  --muted: #6f6a5d;
  --line: rgba(17, 17, 15, 0.16);
  --white: #ffffff;
  --signal: #c8d939;
  --signal-2: #e7f45b;
  --ember: #d4562b;
  --graphite: #2d2b25;
  --shadow: 0 26px 80px rgba(17, 17, 15, 0.24);
  --radius: 6px;
  --wrap: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 15, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 7.4vw, 104px);
}

h2 {
  font-size: clamp(32px, 4.8vw, 64px);
}

h3 {
  font-size: 22px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 15, 0.88);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 17, 15, 0.96);
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.28);
}

.nav {
  width: var(--wrap);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand img,
.footer-grid img {
  width: 112px;
  height: auto;
  padding: 7px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f7f5ee;
  filter: saturate(1.18) contrast(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

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

.hero,
.page-hero,
.product-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}

.hero {
  min-height: 96vh;
  display: grid;
  align-items: end;
}

.page-hero {
  min-height: 540px;
  display: grid;
  align-items: end;
}

.product-hero {
  padding: 132px 0 74px;
}

.hero::after,
.page-hero::after,
.product-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.94) 0%, rgba(17, 17, 15, 0.68) 48%, rgba(17, 17, 15, 0.26) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.98) 0%, rgba(17, 17, 15, 0.18) 48%, rgba(17, 17, 15, 0.48) 100%);
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 78px 0 0 auto;
  z-index: 1;
  width: min(52vw, 720px);
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(200, 217, 57, 0.16) 0 1px, transparent 1px 19px),
    linear-gradient(120deg, rgba(200, 217, 57, 0.16), transparent 58%);
  clip-path: polygon(18% 0, 100% 0, 76% 100%, 0 100%);
  opacity: 0.75;
}

.hero > img,
.page-hero > img,
.product-hero > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.08) brightness(0.96);
}

.hero-grid,
.product-hero .container {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: 52px;
  align-items: end;
}

.hero-grid {
  padding: 132px 0 42px;
}

.hero-copy {
  max-width: 940px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--signal-2);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-copy p,
.page-hero p,
.product-hero p {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

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

.button,
.button-secondary,
.button-light {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 1000;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button {
  color: var(--ink);
  background: var(--signal);
  box-shadow: inset 0 -3px 0 rgba(17, 17, 15, 0.18);
}

.button-secondary {
  color: var(--white);
  background: var(--graphite);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button::after,
.button-secondary::after,
.button-light::after {
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 45%;
  content: "";
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, 0.32);
  transition: transform 420ms ease;
}

.button:hover,
.button-secondary:hover,
.button-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.24);
}

.button:hover::after,
.button-secondary:hover::after,
.button-light:hover::after {
  transform: translateX(360%) skewX(-18deg);
}

.hero-panel,
.product-facts {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 17, 15, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-panel::before,
.product-facts::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--signal), var(--ember));
  content: "";
}

.panel-kicker {
  padding: 16px 20px 0 24px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel .panel-row,
.product-facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 17px 20px 17px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-panel .panel-row:last-child,
.product-facts div:last-child {
  border-bottom: 0;
}

.hero-panel span,
.product-facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-panel strong,
.product-facts strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
  text-align: right;
}

.hero-panel .panel-row:hover,
.product-facts div:hover {
  background: rgba(200, 217, 57, 0.11);
  transform: translateX(4px);
}

.metrics-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
  position: relative;
  min-height: 132px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition-property: opacity, transform, background, box-shadow;
}

.metric::after {
  position: absolute;
  right: 18px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 96px;
  font-weight: 1000;
  line-height: 1;
  content: attr(data-index);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric.is-visible:hover {
  transform: translate3d(0, -7px, 0);
  background: rgba(200, 217, 57, 0.1);
  box-shadow: inset 0 -3px 0 var(--signal);
}

.metric.is-visible:hover::after {
  color: rgba(200, 217, 57, 0.12);
}

.section {
  position: relative;
  padding: 100px 0;
}

.section.tight {
  padding: 68px 0;
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(212, 86, 43, 0.07), rgba(200, 217, 57, 0.08) 42%, rgba(255, 255, 255, 0) 78%),
    var(--paper-2);
}

.section.dark {
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 68px),
    linear-gradient(135deg, rgba(200, 217, 57, 0.14), rgba(212, 86, 43, 0.12) 52%, transparent),
    var(--ink);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2 {
  max-width: 890px;
}

.section-head.center {
  display: block;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center p {
  margin: 18px auto 0;
  max-width: 660px;
}

.section-head p {
  font-size: 17px;
}

.product-grid,
.blog-grid,
.value-grid,
.spec-grid,
.case-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.product-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid.two,
.contact-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.value-grid,
.spec-grid.three,
.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.route-card,
.product-card,
.blog-card,
.value-card,
.spec-card,
.contact-card,
.process-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.route-card {
  min-height: 420px;
  display: grid;
  align-content: end;
  color: var(--white);
  background: var(--ink);
}

.route-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(17, 17, 15, 0.95) 0%, rgba(17, 17, 15, 0.48) 58%, rgba(17, 17, 15, 0.18) 100%);
  pointer-events: none;
}

.route-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.06);
  transform: scale(1.02);
  transition: transform 620ms ease, filter 620ms ease;
}

.route-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.route-number {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.22);
  font-size: 72px;
  font-weight: 1000;
  line-height: 1;
}

.route-card h3,
.route-card p {
  max-width: 560px;
}

.route-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.section.dark .value-card,
.section.dark .spec-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
  transition: transform 540ms ease, filter 540ms ease;
}

.route-card:hover,
.product-card:hover,
.blog-card:hover,
.value-card:hover,
.spec-card:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 217, 57, 0.68);
  box-shadow: var(--shadow);
}

.route-card:hover img,
.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.22) contrast(1.08);
}

.route-card:hover .route-number {
  color: rgba(200, 217, 57, 0.42);
}

.product-card-body,
.blog-card-body,
.value-card,
.spec-card,
.contact-card,
.process-card {
  padding: 24px;
}

.product-card-body,
.blog-card-body {
  border-top: 4px solid var(--signal);
}

@media (min-width: 1021px) {
  .product-grid.four .product-card:nth-child(2),
  .product-grid.four .product-card:nth-child(4),
  .blog-grid .blog-card:nth-child(2) {
    margin-top: 34px;
  }

  .product-grid.four .product-card:nth-child(3),
  .blog-grid .blog-card:nth-child(3) {
    margin-top: 12px;
  }
}

.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.contact-card h3,
.process-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.product-card p,
.blog-card p,
.value-card p,
.spec-card p,
.contact-card p,
.process-card p {
  font-size: 15px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(200, 217, 57, 0.34);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(200, 217, 57, 0.2);
  font-size: 12px;
  font-weight: 1000;
}

.route-card .tag {
  color: var(--white);
  background: rgba(200, 217, 57, 0.16);
}

.card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 1000;
  border-bottom: 2px solid var(--ember);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.card-link:hover {
  color: var(--ember);
  border-color: var(--signal);
  transform: translateX(5px);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-media {
  position: relative;
}

.split-media::after {
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  border: 1px solid rgba(17, 17, 15, 0.24);
  content: "";
}

.split-media img,
.wide-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
  transition: transform 420ms ease, filter 420ms ease, box-shadow 420ms ease;
}

.split-media img {
  aspect-ratio: 5 / 4;
}

.wide-image img {
  aspect-ratio: 16 / 7;
}

.split-media:hover img,
.wide-image:hover img {
  transform: translateY(-6px) scale(1.015);
  filter: saturate(1.2) contrast(1.08);
  box-shadow: 0 34px 88px rgba(17, 17, 15, 0.3);
}

.spec-table {
  width: 100%;
  margin-top: 26px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.spec-table th,
.spec-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 42%;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr {
  transition: background 160ms ease;
}

.spec-table tr:hover {
  background: rgba(200, 217, 57, 0.13);
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.feature-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.section.dark .check-list li {
  color: rgba(255, 255, 255, 0.76);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--signal);
  content: "";
}

.compare {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > div {
  padding: 18px 20px;
}

.compare-row > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-row strong {
  color: var(--white);
}

.compare-row span {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 132px 0 62px;
  color: var(--white);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 1000;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-button.active,
.filter-button:hover {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-2px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 34px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
}

.article-body p {
  margin-top: 18px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.article-body img {
  width: 100%;
  margin: 34px 0;
  border-radius: var(--radius);
}

.category,
.date {
  display: inline-flex;
  color: var(--ember);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.date {
  color: var(--muted);
  letter-spacing: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ember);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 86, 43, 0.14);
}

.contact-form textarea {
  min-height: 146px;
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 34px;
  padding: 66px 0 44px;
}

.footer-grid img {
  width: 116px;
}

.footer-grid p {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid h3 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-grid a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-grid a:hover {
  color: var(--signal);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.reveal,
.route-card,
.metric {
  opacity: 1;
  transform: translate3d(0, 42px, 0);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.slide-left {
  transform: translate3d(-46px, 0, 0);
}

.reveal.slide-right {
  transform: translate3d(46px, 0, 0);
}

.reveal.is-visible,
.route-card.is-visible,
.metric.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-copy,
.hero-panel {
  animation: heroRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel {
  animation-delay: 150ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .route-card,
  .metric,
  .reveal.slide-left,
  .reveal.slide-right {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .product-hero .container,
  .split,
  .split.reverse,
  .feature-band,
  .section-head,
  .product-grid.two,
  .contact-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 130px;
  }

  .hero::before {
    width: 78vw;
  }

  .route-grid,
  .product-grid.four,
  .blog-grid,
  .value-grid,
  .spec-grid.three,
  .case-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .nav {
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(17, 17, 15, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 900px;
  }

  .hero-copy p,
  .page-hero p,
  .product-hero p {
    font-size: 17px;
  }

  .hero-grid {
    gap: 28px;
    padding-bottom: 30px;
  }

  .section {
    padding: 70px 0;
  }

  .reveal.slide-left,
  .reveal.slide-right {
    transform: translate3d(0, 42px, 0);
  }

  .route-grid,
  .product-grid.four,
  .blog-grid,
  .value-grid,
  .spec-grid.three,
  .case-grid,
  .footer-grid,
  .metrics-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 420px;
  }

  .split-media::after {
    display: none;
  }

  .metric {
    min-height: 116px;
  }

  .metric::after {
    font-size: 70px;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-form button {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
