@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  color: #1E2A3E;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

@keyframes dotsDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 36px 36px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
nav {
  background: rgba(255, 255, 255, 0.92);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
nav .nav__logo img {
  height: 40px;
}
nav .nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
nav .nav__links a {
  color: #5B6880;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}
nav .nav__links a:hover {
  color: #1E2A3E;
}
nav .nav__cta {
  background: #DA291C !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 201;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1E2A3E;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s, background 0.2s;
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #fff;
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #fff;
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.btn--primary {
  background: #DA291C;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.22);
}

.btn--secondary {
  background: #0F2B5B;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 43, 91, 0.2);
}

.btn--cta {
  background: #fff;
  color: #0F2B5B;
  border: none;
  padding: 16px 44px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, border-color 0.2s;
}
.btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, border-color 0.2s;
}
.btn--outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--sm {
  padding: 9px 18px !important;
  font-size: 12px !important;
}

.hero {
  background: #0A1628;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero__video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/home-hero-poster.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 0.8s ease;
}
.hero__video-poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.88) 35%, rgba(10, 22, 40, 0.55) 65%, rgba(10, 22, 40, 0.25) 100%);
  z-index: 1;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 2;
}
.hero__orb--primary {
  width: 500px;
  height: 500px;
  top: -80px;
  right: 8%;
  background: rgba(15, 43, 91, 0.06);
}
.hero__orb--secondary {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: 10%;
  background: rgba(200, 16, 46, 0.04);
}
.hero__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  animation: dotsDrift 20s linear infinite;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}
.hero__pill .pulse-dot {
  width: 6px;
  height: 6px;
  background: #DA291C;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
  color: #fff;
}
.hero h1 .hero__gradient {
  background: linear-gradient(135deg, #DA291C, #DA291C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(15, 43, 91, 0.08);
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.stats__item {
  padding: 44px 40px;
  border-right: 1px solid rgba(15, 43, 91, 0.08);
  transition: background 0.3s;
}
.stats__item:last-child {
  border-right: none;
}
.stats__item:hover {
  background: rgba(15, 43, 91, 0.06);
}
.stats__number {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.stats__number span {
  color: #0F2B5B;
}
.stats__label {
  font-size: 13px;
  color: #5B6880;
}

.race-banner {
  padding: 0;
  background: #0A1628;
  border-bottom: 3px solid #DA291C;
  overflow: hidden;
}
.race-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
}
.race-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.race-banner__badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #DA291C;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.race-banner__badge span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.race-banner__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.race-banner__series {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -1px;
}

section {
  padding: 100px 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #0F2B5B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #0F2B5B;
  border-radius: 1px;
}
.section-label--red {
  color: #DA291C;
}
.section-label--red::before {
  background: #DA291C;
}
.section-label--white {
  color: rgba(255, 255, 255, 0.4);
}
.section-label--white::before {
  background: rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-body {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.75;
  max-width: 500px;
  font-weight: 400;
}

.text-accent {
  color: #0F2B5B;
}

.spotlight {
  padding: 72px 48px;
  background: #F5F6F9;
}
.spotlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.spotlight__card {
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  background: #FFFFFF;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.spotlight__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.spotlight__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}
.spotlight__card--aero::before {
  background: linear-gradient(90deg, #0F2B5B, #1A3F7A);
}
.spotlight__card--aero .spotlight__icon {
  background: rgba(15, 43, 91, 0.06);
  color: #0F2B5B;
}
.spotlight__card--aero .spotlight__label {
  color: #0F2B5B;
}
.spotlight__card--defense::before {
  background: linear-gradient(90deg, #DA291C, #E63950);
}
.spotlight__card--defense .spotlight__icon {
  background: rgba(200, 16, 46, 0.06);
  color: #DA291C;
}
.spotlight__card--defense .spotlight__label {
  color: #DA291C;
}
.spotlight__card--medical::before {
  background: linear-gradient(90deg, #0E8A6E, #15B892);
}
.spotlight__card--medical .spotlight__icon {
  background: rgba(14, 138, 110, 0.06);
  color: #0E8A6E;
}
.spotlight__card--medical .spotlight__label {
  color: #0E8A6E;
}
.spotlight__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.spotlight__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.spotlight__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.spotlight__description {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
  margin-bottom: 20px;
}
.spotlight__certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.spotlight__certs span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  color: #5B6880;
}

.coatings {
  padding: 72px 48px;
  background: #F5F6F9;
}
.coatings__header {
  margin-bottom: 52px;
}
.coatings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.coatings__card {
  background: #FFFFFF;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}
.coatings__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}
.coatings__card:hover .coatings__image img {
  transform: scale(1.05);
}
.coatings__card:hover::before {
  transform: scaleX(1);
}
.coatings__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #DA291C, #0F2B5B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.coatings__image {
  width: calc(100% + 72px);
  margin: -36px -36px 24px -36px;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.coatings__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.coatings__badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0F2B5B;
  background: rgba(15, 43, 91, 0.06);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
}
.coatings__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  position: relative;
}
.coatings__brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #DA291C;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
}
.coatings__description {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
  position: relative;
}

.advantage {
  padding: 72px 48px;
}
.advantage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.advantage__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.advantage__feature {
  background: #F5F6F9;
  padding: 22px;
  border-radius: 10px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  transition: all 0.3s;
}
.advantage__feature:hover {
  border-color: rgba(15, 43, 91, 0.06);
}
.advantage__feature-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #0F2B5B;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.advantage__feature-text {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.5;
}
.advantage__aside {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.advantage__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.advantage__video {
  background: #F5F6F9;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.advantage__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.62);
  border-radius: 10px;
  transition: background 0.3s;
}
.advantage__video:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-1px);
}
.advantage__video:hover::before {
  background: rgba(10, 22, 40, 0.5);
}
.advantage__video:hover .advantage__play {
  background: #DA291C;
  border-color: #DA291C;
}
.advantage__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.advantage__play svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 3px;
}
.advantage__video-info {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  z-index: 1;
}
.advantage__video-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.advantage__video-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.advantage__download {
  background: #F5F6F9;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  cursor: pointer;
  transition: all 0.3s;
  color: #5B6880;
  text-decoration: none;
}
.advantage__download:hover {
  border-color: rgba(15, 43, 91, 0.06);
}
.advantage__download-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: #0F2B5B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.advantage__download-name {
  font-size: 13px;
  color: #5B6880;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.lightbox__container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
}
.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-family: "DM Sans", sans-serif;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 6px;
  overflow: hidden;
}
.lightbox__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.motorsports {
  background: #0A1628;
  background-image: linear-gradient(to right, rgba(10, 22, 40, 0.92) 40%, rgba(10, 22, 40, 0.6) 70%, rgba(10, 22, 40, 0.35) 100%), url("/assets/aj-foyt-racing.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  color: #fff;
}
.motorsports__bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 380px;
  font-weight: 800;
  color: rgba(200, 16, 46, 0.04);
  line-height: 1;
  pointer-events: none;
}
.motorsports__content {
  position: relative;
  z-index: 2;
}
.motorsports__header {
  margin-bottom: 40px;
}
.motorsports__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 100px;
  padding: 10px 24px;
}
.motorsports__badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #DA291C;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.motorsports__badge span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
}
.motorsports__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.motorsports .section-label {
  color: #DA291C;
}
.motorsports .section-label::before {
  background: #DA291C;
}
.motorsports__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}
.motorsports__description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}
.motorsports__stats {
  display: flex;
  gap: 32px;
}
.motorsports__stat {
  text-align: left;
}
.motorsports__stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.motorsports__stat-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.motorsports__actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
}
.motorsports .btn--primary {
  background: #DA291C;
}
.motorsports .btn--secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}
.motorsports .btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.motorsports__visual {
  text-align: center;
}
.motorsports__car-number {
  font-size: 200px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.2), rgba(200, 16, 46, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.motorsports__driver-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-top: -8px;
  letter-spacing: -0.3px;
}
.motorsports__team {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-top: 6px;
}
.motorsports__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  margin-top: 20px;
}

.innovation {
  padding: 72px 48px;
}
.innovation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
}
.innovation__card {
  background: #F5F6F9;
  padding: 36px;
  min-height: 220px;
  border-bottom: 3px solid transparent;
  transition: border-bottom-color 0.3s, background 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.innovation__card:hover {
  border-bottom-color: #0F2B5B;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.innovation__card:hover .innovation__image img {
  transform: scale(1.05);
}
.innovation__image {
  width: calc(100% + 72px);
  margin: -36px -36px 24px -36px;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.innovation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.innovation__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #0F2B5B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.innovation__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.innovation__description {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
}

.certs {
  background: #F5F6F9;
  padding: 48px;
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15, 43, 91, 0.08);
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.certs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.certs__item:hover {
  opacity: 1;
}
.certs__icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certs__icon span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
}
.certs__name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #5B6880;
  text-transform: uppercase;
}

