:root {
  color-scheme: dark;
  --bg: #020304;
  --bg-soft: #070a0b;
  --surface: rgba(11, 15, 16, 0.72);
  --text: #f6f8f6;
  --soft: #d2d9d6;
  --muted: #929c98;
  --line: rgba(235, 243, 240, 0.14);
  --line-strong: rgba(235, 243, 240, 0.28);
  --green: #80d83f;
  --cyan: #3bd2ce;
  --max: 1220px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, 0.28) #020304;
}

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px);
  opacity: 0.46;
}

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

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

a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 18px rgba(59, 210, 206, 0.5);
  pointer-events: none;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.76), rgba(2, 3, 4, 0));
  transition:
    height 500ms var(--ease-out),
    background 500ms var(--ease-out),
    border-color 500ms var(--ease-out),
    backdrop-filter 500ms var(--ease-out);
}

.topbar.is-scrolled {
  height: 70px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(2, 4, 5, 0.72);
  backdrop-filter: blur(22px) saturate(1.2);
}

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

.brand img {
  width: 200px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(246, 248, 246, 0.66);
  font-size: 14px;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  transition: color 300ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--cyan);
  transition: transform 500ms var(--ease-out);
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.section {
  position: relative;
  min-height: 100svh;
  padding: 118px max(24px, calc((100vw - var(--max)) / 2)) 82px;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 70px;
}

.generated-atmosphere {
  position: absolute;
  inset: -8%;
  z-index: -4;
  display: block;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  will-change: transform;
}

.generated-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading,
.copy,
.index-list,
.point-grid,
.product-rail-shell,
.honors-copy,
.honor-list,
.contact-panel,
.contact-logo {
  position: relative;
  z-index: 3;
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 38px, 0) scale(0.985);
  transition:
    opacity 900ms var(--ease-out),
    filter 1100ms var(--ease-out),
    transform 1100ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal-group] > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 700ms var(--ease-out) var(--delay, 0ms),
    transform 900ms var(--ease-out) var(--delay, 0ms),
    border-color 300ms ease,
    background 300ms ease;
}

[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 680;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  font-size: 64px;
}

.section-heading > p:last-child,
.copy > p:last-child,
.honors-copy > p:last-child,
.contact-panel > p:last-of-type {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero {
  display: grid;
  place-items: center;
  padding: 80px 24px 48px;
}

.hero-atmosphere {
  opacity: 1;
}

.hero-products {
  position: absolute;
  inset: 8% 0 0;
  z-index: -2;
  width: 100%;
  height: 92%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.5;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
  filter: saturate(0.9) contrast(1.08);
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, #000 28%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 2%, #000 28%, #000 78%, transparent 100%);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.7) 0%, rgba(2, 3, 4, 0.04) 42%, rgba(2, 3, 4, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 3, 4, 0.48), transparent 38%, transparent 62%, rgba(2, 3, 4, 0.48));
}

.hero-content {
  display: grid;
  justify-items: center;
  width: min(100%, 820px);
  transform: translateY(-3vh);
}

.hero-content.is-visible {
  transform: translateY(-3vh);
}

.hero-logo {
  width: 720px;
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.56));
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 48px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  animation: cue-pulse 2.2s var(--ease-out) infinite;
}

@keyframes cue-pulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleY(0.55) translateY(-8px);
  }

  50% {
    opacity: 1;
    transform: scaleY(1) translateY(5px);
  }
}

.index-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: 9vw;
  background: #040606;
}

.index-atmosphere {
  opacity: 0.24;
  filter: saturate(0.72);
}

.index-heading {
  max-width: 520px;
}

.index-heading > p:last-child {
  margin: 30px 0 0;
}

.index-list {
  border-top: 1px solid var(--line-strong);
}

.index-list a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 300ms ease,
    transform 500ms var(--ease-out);
}

.index-list a:hover {
  transform: translateX(8px);
  border-bottom-color: rgba(59, 210, 206, 0.5);
}

