:root {
  --turquoise: #38c2dc;
  --turquoise-bright: #67d8e8;
  --petrol: #1f6675;
  --petrol-mid: #174d5a;
  --petrol-dark: #0b303a;
  --petrol-black: #061d24;
  --red: #c64d49;
  --paper: #f4f2eb;
  --paper-dark: #e8e5dc;
  --white: #ffffff;
  --ink: #15252a;
  --muted: #53666c;
  --line: rgba(21, 37, 42, 0.14);
  --container: min(1240px, calc(100vw - 48px));
  --shadow: 0 34px 100px rgba(4, 24, 29, 0.24);
  --review-banner-height: 0px;
  --header-height: 98px;
  --anchor-offset: calc(var(--review-banner-height) + var(--header-height) + 24px);
}

body.review-mode {
  --review-banner-height: 34px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--red);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--ink);
  border-bottom: 1px solid rgba(21, 37, 42, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(6, 29, 36, 0.07);
  backdrop-filter: blur(16px);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.review-banner {
  position: fixed;
  z-index: 180;
  top: 0;
  right: 0;
  left: 0;
  min-height: 34px;
  padding: 7px 24px;
  color: var(--petrol-dark);
  background: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.review-banner strong {
  font-weight: 900;
}

.review-banner span {
  opacity: 0.78;
}

.site-header.review-offset {
  top: var(--review-banner-height);
}

.site-header.is-scrolled,
.legal-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 42px rgba(6, 29, 36, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand-original {
  width: 102px;
  height: 96px;
  padding: 0;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  background: transparent;
}

.brand-original img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-navigation a {
  position: relative;
  color: inherit;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.primary-navigation > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-navigation > a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 156px;
  padding: 14px 22px;
  color: var(--petrol-dark) !important;
  background: var(--turquoise);
  box-shadow: 0 10px 26px rgba(22, 123, 143, 0.2);
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  background: var(--turquoise-bright);
  box-shadow: 0 14px 32px rgba(22, 123, 143, 0.28);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle > span:not(.sr-only) {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-cinematic {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--petrol-black);
}

.hero-cinematic-media,
.hero-cinematic-shade,
.hero-grid-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cinematic-media {
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-cinematic-shade {
  background:
    linear-gradient(90deg, rgba(3, 18, 23, 0.94) 0%, rgba(5, 27, 34, 0.76) 40%, rgba(5, 27, 34, 0.16) 70%, rgba(5, 27, 34, 0.22) 100%),
    linear-gradient(180deg, rgba(4, 22, 27, 0.2), rgba(4, 22, 27, 0.62));
}

.hero-grid-lines {
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.12) 25%),
    repeating-linear-gradient(0deg, transparent 0, transparent 159px, rgba(255, 255, 255, 0.07) 160px);
}

.hero-cinematic-inner {
  position: relative;
  z-index: 3;
  min-height: 900px;
  padding-top: 214px;
  padding-bottom: 145px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.25fr);
  align-items: center;
  gap: 80px;
}

.hero-cinematic-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--petrol);
}

.hero-cinematic h1,
.section h2,
.direct-product-section h2,
.legal-main h1,
.error-main h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 790;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.hero-cinematic h1 span {
  color: var(--turquoise);
}

.hero-cinematic h1 {
  max-width: 930px;
  font-size: clamp(48px, 5.7vw, 86px);
  line-height: 0.94;
}

.hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.button-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 58px;
  padding: 16px 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--petrol-dark);
  background: var(--turquoise);
}

.button-primary:hover {
  background: var(--turquoise-bright);
}

.button-shop {
  position: relative;
  min-width: 240px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(56, 194, 220, 0.3);
}

.button-shop::before {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -35%;
  width: 22%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(18deg) translateX(-220%);
  animation: shop-glint 5.5s ease-in-out infinite;
}

@keyframes shop-glint {
  0%, 58% { transform: rotate(18deg) translateX(-220%); }
  78%, 100% { transform: rotate(18deg) translateX(780%); }
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
}