.cta {
  background: #0F2B5B;
  background-image: linear-gradient(to bottom, rgba(15, 43, 91, 0.82) 0%, rgba(15, 43, 91, 0.75) 100%), url("/assets/tribology-02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.2), transparent 60%);
}
.cta__inner {
  position: relative;
  z-index: 2;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta__phone {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  margin-bottom: 32px;
  color: #fff;
}
.cta__phone a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.bearings-order {
  background: #0A1628;
  padding: 96px 64px;
}
.bearings-order__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.bearings-order .section-label {
  color: #DA291C;
}
.bearings-order .section-label::before {
  background: #DA291C;
}
.bearings-order .section-title {
  color: #fff;
  margin-bottom: 52px;
}
.bearings-order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.bearings-order__card {
  background: #0F2B5B;
  padding: 48px;
}
.bearings-order__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}
.bearings-order__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.bearings-order__card-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}
.bearings-order__card-body a {
  color: #DA291C;
  text-decoration: none;
}
.bearings-order__card-body a:hover {
  text-decoration: underline;
}
.bearings-order__card-body strong {
  color: #fff;
}
.bearings-order__hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #DA291C;
  margin-bottom: 32px;
}
.bearings-order__hours svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.55;
}
.bearings-order__hours-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.bearings-order__hours-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}
.bearings-order__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.bearings-order__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.bearings-order__link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 900px) {
  .bearings-order {
    padding: 64px 32px;
  }
  .bearings-order__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .bearings-order {
    padding: 60px 20px;
  }
}

footer {
  background: #0A1628;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 48px 32px;
}
footer .footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
footer .footer__brand img {
  height: 38px;
  margin-bottom: 16px;
  display: block;
}
footer .footer__brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 12px;
}
footer .footer__address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
footer .footer__address strong {
  color: #fff;
  font-weight: 500;
}
footer .footer__col h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
footer .footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer__col a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}
footer .footer__col a:hover {
  color: #fff;
}
footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .footer__bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
footer .footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
footer .footer__badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  nav {
    padding: 16px 24px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }
  nav .nav__hamburger {
    display: flex;
  }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 88vw;
    background: #0A1628;
    flex-direction: column;
    align-items: stretch;
    padding: 72px 0 48px;
    gap: 0;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: -24px 0 64px rgba(0, 0, 0, 0.3);
  }
  .nav__links.is-open {
    transform: translateX(0);
  }
  .nav__links li {
    display: block !important;
    width: 100%;
  }
  .nav__links > li > a {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 0 !important;
  }
  .nav__links > li > a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }
  .nav__links .nav__cta {
    display: block !important;
    margin: 20px 20px 0 !important;
    padding: 13px 24px !important;
    text-align: center !important;
    border-bottom: none !important;
    border-radius: 4px !important;
  }
  .nav__links .nav__item--has-dropdown::after {
    display: none;
  }
  .nav__links .nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
  }
  .nav__links .nav__item--has-dropdown.is-expanded > a {
    color: #fff !important;
  }
  .nav__links .nav__item--has-dropdown.is-expanded .nav__chevron {
    transform: rotate(180deg) !important;
  }
  .nav__links .nav__item--has-dropdown.is-expanded > .nav__dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: all !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 4px 0 8px !important;
  }
  .nav__links .nav__item--has-dropdown.is-expanded > .nav__dropdown.nav__dropdown--mega {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .nav__links .nav__dropdown a {
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 10px 24px 10px 40px !important;
    font-size: 13px !important;
    border-bottom: none !important;
    background: transparent !important;
  }
  .nav__links .nav__dropdown a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
  }
  .nav__links .nav__dropdown-col {
    padding: 0 !important;
  }
  .nav__links .nav__dropdown-group {
    font-size: 8px !important;
    padding: 10px 40px 6px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
  }
  .hero {
    padding: 120px 32px 80px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item {
    border-right: 1px solid rgba(15, 43, 91, 0.08);
    border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  }
  .stats__item:nth-child(2n) {
    border-right: none;
  }
  .stats__item:nth-child(3), .stats__item:nth-child(4) {
    border-bottom: none;
  }
  .race-banner__inner {
    padding: 24px 32px;
  }
  section {
    padding: 80px 32px;
  }
  .spotlight {
    padding: 80px 32px;
  }
  .motorsports {
    padding: 80px 32px;
  }
  .spotlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight__card:last-child {
    grid-column: span 2;
  }
  .coatings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage__grid {
    gap: 40px;
  }
  .motorsports__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .motorsports__car-number {
    font-size: 140px;
  }
  footer {
    padding: 48px 32px 24px;
  }
  footer .footer__top {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .footer__brand {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero__video-overlay {
    background: rgba(10, 22, 40, 0.72);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item {
    padding: 28px 20px;
    border-right: 1px solid rgba(15, 43, 91, 0.08);
    border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  }
  .stats__item:nth-child(2n) {
    border-right: none;
  }
  .stats__item:nth-child(3), .stats__item:nth-child(4) {
    border-bottom: none;
  }
  .race-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
  .race-banner__series {
    display: none;
  }
  section {
    padding: 60px 20px;
  }
  .spotlight {
    padding: 60px 20px;
  }
  .motorsports {
    padding: 60px 20px;
  }
  .cta {
    padding: 60px 20px;
  }
  .spotlight__grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .spotlight__card:last-child {
    grid-column: span 1;
  }
  .coatings__grid {
    grid-template-columns: 1fr;
  }
  .advantage__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .advantage__features {
    grid-template-columns: 1fr;
  }
  .advantage__videos {
    grid-template-columns: 1fr;
  }
  .motorsports__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .motorsports__bg-text {
    display: none;
  }
  .motorsports__car-number {
    font-size: 100px;
  }
  .motorsports__stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .motorsports__stat {
    flex: 1 1 calc(50% - 8px);
  }
  .innovation__grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .certs {
    padding: 32px 20px;
    gap: 20px;
  }
  footer {
    padding: 40px 20px 24px;
  }
  footer .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer__brand {
    grid-column: span 2;
  }
  footer .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer .footer__badges {
    flex-wrap: wrap;
  }
}
.nav__item--has-dropdown {
  position: relative;
}
.nav__item--has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav__item--has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.nav__item--has-dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.nav__chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav__links .nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  padding: 6px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(15, 43, 91, 0.1), 0 2px 8px rgba(15, 43, 91, 0.05);
  z-index: 200;
}
.nav__links .nav__dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: #1E2A3E;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav__links .nav__dropdown a:hover {
  background: rgba(15, 43, 91, 0.06);
  color: #0F2B5B;
}
.nav__links .nav__dropdown--mega {
  width: 440px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav__dropdown-col {
  padding: 0 4px;
}

.nav__dropdown-group {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5B6880;
  padding: 8px 14px 10px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  margin-bottom: 4px;
}

.page-hero {
  background: #0A1628;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 65vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.92) 35%, rgba(10, 22, 40, 0.55) 65%, rgba(10, 22, 40, 0.25) 100%), linear-gradient(to bottom, rgba(10, 22, 40, 0.5) 0%, transparent 40%, rgba(10, 22, 40, 0.2) 100%);
  z-index: 1;
}
.page-hero__content {
  padding: 148px 64px 72px;
  position: relative;
  z-index: 2;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero__content .section-label {
  color: #DA291C;
}
.page-hero__content .section-label::before {
  background: #DA291C;
}
.page-hero__breadcrumb {
  position: absolute;
  top: 108px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.page-hero__breadcrumb .sep {
  opacity: 0.25;
}
.page-hero__breadcrumb .current {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero h1 {
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  margin-top: 12px;
}
.page-hero__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}
.page-hero__stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
  margin-bottom: 28px;
}
.page-hero__stat {
  flex: 1;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.page-hero__stat:last-child {
  border-right: none;
}
.page-hero__stat-value {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1;
  margin-bottom: 4px;
}
.page-hero__stat-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-hero__actions {
  display: flex;
  gap: 14px;
}
.page-hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #DA291C, #0F2B5B);
  z-index: 10;
}
.page-hero__video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 0.8s ease;
}
.page-hero__video-poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.page-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}

.coating-intro {
  padding: 80px 64px;
  background: #FFFFFF;
}
.coating-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.coating-intro__body p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  margin-bottom: 20px;
}
.coating-intro__body p:last-child {
  margin-bottom: 0;
}
.coating-intro__body strong {
  color: #1E2A3E;
}
.coating-intro__photo {
  background: #F5F6F9;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coating-intro__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.coating-intro__key-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(15, 43, 91, 0.08);
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.coating-intro__key-stat {
  background: #FFFFFF;
  padding: 28px 24px;
}
.coating-intro__key-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #0F2B5B;
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1;
}
.coating-intro__key-stat-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: #5B6880;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.process {
  padding: 80px 64px;
  background: #F5F6F9;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(15, 43, 91, 0.08);
  margin-top: 48px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
}
.process__steps--3col {
  grid-template-columns: repeat(3, 1fr);
}
.process__steps {
  overflow: hidden;
}
.process__step {
  background: #FFFFFF;
  padding: 32px 28px;
  transition: background 0.3s;
}
.process__step:hover {
  background: rgba(15, 43, 91, 0.06);
}
.process__step-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #DA291C;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.process__step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.process__step-desc {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
}

