:root {
  --navy-950: #050f26;
  --navy-900: #0a1a3c;
  --navy-800: #102a5c;
  --navy-700: #17407f;
  --navy-600: #1b4a8a;
  --navy-400: #5b8fd4;
  --navy-200: #b9cee9;
  --navy-100: #dce7f5;

  --ink: #0a1a3c;
  --body: #4a5768;
  --muted: #6b7688;
  --line: #e3e8ef;
  --mist: #f4f6f9;

  --red: #d81e24;
  --red-dark: #b0161b;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Archivo", var(--font-sans);

  --shadow-card: 0 1px 2px rgba(10, 26, 60, 0.04), 0 8px 24px -12px rgba(10, 26, 60, 0.14);
  --shadow-card-hover: 0 2px 4px rgba(10, 26, 60, 0.06), 0 24px 48px -20px rgba(10, 26, 60, 0.28);
  --shadow-header: 0 1px 0 rgba(10, 26, 60, 0.08), 0 8px 24px -16px rgba(10, 26, 60, 0.25);

  --container: 1440px;
  --gutter: 1.25rem;
  --header-h: 5rem;
}

@media (min-width: 640px) {
  :root {
    --gutter: 2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 3rem;
    --header-h: 6rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100%;
  background-color: #fff;
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;

  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background-color: var(--navy-900);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--navy-600);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  margin: 1rem;
  background: #fff;
  color: var(--navy-900);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 4.5rem;
}

@media (min-width: 768px) {
  .section {
    padding-block: 6.5rem;
  }
}

@media (min-width: 1280px) {
  .section {
    padding-block: 8rem;
  }
}

.section--mist {
  background-color: var(--mist);
}

.section--dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy-950);
}

.tech-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.7;
}

.glow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 55% at 75% 0%, rgba(27, 74, 138, 0.5), transparent 65%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background-color: var(--red);
  flex-shrink: 0;
}

.eyebrow--light {
  color: var(--navy-200);
}

.section-title {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 1.875rem;
  line-height: 1.12;
}

.section-lead {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
}

.section-title--light {
  color: #fff;
}