.index-list strong {
  align-self: start;
  padding-top: 36px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.index-list span {
  display: block;
  color: var(--text);
  font-size: 24px;
  font-weight: 680;
}

.index-list p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.index-list i,
.button i,
.product-copy em i {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.index-list i {
  color: rgba(255, 255, 255, 0.56);
}

.capability {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 52px;
  min-height: 108svh;
}

.capability-atmosphere {
  opacity: 0.62;
}

.capability-products,
.honors-products,
.contact-media {
  position: absolute;
  z-index: -2;
  max-width: none;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  will-change: transform;
}

.capability-products {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.23;
  filter: saturate(0.82) contrast(1.1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.ambient-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.52), rgba(2, 3, 4, 0.2) 42%, rgba(2, 3, 4, 0.88)),
    linear-gradient(90deg, rgba(2, 3, 4, 0.96) 0%, rgba(2, 3, 4, 0.64) 50%, rgba(2, 3, 4, 0.16));
}

.capability-copy {
  align-self: end;
  max-width: 870px;
}

.capability-copy > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
}

@media (min-width: 981px) {
  .capability-copy {
    max-width: 1100px;
  }

  .capability-copy h2 {
    font-size: 58px;
    white-space: nowrap;
  }
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.point-grid span {
  display: grid;
  align-content: start;
  min-height: 146px;
  padding: 24px 26px 18px 0;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.point-grid span + span {
  padding-left: 26px;
}

.point-grid span:last-child {
  border-right: 0;
}

.point-grid b {
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.products {
  min-height: 112svh;
  padding-right: 0;
  padding-left: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.18), #030505 92%),
    url("./assets/atmosphere-river-dark-v2-landscape.png") center top / cover no-repeat;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.68), rgba(2, 3, 4, 0.92));
}

.products-heading {
  max-width: 720px;
  margin: 0 max(24px, calc((100vw - var(--max)) / 2)) 46px;
}

.products-heading > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
}

.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 31vw);
  gap: 18px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-row::-webkit-scrollbar {
  display: none;
}

.product-panel {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050707;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 600ms var(--ease-out),
    border-color 300ms ease,
    box-shadow 500ms ease;
}

.product-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.08) 0%, rgba(2, 3, 4, 0.1) 42%, rgba(2, 3, 4, 0.95) 86%),
    linear-gradient(90deg, rgba(2, 3, 4, 0.18), transparent 54%);
}

.product-panel:hover {
  border-color: rgba(59, 210, 206, 0.42);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.44);
}

.product-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-out), filter 700ms ease;
}

.product-panel:hover > img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.product-index {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.product-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.product-copy strong {
  display: block;
  font-size: 28px;
  font-weight: 680;
  line-height: 1.15;
}

.product-copy p {
  max-width: 360px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-copy em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}

.rail-progress {
  width: min(360px, calc(100vw - 48px));
  height: 1px;
  margin: 24px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.rail-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.08);
  transform-origin: left center;
  background: var(--cyan);
  transition: transform 140ms ease-out;
}

.honors {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 9vw;
  background: #030505;
}

.honors-atmosphere {
  opacity: 0.72;
}

.honors-products {
  right: -8%;
  bottom: -14%;
  width: 76%;
  height: auto;
  opacity: 0.2;
  filter: saturate(0.82) contrast(1.08);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 32%, transparent 92%);
  mask-image: linear-gradient(180deg, transparent, #000 32%, transparent 92%);
}

.honors-shade {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.94), rgba(2, 3, 4, 0.62) 46%, rgba(2, 3, 4, 0.3)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.64), rgba(2, 3, 4, 0.3), rgba(2, 3, 4, 0.84));
}

.honors-copy {
  max-width: 520px;
}

.honors-copy > p:last-child {
  margin: 28px 0 0;
}

.honor-list {
  border-top: 1px solid var(--line-strong);
}