.advantages {
  padding: 80px 64px;
  background: #FFFFFF;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.advantages__card {
  background: #F5F6F9;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.advantages__card:hover {
  border-color: rgba(15, 43, 91, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.advantages__card-icon {
  width: 44px;
  height: 44px;
  background: rgba(15, 43, 91, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #0F2B5B;
}
.advantages__card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.advantages__card-desc {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.65;
}

.specs {
  padding: 80px 64px;
  background: #F5F6F9;
}
.specs__note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #5B6880;
  letter-spacing: 0.5px;
  margin-top: 14px;
  opacity: 0.7;
}
.specs__coating-link {
  color: #0F2B5B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.specs__coating-link:hover {
  color: #DA291C;
}
.specs__mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #5B6880;
}
.specs__empty {
  padding: 40px 24px;
  color: #5B6880;
  font-size: 13px;
}
.specs #coatingsTable {
  margin-top: 48px;
}
.specs__table-wrap {
  margin-top: 0;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.specs table {
  width: 100%;
  border-collapse: collapse;
}
.specs table thead {
  background: #0A1628;
}
.specs table thead th {
  padding: 16px 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.specs table tbody tr {
  border-top: 1px solid rgba(15, 43, 91, 0.08);
  transition: background 0.15s;
}
.specs table tbody tr:hover {
  background: rgba(15, 43, 91, 0.06);
}
.specs table tbody td {
  padding: 15px 24px;
  font-size: 13px;
  color: #1E2A3E;
}
.specs table tbody td:first-child {
  font-weight: 600;
  color: #0F2B5B;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .specs {
    padding: 48px 20px;
  }
  .specs table thead th:not(:first-child),
  .specs table tbody td:not(:first-child) {
    display: none;
  }
  .specs__table-wrap {
    border: none;
    border-radius: 0;
  }
}

.related {
  padding: 80px 64px;
  background: #FFFFFF;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.related__card {
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
  color: #1E2A3E;
}
.related__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(15, 43, 91, 0.25);
}
.related__card:hover .related__card-image img {
  transform: scale(1.05);
}
.related__card-image {
  height: 160px;
  overflow: hidden;
}
.related__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.related__card-body {
  padding: 24px;
}
.related__card-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: #0F2B5B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.related__card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.related__card-desc {
  font-size: 12px;
  color: #5B6880;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .page-hero {
    min-height: auto;
  }
  .page-hero__content {
    padding: 120px 40px 60px;
  }
  .page-hero__breadcrumb {
    left: 40px;
    top: 90px;
  }
  .page-hero__stats {
    max-width: 100%;
  }
  .coating-intro {
    padding: 60px 40px;
  }
  .coating-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coating-intro__key-stats {
    position: static;
  }
  .process {
    padding: 60px 40px;
  }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages {
    padding: 60px 40px;
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs {
    padding: 60px 40px;
  }
  .specs table th,
  .specs table td {
    padding: 12px 16px;
  }
  .related {
    padding: 60px 40px;
  }
  .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-hero__content {
    padding: 96px 20px 48px;
    max-width: 100%;
  }
  .page-hero__breadcrumb {
    left: 20px;
    top: 72px;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .page-hero::before {
    background: rgba(10, 22, 40, 0.82);
  }
  .page-hero__stats {
    flex-direction: column;
  }
  .page-hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .page-hero__stat:last-child {
    border-bottom: none;
  }
  .coating-intro {
    padding: 48px 20px;
  }
  .process {
    padding: 48px 20px;
  }
  .process__steps {
    grid-template-columns: 1fr;
  }
  .advantages {
    padding: 48px 20px;
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs {
    padding: 48px 20px;
  }
  .specs table thead {
    display: none;
  }
  .specs table tr {
    display: block;
    border: 1px solid rgba(15, 43, 91, 0.08);
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .specs table td {
    display: block;
    padding: 8px 16px;
  }
  .specs table td:first-child {
    padding-top: 14px;
  }
  .specs table td:last-child {
    padding-bottom: 14px;
  }
  .related {
    padding: 48px 20px;
  }
  .related__grid {
    grid-template-columns: 1fr;
  }
}
.rd-mission {
  padding: 100px 48px;
  background: #fff;
  text-align: center;
}
.rd-mission__text {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  color: #1E2A3E;
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto 24px;
}
.rd-mission__text em {
  font-style: italic;
  color: #5B6880;
}
.rd-mission__credits {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.rd-mission__credits span {
  color: rgba(30, 42, 62, 0.25);
}

.rd-ireis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #0A1628;
}
.rd-ireis__image {
  position: relative;
  overflow: hidden;
}
.rd-ireis__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rd-ireis__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10, 22, 40, 0.5) 100%);
}
.rd-ireis__body {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rd-ireis__body h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.rd-ireis__body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 20px;
}
.rd-ireis__body p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.rd-ireis__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rd-ireis__label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #DA291C;
}
.rd-ireis__detail {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
}
.rd-ireis__detail h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.rd-ireis__detail p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.rd-tech {
  padding: 100px 48px;
  background: #F5F6F9;
}
.rd-tech__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.rd-tech__header p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  margin-top: 16px;
}
.rd-tech__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(15, 43, 91, 0.08);
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.rd-tech__item {
  background: #fff;
  padding: 36px 28px;
  transition: background 0.3s;
}
.rd-tech__item:hover {
  background: rgba(15, 43, 91, 0.03);
}
.rd-tech__item-icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 43, 91, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F2B5B;
  margin-bottom: 20px;
}
.rd-tech__item-title {
  font-size: 14px;
  font-weight: 700;
  color: #1E2A3E;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.rd-lab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.rd-lab__body {
  padding: 80px 72px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rd-lab__body h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: #1E2A3E;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.rd-lab__body p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  margin-bottom: 16px;
}
.rd-lab__body p:last-child {
  margin-bottom: 0;
}
.rd-lab__image {
  position: relative;
  overflow: hidden;
}
.rd-lab__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-lab__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to left, transparent 60%, rgba(255, 255, 255, 0.1) 100%);
}

@media (max-width: 1024px) {
  .rd-ireis,
  .rd-lab {
    grid-template-columns: 1fr;
  }
  .rd-ireis__image,
  .rd-lab__image {
    height: 320px;
  }
  .rd-ireis__image::after {
    background: none;
  }
  .rd-ireis__body,
  .rd-lab__body {
    padding: 60px 40px;
  }
  .rd-tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rd-tech__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rd-mission {
    padding: 80px 40px;
  }
}
@media (max-width: 768px) {
  .rd-ireis__body,
  .rd-lab__body {
    padding: 48px 20px;
  }
  .rd-tech {
    padding: 60px 20px;
  }
  .rd-tech__grid {
    grid-template-columns: 1fr 1fr;
  }
  .rd-mission {
    padding: 60px 20px;
  }
}
.trib-intro {
  padding: 100px 48px;
  background: #fff;
}
.trib-intro__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.trib-intro__eyebrow {
  position: sticky;
  top: 120px;
}
.trib-intro__quote-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  color: rgba(15, 43, 91, 0.06);
  letter-spacing: -4px;
  margin-bottom: 20px;
}
.trib-intro__body p {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  color: #1E2A3E;
  line-height: 1.7;
}

.trib-platforms {
  background: #0A1628;
  padding: 100px 48px;
}
.trib-platforms .section-label {
  color: #DA291C;
}
.trib-platforms .section-label::before {
  background: #DA291C;
}
.trib-platforms .section-title {
  color: #fff;
}
.trib-platforms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  border-radius: 12px;
  overflow: hidden;
}
.trib-platforms__card {
  background: rgba(255, 255, 255, 0.03);
  padding: 52px 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.trib-platforms__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #DA291C, #0F2B5B);
}
.trib-platforms__card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.trib-platforms__card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.trib-platforms__card-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 20px;
}
.trib-platforms__card-bg {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.trib-conditions {
  padding: 100px 48px;
  background: #F5F6F9;
}
.trib-conditions__intro {
  max-width: 640px;
  margin-bottom: 72px;
}
.trib-conditions__intro p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  margin-top: 16px;
}

.trib-condition {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid rgba(15, 43, 91, 0.08);
}
.trib-condition:last-child {
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.trib-condition__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: rgba(15, 43, 91, 0.08);
  letter-spacing: -4px;
}
.trib-condition__body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1E2A3E;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.trib-condition__body p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  max-width: 600px;
}

.trib-download {
  background: #DA291C;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.trib-download__left h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.trib-download__left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.trib-download__btn {
  background: #fff;
  color: #DA291C;
  border: none;
  padding: 16px 40px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.trib-download__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.trib-capabilities {
  padding: 100px 48px;
  background: #fff;
}
.trib-capabilities__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.trib-capabilities__intro p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  margin-top: 16px;
}
.trib-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(15, 43, 91, 0.08);
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.trib-capability {
  background: #fff;
  padding: 40px 32px;
  transition: background 0.3s;
}
.trib-capability:hover {
  background: rgba(15, 43, 91, 0.03);
}
.trib-capability__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 20px;
}
.trib-capability h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E2A3E;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.trib-capability p {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
}

.trib-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 320px;
}
.trib-images__item {
  overflow: hidden;
  position: relative;
}
.trib-images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.trib-images__item:hover img {
  transform: scale(1.05);
}
.trib-images__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.25);
  transition: background 0.3s;
}
.trib-images__item:hover::after {
  background: rgba(10, 22, 40, 0.1);
}