.section-lead--light {
  color: rgba(220, 231, 245, 0.78);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }

  .section-lead {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.btn svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn--primary {
  background-color: var(--navy-900);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(10, 26, 60, 0.7);
}

.btn--primary:hover {
  background-color: var(--navy-800);
}

.btn--red {
  background-color: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(216, 30, 36, 0.8);
}

.btn--red:hover {
  background-color: var(--red-dark);
}

.btn--outline {
  border: 1px solid rgba(10, 26, 60, 0.25);
  color: var(--navy-900);
}

.btn--outline:hover {
  border-color: var(--navy-900);
  background-color: var(--navy-900);
  color: #fff;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  background-color: #fff;
  color: var(--navy-900);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    gap: 1rem;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.link-arrow svg {
  width: 1rem;
  height: 1rem;
  color: var(--red);
  transition: transform 0.3s;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background-color: transparent;
  transition:
    background-color 0.3s,
    box-shadow 0.3s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  transition: height 0.3s;
}

.header__logo img {
  height: 2.75rem;
  width: auto;
  transition: height 0.3s;
}

.header__logo .logo--dark {
  display: none;
}

.header.is-solid {
  background-color: #fff;
  box-shadow: var(--shadow-header);
}

.header.is-solid .header__logo .logo--light {
  display: none;
}

.header.is-solid .header__logo .logo--dark {
  display: block;
}

.header.is-solid .header__logo img {
  height: 2.5rem;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 1rem;
  bottom: -0.125rem;
  height: 2px;
  background-color: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav__link:hover {
  color: #fff;
}

.nav__link[aria-current="page"] {
  color: #fff;
}

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header.is-solid .nav__link {
  color: var(--body);
}

.header.is-solid .nav__link:hover,
.header.is-solid .nav__link[aria-current="page"] {
  color: var(--navy-900);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}

.lang__sep {
  color: rgba(255, 255, 255, 0.3);
}

.lang__off {
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
}

.header.is-solid .lang {
  color: var(--navy-900);
}

.header.is-solid .lang__sep {
  color: var(--line);
}

.header.is-solid .lang__off {
  color: rgba(107, 118, 136, 0.6);
}

.header__cta {
  display: none;
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  color: #fff;
  transition: color 0.2s;
}

.burger svg {
  width: 1.5rem;
  height: 1.5rem;
}

.header.is-solid .burger {
  color: var(--navy-900);
}

@media (min-width: 640px) {
  .header__cta {
    display: inline-flex;
  }

  .header__actions {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .lang {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header__inner {
    height: 6rem;
  }

  .header.is-solid .header__inner {
    height: 5rem;
  }

  .nav {
    display: block;
  }

  .burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background-color: var(--navy-950);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 5rem;
  padding-inline: var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__head img {
  height: 2.5rem;
  width: auto;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2rem var(--gutter);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

.mobile-menu__link:hover,
.mobile-menu__link[aria-current="page"] {
  color: #fff;
}

.mobile-menu__link svg {
  width: 1rem;
  height: 1rem;
  color: var(--red);
}

.mobile-menu__label {
  margin-top: 2.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-400);
}

.mobile-menu__products {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__products a {
  display: inline-block;
  padding-block: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.mobile-menu__products a:hover {
  color: #fff;
}

.mobile-menu__foot {
  flex-shrink: 0;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__foot .btn {
  width: 100%;
}

.mobile-menu__phone {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy-950);
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 75% 10%, rgba(27, 74, 138, 0.55), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(10, 26, 60, 0.9), transparent 70%);
}

.hero__grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.hero__title {
  margin-top: 1.5rem;
  font-size: 2.125rem;
  line-height: 1.08;
  color: #fff;
}

.hero__title span {
  display: block;
  margin-top: 0.375rem;
  color: var(--navy-200);
}

.hero__lead {
  margin-top: 1.75rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(220, 231, 245, 0.75);
}

.hero__picks {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
}

.hero__pick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.hero__pick:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.hero__pick-img {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
}

.hero__pick-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.hero__pick span {
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.hero__pick:hover span {
  color: #fff;
}

.hero__feature {
  position: relative;
  max-width: 34rem;
  margin-inline: auto;
}

.hero__feature-plate {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.75);
}

.hero__feature-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.hero__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 0.25rem;
  background-color: var(--red);
}

.hero__tag {
  position: absolute;
  right: 0;
  bottom: -1px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: var(--navy-900);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
  transition: background-color 0.2s;
}

.hero__tag:hover {
  background-color: var(--navy-800);
}

.hero__tag-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-400);
}

.hero__tag-name {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.hero__tag svg {
  width: 1rem;
  height: 1rem;
  color: var(--red);
  transition: transform 0.2s;
}

.hero__tag:hover svg {
  transform: translateX(2px);
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(220, 231, 245, 0.7);
}

.hero__highlights li::before {
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.4375rem;
  background-color: var(--red);
}

@media (min-width: 640px) {
  .hero {
    padding-top: 8rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__lead {
    font-size: 1.125rem;
  }

  .hero__feature-plate img {
    padding: 2.5rem;
  }

  .hero__tag {
    padding-inline: 1.5rem;
  }

  .hero__tag-name {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }

  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__highlights {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 5rem;
  }

  .hero__feature {
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .hero__grid {
    gap: 5rem;
  }
}

.plate {
  background: radial-gradient(120% 90% at 50% 0%, #fff 0%, #f7f9fc 45%, #e9eef5 100%);
}

.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-grid--with-heading {
  margin-top: 3rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-200);
  box-shadow: var(--shadow-card-hover);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.75rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--red);
  transition: width 0.5s;
}

.product-card:hover .product-card__media::after {
  width: 5rem;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
}

.product-card__title {
  font-size: 1.125rem;
  line-height: 1.35;
  transition: color 0.3s;
}

.product-card:hover .product-card__title {
  color: var(--navy-700);
}

.product-card__text {
  flex: 1;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.product-card__cta {
  margin-top: 1.5rem;
}

.product-card:hover .product-card__cta span {
  color: var(--red);
}

.product-card__cta span {
  transition: color 0.3s;
}

.product-card:hover .product-card__cta svg {
  transform: translateX(4px);
}

.product-grid__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card__media img {
    padding: 2.25rem;
  }

  .product-card__body {
    padding: 1.75rem;
  }

  .product-card__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .product-grid--with-heading {
    margin-top: 4rem;
  }

  .product-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy-950);
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

.page-hero__title {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 2rem;
  line-height: 1.12;
  color: #fff;
}

.page-hero__lead {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(220, 231, 245, 0.75);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: rgba(220, 231, 245, 0.5);
}

.breadcrumb a {
  display: inline-block;
  padding-block: 0.375rem;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb__sep {
  color: rgba(220, 231, 245, 0.25);
}

.breadcrumb [aria-current="page"] {
  color: rgba(220, 231, 245, 0.8);
}

.page-hero__head {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .page-hero {
    padding-top: 8rem;
  }

  .page-hero__title {
    font-size: 2.25rem;
  }

  .page-hero__lead {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }

  .page-hero__title {
    font-size: 3rem;
  }
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.split--top {
  align-items: start;
}

.split__media {
  position: relative;
  order: 2;
}

.split__body {
  order: 1;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about__btn {
  margin-top: 2.25rem;
}

.placeholder-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 1px dashed var(--navy-200);
  background: repeating-linear-gradient(
    135deg,
    #f4f6f9 0px,
    #f4f6f9 12px,
    #eef2f7 12px,
    #eef2f7 24px
  );
}

.placeholder-media svg {
  width: 2rem;
  height: 2rem;
  color: var(--navy-200);
}

.placeholder-media__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-700);
}

.placeholder-media__hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.placeholder-media--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.placeholder-media--dark svg {
  color: rgba(255, 255, 255, 0.35);
}

.placeholder-media--dark .placeholder-media__label {
  color: rgba(255, 255, 255, 0.7);
}

.placeholder-media--dark .placeholder-media__hint {
  color: rgba(255, 255, 255, 0.4);
}

.media-portrait {
  aspect-ratio: 4 / 3;
}

.media-wide {
  aspect-ratio: 16 / 10;
}

.media-square {
  aspect-ratio: 1;
}

@media (min-width: 640px) {
  .media-portrait {
    aspect-ratio: 4 / 5;
  }

  .media-wide {
    aspect-ratio: 16 / 7;
  }
}

.media-accent {
  display: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background-color: var(--line);
  margin-top: 4rem;
  border: 1px solid var(--line);
}

.stats__item {
  display: flex;
  flex-direction: column-reverse;
  padding: 1.75rem 1.25rem;
  background-color: #fff;
}

.stats__value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stats__label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy-900);
  padding-block: 3.5rem;
}

.stats-band .stats {
  margin-top: 0;
  border: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.stats-band .stats__item {
  background-color: var(--navy-900);
}

.stats-band .stats__value {
  color: #fff;
}

.stats-band .stats__label {
  color: rgba(185, 206, 233, 0.7);
}

@media (min-width: 640px) {
  .stats__item {
    padding: 2rem 1.75rem;
  }

  .stats__value {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .split__media {
    order: 1;
  }

  .split__body {
    order: 2;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .split--reverse .split__body {
    order: 1;
  }

  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 5rem;
  }

  .stats__value {
    font-size: 2.5rem;
  }

  .media-accent {
    display: block;
    position: absolute;
    right: -0.75rem;
    bottom: -0.75rem;
    width: 6rem;
    height: 6rem;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
  }
}

.production__head {
  display: grid;
  gap: 2.5rem;
}

.steps {
  display: grid;
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
}

.steps__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background-color: var(--navy-950);
}

.steps__num {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.steps__num strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
}

.steps__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.steps__title {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #fff;
}

.steps__text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(220, 231, 245, 0.65);
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .production__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    align-items: end;
    gap: 4rem;
  }

  .production__head .btn {
    justify-self: end;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 4rem;
  }

  .steps__item {
    padding: 2rem;
  }
}

.pillars {
  display: grid;
  gap: 1px;
  background-color: var(--line);
  margin-top: 2.5rem;
}

.pillars__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background-color: #fff;
  transition: background-color 0.3s;
}

.pillars__item:hover {
  background-color: var(--mist);
}

.pillars__item svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--navy-600);
}

