@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto/roboto-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto/roboto-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #001e3d;
  --blue-soft: #082b50;
  --green: #8bac47;
  --white: #ffffff;
  --mist: #d9e2ea;
  --muted: #aebdca;
  --line: rgba(139, 172, 71, 0.42);
  --line-soft: rgba(255, 255, 255, 0.12);
  --header-h: 72px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--blue);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(0, 30, 61, 0.9);
  border-bottom: 1px solid rgba(139, 172, 71, 0.24);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(0, 30, 61, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 144px;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  border-radius: 4px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a,
.site-nav .nav-item {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav .nav-item {
  cursor: default;
}

.site-nav .nav-item-pending {
  color: rgba(255, 255, 255, 0.5);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--green);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white) !important;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  border-color: rgba(139, 172, 71, 0.72);
  background: rgba(139, 172, 71, 0.12);
}

.main {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 74vh;
  padding-top: var(--header-h);
}

.hero-home {
  min-height: clamp(650px, 84svh, 820px);
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 30, 61, 0.98) 0%, rgba(0, 30, 61, 0.88) 34%, rgba(0, 30, 61, 0.32) 70%, rgba(0, 30, 61, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 30, 61, 0.78) 0%, rgba(0, 30, 61, 0) 38%);
}

.hero-home::after {
  background:
    linear-gradient(90deg, rgba(0, 30, 61, 0.98) 0%, rgba(0, 30, 61, 0.84) 34%, rgba(0, 30, 61, 0.28) 72%, rgba(0, 30, 61, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 30, 61, 0) 44%, rgba(0, 30, 61, 0.34) 65%, rgba(0, 30, 61, 0.78) 86%, var(--blue) 100%);
}

.product-page .product-hero {
  min-height: clamp(620px, 78svh, 780px);
}

.product-page-core .product-hero {
  min-height: clamp(720px, 88svh, 920px);
}

.product-page .product-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 30, 61, 0.98) 0%, rgba(0, 30, 61, 0.86) 34%, rgba(0, 30, 61, 0.32) 72%, rgba(0, 30, 61, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 30, 61, 0) 46%, rgba(0, 30, 61, 0.32) 68%, var(--blue) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.15fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: calc(74vh - var(--header-h));
  padding: clamp(42px, 7vw, 92px) 0;
}

.hero-home .hero-inner {
  width: min(1320px, calc(100% - clamp(44px, 6vw, 100px)));
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  min-height: calc(clamp(650px, 84svh, 820px) - var(--header-h));
  align-items: center;
  padding: clamp(84px, 8vw, 118px) 0 clamp(104px, 11vw, 144px);
}

.product-page .product-hero .hero-inner {
  min-height: calc(clamp(620px, 78svh, 780px) - var(--header-h));
  padding: clamp(70px, 7vw, 108px) 0 clamp(76px, 8vw, 116px);
}

.product-page-core .product-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(150px, 18vh, 230px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 30, 61, 0) 0%, rgba(0, 30, 61, 0.44) 54%, var(--blue) 100%);
}

.product-page-core .product-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 30, 61, 0.99) 0%, rgba(0, 30, 61, 0.9) 36%, rgba(0, 30, 61, 0.48) 72%, rgba(0, 30, 61, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 30, 61, 0.08) 38%, rgba(0, 30, 61, 0.42) 70%, var(--blue) 100%);
}

.product-page-core .product-hero .hero-inner {
  min-height: calc(clamp(720px, 88svh, 920px) - var(--header-h));
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 4vw, 70px);
}

.product-page-core .product-hero .hero-copy {
  position: relative;
  transform: translate(clamp(-96px, -6.6vw, -56px), clamp(-136px, -13svh, -92px));
}

.product-page-core .product-hero .hero-copy::after {
  content: "";
  display: block;
  width: clamp(76px, 7vw, 118px);
  height: 1px;
  margin-top: clamp(28px, 3.8vw, 42px);
  opacity: 0.82;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(139, 172, 71, 0.9), rgba(139, 172, 71, 0.44) 72%, rgba(139, 172, 71, 0) 100%);
  transform-origin: left center;
  animation: coreHeroAccentDraw 1.15s cubic-bezier(0.22, 0.72, 0.22, 1) 0.68s both;
}
.product-page-core .product-hero-title {
  animation: coreHeroTextIn 1.25s cubic-bezier(0.2, 0.72, 0.2, 1) 0.08s both;
}

.product-page-core .hero-kicker {
  animation: coreHeroTextIn 1.35s cubic-bezier(0.2, 0.72, 0.2, 1) 0.24s both;
}

.hero-copy {
  max-width: 560px;
}

.hero-home .hero-copy {
  transform: translate(clamp(-44px, -3vw, -18px), clamp(4px, 1.8svh, 18px));
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  font-weight: 900;
}

.product-hero h1,
.contact-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--green);
}

.product-page .product-hero h1 {
  font-size: clamp(3.25rem, 6.2vw, 6.35rem);
  letter-spacing: 0;
}