@media (max-width: 1024px) {
  .trib-intro {
    padding: 80px 40px;
  }
  .trib-intro__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trib-intro__eyebrow {
    position: static;
  }
  .trib-intro__quote-num {
    font-size: 64px;
  }
  .trib-platforms {
    padding: 80px 40px;
  }
  .trib-platforms__grid {
    grid-template-columns: 1fr;
  }
  .trib-conditions {
    padding: 80px 40px;
  }
  .trib-condition {
    grid-template-columns: 100px 1fr;
    gap: 40px;
  }
  .trib-condition__num {
    font-size: 56px;
  }
  .trib-capabilities {
    padding: 80px 40px;
  }
  .trib-capabilities__intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trib-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trib-images {
    grid-template-columns: repeat(2, 1fr);
    height: 480px;
  }
  .trib-download {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 40px;
  }
}
@media (max-width: 768px) {
  .trib-intro {
    padding: 60px 20px;
  }
  .trib-platforms {
    padding: 60px 20px;
  }
  .trib-platforms__card {
    padding: 36px 24px;
  }
  .trib-conditions {
    padding: 60px 20px;
  }
  .trib-condition {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
  }
  .trib-condition__num {
    font-size: 40px;
  }
  .trib-capabilities {
    padding: 60px 20px;
  }
  .trib-capabilities__grid {
    grid-template-columns: 1fr;
  }
  .trib-images {
    grid-template-columns: 1fr 1fr;
    height: 360px;
  }
  .trib-download {
    padding: 40px 20px;
  }
}
.coating-mega {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.coating-mega.is-open {
  pointer-events: auto;
  opacity: 1;
}
.coating-mega__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
}
.coating-mega__panel {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 3px solid #DA291C;
  box-shadow: 0 24px 80px rgba(10, 22, 40, 0.35);
  transform: translateY(-12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.coating-mega.is-open .coating-mega__panel {
  transform: translateY(0);
}
.coating-mega__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 340px;
}
.coating-mega__name-col {
  background: #0F2B5B;
  padding: 48px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}
.coating-mega__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.coating-mega__eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
}
.coating-mega__name-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.coating-mega__name-select:focus {
  outline: 2px solid #DA291C;
  outline-offset: 2px;
}
.coating-mega__name-select option {
  background: #0A1628;
  color: #fff;
}
.coating-mega__name-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-top: 16px;
  padding-bottom: 16px;
}
.coating-mega__count {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.coating-mega__filter-col {
  padding: 48px 48px 36px;
  background: #F5F6F9;
  display: flex;
  flex-direction: column;
}
.coating-mega__filter-col .coating-mega__eyebrow {
  color: #DA291C;
  margin-bottom: 14px;
}
.coating-mega__filter-col .coating-mega__eyebrow::before {
  background: #DA291C;
}
.coating-mega__filter-intro {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}
.coating-mega__filter-intro a {
  color: #DA291C;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.coating-mega__filter-intro a:hover {
  text-decoration: underline;
}
.coating-mega__filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 32px;
}
.coating-mega__filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coating-mega__filter-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1E2A3E;
  font-weight: 500;
}
.coating-mega__select-wrap {
  position: relative;
}
.coating-mega__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235B6880' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  pointer-events: none;
}
.coating-mega__select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 6px;
  color: #1E2A3E;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s;
}
.coating-mega__select:focus {
  outline: none;
  border-color: #DA291C;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}
.coating-mega__select:hover {
  border-color: rgba(15, 43, 91, 0.25);
}
.coating-mega__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 43, 91, 0.08);
  margin-top: auto;
}
.coating-mega__reset {
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5B6880;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}
.coating-mega__reset:hover {
  color: #DA291C;
}
.coating-mega__search-btn {
  padding: 12px 28px;
}
.coating-mega__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #5B6880;
  transition: background 0.2s, color 0.2s;
}
.coating-mega__close:hover {
  background: #DA291C;
  color: #fff;
}
@media (max-width: 768px) {
  .coating-mega__panel {
    top: 60px;
  }
  .coating-mega__inner {
    grid-template-columns: 1fr;
  }
  .coating-mega__name-col {
    padding: 32px 20px;
  }
  .coating-mega__filter-col {
    padding: 32px 20px 24px;
  }
  .coating-mega__filter-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.nav__cta.is-active {
  background: #DA291C;
  color: #fff;
}

.results-hero {
  background: #0A1628;
  padding: 120px 48px 72px;
  position: relative;
  overflow: hidden;
}
.results-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.results-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.results-hero .section-label {
  color: #DA291C;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.results-hero h1 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.results-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .results-hero {
    padding: 100px 20px 56px;
  }
}

.results-filters {
  background: #F5F6F9;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.results-filters__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.results-filters__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5B6880;
}
.results-filters__clear {
  font-size: 12px;
  color: #DA291C;
  text-decoration: none;
  margin-left: auto;
  font-weight: 600;
}
.results-filters__clear:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .results-filters__inner {
    padding: 16px 20px;
  }
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 12px;
}
.filter-chip__key {
  color: #5B6880;
  font-weight: 500;
}
.filter-chip__val {
  color: #1E2A3E;
  font-weight: 600;
}
.filter-chip__remove {
  color: #5B6880;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  margin-left: 2px;
  transition: color 0.2s;
}
.filter-chip__remove:hover {
  color: #DA291C;
}

.results-grid-section {
  padding: 64px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .results-grid-section {
    padding: 48px 20px;
  }
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(15, 43, 91, 0.08);
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.2s;
}
.result-card:hover {
  background: rgba(15, 43, 91, 0.02);
}
.result-card:hover .result-card__link {
  color: #DA291C;
}
.result-card:hover .result-card__thumb img {
  transform: scale(1.04);
}
.result-card__thumb {
  position: relative;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0A1628;
}
.result-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.result-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #0A1628 0%, #0F2B5B 100%);
  position: relative;
  overflow: hidden;
}
.result-card__thumb-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 18px 18px;
}
.result-card__thumb-placeholder::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #DA291C;
}
.result-card__thumb-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.result-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.result-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.result-card__cat {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
}
.result-card__temp {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5B6880;
}
.result-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.2px;
  line-height: 1.2;
}
.result-card__name small {
  font-size: 12px;
  font-weight: 400;
  color: #5B6880;
}
.result-card__desc {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
  flex: 1;
}
.result-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 43, 91, 0.08);
  margin-top: auto;
}
.result-card__link {
  font-size: 12px;
  font-weight: 600;
  color: #5B6880;
  transition: color 0.2s;
}
.result-card__color {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(15, 43, 91, 0.3);
}

.results-loading {
  grid-column: 1/-1;
  padding: 80px;
  text-align: center;
  color: #5B6880;
}
.results-loading__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(15, 43, 91, 0.08);
  border-top-color: #DA291C;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 16px;
}

.results-empty {
  grid-column: 1/-1;
  padding: 80px;
  text-align: center;
  color: #5B6880;
}
.results-empty p {
  margin-bottom: 24px;
  font-size: 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.sheet-header {
  background: #0A1628;
  padding: 96px 48px 28px;
  position: relative;
  overflow: hidden;
}
.sheet-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sheet-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sheet-header__breadcrumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sheet-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.sheet-header__breadcrumb a:hover {
  color: #fff;
}
.sheet-header__breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}
.sheet-header__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .sheet-header__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.sheet-header__identity {
  flex: 1;
  min-width: 0;
}
.sheet-header__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.sheet-header__name {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin-bottom: 6px;
}
.sheet-header__shortname {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.sheet-header__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .sheet-header__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .sheet-header {
    padding: 88px 20px 28px;
  }
}
@media print {
  .sheet-header {
    padding: 0 0 16px;
  }
}

.sheet-cat-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 2px;
}

.sheet-body {
  display: grid;
  grid-template-columns: 272px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  min-height: 0;
}
@media (max-width: 900px) {
  .sheet-body {
    grid-template-columns: 1fr;
  }
}

.sheet-sidebar {
  background: #F5F6F9;
  border-left: 1px solid rgba(15, 43, 91, 0.08);
  border-right: 1px solid rgba(15, 43, 91, 0.08);
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sheet-sidebar__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  flex-shrink: 0;
}
.sheet-sidebar__content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sheet-sidebar__heading {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.sheet-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sheet-sidebar__list li {
  font-size: 12px;
  color: #5B6880;
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}
.sheet-sidebar__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(218, 41, 28, 0.4);
  font-size: 10px;
  top: 1px;
}
@media (max-width: 900px) {
  .sheet-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(15, 43, 91, 0.08);
    padding: 0 0 24px;
  }
  .sheet-sidebar__photo {
    aspect-ratio: 16/9;
  }
  .sheet-sidebar__content {
    padding: 20px 20px;
    gap: 20px;
  }
}