.pillars__title {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.pillars__text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.certs {
  margin-top: 3.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background-color: var(--mist);
}

.certs__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.certs__title {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.certs__note {
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.certs__list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.certs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px dashed var(--navy-200);
  background-color: #fff;
}

.certs__item strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-700);
}

.certs__item span {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certs__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 3.5rem;
  }

  .pillars__item {
    padding: 2rem;
  }

  .certs {
    margin-top: 4rem;
    padding: 2.5rem;
  }

  .certs__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .certs__title {
    font-size: 1.5rem;
  }
}

.values {
  display: grid;
  gap: 1px;
  background-color: var(--line);
  margin-top: 3rem;
}

.values__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background-color: #fff;
}

.values__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-200);
}

.values__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
}

.values__text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .values {
    margin-top: 4rem;
  }

  .values__item {
    padding: 2.25rem;
  }
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy-900);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(75% 60% at 85% 50%, rgba(27, 74, 138, 0.6), transparent 65%);
}

.cta__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}

.cta__title {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.875rem;
  line-height: 1.14;
  color: #fff;
}

.cta__lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(220, 231, 245, 0.75);
}

.cta__contact {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(220, 231, 245, 0.5);
}

.cta__products {
  display: none;
}

@media (min-width: 640px) {
  .cta__title {
    font-size: 2.25rem;
  }

  .cta__lead {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .cta__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 4rem;
    padding-block: 6rem;
  }

  .cta__title {
    font-size: 2.75rem;
  }

  .cta__products {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }

  .cta__products li {
    position: relative;
    width: 8rem;
    height: 8rem;
    overflow: hidden;
    box-shadow: 0 28px 56px -28px rgba(0, 0, 0, 0.7);
  }

  .cta__products li:nth-child(2) {
    width: 11rem;
    height: 11rem;
  }

  .cta__products img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
  }
}