.product-page-core .product-hero-title {
  color: var(--green);
  font-size: clamp(4rem, 6.8vw, 7.25rem);
}

.product-page-core .product-hero-title sup {
  margin-left: 0.02em;
  font-size: 0.27em;
  line-height: 0;
  vertical-align: super;
}

.product-page-core .hero-kicker {
  max-width: 560px;
  margin: 20px 0 0;
}

.hero-home .hero-title {
  color: var(--green);
  font-size: clamp(4rem, 7vw, 7.4rem);
}

.hero-title sup {
  margin-left: 0.02em;
  font-size: 0.27em;
  line-height: 0;
  vertical-align: super;
}

.accent {
  color: var(--green);
}

.hero-sub {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 800;
}

.home-page .hero-title {
  opacity: 0;
}

.home-page .hero-sub {
  opacity: 0;
}

.home-page:not(.hero-intro-ready) .hero-title,
.home-page:not(.hero-intro-ready) .hero-sub {
  opacity: 0;
  animation: none;
}

.home-page.hero-intro-ready .hero-title {
  animation-name: heroSoftFade;
  animation-duration: 2.2s;
  animation-timing-function: linear;
  animation-delay: 0.22s;
  animation-fill-mode: both;
}

.home-page.hero-intro-ready .hero-sub {
  animation-name: heroSoftFade;
  animation-duration: 1.9s;
  animation-timing-function: linear;
  animation-delay: 0.85s;
  animation-fill-mode: both;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 110;
  padding: 10px 14px;
  border: 2px solid var(--green);
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 28px));
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  transform: translateY(0);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

html.home-effects-seen .home-page .hero-title,
html.home-effects-seen .home-page .hero-sub {
  opacity: 1;
  animation: none;
}

@keyframes heroSoftFade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.02;
  }

  20% {
    opacity: 0.05;
  }

  30% {
    opacity: 0.1;
  }

  40% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.45;
  }

  70% {
    opacity: 0.62;
  }

  80% {
    opacity: 0.78;
  }

  90% {
    opacity: 0.91;
  }

  100% {
    opacity: 1;
  }
}

@keyframes coreHeroTextIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes coreHeroAccentDraw {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 0.82;
    transform: scaleX(1);
  }
}


.hero-kicker {
  margin: 0 0 22px;
  color: var(--mist);
  font-size: clamp(1.3rem, 2.2vw, 2.05rem);
  font-weight: 800;
}

.product-page .hero-kicker {
  max-width: 520px;
  color: rgba(217, 226, 234, 0.9);
  font-size: clamp(1.24rem, 2vw, 1.9rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  color: var(--white);
  background: rgba(0, 30, 61, 0.42);
}

.button:hover {
  background: rgba(139, 172, 71, 0.18);
}

.hero-product {
  justify-self: end;
  width: min(560px, 100%);
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.42));
}

.product-page .hero-product {
  width: min(540px, 100%);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.36));
}

.product-page-core .hero-product-stage {
  position: relative;
  min-height: clamp(640px, 76svh, 820px);
  align-self: center;
  isolation: isolate;
}

.product-page-core .hero-product-stage::before,
.product-page-core .hero-product-stage::after {
  display: none;
}

.product-page-core .hero-product {
  position: absolute;
  z-index: 1;
  top: 64%;
  right: clamp(-740px, -39vw, -400px);
  width: min(1320px, 220%);
  max-width: none;
  transform: translateY(-49%);
  opacity: 0.9;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.26));
}

.hero-note {
  align-self: end;
  max-width: 480px;
  margin-bottom: 16px;
  padding: 22px 24px;
  background: rgba(139, 172, 71, 0.94);
  color: #061b32;
  font-weight: 800;
}

.product-page .hero-note {
  max-width: 470px;
  margin-top: 12px;
  margin-bottom: 0;
  padding: 20px 22px;
  border: 1px solid rgba(139, 172, 71, 0.46);
  background: rgba(0, 30, 61, 0.68);
  color: rgba(217, 226, 234, 0.9);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.hero-note p {
  margin: 0;
}

.system-section {
  padding: clamp(58px, 7vw, 92px) 0 clamp(82px, 8vw, 116px);
  background: var(--blue);
}

.section-heading {
  margin: 0 auto clamp(42px, 6vw, 68px);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.section-heading span {
  display: block;
  width: 58px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(139, 172, 71, 0.58);
}

.system-product-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 28px);
}

.system-product-card {
  display: grid;
  grid-template-rows: minmax(clamp(180px, 15vw, 210px), auto) auto;
  gap: 4px;
  flex: 1 1 240px;
  max-width: 286px;
  min-width: 0;
  padding: clamp(12px, 1.1vw, 16px);
  border: 1px solid rgba(139, 172, 71, 0.36);
  border-radius: 0;
  background: rgba(5, 39, 74, 0.68);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.home-page .system-product-card:hover,
.home-page .system-product-card:focus-visible {
  border-color: rgba(139, 172, 71, 0.82);
  background-color: rgba(7, 44, 82, 0.74);
  transform: translateY(-2px);
}

.system-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 15vw, 210px);
  padding: 0;
  background: transparent;
}