.sheet-spec-table {
  width: 100%;
  border-collapse: collapse;
}
.sheet-spec-table tr {
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.sheet-spec-table tr:last-child {
  border-bottom: none;
}
.sheet-spec-table th {
  text-align: left;
  font-weight: 600;
  color: #1E2A3E;
  padding: 8px 10px 8px 0;
  width: 48%;
  vertical-align: top;
  font-size: 11px;
  line-height: 1.4;
}
.sheet-spec-table td {
  color: #5B6880;
  padding: 8px 0;
  line-height: 1.4;
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
}

.sheet-main {
  background: #fff;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
}
.sheet-main__block {
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.sheet-main__block:last-child {
  margin-bottom: 0;
}
.sheet-main__heading {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  display: block;
}
@media (max-width: 768px) {
  .sheet-main {
    padding: 24px 20px;
  }
}

.sheet-prose {
  font-size: 14px;
  color: #5B6880;
  line-height: 1.8;
}
.sheet-prose p {
  margin-bottom: 12px;
}
.sheet-prose p:last-child {
  margin-bottom: 0;
}
.sheet-prose strong {
  color: #1E2A3E;
  font-weight: 600;
}
.sheet-prose sup {
  font-size: 9px;
}

.sheet-app-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
.sheet-app-list li {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.sheet-app-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #DA291C;
  font-size: 11px;
  top: 1px;
}
@media (max-width: 600px) {
  .sheet-app-list {
    grid-template-columns: 1fr;
  }
}

.sheet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sheet-list li {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.sheet-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #DA291C;
  font-size: 11px;
}
.sheet-list--check li::before {
  content: "✓";
  color: #DA291C;
}

.sheet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sheet-tag {
  font-size: 10px;
  font-weight: 500;
  color: #0F2B5B;
  background: rgba(15, 43, 91, 0.05);
  border: 1px solid rgba(15, 43, 91, 0.1);
  padding: 3px 9px;
  border-radius: 3px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.3px;
}

.sheet-cta-bar {
  background: #0A1628;
  padding: 20px 48px;
}
.sheet-cta-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 640px) {
  .sheet-cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sheet-cta-bar__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.sheet-cta-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sheet-cta-bar {
    padding: 20px;
  }
}

@media print {
  nav,
  .coating-mega,
  .sheet-header__actions,
  .sheet-cta-bar {
    display: none !important;
  }
  body {
    font-size: 11px;
  }
  .sheet-header {
    background: #fff !important;
    padding: 0 0 16px;
    border-bottom: 2px solid #000;
  }
  .sheet-header::before {
    display: none;
  }
  .sheet-header__breadcrumb {
    color: #999 !important;
  }
  .sheet-header__breadcrumb a {
    color: #666 !important;
  }
  .sheet-header__name {
    color: #000 !important;
    font-size: 22px;
  }
  .sheet-header__shortname {
    color: #666 !important;
  }
  .sheet-cat-tag {
    color: #333 !important;
    border-color: #aaa !important;
  }
  .sheet-body {
    grid-template-columns: 200px 1fr;
    max-width: 100%;
  }
  .sheet-sidebar {
    background: #f4f4f4 !important;
    padding: 0 0 16px;
    border-left: 1px solid #ccc !important;
    border-right: 1px solid #ccc !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .sheet-sidebar__photo {
    max-height: 180px;
    aspect-ratio: auto;
  }
  .sheet-sidebar__content {
    padding: 14px 14px;
    gap: 20px;
  }
  .sheet-sidebar__heading {
    color: #C8102E !important;
    border-color: #ddd !important;
  }
  .sheet-sidebar__list li {
    color: #333 !important;
    font-size: 11px;
  }
  .sheet-spec-table th {
    color: #000 !important;
    font-size: 10px;
  }
  .sheet-spec-table td {
    color: #333 !important;
    font-size: 11px;
  }
  .sheet-spec-table tr {
    border-color: #ddd !important;
  }
  .sheet-main {
    padding: 16px 24px;
  }
  .sheet-main__heading {
    color: #C8102E !important;
    border-color: #ddd !important;
  }
  .sheet-prose {
    color: #333 !important;
    font-size: 12px;
  }
  .sheet-app-list li {
    color: #333 !important;
    font-size: 11px;
  }
  .sheet-list li {
    color: #333 !important;
    font-size: 11px;
  }
  .sheet-tag {
    background: #eee !important;
    color: #333 !important;
    border-color: #ccc !important;
  }
  .sheet-main__block {
    page-break-inside: avoid;
  }
}
.about-hero {
  background: #0A1628;
  background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.78) 55%, rgba(10, 22, 40, 0.6) 100%), url("/assets/news/calico-headquarters-01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  padding: 160px 64px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-hero__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.about-hero__overline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-hero__overline::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DA291C;
}
.about-hero h1 {
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.about-hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.about-hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #DA291C, #0F2B5B);
  z-index: 10;
}

.about-mission {
  background: #fff;
  padding: 120px 64px;
  text-align: center;
}
.about-mission__quote {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  color: #1E2A3E;
  line-height: 1.65;
  max-width: 900px;
  margin: 0 auto;
}
.about-mission__quote em {
  font-style: italic;
  color: #5B6880;
}
.about-mission__quote strong {
  font-weight: 700;
  color: #0F2B5B;
}
.about-mission__attr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5B6880;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-mission__attr::before, .about-mission__attr::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(15, 43, 91, 0.08);
}

.about-story {
  background: #0A1628;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 560px;
}
.about-story__body {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-story__body h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.about-story__body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-story__body p:last-child {
  margin-bottom: 0;
}
.about-story__body p strong {
  color: rgba(255, 255, 255, 0.85);
}
.about-story__metrics {
  padding: 80px 56px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.about-story__metric {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-story__metric:last-child {
  border-bottom: none;
}
.about-story__metric-value {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.about-story__metric-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.about-hef {
  background: #F5F6F9;
  padding: 100px 64px;
}
.about-hef__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hef h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #1E2A3E;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.about-hef p {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-hef__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(15, 43, 91, 0.08);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 43, 91, 0.08);
}
.about-hef__card {
  background: #fff;
  padding: 32px 28px;
  transition: background 0.3s;
}
.about-hef__card:hover {
  background: rgba(15, 43, 91, 0.06);
}
.about-hef__card-value {
  font-size: 32px;
  font-weight: 800;
  color: #0F2B5B;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.about-hef__card-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5B6880;
  line-height: 1.5;
}
.about-hef__visual {
  border-radius: 12px;
  overflow: hidden;
}
.about-hef__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.about-hef--dark {
  background: #0A1628;
}
.about-hef--dark h2 {
  color: #fff;
}
.about-hef--dark p {
  color: rgba(255, 255, 255, 0.6);
}
.about-hef--dark .about-hef__card-grid {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}
.about-hef--dark .about-hef__card {
  background: #0A1628;
}
.about-hef--dark .about-hef__card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.about-hef--dark .about-hef__card-value {
  color: #fff;
}
.about-hef--dark .about-hef__card-label {
  color: rgba(255, 255, 255, 0.4);
}

.about-industries {
  background: #0A1628;
  padding: 80px 64px;
}
.about-industries .section-label {
  color: #DA291C;
}
.about-industries .section-label::before {
  background: #DA291C;
}
.about-industries .section-title {
  color: #fff;
  margin-bottom: 40px;
}
.about-industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-industries__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.3s;
}
.about-industries__tag:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cert-hero {
  background: #0F2B5B;
  padding: 160px 64px 100px;
  position: relative;
  overflow: hidden;
}
.cert-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cert-hero__bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -8px;
}
.cert-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cert-hero .section-label {
  margin-bottom: 20px;
}
.cert-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.cert-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.cert-grid {
  padding: 100px 64px;
  background: #FFFFFF;
}
.cert-grid__list {
  margin-top: 60px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.cert-card {
  background: #fff;
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 36px 48px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  transition: background 0.3s;
}
.cert-card:last-child {
  border-bottom: none;
}
.cert-card:hover {
  background: #F5F6F9;
}
.cert-card__badge {
  width: 128px;
  height: 76px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}
.cert-card__badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cert-card__badge span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0F2B5B;
  text-align: center;
  line-height: 1.4;
}
.cert-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.cert-card__desc {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.6;
  margin-bottom: 4px;
}
.cert-card__issuer {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #DA291C;
}
.cert-card__download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A1628;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
  flex-shrink: 0;
}
.cert-card__download:hover {
  background: #DA291C;
  transform: translateY(-2px);
}

.cert-cta {
  background: #0A1628;
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cert-cta__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.cert-cta__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.cert-cta__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 500px;
}
.cert-cta__body a {
  color: #DA291C;
  text-decoration: none;
}
.cert-cta__body a:hover {
  text-decoration: underline;
}
.cert-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.career-hero {
  background: #0A1628;
  min-height: 80vh;
  padding: 160px 64px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.career-hero__pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(218, 41, 28, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(15, 43, 91, 0.2) 0%, transparent 60%), radial-gradient(circle at 20% 20%, rgba(218, 41, 28, 0.04) 0%, transparent 40%);
}
.career-hero__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.career-hero__content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}
.career-hero__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.career-hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DA291C;
}
.career-hero__quote {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.career-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.career-hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #DA291C, #0F2B5B);
}