@media (min-width: 1280px) {
  .cta__products li {
    width: 10rem;
    height: 10rem;
  }

  .cta__products li:nth-child(2) {
    width: 13rem;
    height: 13rem;
  }
}

.product-detail {
  display: grid;
  gap: 3rem;
}

.gallery__main {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.625rem;
}

.gallery__thumb:hover {
  border-color: var(--navy-200);
}

.gallery__thumb[aria-pressed="true"] {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 1px var(--navy-700);
}

.product-detail__title {
  font-size: 1.5rem;
  line-height: 1.3;
}

.product-detail__summary {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.product-detail__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.info-block {
  margin-top: 2.5rem;
}

.info-block__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.info-block__body {
  margin-top: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.5rem;
  background-color: var(--red);
}

.spec-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-list__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.875rem;
  border-top: 1px solid var(--line);
}

.spec-list__row:first-child {
  border-top: 0;
}

.spec-list__row dt {
  font-size: 0.9375rem;
  color: var(--body);
}

.spec-list__row dd {
  text-align: right;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.is-placeholder {
  font-style: italic;
  font-weight: 400;
  color: rgba(107, 118, 136, 0.75);
}

.spec-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  border: 1px solid var(--line);
  background-color: var(--mist);
}

.quote-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background-color: var(--mist);
}

.quote-box p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.quote-box .btn {
  width: 100%;
  margin-top: 1.25rem;
}

.related__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.related__title {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .gallery__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }

  .gallery__main img {
    padding: 3rem;
  }

  .product-detail__title {
    font-size: 1.75rem;
  }

  .quote-box {
    padding: 1.75rem;
  }

  .quote-box .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: start;
  }

  .product-detail__gallery {
    position: sticky;
    top: 7rem;
  }

  .product-detail__title {
    font-size: 2rem;
  }

  .related__title {
    font-size: 1.875rem;
  }
}