.button-outline-dark {
  color: var(--petrol-dark);
  border-color: rgba(11, 48, 58, 0.35);
  background: transparent;
}

.button-outline-dark:hover {
  border-color: var(--petrol);
  background: rgba(31, 102, 117, 0.08);
}

.hero-cinematic-index {
  align-self: end;
  margin-bottom: 45px;
  padding: 24px 0 24px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  display: grid;
  gap: 12px;
}

.hero-cinematic-index span,
.hero-cinematic-index small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-cinematic-index strong {
  font-size: 24px;
  line-height: 1.2;
}

.hero-cinematic-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(5, 27, 34, 0.62);
  backdrop-filter: blur(14px);
}

.hero-cinematic-bottom .container {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.hero-cinematic-bottom span {
  padding-inline: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-cinematic-bottom span:last-child {
  border-right: 0;
}

@keyframes hero-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.065); }
}

.intro-band {
  color: var(--white);
  background: var(--petrol);
}

.intro-band-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr;
}

.intro-band-grid > * {
  min-height: 155px;
  margin: 0;
  padding: 32px clamp(24px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  align-content: center;
}

.intro-band-grid > *:last-child {
  border-right: 0;
}

.intro-band-grid p {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.2;
}

.intro-band-grid p strong {
  color: var(--turquoise-bright);
}

.intro-band-grid div {
  grid-template-columns: 32px 1fr;
  gap: 2px 12px;
}

.intro-band-grid div span {
  grid-row: 1 / span 2;
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 820;
}

.intro-band-grid div strong {
  font-size: 16px;
}

.intro-band-grid div small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.section {
  padding-block: clamp(94px, 10vw, 150px);
}

.application-editorial {
  background: var(--paper);
}

.editorial-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.editorial-heading h2,
.film-copy h2,
.advice-heading h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.editorial-heading > div:last-child p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.editorial-heading > div:last-child span {
  color: var(--petrol);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.application-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 330px 330px 390px;
  gap: 18px;
}

.application-tile {
  position: relative;
  min-height: 0;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--petrol-dark);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  text-decoration: none;
  isolation: isolate;
}

.application-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 25, 31, 0.04) 24%, rgba(4, 25, 31, 0.9));
}

.application-tile img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 350ms ease;
}

.application-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.tile-feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.tile-feature img {
  object-position: 58% center;
}

.tile-wand {
  grid-column: auto;
}