.career-benefits {
  background: #F5F6F9;
  padding: 100px 64px;
}
.career-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(15, 43, 91, 0.08);
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}
.career-benefits__item {
  background: #fff;
  padding: 36px 24px;
  transition: background 0.3s;
}
.career-benefits__item:hover {
  background: rgba(15, 43, 91, 0.06);
}
.career-benefits__item-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(15, 43, 91, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F2B5B;
  margin-bottom: 20px;
}
.career-benefits__item-title {
  font-size: 14px;
  font-weight: 700;
  color: #1E2A3E;
  margin-bottom: 6px;
}
.career-benefits__item-desc {
  font-size: 12px;
  color: #5B6880;
  line-height: 1.6;
}

.career-who {
  background: #fff;
  padding: 100px 64px;
}
.career-who__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.career-who h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
}
.career-who__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.career-who__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #5B6880;
  line-height: 1.6;
}
.career-who__list-item::before {
  content: "→";
  color: #DA291C;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.career-apply {
  background: #DA291C;
  padding: 80px 64px;
}
.career-apply__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.career-apply h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.career-apply p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.career-apply__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.career-apply__method {
  display: flex;
  align-items: center;
  gap: 16px;
}
.career-apply__method-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.career-apply__method-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.career-apply__method-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.career-apply__method-value a {
  color: #fff;
  text-decoration: none;
}
.career-apply__method-value a:hover {
  text-decoration: underline;
}

.news-hero {
  background: #0A1628;
  padding: 160px 64px 80px;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.news-hero__inner {
  position: relative;
  z-index: 2;
}
.news-hero h1 {
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: -20px;
  pointer-events: none;
}
.news-hero h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.2px;
  position: relative;
  z-index: 3;
  margin-bottom: 12px;
}
.news-hero p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 1px;
}

.news-featured {
  padding: 0 64px 80px;
  background: #FFFFFF;
}
.news-featured__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5B6880;
  padding: 48px 0 28px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  margin-bottom: 32px;
}
.news-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nf-card {
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #1E2A3E;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.nf-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.nf-card:hover .nf-card__title {
  color: #0F2B5B;
}
.nf-card__band {
  height: 6px;
  flex-shrink: 0;
}
.nf-card__band--red {
  background: #C8102E;
}
.nf-card__band--navy {
  background: #0F2B5B;
}
.nf-card__band--navy-mid {
  background: #1a3a5c;
}
.nf-card__band--slate {
  background: #374151;
}
.nf-card__band--green {
  background: #166534;
}
.nf-card__body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nf-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.nf-card__category {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
}
.nf-card__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #5B6880;
}
.nf-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.25s;
}
.nf-card__excerpt {
  font-size: 13px;
  color: #5B6880;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nf-card__cta {
  font-size: 12px;
  font-weight: 600;
  color: #0F2B5B;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-archive {
  padding: 0 64px 100px;
  background: #F5F6F9;
}
.news-archive__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5B6880;
  padding: 48px 0 28px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  margin-bottom: 32px;
}
.news-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.na-card {
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #1E2A3E;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.na-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.na-card:hover .na-card__title {
  color: #0F2B5B;
}
.na-card__band {
  height: 4px;
  flex-shrink: 0;
}
.na-card__body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.na-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.na-card__category {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #DA291C;
}
.na-card__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: #5B6880;
}
.na-card__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.35;
  flex: 1;
  margin-bottom: 14px;
  transition: color 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.na-card__cta {
  font-size: 10px;
  font-weight: 600;
  color: #0F2B5B;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .news-featured {
    padding: 0 40px 60px;
  }
  .news-featured__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .news-archive {
    padding: 0 40px 60px;
  }
  .news-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .news-featured {
    padding: 0 20px 48px;
  }
  .news-featured__grid {
    grid-template-columns: 1fr;
  }
  .news-archive {
    padding: 0 20px 48px;
  }
  .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .news-archive__grid {
    grid-template-columns: 1fr;
  }
}
.article-header {
  background: #0A1628;
  padding: 160px 64px 80px;
  position: relative;
  overflow: hidden;
  /*
  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
  }
    */
}
.article-header__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.article-header__back a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.article-header__back a:hover {
  color: #fff;
}
.article-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.article-header__category {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DA291C;
  background: rgba(218, 41, 28, 0.1);
  border: 1px solid rgba(218, 41, 28, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}
.article-header__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
}
.article-header h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.article-header__deck {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-weight: 400;
  max-width: 640px;
}

.article-body {
  background: #fff;
  padding: 80px 64px;
}
.article-body__prose p {
  font-size: 16px;
  color: #5B6880;
  line-height: 1.85;
  margin-bottom: 24px;
}
.article-body__prose p:last-child {
  margin-bottom: 0;
}
.article-body__prose p a {
  color: #DA291C;
  text-decoration: none;
}
.article-body__prose p a:hover {
  text-decoration: underline;
}
.article-body__prose h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.3px;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 43, 91, 0.08);
}
.article-body__prose h2:first-of-type {
  margin-top: 0;
  border-top: none;
}
.article-body__prose h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.2px;
  margin: 36px 0 16px;
}
.article-body__prose strong {
  color: #1E2A3E;
  font-weight: 600;
}
.article-body__prose em {
  font-style: italic;
}
.article-body__prose ol,
.article-body__prose ul {
  margin: 0 0 24px 24px;
}
.article-body__prose ol li,
.article-body__prose ul li {
  font-size: 15px;
  color: #5B6880;
  line-height: 1.75;
  margin-bottom: 10px;
}
.article-body__prose ol li strong,
.article-body__prose ul li strong {
  color: #1E2A3E;
  font-weight: 600;
}
.article-body__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
  margin: 0 auto;
}
.article-body__media {
  position: sticky;
  top: 100px;
}
.article-body__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.article-body__media img + img {
  margin-top: 20px;
}
.article-body__media-figure {
  margin: 0;
}
.article-body__media-figure + .article-body__media-figure {
  margin-top: 20px;
}
.article-body__media-caption {
  font-size: 12px;
  color: #5B6880;
  line-height: 1.5;
  margin-top: 8px;
}
.article-body__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.article-body__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-body__table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 8px;
  border: 1px solid rgba(15, 43, 91, 0.08);
}
.article-body__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.article-body__table th {
  background: #0A1628;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.article-body__table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
  color: #5B6880;
  vertical-align: top;
}
.article-body__table td.pass {
  color: #16a34a;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}
.article-body__table td.fail {
  color: #DA291C;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}
.article-body__table tr:last-child td {
  border-bottom: none;
}
.article-body__table tr:hover td {
  background: #F5F6F9;
}

.article-pullquote {
  border-left: 4px solid #DA291C;
  padding: 22px 28px;
  background: rgba(15, 43, 91, 0.06);
  margin: 32px 0;
  border-radius: 0 6px 6px 0;
}
.article-pullquote p {
  font-size: 17px !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: #0F2B5B !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.resources-hero {
  background: #0A1628;
  padding: 160px 64px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #DA291C;
}
.resources-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.resources-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.resources-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.resources-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.resources-section {
  padding: 80px 64px;
}
.resources-section--alt {
  background: #F5F6F9;
}

.resources-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.resources-video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #0A1628;
  height: 220px;
  display: flex;
  align-items: flex-end;
}
.resources-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.15), rgba(10, 22, 40, 0.78));
  z-index: 1;
  transition: background 0.3s;
}
.resources-video-card:hover::before {
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.05), rgba(10, 22, 40, 0.65));
}
.resources-video-card:hover .resources-video-card__play {
  background: #DA291C;
  border-color: #DA291C;
}
.resources-video-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.resources-video-card__bg--hef {
  background-image: url("/assets/research-development-02.jpg");
}
.resources-video-card__bg--phosphate {
  background-image: url("/assets/fixture-03.jpg");
}
.resources-video-card:hover .resources-video-card__bg {
  transform: scale(1.04);
}
.resources-video-card__content {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.resources-video-card__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.resources-video-card__play svg {
  fill: #fff;
  width: 14px;
  height: 14px;
  margin-left: 2px;
}
.resources-video-card__info h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.resources-video-card__info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.resources-brochures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.resources-brochure-card {
  background: #fff;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.resources-brochure-card:hover {
  border-color: rgba(15, 43, 91, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.resources-brochure-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.resources-brochure-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(218, 41, 28, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DA291C;
}
.resources-brochure-card__icon svg {
  width: 20px;
  height: 20px;
}
.resources-brochure-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.2px;
}
.resources-brochure-card__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #0A1628;
  border-radius: 6px;
  padding: 12px 16px;
  transition: background 0.3s, transform 0.2s;
}
.resources-brochure-card__download svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.resources-brochure-card__download:hover {
  background: #DA291C;
  transform: translateY(-2px);
}

.faq-sections {
  padding: 80px 64px;
  background: #fff;
}

.faq-group {
  margin-bottom: 64px;
}
.faq-group:last-child {
  margin-bottom: 0;
}
.faq-group__header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #0A1628;
}
.faq-group__title {
  font-size: 22px;
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.3px;
}
.faq-group__sub {
  font-size: 13px;
  color: #5B6880;
  margin-top: 6px;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
}
.faq-item__question h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1E2A3E;
  line-height: 1.4;
  flex: 1;
}
.faq-item__question:hover h4 {
  color: #0F2B5B;
}
.faq-item__question-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5B6880;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item__question-icon svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.faq-item__answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.2s;
}
.faq-item__answer__inner {
  padding-bottom: 24px;
}
.faq-item__answer__inner p {
  font-size: 14px;
  color: #5B6880;
  line-height: 1.8;
  margin-bottom: 14px;
}
.faq-item__answer__inner p:last-child {
  margin-bottom: 0;
}
.faq-item__answer__inner ol,
.faq-item__answer__inner ul {
  margin: 0 0 14px 20px;
}
.faq-item__answer__inner ol li,
.faq-item__answer__inner ul li {
  font-size: 14px;
  color: #5B6880;
  line-height: 1.7;
  margin-bottom: 5px;
}
.faq-item__answer__inner strong {
  color: #1E2A3E;
  font-weight: 600;
}
.faq-item.is-open .faq-item__question-icon {
  background: #0F2B5B;
  border-color: #0F2B5B;
  color: #fff;
}
.faq-item.is-open .faq-item__question-icon svg {
  transform: rotate(45deg);
}
.faq-item.is-open .faq-item__answer {
  max-height: 2000px;
}