.system-product-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transform: scale(1.17);
  transform-origin: center;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
}

.system-product-card--core .system-product-media img {
  max-height: clamp(180px, 14.8vw, 212px);
  max-width: min(100%, 276px);
}

.system-product-card--curved .system-product-media img {
  max-height: clamp(166px, 13.6vw, 198px);
  max-width: min(98%, 286px);
  transform: scale(1.14);
}

.system-product-card--pocket .system-product-media img {
  max-height: clamp(186px, 15.2vw, 220px);
  max-width: min(100%, 276px);
  transform: scale(1.18);
}

.system-product-name {
  display: block;
  padding: 0;
  border-top: 0;
  color: var(--white);
  font-size: clamp(1.06rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.section {
  padding: clamp(58px, 9vw, 110px) 0;
}

.section-tight {
  padding: clamp(44px, 7vw, 78px) 0;
}

.product-page .section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.product-page .section-tight {
  padding: clamp(54px, 7vw, 88px) 0;
}

.home-page main > :last-child,
.product-page-curved main > :last-child,
.product-page-pocket main > :last-child {
  padding-bottom: clamp(74px, 10vw, 128px);
}

.product-page-core main > :last-child {
  padding-bottom: calc(clamp(74px, 10vw, 128px) - 14px);
}

.inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-title {
  margin: 0 0 28px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.product-page .section-title {
  margin-bottom: clamp(34px, 4vw, 52px);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
}

.product-page .section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(139, 172, 71, 0.46);
}

.hero-home ~ .section .section-title,
.hero-home ~ .section-tight .section-title {
  margin-bottom: clamp(42px, 5vw, 62px);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
}

.hero-home ~ .section .section-title::after,
.hero-home ~ .section-tight .section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(139, 172, 71, 0.58);
}

.home-page .system-section + .section {
  padding-top: clamp(58px, 6.4vw, 82px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.feature-section {
  padding: clamp(44px, 5.4vw, 68px) 0 clamp(54px, 6.2vw, 82px);
  background: var(--blue);
}

.home-page .feature-section .inner {
  width: min(1240px, calc(100% - 40px));
}

.feature-section-heading {
  margin: 0 auto clamp(28px, 3.4vw, 42px);
  text-align: center;
}

.feature-section-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.feature-section-heading span {
  display: block;
  width: 34px;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(139, 172, 71, 0.48);
}

.home-page .feature-section .feature-strip {
  width: min(1240px, 100%);
  margin: 0 auto;
  border-color: rgba(139, 172, 71, 0.62);
  box-shadow: inset 0 0 0 1px rgba(139, 172, 71, 0.08);
}

.home-page .feature-section .feature-item {
  border-right-color: rgba(139, 172, 71, 0.62);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.home-page .feature-section .feature-item:hover {
  background: rgba(7, 44, 82, 0.38);
}

.home-page .feature-section .feature-item img {
  width: 78px;
  height: 78px;
  filter:
    drop-shadow(0.65px 0 0 rgba(139, 172, 71, 0.72))
    drop-shadow(-0.65px 0 0 rgba(139, 172, 71, 0.72))
    drop-shadow(0 0.65px 0 rgba(139, 172, 71, 0.72));
}

.home-page .feature-section + .section-tight {
  padding-top: clamp(52px, 5.8vw, 76px);
}

.home-page.reveal-ready .reveal-section {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.reveal-ready .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page.reveal-ready .feature-section .feature-item {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease;
}

.home-page.reveal-ready .feature-section.is-visible .feature-item {
  opacity: 1;
  transform: translateY(0);
}

.home-page.reveal-ready .feature-section.is-visible .feature-item:nth-child(1) {
  transition-delay: 0.08s;
}

.home-page.reveal-ready .feature-section.is-visible .feature-item:nth-child(2) {
  transition-delay: 0.23s;
}

.home-page.reveal-ready .feature-section.is-visible .feature-item:nth-child(3) {
  transition-delay: 0.38s;
}

.home-page.reveal-ready .feature-section.is-visible .feature-item:nth-child(4) {
  transition-delay: 0.53s;
}

.section-lead {
  max-width: 780px;
  margin: 0 auto 36px;
  color: var(--mist);
  font-size: 1.08rem;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.copy-block p {
  margin: 0 0 18px;
  color: var(--mist);
  font-size: 1.05rem;
}

.copy-block strong {
  color: var(--white);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(139, 172, 71, 0.62);
  margin: clamp(42px, 7vw, 72px) auto 0;
}

.feature-item {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(139, 172, 71, 0.62);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.home-page .feature-section .feature-item img.feature-icon-clean,
.product-page .product-feature-section .feature-item img.feature-icon-clean {
  filter: none;
}

.home-page .feature-section .feature-icon-systemgeometrie {
  transform: scale(1.3);
}

.product-page-core .product-feature-section .core-feature-icon-bautiefen {
  transform: scale(0.95);
}

.product-page-core .product-feature-section .core-feature-icon-oeffnungsgeometrien {
  transform: scale(1.15);
}

.product-page-curved .product-feature-section .curved-feature-icon-radial {
  transform: translateY(2px) scale(1.06);
}

.product-page-curved .product-feature-section .curved-feature-icon-integration {
  transform: translateY(2px) scale(0.98);
}

.feature-item span {
  font-size: 0.88rem;
  line-height: 1.25;
}

.product-page .product-feature-section {
  padding-top: clamp(38px, 5.4vw, 62px);
  padding-bottom: clamp(54px, 6.2vw, 82px);
}

.product-page .product-feature-section .inner {
  width: min(1240px, calc(100% - 40px));
}

.product-page .product-feature-section .feature-strip {
  width: min(1240px, 100%);
  margin: 0 auto;
  border-color: rgba(139, 172, 71, 0.62);
  box-shadow: inset 0 0 0 1px rgba(139, 172, 71, 0.08);
}

.product-page .product-feature-section .feature-item {
  min-height: 170px;
  border-right-color: rgba(139, 172, 71, 0.5);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.product-page .product-feature-section .feature-item:hover {
  background: rgba(7, 44, 82, 0.38);
}

.product-page .product-feature-section .feature-item img {
  width: 80px;
  height: 80px;
  filter:
    drop-shadow(0.55px 0 0 rgba(139, 172, 71, 0.7))
    drop-shadow(-0.55px 0 0 rgba(139, 172, 71, 0.7))
    drop-shadow(0 0.55px 0 rgba(139, 172, 71, 0.7));
}

.product-page .product-feature-section .feature-item span {
  max-width: 170px;
  font-weight: 700;
  color: rgba(217, 226, 234, 0.9);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.product-page .split {
  gap: clamp(34px, 6vw, 90px);
}

.split.reverse {
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
}

.split.reverse .split-media {
  order: 2;
}

.split h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.product-page .split h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.split p {
  color: var(--mist);
  font-size: 1.05rem;
}

.product-page .split p {
  margin: 0;
  color: rgba(217, 226, 234, 0.82);
}

.split p strong {
  color: var(--white);
}

.split-media img {
  width: min(500px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.35));
}

.product-page .split-media {
  border: 1px solid rgba(139, 172, 71, 0.24);
  background: rgba(5, 39, 74, 0.26);
  padding: clamp(14px, 2vw, 22px);
}

.product-page .split-media img {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.3));
}

.product-page-core .core-story-section {
  padding: clamp(64px, 7.4vw, 104px) 0;
}

.product-page-core .core-story-section--start {
  padding-top: clamp(74px, 8vw, 118px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.product-page-core .core-story-section--end {
  padding-bottom: clamp(48px, 5.5vw, 74px);
}

.product-page-core .core-story-section + .core-story-section {
  padding-top: clamp(38px, 5vw, 70px);
}

.product-page-core .core-story-section + .product-feature-section {
  padding-top: clamp(44px, 5.4vw, 68px);
}

.product-page-core .product-feature-section {
  padding-bottom: clamp(54px, 6.2vw, 82px);
}

.product-page-core .product-feature-section + .core-story-section {
  padding-top: clamp(52px, 5.8vw, 76px);
}

.product-page-core .product-feature-section .feature-section-heading {
  margin-bottom: clamp(28px, 3.4vw, 42px);
}

.product-page-core .product-feature-section .feature-item span {
  max-width: none;
  white-space: nowrap;
}

.product-page-core .core-story-split {
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(46px, 6.6vw, 108px);
}

.product-page-core .core-story-split.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
}

.product-page-core .core-story-media {
  display: grid;
  width: min(100%, 540px);
  min-height: clamp(284px, 28vw, 394px);
  padding: clamp(10px, 1vw, 12px);
  justify-self: center;
  place-items: center;
  overflow: hidden;
  border-color: rgba(139, 172, 71, 0.33);
  background:
    linear-gradient(180deg, rgba(5, 39, 74, 0.36), rgba(0, 30, 61, 0.24));
}

.product-page-core .core-story-media img {
  width: auto;
  max-width: 102%;
  max-height: clamp(254px, 26vw, 370px);
  object-fit: contain;
  filter: none;
}

.product-page-core .core-story-media--sleeve img {
  max-width: 102%;
  max-height: clamp(250px, 25vw, 360px);
}

.product-page-core .core-story-media--core-deep img {
  max-width: 102%;
}

.product-page-core .core-story-copy {
  max-width: 590px;
}

.product-page-core .core-story-copy h2 {
  margin-bottom: clamp(16px, 2vw, 24px);
  font-size: clamp(2.05rem, 3.15vw, 3rem);
  line-height: 1.1;
}

.product-page-core .core-story-copy p {
  max-width: 60ch;
  font-size: clamp(1.03rem, 1.08vw, 1.12rem);
  line-height: 1.74;
}

.evolution-box {
  width: min(840px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(139, 172, 71, 0.32);
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
}

.evolution-box img {
  width: 58px;
  margin: 0 auto 20px;
}

.evolution-box h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

.evolution-box p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--mist);
  font-size: 1.08rem;
}

.filter-grid,
.class-grid,
.contact-grid,
.contact-benefits {
  display: grid;
  gap: 18px;
}

.filter-grid {
  grid-template-columns: repeat(5, minmax(110px, 1fr));
}

.class-grid {
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.filter-tile,
.class-tile,
.person-card,
.benefit-tile {
  border: 1px solid rgba(139, 172, 71, 0.36);
  border-radius: 6px;
  background: rgba(3, 38, 74, 0.56);
}

.filter-tile,
.class-tile {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
}

.filter-tile small,
.class-tile small {
  display: block;
  color: var(--muted);
}

.filter-tile strong,
.class-tile strong {
  display: block;
  color: var(--green);
  font-size: 1.3rem;
}

.product-page .filter-grid {
  gap: clamp(12px, 1.6vw, 18px);
}

.product-page .filter-tile {
  min-height: 118px;
  border-color: rgba(139, 172, 71, 0.34);
  border-radius: 0;
  background: rgba(5, 39, 74, 0.42);
}

.product-page .filter-tile small {
  color: rgba(174, 189, 202, 0.72);
}

.product-page .filter-tile strong {
  font-size: 1.24rem;
}

.product-page-core .city-filter-grid {
  grid-template-columns: repeat(7, minmax(112px, 1fr));
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style: none;
}

.product-page-core .city-filter-tile {
  min-height: 154px;
  grid-template-rows: 78px auto auto;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 20px 12px 18px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.product-page-core .city-filter-tile:not(.city-filter-tile--has-icon)::before {
  content: "";
  width: 78px;
  height: 78px;
  display: block;
}

.product-page-core .city-filter-icon {
  width: 78px;
  height: 78px;
  display: block;
  object-fit: contain;
  opacity: 1;
  --city-icon-scale: 1;
  --city-icon-y: 0px;
  --city-icon-zone-y: 2px;
  --city-icon-hover-y: 0px;
  transform: translateY(calc(var(--city-icon-y, 0px) + var(--city-icon-zone-y, 0px) + var(--city-icon-hover-y, 0px))) scale(var(--city-icon-scale, 1));
  transform-origin: center center;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 180ms ease,
    opacity 180ms ease;
}


@media (hover: hover) and (pointer: fine) {
  .product-page-core .city-filter-tile--has-icon:hover {
    border-color: rgba(139, 172, 71, 0.5);
    background: rgba(7, 44, 82, 0.38);
  }

  .product-page-core .city-filter-tile--has-icon:hover .city-filter-icon {
    --city-icon-hover-y: -2px;
    filter: brightness(1.08);
  }
}
.product-page-core .city-filter-icon[src$="city-athen.png"] {
  --city-icon-y: 7px;
}

.product-page-core .city-filter-icon[src$="city-berlin.png"] {
  --city-icon-scale: 1.06;
  --city-icon-y: 4px;
}

.product-page-core .city-filter-icon[src$="city-stockholm.png"] {
  --city-icon-y: 1px;
}

.product-page-core .city-filter-icon[src$="city-amsterdam.png"] {
  --city-icon-scale: 1.04;
  --city-icon-y: 6.4px;
}

.product-page-core .city-filter-icon[src$="city-wien.png"] {
  --city-icon-scale: 0.8;
  --city-icon-y: 0px;
}

.product-page-core .city-filter-icon[src$="city-istanbul.png"] {
  --city-icon-scale: 0.8;
  --city-icon-y: 0;
  --city-icon-y: 1px;
}

.product-page-core .city-filter-icon[src$="city-riga.png"] {
  --city-icon-scale: 0.96;
  --city-icon-y: -2px;
}

.product-page-core .city-filter-icon[src$="city-helsinki.png"] {
  --city-icon-scale: 1.22;
  --city-icon-y: 2px;
}

.product-page-core .city-filter-icon[src$="city-oslo.png"] {
  --city-icon-scale: 0.88;
  --city-icon-y: 3px;
}

.product-page-core .city-filter-icon[src$="city-budapest.png"],
.product-page-core .city-filter-icon[src$="city-glasgow.png"] {
  --city-icon-scale: 0.92;
}

.product-page-core .city-filter-icon[src$="city-budapest.png"] {
  --city-icon-y: 1px;
}

.product-page-core .city-filter-icon[src$="city-glasgow.png"] {
  --city-icon-y: 2px;
}

.product-page-core .city-filter-icon[src$="city-madrid.png"] {
  --city-icon-scale: 1.16;
  --city-icon-y: 5px;
}

.product-page-core .city-filter-icon[src$="city-prag.png"] {
  --city-icon-y: 2px;
}

.product-page-core .city-filter-icon[src$="city-rom.png"] {
  --city-icon-scale: 1.1;
  --city-icon-y: 5px;
}

.product-page-core .city-filter-icon[src$="city-lissabon.png"] {
  --city-icon-scale: 1;
  --city-icon-y: -4px;
}

.product-page-core .city-filter-icon[src$="city-luxemburg.png"] {
  --city-icon-scale: 1.24;
  --city-icon-y: 5px;
}

.product-page-core .city-filter-icon[src$="city-kopenhagen.png"] {
  --city-icon-scale: 1.12;
  --city-icon-y: 2px;
}

.product-page-core .city-filter-icon[src$="city-dublin.png"] {
  --city-icon-scale: 1.44;
  --city-icon-y: 1px;
}

.product-page-core .city-filter-icon[src$="city-monaco.png"] {
  --city-icon-scale: 1.36;
  --city-icon-y: -1px;
}

.product-page-core .city-filter-icon[src$="city-london.png"] {
  --city-icon-scale: 1.04;
  --city-icon-y: 1px;
}

.product-page-core .city-filter-icon[src$="city-paris.png"] {
  --city-icon-scale: 1.08;
  --city-icon-y: -8px;
}

.product-page-core .city-filter-tile small {
  color: rgba(174, 189, 202, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.product-page-core .city-filter-tile strong {
  font-size: 1.34rem;
  line-height: 1;
}

.product-page .product-subsection-title {
  margin-top: 58px;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

html[lang="de"] .product-page-core .product-filter-section .section-title {
  margin-bottom: clamp(42px, 5vw, 62px);
}

.product-page-core .product-filter-section .product-subsection-title {
  margin-top: calc(clamp(54px, 6.2vw, 82px) + clamp(52px, 5.8vw, 76px));
}

.class-icon {
  width: 72px;
  height: 58px;
  margin-bottom: 12px;
  border-top: 8px solid var(--muted);
  background:
    repeating-linear-gradient(90deg, transparent 0 15px, var(--muted) 15px 18px),
    linear-gradient(135deg, transparent 0 48%, var(--muted) 49% 51%, transparent 52%);
  opacity: 0.82;
}

.bullet-list {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.product-page .product-filter-section .bullet-list {
  width: min(800px, 100%);
  max-width: none;
  margin-inline: auto;
  text-align: left;
  transform: none;
}

.bullet-list li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 34px;
  color: var(--mist);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background: url("../icons/haken.svg") center / contain no-repeat;
}

.bullet-list strong {
  color: var(--white);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.person-card {
  padding: 24px;
}

.person-media {
  width: min(230px, 70%);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 30, 61, 0.78);
}

.person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.3rem;
}

.person-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.person-card a {
  display: block;
  margin-top: 8px;
  color: var(--mist);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-tile {
  min-height: 148px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.benefit-tile img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.address-block {
  text-align: center;
}

.address-block h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.address-block p {
  margin: 6px 0;
  color: var(--mist);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(8px, 1vw, 16px) 0;
}

.legal-content h2 {
  margin: clamp(38px, 5vw, 56px) 0 14px;
  color: var(--green);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.25;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content address {
  max-width: 76ch;
  margin: 0 0 16px;
  color: var(--mist);
  font-style: normal;
  line-height: 1.72;
}

.legal-content code {
  color: var(--white);
  font-family: inherit;
  font-size: 0.95em;
}

.legal-placeholder {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 56px);
}

.legal-placeholder p {
  color: var(--mist);
}

.site-footer {
  border-top: 2px solid var(--green);
  padding: 46px 0;
}

.footer-grid {
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  column-gap: 72px;
  row-gap: 28px;
  align-items: start;
}

.footer-mark {
  align-self: start;
  transform: translateY(-8px);
}

.footer-col {
  text-align: left;
}

.footer-mark img {
  width: 84px;
  opacity: 0.5;
}

.footer-title {
  display: block;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 8px;
  color: var(--mist);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a {
  min-height: 24px;
  padding-block: 1px;
}

.footer-social--pending {
  display: inline-flex;
  align-items: center;
}

.footer-social img {
  width: 24px;
}

.home-page .site-footer,
.product-page .site-footer {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 42px;
}

.home-page .site-footer::before,
.product-page .site-footer::before {
  content: "";
  display: block;
  width: min(var(--max), calc(100% - 40px));
  height: 1px;
  margin: 0 auto 46px;
  background: rgba(139, 172, 71, 0.3);
}

.home-page .footer-mark img,
.product-page .footer-mark img {
  width: 116px;
  opacity: 0.22;
}

.home-page .footer-title,
.product-page .footer-title {
  color: rgba(139, 172, 71, 0.78);
}

.home-page .footer-col a,
.home-page .footer-col p,
.product-page .footer-col a,
.product-page .footer-col p {
  color: rgba(217, 226, 234, 0.56);
}

.home-page .footer-col a,
.product-page .footer-col a {
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.home-page .footer-col a:hover,
.home-page .footer-col a:focus-visible,
.product-page .footer-col a:hover,
.product-page .footer-col a:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}

.home-page .footer-social img,
.product-page .footer-social img {
  width: 28px;
  opacity: 0.58;
  transition: opacity 180ms ease, filter 180ms ease;
}

.home-page .footer-social:hover img,
.home-page .footer-social:focus-visible img,
.product-page .footer-social:hover img,
.product-page .footer-social:focus-visible img {
  opacity: 0.86;
  filter: brightness(1.12);
}

.product-page.reveal-ready .reveal-section {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.86s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-page.reveal-ready .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-page.reveal-ready .product-feature-section .feature-item {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease;
}

.product-page.reveal-ready .product-feature-section.is-visible .feature-item {
  opacity: 1;
  transform: translateY(0);
}

.product-page.reveal-ready .product-feature-section.is-visible .feature-item:nth-child(1) {
  transition-delay: 0.04s;
}

.product-page.reveal-ready .product-feature-section.is-visible .feature-item:nth-child(2) {
  transition-delay: 0.12s;
}

.product-page.reveal-ready .product-feature-section.is-visible .feature-item:nth-child(3) {
  transition-delay: 0.2s;
}

.product-page.reveal-ready .product-feature-section.is-visible .feature-item:nth-child(4) {
  transition-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }

  .home-page .hero-title,
  .home-page .hero-sub,
  .product-page-core .product-hero-title,
  .product-page-core .hero-kicker,
  .home-page.reveal-ready .reveal-section,
  .home-page.reveal-ready .reveal-section.is-visible,
  .home-page.reveal-ready .feature-section .feature-item,
  .home-page.reveal-ready .feature-section.is-visible .feature-item,
  .product-page.reveal-ready .reveal-section,
  .product-page.reveal-ready .reveal-section.is-visible,
  .product-page.reveal-ready .product-feature-section .feature-item,
  .product-page.reveal-ready .product-feature-section.is-visible .feature-item {
      opacity: 1;
      animation: none;
      transition: none;
    }

  .product-page-core .product-hero .hero-copy::after {
      animation: none;
      transition: none;
    }

  .home-page .hero-title,
  .home-page .hero-sub,
  .product-page-core .product-hero-title,
  .product-page-core .hero-kicker,
  .home-page.reveal-ready .reveal-section,
  .home-page.reveal-ready .reveal-section.is-visible,
  .home-page.reveal-ready .feature-section .feature-item,
  .home-page.reveal-ready .feature-section.is-visible .feature-item,
  .product-page.reveal-ready .reveal-section,
  .product-page.reveal-ready .reveal-section.is-visible,
  .product-page.reveal-ready .product-feature-section .feature-item,
  .product-page.reveal-ready .product-feature-section.is-visible .feature-item {
      transform: none;
    }

  .home-page .system-product-card,
  .home-page .system-product-card:hover,
  .home-page .system-product-card:focus-visible {
    transform: none;
    transition: none;
  }
  .product-page-core .city-filter-tile,
  .product-page-core .city-filter-icon {
    transition: none;
  }

  .product-page-core .city-filter-tile--has-icon:hover .city-filter-icon {
    --city-icon-hover-y: 0px;
  }
}

@media (min-width: 961px) {
  .hero-home .hero-copy {
    padding-bottom: 0;
  }
}

@media (min-width: 621px) and (max-width: 1280px) {
  .hero-home .hero-copy {
    transform: translate(clamp(8px, 1.2vw, 16px), clamp(4px, 1.8svh, 18px));
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(0, 30, 61, 0.99);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-item {
    padding: 12px 0;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
  }

  .hero-product {
    justify-self: start;
    max-width: 430px;
  }

  .hero-note {
    margin-bottom: 0;
  }

  .product-page .product-hero .hero-inner {
    align-items: center;
    padding-top: clamp(64px, 9vw, 92px);
  }

  .product-page .hero-note {
    max-width: 430px;
  }

  .product-page-core .product-hero .hero-inner {
    gap: clamp(32px, 8vw, 56px);
  }

  .product-page-core .product-hero .hero-copy {
    transform: translateY(clamp(2px, 1svh, 10px));
  }

  .product-page-core .hero-product-stage {
    display: grid;
    justify-items: start;
    min-height: auto;
  }

  .product-page-core .hero-product-stage::before,
  .product-page-core .hero-product-stage::after {
    display: none;
  }

  .product-page-core .product-hero .hero-copy::after {
    width: 72px;
    height: 1px;
    margin-top: 22px;
    opacity: 0.66;
  }

  .product-page-core .hero-product {
    position: static;
    width: min(560px, 100%);
    max-width: 100%;
    transform: none;
    opacity: 0.94;
  }

  .system-section {
    padding-top: clamp(70px, 10vw, 104px);
  }

  .system-product-grid {
    width: min(760px, 100%);
  }

  .system-product-card {
    flex-basis: 240px;
  }

  .system-product-media {
    min-height: 176px;
  }

  .system-product-card--core .system-product-media img {
    max-height: 178px;
  }

  .system-product-card--curved .system-product-media img {
    max-height: 164px;
  }

  .system-product-card--pocket .system-product-media img {
    max-height: 184px;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .product-page-core .core-story-section {
    padding: clamp(48px, 9vw, 76px) 0;
  }

  .product-page-core .core-story-section--start {
    padding-top: clamp(56px, 10vw, 88px);
    padding-bottom: clamp(54px, 6vw, 78px);
  }

  .product-page-core .core-story-section--end {
    padding-bottom: clamp(36px, 8vw, 60px);
  }

  .product-page-core .product-feature-section {
    padding-bottom: clamp(54px, 6.2vw, 82px);
  }

  .product-page-core .product-feature-section + .core-story-section {
    padding-top: clamp(52px, 5.8vw, 76px);
  }

  .product-page-core .core-story-split,
  .product-page-core .core-story-split.reverse {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
  }

  .product-page-core .core-story-media {
    width: 100%;
    min-height: clamp(226px, 50vw, 326px);
    padding: clamp(10px, 3vw, 16px);
  }

  .product-page-core .core-story-media img {
    width: auto;
    max-width: 104%;
    max-height: clamp(202px, 44vw, 294px);
  }

  .product-page-core .core-story-media--sleeve img {
    max-width: 104%;
    max-height: clamp(202px, 44vw, 294px);
  }

  .product-page-core .core-story-copy {
    max-width: 680px;
  }

  .feature-strip,
  .contact-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page .product-feature-section .feature-item:nth-child(2) {
    border-right: 0;
  }

  .filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-page-core .city-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    width: min(720px, calc(100% - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(40px, 8vw, 72px);
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 66px;
  }

  .brand img {
    width: 126px;
  }

  .hero-home {
    min-height: clamp(560px, 76svh, 660px);
  }

  .hero-home .hero-inner {
    min-height: calc(clamp(560px, 76svh, 660px) - var(--header-h));
    padding: 80px 0 104px;
  }

  .hero-home .hero-copy {
    transform: translateY(clamp(2px, 1svh, 10px));
  }

  .hero-home .hero-title {
    font-size: clamp(2rem, 12vw, 4.4rem);
  }

  .system-section {
    padding: 58px 0 72px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .system-product-grid {
    width: min(360px, 100%);
    gap: 16px;
  }

  .system-product-card {
    flex-basis: 100%;
    max-width: none;
    grid-template-rows: 174px auto;
  }

  .system-product-media {
    min-height: 174px;
  }

  .system-product-card--core .system-product-media img {
    max-height: 166px;
  }

  .system-product-card--curved .system-product-media img {
    max-height: 154px;
  }

  .system-product-card--pocket .system-product-media img {
    max-height: 174px;
  }

  .system-product-name {
    padding-bottom: 0;
  }

  .home-page .site-footer::before,
  .product-page .site-footer::before {
    margin-bottom: 36px;
  }

  .home-page .footer-mark img,
  .product-page .footer-mark img {
    width: 104px;
  }

  .product-page .product-hero {
    min-height: auto;
  }

  .product-page .product-hero .hero-inner {
    min-height: auto;
    padding: 92px 0 76px;
  }

  .product-page .hero-product {
    max-width: 360px;
  }

  .product-page .hero-note {
    max-width: none;
  }

  .product-page .product-feature-section .feature-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(139, 172, 71, 0.34);
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .product-page-core .product-hero-title {
    font-size: clamp(3.45rem, 14vw, 4.8rem);
  }

  .product-page-core .core-story-section {
    padding: clamp(42px, 10vw, 64px) 0;
  }

  .product-page-core .core-story-section--start {
    padding-top: clamp(48px, 11vw, 70px);
    padding-bottom: clamp(54px, 6vw, 78px);
  }

  .product-page-core .core-story-section--end {
    padding-bottom: clamp(30px, 8vw, 48px);
  }

  .product-page-core .core-story-section + .product-feature-section {
    padding-top: clamp(44px, 5.4vw, 68px);
  }

  .product-page-core .product-feature-section {
    padding-bottom: clamp(54px, 6.2vw, 82px);
  }

  .product-page-core .product-feature-section + .core-story-section {
    padding-top: clamp(52px, 5.8vw, 76px);
  }

  .product-page-core .core-story-media {
    min-height: clamp(210px, 62vw, 284px);
  }

  .product-page-core .core-story-media img {
    width: auto;
    max-width: 106%;
    max-height: clamp(188px, 54vw, 256px);
  }

  .product-page-core .core-story-media--sleeve img {
    max-width: 106%;
    max-height: clamp(188px, 54vw, 256px);
  }

  .product-page-core .core-story-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .product-page-core .core-story-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .feature-strip,
  .filter-grid,
  .class-grid,
  .contact-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-page-core .city-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    width: min(360px, calc(100% - 40px));
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid rgba(139, 172, 71, 0.62);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .person-media {
    width: min(210px, 78%);
  }
}





/* Override the desktop home grid with matching specificity on small screens. */
@media (max-width: 960px) {
  .hero-home .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-home .hero-copy {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