.honor-list span {
  display: flex;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 16px;
  line-height: 1.5;
}

.honor-list span:last-child {
  min-height: 58px;
  color: var(--cyan);
  font-size: 28px;
}

.contact {
  display: grid;
  align-items: end;
}

.contact-atmosphere {
  opacity: 0.92;
}

.contact-media {
  right: 0;
  bottom: 0;
  width: 65%;
  height: 62%;
  object-fit: cover;
  object-position: 52% 70%;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 78%, transparent 100%);
}

@media (min-width: 701px) and (min-aspect-ratio: 4 / 3) {
  .contact-media {
    height: 80%;
    object-position: 52% 55%;
  }
}

.contact-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.96) 0%, rgba(2, 3, 4, 0.72) 43%, rgba(2, 3, 4, 0.22)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.28), rgba(2, 3, 4, 0.88));
}

.contact-panel {
  max-width: 720px;
  padding-bottom: 38px;
}

.contact-panel > p:last-of-type {
  max-width: 620px;
  margin: 26px 0 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 220px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  backdrop-filter: blur(14px);
  transition:
    transform 500ms var(--ease-out),
    border-color 300ms ease,
    background 300ms ease;
}

.button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  border-color: rgba(128, 216, 63, 0.62);
  background: rgba(128, 216, 63, 0.9);
  color: #061006;
}

.contact-logo {
  position: absolute;
  left: 50%;
  right: auto;
  top: 20%;
  width: min(440px, 36vw);
  opacity: 0.085;
  transform: translateX(-50%);
}

@media (max-width: 980px) {
  h2 {
    font-size: 46px;
  }

  .index-section,
  .honors {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 54px;
  }

  .index-heading,
  .honors-copy {
    max-width: 720px;
  }

  .point-grid {
    grid-template-columns: 1fr 1fr;
  }

  .point-grid span:nth-child(2) {
    border-right: 0;
  }

  .point-grid span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-row {
    grid-auto-columns: minmax(320px, 58vw);
  }
}