.contact-hero {
  background: #0A1628;
  padding: 160px 64px 80px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.contact-hero__inner {
  position: relative;
  z-index: 2;
}
.contact-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.contact-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.contact-split {
  display: grid;
  grid-template-columns: 380px 1fr;
}

.contact-info {
  background: #0F2B5B;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.contact-info__inner {
  position: relative;
  z-index: 2;
}
.contact-info__heading {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info__heading::before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}
.contact-info__item-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
}
.contact-info__item-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
.contact-info__item-value a {
  color: #fff;
  text-decoration: none;
}
.contact-info__item-value a:hover {
  text-decoration: underline;
}
.contact-info__hours {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info__hours-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.contact-info__hours p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
.contact-info__disclaimer {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(200, 16, 46, 0.1);
  border-left: 3px solid #DA291C;
  border-radius: 0 4px 4px 0;
}
.contact-info__disclaimer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.contact-form-panel {
  background: #FFFFFF;
  padding: 64px 56px;
}
.contact-form-panel__title {
  font-size: 22px;
  font-weight: 700;
  color: #1E2A3E;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.contact-form-panel__sub {
  font-size: 14px;
  color: #5B6880;
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__group--full {
  grid-column: span 2;
}
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form label {
  font-size: 12px;
  font-weight: 600;
  color: #1E2A3E;
  letter-spacing: 0.2px;
}
.contact-form label .required {
  color: #DA291C;
  margin-left: 2px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 11px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 43, 91, 0.08);
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #1E2A3E;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #DA291C;
  box-shadow: 0 0 0 3px rgba(218, 41, 28, 0.08);
}
.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #5B6880;
  opacity: 0.6;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235B6880' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form__checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
}
.contact-form__checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}
.contact-form__checkboxes label input[type=checkbox] {
  width: 15px;
  height: 15px;
  padding: 0;
  flex-shrink: 0;
  accent-color: #DA291C;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-form__consent input[type=checkbox] {
  width: 15px;
  height: 15px;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #DA291C;
}
.contact-form__consent label {
  font-size: 12px;
  font-weight: 400;
  color: #5B6880;
  line-height: 1.6;
  cursor: pointer;
}
.contact-form__status {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.contact-form__status--success {
  background: rgba(14, 138, 110, 0.08);
  border: 1px solid rgba(14, 138, 110, 0.2);
  color: #0E8A6E;
}
.contact-form__status--error {
  background: rgba(218, 41, 28, 0.06);
  border: 1px solid rgba(218, 41, 28, 0.2);
  color: #DA291C;
}
.contact-form__status.is-visible {
  display: block;
}

.contact-map {
  height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 120px 40px 80px;
  }
  .about-mission {
    padding: 80px 40px;
  }
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-story__body {
    padding: 60px 40px;
  }
  .about-story__metrics {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 40px;
  }
  .about-hef {
    padding: 80px 40px;
  }
  .about-hef__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-industries {
    padding: 60px 40px;
  }
  .cert-hero {
    padding: 120px 40px 80px;
  }
  .cert-grid {
    padding: 80px 40px;
  }
  .cert-card {
    padding: 28px 32px;
    gap: 24px;
  }
  .career-hero {
    padding: 120px 40px 80px;
  }
  .career-benefits {
    padding: 80px 40px;
  }
  .career-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .career-who {
    padding: 80px 40px;
  }
  .career-who__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .career-apply {
    padding: 60px 40px;
  }
  .career-apply__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-hero {
    padding: 120px 40px 60px;
  }
  .news-grid {
    padding: 60px 40px;
  }
  .news-grid__inner {
    grid-template-columns: 1fr;
  }
  .news-card--secondary {
    flex-direction: column;
  }
  .news-card--secondary .news-card__image {
    width: 100%;
    height: 180px;
  }
  .news-card--secondary .news-card__body {
    padding: 20px;
  }
  .article-header {
    padding: 120px 40px 60px;
  }
  .article-body {
    padding: 60px 40px;
  }
  .article-body__layout {
    grid-template-columns: 1fr;
  }
  .article-body__media {
    position: static;
  }
  .resources-hero {
    padding: 120px 40px 60px;
  }
  .resources-section {
    padding: 60px 40px;
  }
  .resources-videos {
    grid-template-columns: 1fr;
  }
  .resources-brochures {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-sections {
    padding: 60px 40px;
  }
  .contact-hero {
    padding: 120px 40px 60px;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 48px 40px;
  }
  .contact-form__checkboxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 20px 60px;
  }
  .about-mission {
    padding: 60px 20px;
  }
  .about-story__body {
    padding: 48px 20px;
  }
  .about-story__metrics {
    padding: 40px 20px;
  }
  .about-hef {
    padding: 60px 20px;
  }
  .about-hef__card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-industries {
    padding: 60px 20px;
  }
  .cert-hero {
    padding: 100px 20px 60px;
  }
  .cert-hero__bg-text {
    display: none;
  }
  .cert-grid {
    padding: 60px 20px;
  }
  .cert-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
  }
  .career-hero {
    padding: 100px 20px 60px;
  }
  .career-benefits {
    padding: 60px 20px;
  }
  .career-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-who {
    padding: 60px 20px;
  }
  .career-apply {
    padding: 48px 20px;
  }
  .career-apply__inner {
    grid-template-columns: 1fr;
  }
  .news-hero {
    padding: 100px 20px 48px;
  }
  .news-grid {
    padding: 48px 20px;
  }
  .news-card__image {
    height: 200px;
  }
  .news-card__body {
    padding: 20px;
  }
  .article-header {
    padding: 100px 20px 48px;
  }
  .article-body {
    padding: 48px 20px;
  }
  .article-pullquote {
    padding: 18px 20px;
  }
  .resources-hero {
    padding: 100px 20px 48px;
  }
  .resources-section {
    padding: 48px 20px;
  }
  .resources-brochures {
    grid-template-columns: 1fr;
  }
  .resources-video-card {
    height: 180px;
  }
  .faq-sections {
    padding: 48px 20px;
  }
  .contact-hero {
    padding: 100px 20px 48px;
  }
  .contact-info {
    padding: 48px 20px;
  }
  .contact-form-panel {
    padding: 40px 20px;
  }
  .contact-form {
    grid-template-columns: 1fr !important;
  }
  .contact-form__group--full {
    grid-column: span 1;
  }
  .contact-form__checkboxes {
    grid-template-columns: 1fr 1fr;
  }
  .contact-map {
    height: 300px;
  }
}
.article-pullquote {
  border-left: 4px solid #DA291C;
  padding: 22px 28px;
  background: rgba(15, 43, 91, 0.06);
  margin: 32px 0;
  border-radius: 0 6px 6px 0;
  max-width: 820px;
}
.article-pullquote blockquote {
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  color: #0F2B5B;
  line-height: 1.65;
  margin: 0;
  border: none;
  padding: 0;
}

.article-header--technical {
  background: #0F2B5B;
}
.article-header--technical::after {
  content: "";
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 41, 28, 0.15), transparent 70%);
}

.ch-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ch-reveal:nth-child(1) {
  transition-delay: 0s;
}
.ch-reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.ch-reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.ch-reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.ch-reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.ch-reveal:nth-child(6) {
  transition-delay: 0.5s;
}
.ch-reveal:nth-child(7) {
  transition-delay: 0.6s;
}
.ch-reveal:nth-child(8) {
  transition-delay: 0.7s;
}

.ch-hero {
  background: #0A1628;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 72px 100px;
  overflow: hidden;
}
.ch-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.ch-hero__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ch-hero__tag::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #DA291C;
  display: inline-block;
  flex-shrink: 0;
}
.ch-hero__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 2rem;
}
.ch-hero__title em {
  font-style: normal;
  color: #DA291C;
}
.ch-hero__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.ch-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  width: fit-content;
}
.ch-hero__cta svg {
  transition: transform 0.25s;
}
.ch-hero__cta:hover {
  background: #DA291C;
  border-color: #DA291C;
}
.ch-hero__cta:hover svg {
  transform: translateX(4px);
}
.ch-hero__right {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ch-hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.8);
}
.ch-hero__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.92) 35%, rgba(10, 22, 40, 0.6) 65%, rgba(10, 22, 40, 0.25) 100%), linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 40%);
}
.ch-hero__float-stat {
  position: absolute;
  bottom: 60px;
  right: 72px;
  z-index: 10;
  background: #DA291C;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ch-hero__float-stat .ch-float-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.ch-hero__float-stat .ch-float-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 140px;
}
.ch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .ch-hero {
    grid-template-columns: 1fr;
  }
  .ch-hero__right {
    display: none;
  }
  .ch-hero__left {
    padding: 120px 32px 60px;
  }
}