.tile-index {
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.application-tile small {
  color: var(--turquoise-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-tile h3 {
  margin: 4px 0 2px;
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1;
}

.application-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.application-tile > b {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visualization-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.direct-product-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 40%, rgba(103, 216, 232, 0.2), transparent 34%),
    linear-gradient(145deg, #174d5a, var(--petrol-dark));
}

.direct-product-section::before {
  content: "WO–WE";
  position: absolute;
  right: -3vw;
  bottom: -7vw;
  color: rgba(255, 255, 255, 0.025);
  font-size: 24vw;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.direct-product-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(450px, 1.2fr);
  align-items: center;
  gap: 70px;
}

.direct-product-copy {
  padding-block: 100px;
}

.direct-product-section h2 {
  font-size: clamp(50px, 5.5vw, 80px);
}

.direct-product-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.direct-product-copy ul {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.direct-product-copy li {
  min-height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.direct-product-copy li span {
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 800;
}

.direct-product-copy li strong {
  font-size: 16px;
}

.text-link {
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--petrol);
  font-weight: 760;
  text-decoration: none;
}

.text-link.light {
  color: var(--turquoise-bright);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.direct-shop-button {
  margin-top: 34px;
  min-width: 245px;
}

.shop-operator-note {
  max-width: 620px;
  margin-top: 18px;
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.product-stage {
  position: relative;
  min-height: 760px;
}

.product-glow {
  position: absolute;
  top: 18%;
  right: 1%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(56, 194, 220, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(56, 194, 220, 0.11), 0 0 120px rgba(56, 194, 220, 0.08);
}

.product-bucket {
  --move-x: 0px;
  --move-y: 0px;
  position: absolute;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 42px 45px rgba(0, 0, 0, 0.42));
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 260ms ease-out;
}

.product-bucket-back {
  z-index: 1;
  top: 10%;
  right: -2%;
  width: 43%;
  opacity: 0.75;
}

.product-bucket-left {
  z-index: 2;
  bottom: 8%;
  left: 2%;
  width: 49%;
}

.product-bucket-main {
  z-index: 3;
  right: 8%;
  bottom: 3%;
  width: 55%;
}

.product-note {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 10%;
  width: 190px;
  padding: 20px;
  color: var(--petrol-dark);
  background: var(--turquoise);
  display: grid;
}

.product-note span,
.product-note small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-note strong {
  margin-block: 4px;
  font-size: 28px;
}

.product-visual-stage {
  --stage-rotate-x: 0deg;
  --stage-rotate-y: 0deg;
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  perspective: 1300px;
}

.product-visual-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -8% 5% 10%;
  border: 1px solid rgba(103, 216, 232, 0.25);
  background: radial-gradient(circle at 25% 35%, rgba(103, 216, 232, 0.16), transparent 50%);
  transform: translate(24px, 24px);
}

.product-visual-frame {
  position: relative;
  width: 112%;
  margin-left: -6%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 45px 100px rgba(2, 18, 23, 0.46);
  transform: rotateX(var(--stage-rotate-x)) rotateY(var(--stage-rotate-y));
  transform-style: preserve-3d;
  transition: transform 450ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.product-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.025);
  animation: product-visual-breathe 13s ease-in-out infinite alternate;
}

.product-visual-sheen,
.product-visual-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-visual-sheen {
  width: 38%;
  left: -48%;
  background: linear-gradient(105deg, transparent 0%, rgba(103, 216, 232, 0.02) 36%, rgba(103, 216, 232, 0.2) 50%, rgba(255, 255, 255, 0.08) 55%, transparent 72%);
  filter: blur(10px);
  animation: product-visual-sheen 10s ease-in-out infinite;
}

.product-visual-vignette {
  background: linear-gradient(90deg, rgba(3, 18, 23, 0.18), transparent 30%, transparent 72%, rgba(3, 18, 23, 0.18));
}

.product-visual-note {
  position: absolute;
  z-index: 4;
  right: -3%;
  bottom: 3%;
  width: min(310px, 45%);
  padding: 18px 20px;
  color: var(--petrol-dark);
  background: rgba(103, 216, 232, 0.94);
  box-shadow: 0 18px 45px rgba(2, 18, 23, 0.22);
  backdrop-filter: blur(10px);
  display: grid;
}

.product-visual-note span,
.product-visual-note small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-visual-note strong {
  margin-block: 4px;
  font-size: 24px;
  line-height: 1.05;
}

@keyframes product-visual-breathe {
  from { transform: scale(1.025) translate3d(-0.25%, 0, 0); }
  to { transform: scale(1.065) translate3d(0.5%, -0.4%, 0); }
}

@keyframes product-visual-sheen {
  0%, 18% { transform: translateX(0); opacity: 0; }
  28% { opacity: 0.75; }
  58%, 100% { transform: translateX(410%); opacity: 0; }
}

.film-section {
  background: var(--paper-dark);
}

.film-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.film-copy h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.film-copy > p:not(.eyebrow) {
  color: #455a60;
  font-size: 18px;
}

.film-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--petrol-dark);
  box-shadow: var(--shadow);
}

.film-frame > img,
.film-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-frame video {
  z-index: 2;
  opacity: 0;
  transition: opacity 700ms ease;
}

.film-frame.video-ready video {
  opacity: 1;
}

.film-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 24, 30, 0.72));
}

.film-label {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 28px;
  left: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-toggle {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(5, 27, 34, 0.5);
  backdrop-filter: blur(10px);
}

.film-toggle span::before,
.film-toggle span::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 3px;
  height: 16px;
  background: currentColor;
}