.contact-layout {
  display: grid;
  gap: 3rem;
}

.contact__title {
  font-size: 1.5rem;
}

.contact__lead {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form__row {
  display: grid;
  gap: 1.25rem;
}

.field__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.field__req {
  margin-left: 0.25rem;
  color: var(--red);
}

.field__control {
  margin-top: 0.5rem;
}

.field__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field__input::placeholder {
  color: rgba(107, 118, 136, 0.6);
}

.field__input:focus {
  outline: none;
  border-color: var(--navy-600);
}

.field__input[aria-invalid="true"] {
  border-color: var(--red);
}

textarea.field__input {
  resize: vertical;
  min-height: 9rem;
}

select.field__input {
  padding-right: 3rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%230a1a3c' stroke-width='1.6'><path d='m5 8 5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.field__error {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--red);
}

.form__note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted);
}

.form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form__actions .btn {
  width: 100%;
}

.honeypot {
  display: none;
}

.form-status {
  padding: 1rem;
  font-size: 0.9375rem;
  border-left: 2px solid;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  border-color: var(--navy-600);
  background-color: rgba(220, 231, 245, 0.4);
  color: var(--navy-900);
}

.form-status--info {
  border-color: var(--navy-200);
  background-color: var(--mist);
  color: var(--navy-900);
}

.form-status--error {
  border-color: rgba(216, 30, 36, 0.4);
  background-color: rgba(216, 30, 36, 0.05);
  color: var(--red-dark);
}

.form-status__extra {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--body);
}

.info-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  background-color: var(--mist);
}

.info-card__title {
  font-size: 1.25rem;
}

.info-card__list {
  margin-top: 1.5rem;
}

.info-card__row {
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}

.info-card__row:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-card__row dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.info-card__row dd {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink);
}

.info-card__row a:hover {
  color: var(--navy-700);
}

.info-card__pairs {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.info-card__pairs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.info-card__note {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--navy-200);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
}

.map-block {
  margin-top: 1.5rem;
}

.map-block iframe,
.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 1px dashed var(--navy-200);
  background-color: var(--mist);
}

.map-placeholder svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--navy-200);
}

.map-placeholder strong {
  font-size: 0.9375rem;
  color: var(--navy-700);
}

.map-placeholder span {
  max-width: 28rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form__actions .btn {
    width: auto;
    align-self: flex-start;
  }

  .info-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .contact__title {
    font-size: 1.875rem;
  }

  .map-block iframe,
  .map-placeholder {
    aspect-ratio: 21 / 9;
  }
}

.footer {
  background-color: var(--navy-950);
  color: rgba(220, 231, 245, 0.7);
}

.footer__grid {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.footer__brand img {
  height: 3.25rem;
  width: auto;
}

.footer__about {
  margin-top: 1.5rem;
  max-width: 24rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.2s,
    background-color 0.2s,
    color 0.2s;
}

.footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.footer__social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.footer__links a {
  display: inline-block;
  padding-block: 0.5rem;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}

.footer__contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--navy-400);
}

.footer__contact address span {
  display: block;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

.footer__tagline {
  color: var(--navy-400);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
    padding-top: 5rem;
  }

  .footer__brand {
    grid-column: span 4;
    padding-right: 2rem;
  }

  .footer__col--corporate {
    grid-column: span 2;
  }

  .footer__col--products {
    grid-column: span 3;
  }

  .footer__col--contact {
    grid-column: span 3;
  }
}

.error-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy-950);
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.error-page__title {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.875rem;
  line-height: 1.14;
  color: #fff;
}

.error-page__lead {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(220, 231, 245, 0.75);
}

@media (min-width: 640px) {
  .error-page__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding-top: 11rem;
    padding-bottom: 8rem;
  }

  .error-page__title {
    font-size: 2.75rem;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