.ch-marquee {
  background: #0d0d0d;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ch-marquee__track {
  display: flex;
  white-space: nowrap;
  animation: ch-scroll 28s linear infinite;
}
.ch-marquee__track span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 48px;
}
.ch-marquee__track span strong {
  color: #DA291C;
  font-weight: 400;
}

@keyframes ch-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ch-quote {
  background: #fff;
  padding: 120px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ch-quote__inner {
  max-width: 960px;
  width: 100%;
  position: relative;
  padding-left: 56px;
  border-left: 3px solid #DA291C;
}
.ch-quote__mark {
  font-family: Georgia, serif;
  font-size: clamp(6rem, 10vw, 12rem);
  line-height: 0.6;
  color: #DA291C;
  opacity: 0.15;
  position: absolute;
  left: -20px;
  top: -20px;
  pointer-events: none;
}
.ch-quote__text {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #0A1628;
  margin: 0 0 2rem;
  font-style: italic;
}
.ch-quote__attr {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.45);
}
.ch-quote__attr::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(10, 22, 40, 0.25);
}
.ch-quote__attr strong {
  color: #0A1628;
}
@media (max-width: 768px) {
  .ch-quote {
    padding: 80px 32px;
  }
  .ch-quote__inner {
    padding-left: 28px;
  }
}

.ch-stats {
  background: #0d0d0d;
  padding: 100px 72px;
}
.ch-stats__header {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ch-stats__header::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  flex: 1;
}
.ch-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .ch-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .ch-stats__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ch-stats {
    padding: 72px 32px;
  }
}

.ch-stat {
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}
.ch-stat:hover {
  background: rgba(255, 255, 255, 0.03);
}
.ch-stat__number {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ch-stat__suffix {
  font-size: 0.45em;
  color: #DA291C;
  font-weight: 400;
}
.ch-stat__label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}
.ch-stat--featured {
  background: #DA291C;
  border-color: #DA291C;
}
.ch-stat--featured .ch-stat__number {
  color: #fff;
}
.ch-stat--featured .ch-stat__label {
  color: rgba(255, 255, 255, 0.7);
}
.ch-stat--featured .ch-stat__suffix {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .ch-stat {
    padding: 36px 28px;
  }
}

.ch-pillars {
  display: flex;
  flex-direction: column;
}

.ch-pillar {
  display: grid;
  grid-template-columns: 96px 1fr 480px;
  min-height: 420px;
  overflow: hidden;
}
.ch-pillar--dark {
  background: #0F2B5B;
  grid-template-columns: 480px 1fr 96px;
}
.ch-pillar--dark .ch-pillar__number {
  color: rgba(255, 255, 255, 0.06);
  order: 3;
}
.ch-pillar--dark .ch-pillar__visual {
  order: 1;
}
.ch-pillar--dark .ch-pillar__content {
  order: 2;
}
.ch-pillar--dark .ch-pillar__category {
  color: rgba(255, 255, 255, 0.4);
}
.ch-pillar--dark h2 {
  color: #fff;
}
.ch-pillar--dark p {
  color: rgba(255, 255, 255, 0.6);
}
.ch-pillar--dark .ch-pillar__link {
  color: #DA291C;
  border-color: rgba(218, 41, 28, 0.4);
}
.ch-pillar--dark .ch-pillar__link:hover {
  background: #DA291C;
  color: #fff;
}
.ch-pillar--light {
  background: #f9fafb;
}
.ch-pillar--light .ch-pillar__number {
  color: rgba(10, 22, 40, 0.06);
}
.ch-pillar--light .ch-pillar__category {
  color: #DA291C;
}
.ch-pillar--light h2 {
  color: #0A1628;
}
.ch-pillar--light p {
  color: rgba(10, 22, 40, 0.6);
}
.ch-pillar--light .ch-pillar__link {
  color: #0A1628;
  border-color: rgba(10, 22, 40, 0.3);
}
.ch-pillar--light .ch-pillar__link:hover {
  background: #0A1628;
  color: #fff;
}
.ch-pillar--accent {
  background: #0F2B5B;
}
.ch-pillar--accent .ch-pillar__number {
  color: rgba(255, 255, 255, 0.06);
}
.ch-pillar--accent .ch-pillar__category {
  color: rgba(255, 255, 255, 0.5);
}
.ch-pillar--accent h2 {
  color: #fff;
}
.ch-pillar--accent p {
  color: rgba(255, 255, 255, 0.65);
}
.ch-pillar--accent .ch-pillar__link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.ch-pillar--accent .ch-pillar__link:hover {
  background: #DA291C;
  border-color: #DA291C;
}
.ch-pillar__number {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8rem;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}
.ch-pillar__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.ch-pillar__category {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ch-pillar h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.ch-pillar p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2rem;
}
.ch-pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border: 1px solid;
  border-radius: 2px;
  transition: background 0.22s, color 0.22s;
  width: fit-content;
}
.ch-pillar__visual {
  position: relative;
  overflow: hidden;
}
.ch-pillar__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ch-pillar__visual:hover img {
  transform: scale(1.04);
}
.ch-pillar__visual--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 1024px) {
  .ch-pillar {
    grid-template-columns: 60px 1fr 1fr;
    min-height: 360px;
  }
  .ch-pillar--dark {
    grid-template-columns: 1fr 1fr 60px;
  }
}
@media (max-width: 768px) {
  .ch-pillar {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ch-pillar__number {
    writing-mode: initial;
    font-size: 4rem;
    padding: 24px 32px 0;
  }
  .ch-pillar__visual {
    height: 240px;
  }
  .ch-pillar__content {
    padding: 36px 32px;
  }
  .ch-pillar--dark {
    grid-template-columns: 1fr;
  }
  .ch-pillar--dark .ch-pillar__number {
    order: 1;
  }
  .ch-pillar--dark .ch-pillar__visual {
    order: 2;
  }
  .ch-pillar--dark .ch-pillar__content {
    order: 3;
  }
}

.ch-bento {
  background: #fff;
  padding: 100px 72px;
}
.ch-bento__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}
.ch-bento__header h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0A1628;
  max-width: 480px;
}
.ch-bento__header p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(10, 22, 40, 0.55);
  max-width: 320px;
}
.ch-bento__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 640px;
}
@media (max-width: 900px) {
  .ch-bento {
    padding: 72px 32px;
  }
  .ch-bento__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ch-bento__grid {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.ch-bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.ch-bento-item--tall {
  grid-row: 1/3;
}
.ch-bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ch-bento-item:hover img {
  transform: scale(1.05);
}
.ch-bento-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.1) 60%, transparent 100%);
}
.ch-bento-item__content {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
}
.ch-bento-item__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 8px;
  display: block;
}
.ch-bento-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.ch-bento-item p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  display: none;
}
.ch-bento-item--tall p {
  display: block;
}
@media (max-width: 900px) {
  .ch-bento-item {
    height: 280px;
  }
  .ch-bento-item--tall {
    height: 380px;
  }
  .ch-bento-item p {
    display: none !important;
  }
}

.ch-orgs {
  background: #0A1628;
  padding: 100px 72px;
}
.ch-orgs__header {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ch-orgs__header::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
}
.ch-orgs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
@media (max-width: 768px) {
  .ch-orgs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ch-orgs__grid {
    grid-template-columns: 1fr;
  }
}
.ch-orgs__org {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}
.ch-orgs__org:hover {
  background: rgba(255, 255, 255, 0.03);
}
.ch-orgs__org h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.ch-orgs__org p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
}
.ch-orgs__org span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #DA291C;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .ch-orgs {
    padding: 72px 32px;
  }
}

.ch-letter {
  background: #f5f0eb;
  padding: 120px 72px;
  position: relative;
  overflow: hidden;
}
.ch-letter::before {
  content: '"';
  position: absolute;
  right: 5%;
  top: -5%;
  font-size: clamp(16rem, 22vw, 28rem);
  font-family: Georgia, serif;
  color: rgba(10, 22, 40, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ch-letter__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .ch-letter__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.ch-letter__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #DA291C;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ch-letter__tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #DA291C;
}
.ch-letter__heading {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0A1628;
  margin-bottom: 1.5rem;
}
.ch-letter__body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(10, 22, 40, 0.65);
  margin-bottom: 2rem;
}
.ch-letter__body p {
  margin-bottom: 1rem;
}
.ch-letter__sig {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  color: #0A1628;
  margin-bottom: 4px;
}
.ch-letter__sig-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.45);
  margin-bottom: 2.5rem;
}
.ch-letter__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ch-letter__visual {
  position: relative;
}
.ch-letter__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.ch-letter__visual::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: 20px;
  top: 20px;
  border: 2px solid #DA291C;
  border-radius: 4px;
  z-index: -1;
}
@media (max-width: 768px) {
  .ch-letter {
    padding: 80px 32px;
  }
  .ch-letter__visual {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