@media (max-width: 700px) {
  html {
    scroll-snap-type: y proximity;
  }

  body::before {
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 72px);
    opacity: 0.3;
  }

  .topbar,
  .topbar.is-scrolled {
    height: 60px;
    padding: 0 12px;
    gap: 10px;
  }

  .brand img {
    width: 106px;
  }

  .nav {
    flex: 1;
    justify-content: flex-end;
    gap: 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .nav a {
    min-height: 34px;
  }

  .nav a::after {
    bottom: 2px;
  }

  .section {
    min-height: 100svh;
    padding: 92px 18px 64px;
    scroll-snap-align: start;
    scroll-margin-top: 58px;
  }

  h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .section-heading > p:last-child,
  .copy > p:last-child,
  .honors-copy > p:last-child,
  .contact-panel > p:last-of-type {
    font-size: 15px;
    line-height: 1.72;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  [data-reveal] {
    transform: translate3d(0, 26px, 0) scale(0.99);
  }

  .generated-atmosphere {
    inset: -5%;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  }

  .hero {
    min-height: 100svh;
    padding: 70px 8px 40px;
  }

  .hero-products {
    inset: auto auto 7% -34%;
    width: 168%;
    height: auto;
    opacity: 0.34;
    object-fit: contain;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 24%, #000 74%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent, #000 24%, #000 74%, transparent 100%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.68), rgba(2, 3, 4, 0.08) 44%, rgba(2, 3, 4, 0.88)),
      linear-gradient(90deg, rgba(2, 3, 4, 0.44), transparent 50%, rgba(2, 3, 4, 0.38));
  }

  .hero-content,
  .hero-content.is-visible {
    width: 100%;
    transform: translateY(-6vh);
  }

  .hero-logo {
    width: 96vw;
    max-width: 380px;
  }

  .scroll-cue {
    bottom: 18px;
  }

  .index-section,
  .honors {
    display: block;
  }

  .index-heading > p:last-child,
  .honors-copy > p:last-child {
    margin-top: 22px;
  }

  .index-list {
    margin-top: 46px;
  }

  .index-list a {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 108px;
  }

  .index-list strong {
    padding-top: 30px;
    font-size: 11px;
  }

  .index-list span {
    font-size: 20px;
  }

  .index-list p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
  }

  .capability {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 34px;
    min-height: 108svh;
  }

  .capability-products {
    inset: auto -48% 15% auto;
    width: 160%;
    height: auto;
    opacity: 0.2;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%, transparent 94%);
    mask-image: linear-gradient(90deg, transparent, #000 40%, transparent 94%);
  }

  .ambient-shade {
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.58), rgba(2, 3, 4, 0.22) 48%, rgba(2, 3, 4, 0.9)),
      linear-gradient(90deg, rgba(2, 3, 4, 0.92), rgba(2, 3, 4, 0.38));
  }

  .capability-copy > p:last-child {
    margin-top: 22px;
  }

  .point-grid {
    grid-template-columns: 1fr 1fr;
  }

  .point-grid span,
  .point-grid span + span {
    min-height: 118px;
    padding: 18px 14px 16px 0;
    font-size: 13px;
  }

  .point-grid span:nth-child(even) {
    padding-left: 14px;
  }

  .point-grid b {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .products {
    min-height: 100svh;
    padding: 88px 0 58px;
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.4), #030505 90%),
      url("./assets/atmosphere-river-dark-v2-portrait.png") center top / cover no-repeat;
  }

  .products-heading {
    margin: 0 18px 34px;
  }

  .products-heading > p:last-child {
    margin-top: 20px;
  }

  .product-row {
    grid-auto-columns: 82vw;
    gap: 12px;
    padding: 0 18px 16px;
    scroll-padding-inline: 18px;
  }

  .product-panel {
    min-height: 58svh;
    max-height: 610px;
    transform: none;
  }

  .product-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .product-copy strong {
    font-size: 24px;
  }

  .product-copy p {
    margin: 10px 0 18px;
    font-size: 13px;
  }

  .rail-progress {
    margin-top: 16px;
  }

  .honors {
    min-height: auto;
    padding-bottom: 74px;
  }

  .honors-products {
    right: -72%;
    bottom: 12%;
    width: 190%;
    opacity: 0.14;
  }

  .honors-shade {
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.72), rgba(2, 3, 4, 0.5), rgba(2, 3, 4, 0.9)),
      linear-gradient(90deg, rgba(2, 3, 4, 0.88), rgba(2, 3, 4, 0.46));
  }

  .honor-list {
    margin-top: 42px;
  }

  .honor-list span {
    min-height: 64px;
    font-size: 14px;
  }

  .honor-list span:last-child {
    min-height: 52px;
    font-size: 26px;
  }

  .contact {
    min-height: 100svh;
  }

  .contact-media {
    right: -40%;
    bottom: 3%;
    width: 140%;
    height: 62%;
    opacity: 0.3;
    object-fit: cover;
    object-position: center;
  }

  .contact-shade {
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.5), rgba(2, 3, 4, 0.24) 48%, rgba(2, 3, 4, 0.92)),
      linear-gradient(90deg, rgba(2, 3, 4, 0.9), rgba(2, 3, 4, 0.36));
  }

  .contact-panel {
    padding-bottom: 12px;
  }

  .contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 13px;
  }

  .contact-logo {
    top: 20%;
    left: 50%;
    right: auto;
    width: min(82vw, 390px);
    opacity: 0.07;
    transform: translateX(-50%);
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 96px;
  }

  .nav {
    gap: 8px;
    font-size: 10px;
  }

  h2 {
    font-size: 34px;
  }

  .product-row {
    grid-auto-columns: 84vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .generated-atmosphere,
  .hero-products,
  .capability-products,
  .honors-products,
  .contact-media {
    transform: none;
  }
}