.film-toggle span::before { left: 19px; }
.film-toggle span::after { right: 19px; }

.film-toggle[aria-label="Video abspielen"] span::before {
  top: 16px;
  left: 20px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  background: transparent;
}

.film-toggle[aria-label="Video abspielen"] span::after {
  display: none;
}

.advice-section {
  color: var(--white);
  background: var(--petrol-dark);
}

.advice-heading {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.advice-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.advice-card {
  min-height: 540px;
  overflow: hidden;
  background: var(--petrol-black);
  display: grid;
  grid-template-rows: 210px 1fr;
}

.advice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advice-card > div {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.advice-card span {
  color: var(--turquoise);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.advice-card h3 {
  margin: 25px 0 14px;
  font-size: 29px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.advice-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.advice-card a {
  margin-top: auto;
  padding-top: 26px;
  color: var(--turquoise-bright);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-section {
  color: var(--white);
  background: var(--petrol);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.contact-grid > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-actions > a {
  min-height: 96px;
  padding-inline: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  grid-template-columns: 100px 1fr 30px;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.contact-actions > a:hover,
.contact-actions > a.contact-shop {
  color: var(--petrol-dark);
  background: var(--turquoise);
}

.contact-actions small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: 19px;
}

.contact-actions span {
  font-size: 22px;
}

.site-footer {
  padding-top: 0;
  color: rgba(255, 255, 255, 0.65);
  background: var(--petrol-black);
}

.footer-topline {
  padding-block: 38px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  width: 190px;
  height: 190px;
  padding: 0;
  display: block;
  background: transparent;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-topline p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  text-align: right;
}

.footer-grid {
  padding-block: 56px;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 70px;
}

.footer-label {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div > a,
.footer-grid > div > p {
  margin: 0 0 9px;
  display: block;
  color: rgba(255, 255, 255, 0.63);
  text-decoration: none;
}

.footer-grid > div > a:hover,
.footer-bottom a:hover {
  color: var(--turquoise);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.social-links a {
  min-height: 105px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: space-between;
  gap: 2px 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: var(--white);
  border-color: rgba(103, 216, 232, 0.75);
  background: rgba(56, 194, 220, 0.08);
  transform: translateY(-3px);
}

.social-links .social-icon {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  color: var(--petrol-dark);
  background: var(--turquoise);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.social-links b {
  color: var(--white);
  font-size: 13px;
}

.social-links small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  padding-block: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.legal-main,
.error-main {
  min-height: 70vh;
  padding: 170px 0 110px;
}

.legal-shell {
  max-width: 900px;
}

.legal-review-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-review-navigation a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.legal-review-note {
  border-left: 5px solid var(--turquoise);
}

.legal-main h1,
.error-main h1 {
  color: var(--petrol-dark);
  font-size: clamp(48px, 7vw, 86px);
}

.legal-block {
  margin-top: 50px;
  padding: 38px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(11, 39, 45, 0.08);
}

.legal-block h2 {
  margin: 0 0 22px;
  color: var(--petrol);
  font-size: 26px;
}

.legal-block a {
  color: var(--petrol);
  font-weight: 650;
}

.anchor-target {
  scroll-margin-top: 125px;
}

.error-main {
  display: grid;
  align-items: center;
}

.error-copy {
  max-width: 850px;
}

.error-copy p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 20px;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .js .menu-toggle {
    display: flex;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    padding: 30px 24px 38px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 50px rgba(7, 30, 35, 0.15);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .js .primary-navigation {
    display: none;
  }

  .js .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    padding: 8px 4px;
    font-size: 17px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-cinematic-inner,
  .direct-product-grid {
    grid-template-columns: 1fr;
  }

  .hero-cinematic-index {
    display: none;
  }

  .application-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 560px repeat(3, 340px);
  }

  .tile-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .tile-wand {
    grid-column: auto;
  }

  .direct-product-grid {
    gap: 0;
  }

  .direct-product-copy {
    padding: 100px 0 0;
  }

  .product-stage {
    min-height: 680px;
  }

  .product-visual-stage {
    min-height: 620px;
    padding-block: 40px 70px;
  }

  .film-grid,
  .advice-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .film-grid,
  .contact-grid {
    gap: 60px;
  }

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

  .advice-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1240px);
    --header-height: 88px;
  }

  body.review-mode {
    --review-banner-height: 50px;
  }

  body {
    font-size: 16px;
  }

  .nav-shell {
    min-height: 88px;
  }

  .brand-original {
    width: 82px;
    height: 82px;
  }

  .review-banner {
    min-height: 50px;
    padding: 6px 12px;
    gap: 2px;
    flex-direction: column;
    line-height: 1.25;
  }

  .site-header.review-offset {
    top: 50px;
  }

  .hero-cinematic,
  .hero-cinematic-inner {
    min-height: 820px;
  }

  .hero-cinematic-media {
    object-position: 57% center;
  }

  .hero-cinematic-shade {
    background: linear-gradient(180deg, rgba(3, 18, 23, 0.74) 0%, rgba(3, 18, 23, 0.91) 68%, rgba(3, 18, 23, 0.96) 100%);
  }

  .hero-cinematic-inner {
    padding-top: 182px;
    padding-bottom: 155px;
    align-items: end;
  }

  .hero-cinematic h1 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-cinematic-bottom .container {
    min-height: 92px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 4px;
  }

  .hero-cinematic-bottom span {
    padding: 0;
    border: 0;
    font-size: 9px;
    text-align: left;
  }

  .intro-band-grid,
  .editorial-heading,
  .application-mosaic,
  .advice-heading,
  .advice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-band-grid > * {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .editorial-heading,
  .advice-heading {
    gap: 28px;
  }

  .editorial-heading h2,
  .film-copy h2,
  .advice-heading h2,
  .contact-grid h2 {
    min-width: 0;
    font-size: clamp(32px, 10vw, 45px);
  }

  .application-mosaic {
    grid-template-rows: none;
  }

  .application-tile,
  .tile-feature,
  .tile-wand {
    min-height: 310px;
    grid-column: auto;
    grid-row: auto;
  }

  .application-tile {
    padding: 23px;
  }

  .application-tile h3 {
    font-size: 34px;
  }

  .direct-product-section h2 {
    font-size: 48px;
  }

  .product-stage {
    min-height: 540px;
    margin-inline: -14px;
  }

  .product-visual-stage {
    min-height: 420px;
    margin-inline: -14px;
    padding-block: 24px 62px;
  }

  .product-visual-frame {
    width: 100%;
    margin-left: 0;
  }

  .product-visual-note {
    right: 12px;
    bottom: 20px;
    width: min(270px, 78%);
    padding: 14px 16px;
  }

  .product-visual-note strong {
    font-size: 20px;
  }

  .product-bucket-back {
    top: 12%;
    right: -4%;
    width: 48%;
  }

  .product-bucket-left {
    left: 0;
    width: 52%;
  }

  .product-bucket-main {
    right: 5%;
    width: 59%;
  }

  .product-note {
    right: 0;
    bottom: 4%;
    width: 155px;
    padding: 15px;
  }

  .film-frame {
    min-height: 350px;
  }

  .advice-card,
  .advice-card:last-child {
    min-height: 510px;
    grid-column: auto;
  }

  .contact-actions > a {
    min-height: 90px;
    padding-inline: 15px;
    grid-template-columns: 70px 1fr 22px;
  }

  .contact-actions strong {
    font-size: 15px;
  }

  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-topline p {
    text-align: left;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-links a {
    min-height: 80px;
  }

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

  .legal-main,
  .error-main {
    padding-top: 140px;
  }

  .legal-block {
    padding: 26px 22px;
  }
}

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

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

  .film-frame video,
  .film-toggle {
    display: none;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .product-visual-image,
  .product-visual-sheen {
    animation: none;
  }

  .product-visual-frame {
    transform: none;
  }
}
