@font-face {
  font-family: "OsmoDisplay";
  src: url("/fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;

  --color-black: #030607;
  --color-ink: #070b0d;
  --color-panel: rgba(7, 13, 15, 0.78);
  --color-white: #f7f8f4;
  --color-muted: rgba(247, 248, 244, 0.72);
  --color-soft: rgba(247, 248, 244, 0.48);
  --color-line: rgba(45, 216, 202, 0.58);
  --color-teal: #20d4c5;
  --color-teal-deep: #0a706c;
  --color-warm: #c7a77c;
  --color-steel: #8da0a2;

  --font-display: "OsmoDisplay", "Impact", "Bahnschrift Condensed", "Bahnschrift", "Arial Narrow", sans-serif;
  --font-body: "Aptos", "Segoe UI", system-ui, sans-serif;

  --layout-mobile-max: 480px;
  --header-height: clamp(4.9rem, 17cqw, 5.65rem);
  --screen-pad-x: clamp(1.35rem, 6vw, 2rem);
  --screen-pad-y: clamp(2rem, 7vw, 3rem);

  --tracking-wide: 0.16em;
  --radius-panel: 8px;
  --duration-fast: 160ms;
  --duration-base: 260ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 216, 202, 0.08), transparent 34rem),
    linear-gradient(90deg, #0d1010, #151817 52%, #0b0d0d);
  color: var(--color-white);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-body);
  background: transparent;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  /* Eigene Compositor-Ebene: verhindert Repaints bei jedem Scroll-Frame */
  will-change: transform;
  transform: translateZ(0);
}

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

button,
summary {
  font: inherit;
}

.site-shell {
  position: relative;
  container-type: inline-size;
  width: min(100%, var(--layout-mobile-max));
  min-height: 100vh;
  margin-inline: auto;
  overflow: hidden;
  background: var(--color-black);
}

@media (min-width: 520px) {
  body {
    padding-block: 24px;
  }

  .site-shell {
    border: 1px solid rgba(45, 216, 202, 0.16);
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.04);
  }
}

.screen {
  --screen-width: min(100vw, var(--layout-mobile-max));
  position: relative;
  display: flex;
  width: 100%;
  min-height: calc(var(--screen-width) * 16 / 9);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 216, 202, 0.08), transparent 19rem),
    var(--color-black);
  border-block-end: 1px solid rgba(45, 216, 202, 0.16);
}

.screen__content,
.screen__shade {
  position: relative;
  z-index: 2;
}

.screen__content {
  display: flex;
  width: 100%;
  min-height: inherit;
  flex-direction: column;
  padding: clamp(7.2rem, 28vw, 9.5rem) var(--screen-pad-x) var(--screen-pad-y);
}

.screen__bottom {
  margin-top: auto;
}

.screen__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.98) 0%, rgba(3, 6, 7, 0.72) 54%, rgba(3, 6, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, 0.18), rgba(3, 6, 7, 0.82) 84%, rgba(3, 6, 7, 0.98));
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: clamp(1.05rem, 4.7cqw, 1.55rem) var(--screen-pad-x) 0.65rem;
  pointer-events: none;
}

.wordmark {
  display: block;
  width: min(16.25rem, 55cqw);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(32, 212, 197, 0.18));
  pointer-events: auto;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.header-language-switch {
  position: fixed;
  top: clamp(1.05rem, 4.7cqw, 1.55rem);
  right: max(
    calc(var(--screen-pad-x) + 52px),
    calc((100vw - var(--layout-mobile-max)) / 2 + var(--screen-pad-x) + 52px)
  );
  z-index: 34;
  display: flex;
  min-height: 46px;
  align-items: center;
  pointer-events: auto;
}

.header-language-switch__link {
  display: grid;
  min-width: 42px;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(45, 216, 202, 0.5);
  background: rgba(3, 6, 7, 0.88);
  color: var(--color-teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.header-language-switch__link:hover {
  border-color: var(--color-teal);
  background: rgba(32, 212, 197, 0.12);
  color: var(--color-white);
}

.header-language-switch__link:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.menu-button {
  position: fixed;
  top: clamp(1.05rem, 4.7cqw, 1.55rem);
  right: max(var(--screen-pad-x), calc((100vw - var(--layout-mobile-max)) / 2 + var(--screen-pad-x)));
  z-index: 35;
  display: flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.menu-button span {
  width: 28px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.menu-button[aria-expanded="true"] span {
  background: var(--color-teal);
}

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

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

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

.menu-overlay {
  position: fixed;
  inset: 0 auto 0 50%;
  z-index: 32;
  width: min(100vw, var(--layout-mobile-max));
  min-height: 100svh;
  padding: calc(var(--header-height) + 2.4rem) var(--screen-pad-x) 2.4rem;
  overflow-y: auto;
  background:
    radial-gradient(circle at 72% 18%, rgba(32, 212, 197, 0.16), transparent 13rem),
    linear-gradient(180deg, rgba(3, 6, 7, 0.98), rgba(2, 8, 9, 0.97));
  border-inline: 1px solid rgba(45, 216, 202, 0.18);
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.72);
  transform: translateX(-50%);
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.menu-overlay__inner {
  position: relative;
  display: grid;
  gap: clamp(0.7rem, 3vw, 1rem);
}

.menu-overlay__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-teal);
  font-size: clamp(0.88rem, 4vw, 1.08rem);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.menu-overlay a {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 216, 202, 0.24);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9.4cqw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.menu-overlay a::after {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--color-teal);
  box-shadow: 10px 0 0 -4px var(--color-teal);
}

.menu-overlay a:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.menu-overlay a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.menu-overlay__language-panel {
  display: grid;
  gap: 0.65rem;
  padding: clamp(0.8rem, 3.4vw, 1rem);
  border: 1px solid rgba(45, 216, 202, 0.24);
  margin-top: clamp(1.1rem, 4.4vw, 1.6rem);
  background: rgba(7, 13, 15, 0.56);
}

.menu-overlay__language-label {
  margin: 0;
  color: rgba(247, 248, 244, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-overlay__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.menu-overlay a.menu-overlay__language {
  min-width: 58px;
  min-height: 48px;
  justify-content: center;
  padding: 0.2rem 1rem;
  border: 1px solid rgba(45, 216, 202, 0.28);
  color: rgba(247, 248, 244, 0.74);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.menu-overlay a.menu-overlay__language::after {
  display: none;
}

.menu-overlay a.menu-overlay__language.is-active {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.menu-is-open body {
  overflow: hidden;
}

.menu-is-open .header-language-switch {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.screen__eyebrow-block {
  margin-bottom: clamp(1.7rem, 7vw, 2.55rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-teal);
  font-size: clamp(0.9rem, 4.2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  line-height: 1;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 15cqw, 5.2rem);
  font-stretch: condensed;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 10px 34px rgba(0, 0, 0, 0.48);
}

.display span {
  display: block;
}

.registered-mark {
  display: inline-block;
  margin-inline-start: 0.03em;
  font-family: var(--font-body);
  font-size: 0.68em;
  line-height: 0;
  text-transform: none;
  vertical-align: super;
  transform: translateY(-0.1em);
}

.registered-word {
  white-space: nowrap;
}

.display .registered-mark {
  margin-inline-start: 0.02em;
  font-size: 0.36em;
  transform: translateY(-0.3em);
}

.display--hero {
  margin-top: clamp(2.6rem, 13vw, 4.7rem);
  font-size: clamp(3.9rem, 20cqw, 6.15rem);
}

.display--compact {
  font-size: clamp(3.8rem, 18cqw, 6.1rem);
}

.display__accent {
  margin-top: 0.35em;
  color: var(--color-teal);
  text-shadow: 0 0 24px rgba(32, 212, 197, 0.22);
}

.lede {
  max-width: 18rem;
  margin: clamp(1.2rem, 5vw, 1.85rem) 0 1.25rem;
  color: var(--color-white);
  font-size: clamp(1.25rem, 5.4vw, 1.85rem);
  font-weight: 380;
  letter-spacing: 0;
  line-height: 1.18;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.lede__accent {
  color: var(--color-teal);
}

.lede__line {
  display: block;
}

.lede--small {
  margin-top: auto;
  font-size: clamp(1.1rem, 4.8vw, 1.55rem);
}

.tech-line {
  display: flex;
  width: min(18rem, 72vw);
  align-items: center;
  gap: 0.85rem;
  color: var(--color-teal);
}

.tech-line--long {
  width: min(23rem, 86vw);
}

.tech-line__plus {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.tech-line__plus::before,
.tech-line__plus::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.tech-line__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.tech-line__rule {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, currentColor, rgba(32, 212, 197, 0.55), transparent);
}

.tech-line__rule::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 18px;
  content: "";
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: skewX(-42deg) translateY(1px);
  transform-origin: bottom right;
}

.tech-line__rule span {
  position: absolute;
  top: -1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.tech-line__rule span:nth-child(1) {
  left: 28%;
}

.tech-line__rule span:nth-child(2) {
  left: 52%;
}

.tech-line__rule span:nth-child(3) {
  left: 76%;
}

.cta-button,
.screen-link {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-height: 76px;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  padding: 0 clamp(1.35rem, 5.6cqw, 2rem);
  border: 1px solid var(--color-line);
  margin-top: clamp(1.8rem, 9vw, 3.2rem);
  background: rgba(2, 9, 10, 0.44);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  color: var(--color-white);
  font-size: clamp(1.15rem, 5.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  transition: border-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.cta-button span:first-child,
.screen-link__label {
  min-width: 0;
  overflow-wrap: break-word;
}

.cta-button:focus-visible,
.screen-link:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.cta-button:hover,
.screen-link:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.cta-button__arrow,
.screen-link__arrow {
  position: relative;
  width: clamp(34px, 10cqw, 42px);
  min-width: 0;
  height: 1px;
  justify-self: end;
  background: currentColor;
}

.cta-button__arrow::before,
.cta-button__arrow::after,
.screen-link__arrow::before,
.screen-link__arrow::after {
  position: absolute;
  right: 0;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: right center;
}

.cta-button__arrow::before,
.screen-link__arrow::before {
  transform: rotate(42deg);
}

.cta-button__arrow::after,
.screen-link__arrow::after {
  transform: rotate(-42deg);
}

.media-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(199, 167, 124, 0.16), transparent 14rem),
    radial-gradient(circle at 84% 72%, rgba(32, 212, 197, 0.08), transparent 18rem);
}

.media-slot::before,
.media-slot::after {
  position: absolute;
  content: "";
}

.media-slot__label {
  position: absolute;
  right: var(--screen-pad-x);
  bottom: 2rem;
  color: rgba(247, 248, 244, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.screen[data-visual="athlete"] .media-slot::before,
.screen[data-visual="moments"] .media-slot::before {
  right: -9rem;
  bottom: 3rem;
  width: 26rem;
  height: 38rem;
  border-radius: 44% 44% 20% 20%;
  background:
    radial-gradient(circle at 56% 18%, rgba(247, 248, 244, 0.18), transparent 3rem),
    linear-gradient(115deg, transparent 0 28%, rgba(247, 248, 244, 0.11) 29%, transparent 52%),
    linear-gradient(155deg, rgba(199, 167, 124, 0.32), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.76));
  filter: blur(0.2px);
  opacity: 0.82;
  transform: rotate(10deg);
}

.screen[data-visual="athlete"] .media-slot::after,
.screen[data-visual="moments"] .media-slot::after {
  right: -2rem;
  bottom: 16rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), rgba(199, 167, 124, 0.14) 24%, transparent 62%);
  filter: blur(18px);
}

.screen--hero .media-slot::before,
.screen--hero .media-slot::after {
  display: none;
}

.screen--hero {
  touch-action: pan-y;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.screen-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen--hero .media-slot__label {
  display: none;
}

.screen--hero .screen__shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.2) 0%, rgba(3, 6, 7, 0.16) 44%, rgba(3, 6, 7, 0.06) 78%, rgba(3, 6, 7, 0.03) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, 0.03) 0%, rgba(3, 6, 7, 0.06) 42%, rgba(3, 6, 7, 0.2) 100%);
}

.screen--hero .screen__content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding-bottom: clamp(2rem, 7svh, 3.25rem);
}

.screen--hero,
.screen--product {
  min-height: clamp(
    calc(var(--screen-width) * 16 / 9),
    100svh,
    calc(var(--screen-width) * 20.25 / 9)
  );
}

.hero-kicker {
  align-self: start;
}

.hero-kicker .tech-line--long {
  width: min(11rem, 34cqw);
}

.hero-copy-list {
  grid-row: 2;
  display: grid;
  align-self: end;
  width: 100%;
}

.hero-copy {
  grid-area: 1 / 1;
  position: relative;
  align-self: end;
  width: 100%;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0.85rem);
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.hero-copy::before {
  position: absolute;
  inset: clamp(-0.75rem, -2cqw, -0.55rem) clamp(-0.85rem, -2.5cqw, -0.6rem) clamp(-0.9rem, -2.8cqw, -0.65rem) clamp(-0.65rem, -2cqw, -0.45rem);
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.58), rgba(3, 6, 7, 0.32) 58%, rgba(3, 6, 7, 0)),
    radial-gradient(circle at 12% 46%, rgba(3, 6, 7, 0.46), rgba(3, 6, 7, 0) 66%);
  filter: blur(10px);
}

.hero-copy.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.screen--hero .display--hero {
  max-width: min(21rem, 78cqw);
  margin-top: 0;
  font-size: clamp(3.45rem, 17cqw, 5.25rem);
}

.screen--hero .lede {
  margin: clamp(0.85rem, 3.2vw, 1.2rem) 0 0.65rem;
  font-size: clamp(1.12rem, 4.7cqw, 1.5rem);
}

.screen--hero .hero-copy > .tech-line {
  width: min(17rem, 58vw);
}

.screen--hero .cta-button {
  width: calc(100cqw - var(--screen-pad-x) - var(--screen-pad-x) - clamp(1rem, 4cqw, 1.4rem));
  max-width: none;
  margin-top: clamp(0.95rem, 3.8vw, 1.35rem);
}

.hero-slider__controls {
  position: absolute;
  right: var(--screen-pad-x);
  bottom: clamp(0.8rem, 2.7vw, 1.15rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-slider__pause {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(32, 212, 197, 0.58);
  border-radius: 999px;
  background: rgba(3, 6, 7, 0.36);
  color: var(--color-teal);
  cursor: pointer;
}

.hero-slider__pause::before {
  width: 10px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
  content: "";
}

.hero-slider__pause.is-paused::before {
  width: 0;
  height: 0;
  border-block: 6px solid transparent;
  border-inline-start: 10px solid currentColor;
  border-inline-end: 0;
}

.hero-slider__dots {
  display: flex;
  gap: 0.1rem;
}

.hero-slider__dot {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero-slider__dot::before {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(32, 212, 197, 0.72);
  border-radius: inherit;
  content: "";
  background: rgba(3, 6, 7, 0.42);
  box-shadow: 0 0 14px rgba(32, 212, 197, 0.22);
}

.hero-slider__dot.is-active::before {
  background: var(--color-teal);
  box-shadow: 0 0 18px rgba(32, 212, 197, 0.5);
}

.hero-slider__pause:focus-visible,
.hero-slider__dot:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

@media (pointer: coarse) {
  .hero-slider__pause,
  .hero-slider__dot {
    width: 34px;
    height: 34px;
  }
}

.screen[data-visual="flow"] .media-slot::before {
  right: -9rem;
  top: 12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(199, 167, 124, 0.22);
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, transparent, rgba(247, 248, 244, 0.24), transparent 34%),
    radial-gradient(circle, transparent 0 56%, rgba(32, 212, 197, 0.06) 57% 59%, transparent 60%);
  filter: blur(0.3px);
  opacity: 0.9;
}

.screen-statement-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#zero-sugar .media-slot::before,
#zero-sugar .media-slot::after,
#zero-sugar .media-slot__label,
#reframe .media-slot::before,
#reframe .media-slot::after,
#reframe .media-slot__label {
  display: none;
}

#zero-sugar .screen__shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.96) 0%, rgba(3, 6, 7, 0.74) 55%, rgba(3, 6, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, 0.08), rgba(3, 6, 7, 0.72) 100%);
}

.screen[data-visual="science-flow"] .media-slot::before,
.screen[data-visual="science"] .media-slot::before {
  right: -9rem;
  top: 10rem;
  width: 32rem;
  height: 46rem;
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 20px, rgba(32, 212, 197, 0.12) 21px 22px, transparent 23px 42px),
    linear-gradient(120deg, transparent 22%, rgba(32, 212, 197, 0.11), transparent 64%);
  opacity: 0.62;
  transform: rotate(-20deg);
}

.screen[data-visual="molecules"] .media-slot::before {
  right: -8rem;
  top: 8rem;
  width: 32rem;
  height: 42rem;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(247, 248, 244, 0.42) 0 3px, transparent 4px),
    radial-gradient(circle at 48% 36%, rgba(247, 248, 244, 0.32) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 52%, rgba(247, 248, 244, 0.24) 0 4px, transparent 5px),
    linear-gradient(32deg, transparent 0 44%, rgba(247, 248, 244, 0.12) 45%, transparent 47%),
    linear-gradient(118deg, transparent 0 34%, rgba(247, 248, 244, 0.14) 35%, transparent 37%);
  opacity: 0.72;
  filter: blur(0.2px);
}

.screen[data-visual="formula"] .media-slot::before {
  inset: 0;
  background:
    linear-gradient(rgba(45, 216, 202, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 82% 35%, #000, transparent 50%);
}

.screen[data-visual="product"] .media-slot::before {
  display: none;
}

.screen-product-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen--full-image {
  background: #000;
}

.screen--full-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen--product-facts {
  background:
    radial-gradient(circle at 82% 19%, rgba(32, 212, 197, 0.18), transparent 16rem),
    radial-gradient(circle at 14% 18%, rgba(32, 212, 197, 0.11), transparent 13rem),
    #000;
}

.screen--product-facts .screen__content {
  padding-top: clamp(5.7rem, 19vw, 6.9rem);
  padding-bottom: 2rem;
}

.product-facts__visual {
  position: relative;
  margin: 0 calc(-1 * var(--screen-pad-x));
  overflow: hidden;
  border-block: 1px solid rgba(45, 216, 202, 0.16);
  background: #000;
}

.product-facts__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.product-facts__content {
  container-type: inline-size;
}

.product-facts__body {
  padding-top: clamp(1.55rem, 6vw, 2.1rem);
  scroll-margin-top: calc(var(--header-height) + 0.55rem);
}

.product-facts__body .display {
  display: grid;
  margin: 0;
  font-size: clamp(5rem, 21cqw, 6.8rem);
  line-height: 0.84;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 12px 34px rgba(0, 0, 0, 0.58);
}

.product-facts__intro {
  max-width: 25rem;
  margin: clamp(1.05rem, 4vw, 1.4rem) 0 0;
  color: rgba(247, 248, 244, 0.84);
  font-size: clamp(1.04rem, 4.5cqw, 1.24rem);
  line-height: 1.24;
  text-wrap: pretty;
}

.product-facts__emphasis {
  max-width: 25rem;
  margin: clamp(1rem, 3.8vw, 1.35rem) 0 0;
  color: var(--color-white);
  font-size: clamp(1rem, 4cqw, 1.18rem);
  font-weight: 800;
  line-height: 1.25;
  text-wrap: pretty;
}

.product-facts__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.48rem, 2.1vw, 0.68rem);
  margin: clamp(1.55rem, 5.7vw, 2rem) 0 0;
}

.product-facts__card {
  position: relative;
  min-width: 0;
  min-height: clamp(5.55rem, 22.5vw, 6.75rem);
  padding: clamp(0.82rem, 3.1vw, 1rem);
  border: 1px solid rgba(247, 248, 244, 0.24);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 87% 12%, rgba(32, 212, 197, 0.14), transparent 3.7rem),
    linear-gradient(140deg, rgba(32, 212, 197, 0.12), rgba(7, 13, 15, 0.9) 56%),
    rgba(7, 13, 15, 0.86);
  box-shadow:
    inset 0 0 24px rgba(32, 212, 197, 0.045),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.product-facts__card dt {
  color: rgba(247, 248, 244, 0.78);
  font-size: clamp(0.64rem, 2.65cqw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-facts__card dd {
  min-width: 0;
  margin: clamp(0.46rem, 1.9vw, 0.65rem) 0 0;
  color: #00a8ca;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 9.25cqw, 3.25rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 168, 202, 0.28);
  overflow-wrap: break-word;
}

.product-facts__card span {
  position: absolute;
  top: 0.7rem;
  right: 0.72rem;
  color: var(--color-teal);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}

.product-facts__more {
  margin-top: clamp(0.8rem, 3vw, 1rem);
  border: 1px solid rgba(45, 216, 202, 0.28);
  border-radius: var(--radius-panel);
  background: rgba(7, 13, 15, 0.72);
}

.product-facts__more summary {
  position: relative;
  display: flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem clamp(0.88rem, 3vw, 1.05rem);
  color: var(--color-white);
  cursor: pointer;
  font-size: clamp(0.78rem, 3cqw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

.product-facts__more summary::-webkit-details-marker {
  display: none;
}

.product-facts__more summary::after {
  color: var(--color-teal);
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
}

.product-facts__more[open] summary {
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
}

.product-facts__more[open] summary::after {
  content: "−";
}

.product-facts__more summary:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

.product-facts__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: clamp(0.3rem, 1.5vw, 0.45rem) clamp(0.88rem, 3vw, 1.05rem) clamp(0.8rem, 3vw, 1rem);
}

.product-facts__details div {
  min-width: 0;
  padding: clamp(0.52rem, 2vw, 0.68rem) 0;
  border-block-end: 1px solid rgba(247, 248, 244, 0.1);
}

.product-facts__details dt {
  color: var(--color-teal);
  font-size: clamp(0.68rem, 2.55cqw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-facts__details dd {
  margin: 0.25rem 0 0;
  color: rgba(247, 248, 244, 0.82);
  font-size: clamp(0.84rem, 3.35cqw, 0.98rem);
  font-weight: 700;
  line-height: 1.2;
}

.product-facts__claim {
  display: grid;
  grid-template-columns: clamp(2.7rem, 11vw, 3.3rem) minmax(0, 1fr);
  gap: clamp(0.8rem, 3vw, 1.05rem);
  align-items: center;
  margin-top: clamp(1.3rem, 5vw, 1.75rem);
  color: var(--color-white);
}

.product-facts__claim span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 5cqw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.product-facts__claim p {
  margin: 0;
  color: rgba(247, 248, 244, 0.82);
  font-size: clamp(0.9rem, 3.7cqw, 1.05rem);
  line-height: 1.28;
  text-wrap: pretty;
}

.screen--product .media-slot__label {
  display: none;
}

.screen[data-visual="summit"] .media-slot::before {
  right: -8rem;
  bottom: -2rem;
  width: 38rem;
  height: 16rem;
  background:
    linear-gradient(138deg, transparent 0 18%, rgba(199, 167, 124, 0.22) 19% 21%, transparent 22%),
    linear-gradient(24deg, transparent 0 32%, rgba(247, 248, 244, 0.13) 33% 35%, transparent 36%),
    linear-gradient(160deg, transparent 0 42%, rgba(247, 248, 244, 0.12) 43% 45%, transparent 46%),
    linear-gradient(12deg, #151716 0 28%, #050707 29%);
  clip-path: polygon(0 100%, 12% 34%, 22% 78%, 38% 20%, 52% 72%, 68% 18%, 78% 58%, 90% 26%, 100% 100%);
  opacity: 0.82;
}

.screen--statement .screen__content {
  justify-content: center;
}

.screen--statement .display {
  font-size: clamp(3.05rem, 14.7cqw, 5rem);
}

#reframe {
  --reframe-video-crop: 32.5%;
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto;
}

#reframe .media-slot {
  position: relative;
  inset: auto;
  grid-row: 2;
  aspect-ratio: 941 / 1128;
}

#reframe .screen-statement-media {
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #000;
  transform: translateY(calc(-1 * var(--reframe-video-crop)));
}

#reframe .screen__shade {
  display: none;
}

#reframe.screen--statement .screen__content {
  grid-row: 1;
  min-height: 0;
  justify-content: flex-start;
  padding-top: clamp(1.55rem, 6vw, 2.35rem);
  padding-bottom: clamp(0.35rem, 1.4vw, 0.55rem);
  padding-inline: clamp(1.55rem, 7vw, 2.2rem);
  background: #000;
}

#reframe.screen--statement .display {
  max-width: 100%;
  font-size: clamp(2.2rem, 10.8cqw, 3.3rem);
  font-style: italic;
  line-height: 0.9;
}

#reframe.screen--statement .display > span,
#reframe .display__accent > span {
  white-space: nowrap;
}

#reframe .display__accent {
  margin-top: 0;
}

#reframe .lede {
  max-width: min(23rem, 88cqw);
  margin-top: clamp(1rem, 4vw, 1.55rem);
  font-family: "Bahnschrift Condensed", "Arial Narrow", var(--font-body);
  font-size: clamp(1.18rem, 5.1cqw, 1.6rem);
  font-stretch: condensed;
  line-height: 1.08;
}

#reframe .statement-points {
  display: grid;
  width: min(24rem, 90cqw);
  gap: clamp(0.25rem, 1vw, 0.36rem);
  margin: clamp(0.5rem, 1.7vw, 0.68rem) 0 0;
  padding: 0;
}

#reframe .statement-points div {
  display: grid;
  gap: 0.16rem;
  padding: clamp(0.34rem, 1.35vw, 0.45rem) clamp(0.58rem, 2.35vw, 0.76rem);
  border-left: 1px solid rgba(32, 212, 197, 0.72);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

#reframe .statement-points dt {
  min-width: 0;
  color: var(--color-teal);
  font-size: clamp(1rem, 4.7cqw, 1.34rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: normal;
}

#reframe .statement-points dt::after {
  content: ":";
}

#reframe .statement-points dd {
  min-width: 0;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(0.82rem, 3.25cqw, 0.96rem);
  line-height: 1.12;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

#reframe .screen__content > .tech-line {
  display: none;
}

#reframe .statement-cta {
  width: min(100%, 22rem);
  margin-top: clamp(0.95rem, 3.8vw, 1.35rem);
  background: rgba(2, 9, 10, 0.58);
}

#reframe .statement-cta .cta-button__arrow {
  width: clamp(34px, 10cqw, 42px);
}

.health-claim {
  position: relative;
  display: grid;
  grid-template-columns: clamp(3rem, 12cqw, 3.5rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.85rem, 3.5vw, 1.1rem);
  padding: clamp(1rem, 4.8vw, 1.45rem) var(--screen-pad-x);
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
  overflow: hidden;
  border-block: 1px solid rgba(45, 216, 202, 0.28);
  background:
    radial-gradient(circle at 12% 50%, rgba(32, 212, 197, 0.1), transparent 8rem),
    linear-gradient(180deg, #020707, #030607);
}

.health-claim::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.health-claim__mark,
.health-claim p {
  position: relative;
  z-index: 1;
}

.health-claim__mark {
  display: grid;
  width: clamp(3rem, 12cqw, 3.5rem);
  height: clamp(3rem, 12cqw, 3.5rem);
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.7cqw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.health-claim p {
  min-width: 0;
  max-width: 21rem;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(0.98rem, 4.25cqw, 1.18rem);
  line-height: 1.24;
  hyphens: auto;
  overflow-wrap: break-word;
}

.screen--formula .screen__content {
  padding-top: clamp(7.2rem, 25vw, 8.8rem);
}

.screen--formula .display {
  font-size: clamp(2.7rem, 12.8cqw, 4.25rem);
}

.formula-steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: clamp(2rem, 8vw, 3rem) 0 1.5rem;
  list-style: none;
}

.formula-step {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 82px;
  grid-template-columns: clamp(3.1rem, 13cqw, 4.1rem) minmax(0, 1fr) clamp(3.35rem, 13cqw, 4.35rem);
  align-items: center;
  gap: 1rem;
  padding: 0 0.85rem 0 1rem;
  border: 1px solid var(--color-line);
  background: rgba(2, 9, 10, 0.4);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.formula-step::after {
  position: absolute;
  left: 5.2rem;
  top: 18px;
  bottom: 18px;
  width: 1px;
  content: "";
  background: rgba(45, 216, 202, 0.28);
}

.formula-step__number {
  color: rgba(32, 212, 197, 0.72);
  font-size: clamp(2rem, 10vw, 3.15rem);
  font-weight: 250;
  line-height: 1;
}

.formula-step__label {
  min-width: 0;
  font-size: clamp(0.95rem, 4.2cqw, 1.28rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.formula-step__symbol {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--color-line);
  color: var(--color-teal);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  font-weight: 700;
}

.screen--product .screen__content {
  padding-top: clamp(6.15rem, 20vw, 7.45rem);
  padding-bottom: clamp(4.7rem, 18vw, 5.8rem);
}

.screen--product .screen__shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.84) 0%, rgba(3, 6, 7, 0.48) 36%, rgba(3, 6, 7, 0.08) 68%, rgba(3, 6, 7, 0.02) 100%),
    linear-gradient(0deg, rgba(3, 6, 7, 0.68) 0%, rgba(3, 6, 7, 0.16) 36%, transparent 72%);
}

.product-copy {
  width: min(22.5rem, 78cqw);
}

.screen--product .display {
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(2.55rem, 9.2cqw, 3.2rem);
  line-height: 0.92;
}

.product-result {
  display: grid;
  gap: 0;
  max-width: 100%;
  margin: clamp(0.65rem, 2.6vw, 0.9rem) 0 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 15.2cqw, 5rem);
  letter-spacing: 0;
  line-height: 0.86;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 10px 34px rgba(0, 0, 0, 0.52);
  text-transform: uppercase;
}

.product-result__rule {
  display: block;
  width: min(9rem, 42cqw);
  height: 1px;
  margin-bottom: clamp(0.45rem, 1.8vw, 0.65rem);
  background: linear-gradient(90deg, var(--color-teal), rgba(32, 212, 197, 0.34), transparent);
}

.screen--moments .screen__content,
.screen--sports .screen__content {
  padding-top: clamp(5.7rem, 19vw, 6.9rem);
  padding-bottom: 2rem;
}

.screen--moments .display,
.screen--sports .display {
  font-size: clamp(3rem, 14.7cqw, 5rem);
}

.screen--moments .lede,
.screen--sports .lede {
  max-width: 18rem;
}

.moment-list {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(1.25rem, 5vw, 2rem);
}

.moment-card {
  position: relative;
  display: block;
  min-height: clamp(7.25rem, 30vw, 9.2rem);
  overflow: hidden;
  border: 1px solid rgba(247, 248, 244, 0.18);
  border-radius: var(--radius-panel);
  background: rgba(7, 13, 15, 0.8);
  color: inherit;
}

.screen--sports .moment-card,
.sport-overview-list .moment-card {
  min-height: clamp(12.8rem, 47cqw, 14.1rem);
}

.moment-card:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.moment-card__media {
  position: absolute;
  inset: 0;
  opacity: 0.94;
}

.moment-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-card__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.88) 0%, rgba(3, 6, 7, 0.36) 50%, rgba(3, 6, 7, 0.03) 82%, transparent 100%),
    radial-gradient(circle at 78% 38%, rgba(199, 167, 124, 0.16), transparent 7rem),
    linear-gradient(132deg, rgba(32, 212, 197, 0.08), transparent 34%);
}

.moment-card[data-moment="heat"] .moment-card__media::before {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.86) 0%, rgba(3, 6, 7, 0.3) 46%, rgba(3, 6, 7, 0.03) 82%, transparent 100%),
    radial-gradient(circle at 74% 32%, rgba(199, 167, 124, 0.2), transparent 7rem);
}

.moment-card[data-moment="outdoor"] .moment-card__media::before {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.88) 0%, rgba(3, 6, 7, 0.32) 46%, rgba(3, 6, 7, 0.03) 82%, transparent 100%),
    linear-gradient(152deg, transparent 0 42%, rgba(247, 248, 244, 0.08) 43%, transparent 46%),
    radial-gradient(circle at 70% 54%, rgba(141, 160, 162, 0.12), transparent 8rem);
}

.moment-card[data-moment="active"] .moment-card__media::before {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.86) 0%, rgba(3, 6, 7, 0.32) 46%, rgba(3, 6, 7, 0.03) 82%, transparent 100%),
    radial-gradient(circle at 76% 40%, rgba(247, 248, 244, 0.12), transparent 7rem),
    linear-gradient(12deg, transparent 40%, rgba(199, 167, 124, 0.1) 42%, transparent 46%);
}

.moment-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  align-content: center;
  padding: 1rem 4.2rem 1rem 1.35rem;
}

.moment-card__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.7rem;
  border: 1px solid var(--color-line);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.moment-card h3 {
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9.2vw, 3rem);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.moment-card p {
  max-width: 12rem;
  margin: 0.35rem 0 0;
  color: var(--color-white);
  font-size: clamp(1rem, 4.7vw, 1.35rem);
  line-height: 1.1;
}

.moment-card__arrow {
  position: absolute;
  right: 1.45rem;
  top: 50%;
  z-index: 1;
  width: 30px;
  height: 1px;
  background: var(--color-teal);
  transform: translateY(-50%);
}

.moment-card__arrow::before,
.moment-card__arrow::after {
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--color-teal);
  transform-origin: right center;
}

.moment-card__arrow::before {
  transform: rotate(42deg);
}

.moment-card__arrow::after {
  transform: rotate(-42deg);
}

.screen-link {
  justify-self: start;
  border-color: rgba(45, 216, 202, 0.38);
  background: rgba(2, 9, 10, 0.42);
}

.screen--guides .screen__content {
  padding-top: clamp(5.7rem, 19vw, 6.9rem);
  padding-bottom: 2rem;
}

.screen--guides .display {
  font-size: clamp(3rem, 14.7cqw, 5rem);
}

.screen--guides .lede {
  max-width: 18.5rem;
  margin-bottom: 0.8rem;
}

.guide-teaser-list {
  display: grid;
  gap: clamp(0.58rem, 2.4vw, 0.78rem);
  margin-top: clamp(1.25rem, 5vw, 2rem);
}

.guide-teaser-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(4.05rem, 16vw, 4.9rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.68rem, 2.8vw, 0.95rem);
  overflow: hidden;
  padding: clamp(0.72rem, 3vw, 0.95rem) clamp(0.85rem, 3.4vw, 1.05rem);
  border: 1px solid rgba(45, 216, 202, 0.3);
  background:
    radial-gradient(circle at 92% 12%, rgba(32, 212, 197, 0.12), transparent 4.5rem),
    rgba(7, 13, 15, 0.68);
  color: var(--color-white);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: border-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.guide-teaser-card:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.guide-teaser-card:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.guide-teaser-card__number {
  color: rgba(32, 212, 197, 0.72);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6.5cqw, 2.2rem);
  line-height: 0.9;
}

.guide-teaser-card__copy {
  display: grid;
  min-width: 0;
  gap: 0.16rem;
}

.guide-teaser-card h3 {
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.8cqw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.guide-teaser-card p {
  display: -webkit-box;
  max-width: 18rem;
  margin: 0;
  overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  color: rgba(247, 248, 244, 0.72);
  font-size: clamp(0.82rem, 3.35cqw, 0.98rem);
  line-height: 1.2;
}

.guide-teaser-card__arrow {
  color: var(--color-teal);
  font-size: 0.95rem;
  font-weight: 800;
}

.screen--buy-home .screen__content {
  justify-content: center;
  padding-top: clamp(5.7rem, 19vw, 6.9rem);
  padding-bottom: clamp(4.4rem, 16vw, 5.5rem);
}

.screen--buy-home .media-slot__label {
  display: none;
}

.screen--buy-home .display {
  max-width: 20rem;
  font-size: clamp(3rem, 14cqw, 4.8rem);
}

.screen--buy-home .lede {
  max-width: 18.5rem;
}

.buy-home-actions {
  width: min(100%, 22rem);
  margin-top: clamp(1.1rem, 4.4vw, 1.55rem);
}

.product-price {
  display: grid;
  width: min(100%, 22rem);
  gap: 0.16rem;
  padding: clamp(0.82rem, 3.4vw, 1.05rem) clamp(0.95rem, 3.8vw, 1.2rem);
  border: 1px solid rgba(45, 216, 202, 0.28);
  background: rgba(7, 13, 15, 0.58);
  color: var(--color-white);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.screen--buy-home .product-price {
  margin-top: clamp(0.9rem, 3.7vw, 1.25rem);
}

.product-price__total,
.product-price__unit,
.product-price__note {
  margin: 0;
}

.product-price__total {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.4cqw, 2.8rem);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-price__unit {
  color: var(--color-teal);
  font-size: clamp(0.82rem, 3.45cqw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-price__note {
  color: rgba(247, 248, 244, 0.66);
  font-size: clamp(0.72rem, 3cqw, 0.84rem);
  line-height: 1.28;
}

.moment-page-shell {
  overflow: hidden;
}

.moment-detail {
  position: relative;
  display: grid;
  gap: clamp(1.6rem, 6vw, 2.3rem);
  padding: calc(var(--header-height) + 1.2rem) var(--screen-pad-x) clamp(2.4rem, 9vw, 3.2rem);
  background:
    radial-gradient(circle at 82% 12%, rgba(32, 212, 197, 0.12), transparent 13rem),
    radial-gradient(circle at 18% 28%, rgba(199, 167, 124, 0.08), transparent 14rem),
    var(--color-black);
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
}

.moment-detail__hero {
  display: grid;
  gap: clamp(1.2rem, 5vw, 1.8rem);
}

.moment-detail__media {
  position: relative;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid rgba(45, 216, 202, 0.2);
  border-radius: var(--radius-panel);
  margin: 0;
  background: rgba(7, 13, 15, 0.8);
}

.moment-detail__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-detail__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.58), rgba(3, 6, 7, 0.08) 70%, transparent),
    linear-gradient(180deg, transparent 35%, rgba(3, 6, 7, 0.22));
}

.moment-detail__copy {
  display: grid;
  gap: clamp(0.95rem, 3.8vw, 1.35rem);
}

.moment-detail__copy .display {
  max-width: min(100%, 22rem);
  font-size: clamp(2.9rem, 13cqw, 4rem);
  overflow-wrap: break-word;
}

.moment-detail__copy .lede {
  max-width: min(26rem, 100%);
  margin: 0;
}

.moment-detail__body,
.moment-detail__faq,
.moment-detail__related {
  display: grid;
  gap: clamp(0.9rem, 3.7vw, 1.35rem);
}

.moment-detail h2 {
  margin: 0;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 9.2cqw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.moment-detail__text {
  display: grid;
  gap: 0.9rem;
}

.moment-detail__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 4.15cqw, 1.17rem);
  line-height: 1.42;
}

.moment-detail__faq .accordion {
  margin: 0;
}

.moment-detail__related-list {
  display: grid;
  gap: 0.55rem;
}

.moment-detail__related-list a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(45, 216, 202, 0.32);
  background: rgba(7, 13, 15, 0.5);
  color: var(--color-white);
  font-size: clamp(1rem, 4.2vw, 1.18rem);
}

.moment-detail__related-list a span:last-child {
  color: var(--color-teal);
  font-size: 1.4rem;
}

.moment-detail__related-list a:focus-visible,
.moment-detail__back:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.moment-detail__actions {
  display: grid;
  gap: 0.95rem;
  padding-top: 0.4rem;
}

.moment-detail__actions .cta-button {
  margin-top: 0;
}

.moment-detail__back {
  justify-self: start;
  color: var(--color-teal);
  font-size: clamp(0.84rem, 3.8vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-page-shell {
  overflow: hidden;
}

.guide-article {
  position: relative;
  display: grid;
  gap: clamp(1.45rem, 6vw, 2.35rem);
  padding: calc(var(--header-height) + 1.2rem) var(--screen-pad-x) clamp(2.5rem, 10vw, 3.6rem);
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
  background:
    radial-gradient(circle at 82% 11%, rgba(32, 212, 197, 0.13), transparent 13rem),
    radial-gradient(circle at 12% 32%, rgba(199, 167, 124, 0.08), transparent 14rem),
    var(--color-black);
}

.guide-article::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.guide-article > * {
  position: relative;
}

.guide-hero,
.guide-section {
  display: grid;
  gap: clamp(0.85rem, 3.7vw, 1.25rem);
}

.guide-hero .display {
  max-width: 25rem;
}

.guide-lede {
  max-width: 28rem;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 4.25cqw, 1.18rem);
  line-height: 1.42;
  text-wrap: pretty;
}

.guide-section h2 {
  max-width: 25rem;
  margin: 0;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.2cqw, 2.85rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.guide-prose {
  display: grid;
  gap: 0.85rem;
}

.guide-prose p {
  max-width: 31rem;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.98rem, 4.05cqw, 1.12rem);
  line-height: 1.45;
  text-wrap: pretty;
}

.guide-prose strong {
  color: var(--color-white);
}

.guide-prose a,
.guide-text-link,
.guide-inline-links a {
  color: var(--color-teal);
  font-weight: 800;
}

.guide-prose a:focus-visible,
.guide-text-link:focus-visible,
.guide-inline-links a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.guide-section--claim {
  padding: clamp(1rem, 4.5vw, 1.35rem);
  border-left: 1px solid rgba(45, 216, 202, 0.62);
  background: linear-gradient(90deg, rgba(32, 212, 197, 0.09), rgba(2, 9, 10, 0.5));
}

.guide-claim {
  color: var(--color-white) !important;
  font-weight: 800;
}

.guide-table-wrap {
  overflow-x: auto;
  scrollbar-gutter: stable;
}

.guide-facts-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  border: 1px solid rgba(45, 216, 202, 0.28);
  background: rgba(7, 13, 15, 0.62);
}

.guide-facts-table th,
.guide-facts-table td {
  padding: 0.82rem 0.95rem;
  border-bottom: 1px solid rgba(45, 216, 202, 0.18);
  font-size: clamp(0.92rem, 3.8cqw, 1.05rem);
  line-height: 1.2;
  text-align: left;
  vertical-align: top;
}

.guide-facts-table th {
  width: 42%;
  color: var(--color-teal);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-facts-table td {
  color: var(--color-white);
}

.guide-facts-table tr:last-child th,
.guide-facts-table tr:last-child td {
  border-bottom: 0;
}

.guide-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid rgba(45, 216, 202, 0.28);
  background: rgba(7, 13, 15, 0.62);
}

.guide-compare-table th,
.guide-compare-table td {
  padding: 0.78rem 0.85rem;
  border-bottom: 1px solid rgba(45, 216, 202, 0.18);
  border-right: 1px solid rgba(45, 216, 202, 0.14);
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: left;
  vertical-align: top;
}

.guide-compare-table th:last-child,
.guide-compare-table td:last-child {
  border-right: 0;
}

.guide-compare-table thead th {
  color: var(--color-white);
  font-weight: 800;
}

.guide-compare-table tbody th {
  color: var(--color-teal);
  font-weight: 800;
}

.guide-compare-table tr:last-child th,
.guide-compare-table tr:last-child td {
  border-bottom: 0;
}

.guide-bullet-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.guide-bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-muted);
  font-size: clamp(0.98rem, 4.05cqw, 1.12rem);
  line-height: 1.36;
}

.guide-bullet-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border: 1px solid var(--color-teal);
  transform: rotate(45deg);
}

.guide-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.guide-inline-links a {
  min-height: 44px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(45, 216, 202, 0.3);
  background: rgba(7, 13, 15, 0.54);
  font-size: clamp(0.82rem, 3.5cqw, 0.94rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.guide-faq .accordion {
  margin: 0;
}

.guide-actions {
  display: grid;
  gap: 0.95rem;
}

.guide-actions .cta-button {
  margin-top: 0;
}

.guide-text-link {
  justify-self: start;
  font-size: clamp(0.84rem, 3.8vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-page-shell {
  overflow: hidden;
}

.overview-page {
  position: relative;
  display: grid;
  gap: clamp(1.45rem, 6vw, 2.3rem);
  padding: calc(var(--header-height) + 1.2rem) var(--screen-pad-x) clamp(2.5rem, 10vw, 3.6rem);
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
  background:
    radial-gradient(circle at 82% 12%, rgba(32, 212, 197, 0.13), transparent 13rem),
    radial-gradient(circle at 14% 32%, rgba(199, 167, 124, 0.08), transparent 14rem),
    var(--color-black);
}

.overview-page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.overview-page > * {
  position: relative;
}

.overview-hero,
.overview-section {
  display: grid;
  gap: clamp(0.85rem, 3.6vw, 1.2rem);
}

.overview-hero .display {
  max-width: 24rem;
}

.overview-lede {
  max-width: 26rem;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 4.25cqw, 1.18rem);
  line-height: 1.38;
  text-wrap: pretty;
}

.overview-section h2 {
  margin: 0;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.5cqw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.overview-moment-list {
  margin-top: 0;
}

.overview-card-list {
  display: grid;
  gap: clamp(0.6rem, 2.5vw, 0.85rem);
}

.overview-quick-links {
  display: grid;
  gap: 0.38rem;
}

.overview-quick-link {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(45, 216, 202, 0.2);
  background: rgba(7, 13, 15, 0.3);
  color: var(--color-white);
  transition: border-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}

.overview-quick-link:hover {
  border-color: rgba(45, 216, 202, 0.72);
  background: rgba(45, 216, 202, 0.08);
  color: var(--color-teal);
}

.overview-quick-link:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.overview-quick-link > span:first-child {
  color: rgba(45, 216, 202, 0.72);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.overview-quick-link__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 4.7cqw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.overview-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 86px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 3.4vw, 1.1rem);
  padding: clamp(0.9rem, 4vw, 1.2rem);
  border: 1px solid rgba(45, 216, 202, 0.3);
  background: rgba(7, 13, 15, 0.62);
  color: var(--color-white);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transition: border-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.overview-card:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.overview-card:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.overview-card__label {
  display: inline-flex;
  min-width: 0;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(45, 216, 202, 0.38);
  color: rgba(45, 216, 202, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.overview-card--labelled {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.overview-card--labelled > .overview-card__label {
  grid-column: 1;
}

.overview-card--labelled > span:nth-child(2) {
  grid-column: 1 / -1;
}

.overview-card--labelled > .overview-card__arrow {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.overview-card span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.overview-card strong {
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7.2cqw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.overview-card small {
  color: rgba(247, 248, 244, 0.72);
  font-size: clamp(0.88rem, 3.7cqw, 1rem);
  line-height: 1.24;
}

.overview-card__arrow {
  color: var(--color-teal);
  font-size: 1rem;
  font-weight: 800;
}

.overview-topic-list,
.overview-topic-group {
  display: grid;
}

.overview-topic-list {
  gap: clamp(1.1rem, 4vw, 1.55rem);
}

.overview-topic-group {
  gap: 0.72rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 216, 202, 0.18);
}

.overview-topic-group h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.overview-link-groups {
  display: grid;
  gap: clamp(1.15rem, 4.8vw, 1.7rem);
}

.overview-link-group {
  display: grid;
  gap: 0.5rem;
  padding-block-start: 0.95rem;
  border-block-start: 1px solid rgba(45, 216, 202, 0.18);
}

.overview-link-group h3 {
  margin: 0;
  color: rgba(247, 248, 244, 0.72);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 3.5cqw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-wrap: balance;
}

.overview-link-list {
  display: grid;
  gap: 0.46rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-topic-link {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.18rem 0.7rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(247, 248, 244, 0.1);
  background: rgba(7, 13, 15, 0.32);
  color: var(--color-white);
  transition: color var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}

.overview-link-list li:first-child .overview-topic-link {
  border-color: rgba(247, 248, 244, 0.14);
}

.overview-topic-link::after {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: rgba(45, 216, 202, 0.9);
  content: "->";
  font-size: 0.94rem;
  font-weight: 800;
}

.overview-topic-link:hover {
  border-color: rgba(45, 216, 202, 0.5);
  background: rgba(45, 216, 202, 0.06);
  color: var(--color-teal);
}

.overview-topic-link:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.overview-topic-link__title {
  grid-column: 1;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 4.2cqw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.overview-topic-link small {
  display: -webkit-box;
  grid-column: 1;
  max-width: 26rem;
  overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: rgba(247, 248, 244, 0.56);
  font-size: clamp(0.78rem, 3.35cqw, 0.88rem);
  line-height: 1.24;
}

.overview-actions {
  display: grid;
  gap: 0.6rem;
}

.overview-actions a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(45, 216, 202, 0.32);
  background: rgba(7, 13, 15, 0.5);
  color: var(--color-white);
  font-size: clamp(0.98rem, 4.2vw, 1.18rem);
}

.overview-actions a::after {
  color: var(--color-teal);
  content: "->";
}

.overview-actions a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.logic-page-shell {
  overflow: hidden;
}

.logic-page {
  position: relative;
  display: grid;
  gap: clamp(1.35rem, 5.8vw, 2.2rem);
  padding: calc(var(--header-height) + 1.2rem) var(--screen-pad-x) clamp(2.5rem, 10vw, 3.6rem);
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
  background:
    radial-gradient(circle at 82% 11%, rgba(32, 212, 197, 0.13), transparent 13rem),
    radial-gradient(circle at 14% 32%, rgba(199, 167, 124, 0.08), transparent 14rem),
    var(--color-black);
}

.logic-page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.logic-page > * {
  position: relative;
}

.logic-hero {
  display: grid;
  gap: clamp(0.85rem, 3.6vw, 1.2rem);
}

.logic-hero .display {
  max-width: 24rem;
}

.logic-lede {
  max-width: 27rem;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 4.25cqw, 1.18rem);
  line-height: 1.42;
  text-wrap: pretty;
}

.logic-steps {
  display: grid;
  gap: clamp(0.85rem, 3.8vw, 1.15rem);
}

.logic-step {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: clamp(3.15rem, 13cqw, 4.2rem) minmax(0, 1fr);
  gap: clamp(0.8rem, 3.2vw, 1.05rem);
  padding: clamp(0.95rem, 4.5vw, 1.35rem);
  border: 1px solid rgba(45, 216, 202, 0.28);
  background: rgba(7, 13, 15, 0.64);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.logic-step::after {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: clamp(4.25rem, 16.5cqw, 5.45rem);
  width: 1px;
  content: "";
  background: rgba(45, 216, 202, 0.24);
}

.logic-step__number {
  color: rgba(32, 212, 197, 0.72);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9.4cqw, 3rem);
  line-height: 0.9;
}

.logic-step h2,
.logic-conclusion h2,
.logic-faq h2 {
  margin: 0;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.2cqw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.logic-step p,
.logic-conclusion p {
  min-width: 0;
  margin: clamp(0.55rem, 2vw, 0.7rem) 0 0;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 4cqw, 1.08rem);
  line-height: 1.38;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.logic-conclusion {
  display: grid;
  gap: 0.2rem;
  padding: clamp(1rem, 4.5vw, 1.35rem);
  border-left: 1px solid rgba(45, 216, 202, 0.62);
  background: linear-gradient(90deg, rgba(32, 212, 197, 0.09), rgba(2, 9, 10, 0.5));
}

.logic-signature {
  color: var(--color-white) !important;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 10.5cqw, 3.35rem) !important;
  line-height: 0.9 !important;
  text-transform: uppercase;
}

.logic-claim {
  position: relative;
  display: grid;
  grid-template-columns: clamp(3rem, 12cqw, 3.6rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.85rem, 3.5vw, 1.1rem);
  overflow: hidden;
  padding: clamp(1rem, 4.6vw, 1.35rem);
  border: 1px solid rgba(45, 216, 202, 0.32);
  background:
    radial-gradient(circle at 10% 50%, rgba(32, 212, 197, 0.12), transparent 7rem),
    rgba(2, 9, 10, 0.68);
}

.logic-claim::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.logic-claim span,
.logic-claim p {
  position: relative;
  z-index: 1;
}

.logic-claim span {
  display: grid;
  width: clamp(3rem, 12cqw, 3.6rem);
  height: clamp(3rem, 12cqw, 3.6rem);
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.7cqw, 1.8rem);
  line-height: 1;
}

.logic-claim p {
  min-width: 0;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(0.96rem, 4cqw, 1.12rem);
  line-height: 1.3;
  overflow-wrap: break-word;
}

.logic-actions {
  display: grid;
  gap: 0.95rem;
}

.logic-faq {
  display: grid;
  gap: clamp(0.9rem, 3.7vw, 1.35rem);
}

.logic-faq .accordion {
  margin: 0;
}

.logic-faq .accordion__item p {
  max-width: 100%;
}

.logic-actions .cta-button {
  margin-top: 0;
}

.logic-back {
  justify-self: start;
  color: var(--color-teal);
  font-size: clamp(0.84rem, 3.8vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logic-back:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.buy-page-shell {
  overflow: hidden;
}

.buy-page {
  position: relative;
  display: grid;
  gap: clamp(1.45rem, 6vw, 2.2rem);
  padding: calc(var(--header-height) + 1.2rem) var(--screen-pad-x) clamp(2.5rem, 10vw, 3.6rem);
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
  background:
    radial-gradient(circle at 82% 12%, rgba(32, 212, 197, 0.13), transparent 13rem),
    radial-gradient(circle at 12% 32%, rgba(199, 167, 124, 0.08), transparent 14rem),
    var(--color-black);
}

.buy-page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.buy-page > * {
  position: relative;
}

.buy-hero {
  display: grid;
  gap: clamp(0.85rem, 3.6vw, 1.2rem);
}

.buy-lede {
  max-width: 26rem;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 4.25cqw, 1.18rem);
  line-height: 1.38;
  text-wrap: pretty;
}

.buy-hero .product-price {
  margin-top: clamp(0.2rem, 1vw, 0.35rem);
}

.buy-retailers {
  display: grid;
  gap: clamp(0.9rem, 3.7vw, 1.35rem);
}

.buy-retailers h2 {
  margin: 0;
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.5cqw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.buy-retailer-list {
  display: grid;
  gap: clamp(0.55rem, 2.3vw, 0.8rem);
}

.buy-retailer {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 74px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 4.2vw, 1.35rem);
  border: 1px solid rgba(45, 216, 202, 0.3);
  background: rgba(7, 13, 15, 0.62);
  color: var(--color-white);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.buy-retailer > span:first-child {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.buy-retailer__name {
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7.5cqw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.buy-retailer small {
  color: rgba(247, 248, 244, 0.72);
  font-size: clamp(0.78rem, 3.2cqw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.buy-retailer--active {
  background:
    radial-gradient(circle at 88% 12%, rgba(32, 212, 197, 0.17), transparent 4.4rem),
    linear-gradient(140deg, rgba(32, 212, 197, 0.12), rgba(7, 13, 15, 0.9) 58%),
    rgba(7, 13, 15, 0.82);
  transition: border-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.buy-retailer--active:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.buy-retailer--active:focus-visible,
.buy-back:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.buy-retailer--pending {
  border-color: rgba(247, 248, 244, 0.16);
  color: rgba(247, 248, 244, 0.52);
}

.buy-retailer--pending small {
  color: rgba(247, 248, 244, 0.42);
}

.buy-retailer__arrow {
  position: relative;
  width: clamp(34px, 9cqw, 42px);
  height: 1px;
  background: currentColor;
}

.buy-retailer__arrow::before,
.buy-retailer__arrow::after {
  position: absolute;
  right: 0;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: right center;
}

.buy-retailer__arrow::before {
  transform: rotate(42deg);
}

.buy-retailer__arrow::after {
  transform: rotate(-42deg);
}

.buy-retailer__status {
  color: rgba(32, 212, 197, 0.62);
  font-size: clamp(0.75rem, 3.1cqw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buy-back {
  justify-self: start;
  color: var(--color-teal);
  font-size: clamp(0.84rem, 3.8vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen--science .display {
  max-width: 100%;
}

.science-orbit {
  position: absolute;
  right: var(--screen-pad-x);
  top: 14rem;
  z-index: -1;
  display: grid;
  gap: 5rem;
  color: rgba(32, 212, 197, 0.44);
  font-size: clamp(1.3rem, 6vw, 2rem);
  text-align: right;
  text-transform: uppercase;
}

.science-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.science-card {
  display: grid;
  min-height: 104px;
  grid-template-columns: 4.8rem 1fr 2rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-line);
  background: rgba(2, 9, 10, 0.52);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.science-card__mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-teal);
  font-weight: 650;
}

.science-card p {
  margin: 0;
  font-size: clamp(1rem, 4.6vw, 1.35rem);
  line-height: 1.25;
}

.science-card__plus {
  color: var(--color-teal);
  font-size: 2rem;
  font-weight: 250;
}

.screen--faq .screen__content {
  padding-top: clamp(5.7rem, 19vw, 6.9rem);
  padding-bottom: 2rem;
}

.screen--faq .display {
  font-size: clamp(3rem, 14.7cqw, 5rem);
}

.accordion {
  display: grid;
  gap: 0.58rem;
  margin: clamp(1.25rem, 5vw, 2rem) 0 0.8rem;
}

.accordion__item {
  border: 1px solid var(--color-line);
  background: rgba(7, 13, 15, 0.62);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.accordion__item summary {
  display: grid;
  min-height: 62px;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 1rem;
  cursor: pointer;
  list-style: none;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__item summary:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

.accordion__marker {
  color: var(--color-teal);
  font-size: 1.7rem;
  line-height: 1;
}

.accordion__marker::before {
  content: "+";
}

.accordion__item[open] .accordion__marker::before {
  content: "-";
}

.accordion__item summary span:last-child {
  min-width: 0;
  font-size: clamp(0.95rem, 4.05vw, 1.15rem);
  letter-spacing: 0.02em;
  line-height: 1.18;
  hyphens: auto;
  overflow-wrap: break-word;
}

.accordion__item p {
  min-width: 0;
  max-width: 20rem;
  padding: 0 1rem 1.05rem 4.05rem;
  margin: -0.15rem 0 0;
  color: var(--color-muted);
  font-size: clamp(0.88rem, 3.55vw, 1.03rem);
  line-height: 1.36;
  hyphens: auto;
  overflow-wrap: break-word;
}

.closing-line {
  margin: auto 0 0;
  color: var(--color-teal);
  font-size: clamp(1rem, 4.7vw, 1.35rem);
  letter-spacing: 0.14em;
  text-align: center;
}

.legal-page-shell {
  background:
    radial-gradient(circle at 72% 8%, rgba(32, 212, 197, 0.1), transparent 14rem),
    var(--color-black);
}

.legal-page {
  position: relative;
  min-height: calc(min(100vw, var(--layout-mobile-max)) * 16 / 9);
  padding: calc(var(--header-height) + 2.2rem) var(--screen-pad-x) clamp(2.5rem, 10vw, 3.6rem);
  overflow: hidden;
  border-block-end: 1px solid rgba(45, 216, 202, 0.18);
  background:
    linear-gradient(180deg, rgba(3, 6, 7, 0.45), rgba(3, 6, 7, 0.98)),
    radial-gradient(circle at 88% 24%, rgba(32, 212, 197, 0.12), transparent 13rem);
}

.legal-page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.legal-page > * {
  position: relative;
}

.legal-hero {
  display: grid;
  gap: clamp(0.8rem, 3vw, 1.1rem);
  margin-bottom: clamp(1.5rem, 7vw, 2.2rem);
}

.legal-hero .eyebrow {
  margin-bottom: -0.2rem;
}

.legal-hero .display {
  margin: clamp(0.7rem, 3vw, 1rem) 0 0;
}

.legal-lede {
  max-width: 22rem;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 4.4vw, 1.2rem);
  line-height: 1.35;
}

.legal-meta {
  margin: 0;
  color: var(--color-soft);
  font-size: clamp(0.78rem, 3.3vw, 0.92rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  padding-block: clamp(1.35rem, 6vw, 2rem);
  border-top: 1px solid rgba(45, 216, 202, 0.22);
}

.legal-section h2 {
  margin: 0 0 1rem;
  color: var(--color-teal);
  font-size: clamp(0.88rem, 3.8vw, 1.02rem);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.legal-address {
  display: grid;
  gap: 0.35rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(45, 216, 202, 0.5);
  color: var(--color-white);
  font-style: normal;
  font-size: clamp(1.02rem, 4.5vw, 1.24rem);
  line-height: 1.35;
}

.legal-address strong {
  font-weight: 700;
}

.legal-prose {
  color: var(--color-muted);
  font-size: clamp(0.98rem, 4.15vw, 1.1rem);
  line-height: 1.55;
}

.legal-prose p {
  max-width: 42rem;
  margin: 0;
}

.legal-prose p + p,
.legal-prose p + ul,
.legal-prose ul + p,
.legal-prose p + .legal-address {
  margin-top: 1rem;
}

.legal-prose ul {
  display: grid;
  gap: 0.45rem;
  max-width: 42rem;
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.legal-prose li::marker {
  color: var(--color-teal);
}

.legal-prose a,
.legal-address a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(45, 216, 202, 0.55);
  text-underline-offset: 0.22em;
  overflow-wrap: anywhere;
}

.legal-prose a:hover,
.legal-address a:hover {
  color: var(--color-teal);
  text-decoration-color: currentColor;
}

.legal-prose a:focus-visible,
.legal-address a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.legal-prose code {
  color: var(--color-white);
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.matomo-optout {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
  margin-top: 1.2rem;
  padding: clamp(1rem, 4.2vw, 1.25rem);
  border: 1px solid rgba(45, 216, 202, 0.28);
  background: rgba(247, 248, 244, 0.035);
}

.matomo-optout__status {
  margin: 0;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.35;
}

.matomo-optout__button {
  justify-self: start;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(45, 216, 202, 0.8);
  border-radius: 0;
  background: rgba(45, 216, 202, 0.12);
  color: var(--color-white);
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.matomo-optout__button:hover {
  background: rgba(45, 216, 202, 0.2);
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.matomo-optout__button:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.matomo-optout__button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.matomo-optout__note {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.86rem, 3.5vw, 0.96rem);
  line-height: 1.45;
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.legal-list--spaced {
  margin-top: 1.2rem;
}

.legal-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(247, 248, 244, 0.1);
}

.legal-list dt {
  min-width: 0;
  color: var(--color-soft);
  font-size: clamp(0.78rem, 3.25vw, 0.92rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.legal-list dd {
  min-width: 0;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(0.96rem, 4.15vw, 1.1rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.legal-list a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(45, 216, 202, 0.55);
  text-underline-offset: 0.22em;
  transition: color var(--duration-fast) var(--ease-out), text-decoration-color var(--duration-fast) var(--ease-out);
}

.legal-list a:hover {
  color: var(--color-teal);
  text-decoration-color: currentColor;
}

.legal-list a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.site-footer {
  position: relative;
  padding: clamp(2rem, 9vw, 3rem) var(--screen-pad-x) clamp(2.4rem, 10vw, 3.5rem);
  border-block-start: 1px solid rgba(45, 216, 202, 0.22);
  background:
    radial-gradient(circle at 82% 20%, rgba(32, 212, 197, 0.08), transparent 14rem),
    linear-gradient(180deg, #030607, #050909);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(45, 216, 202, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 202, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.site-footer__inner {
  position: relative;
  display: grid;
  gap: clamp(0.72rem, 3vw, 1rem);
}

.site-footer__logo {
  display: block;
  width: min(13.4rem, 62vw);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(32, 212, 197, 0.16));
}

.site-footer__rule {
  display: block;
  width: min(9.2rem, 42vw);
  height: 1px;
  margin-block: clamp(0.12rem, 0.8vw, 0.28rem) 0;
  background: linear-gradient(90deg, var(--color-teal), rgba(32, 212, 197, 0.42), transparent);
}

.site-footer__claim {
  max-width: 18rem;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.45rem, 6.2cqw, 2rem);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  padding-top: clamp(0.35rem, 1.7vw, 0.55rem);
}

.site-footer__links a {
  color: var(--color-teal);
  font-size: clamp(0.78rem, 3.5vw, 0.92rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.site-footer__links a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.to-top {
  position: fixed;
  right: max(14px, calc((100vw - var(--layout-mobile-max)) / 2 + 14px));
  bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  z-index: 31;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 165, 180, 0.75);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(0, 165, 180, 0.22), rgba(5, 10, 12, 0.92));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 24px rgba(0, 165, 180, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.55);
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    visibility 0.22s ease;
  visibility: hidden;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.to-top span {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 216, 232, 0.75);
  transform: translateY(-1px);
}

.to-top:hover {
  border-color: #00d8e8;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 32px rgba(0, 216, 232, 0.42),
    0 16px 38px rgba(0, 0, 0, 0.65);
}

.to-top:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

.to-top:active {
  transform: translateY(2px) scale(0.98);
}

.menu-is-open .to-top {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 360px) {
  .wordmark {
    width: min(13rem, 48cqw);
  }

  .display,
  .screen--statement .display,
  .screen--faq .display {
    font-size: 3rem;
  }

  .display--hero,
  .display--compact {
    font-size: clamp(3.15rem, 16cqw, 3.65rem);
  }

  .cta-button,
  .screen-link {
    min-height: 68px;
    gap: 0.7rem;
    padding-inline: 1.35rem;
    font-size: 1.08rem;
  }

  .cta-button__arrow,
  .screen-link__arrow {
    width: 34px;
    flex: 0 0 auto;
  }

  .health-claim {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .health-claim__mark {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.2rem;
  }

  .health-claim p {
    font-size: 0.9rem;
  }

  .formula-step {
    grid-template-columns: 3.4rem 1fr 3.8rem;
  }

  .formula-step::after {
    left: 4.35rem;
  }

  .to-top {
    right: max(12px, calc((100vw - var(--layout-mobile-max)) / 2 + 12px));
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 520px) {
  .header-language-switch,
  .menu-button {
    top: 24px;
  }
}

/* =========================================================
   Desktop-Erweiterung (min-width: 1100px)
   Mobile-first: alles oberhalb ist die Basis fuer Mobil,
   dieser Block erweitert das Layout auf grosse Viewports.
   ========================================================= */
@media (min-width: 1100px) {
  :root {
    --screen-pad-x: clamp(2.5rem, 5vw, 4.5rem);
    --content-max: 72rem;
  }

  body {
    padding-block: 0;
  }

  .site-shell {
    width: 100%;
    border: 0;
    box-shadow: none;
  }

  /* --- Header, Menue, Steuerelemente --- */
  .site-header {
    padding-top: 1.55rem;
  }

  .header-language-switch {
    top: 1.9rem;
    right: calc(var(--screen-pad-x) + 62px);
  }

  .menu-button {
    top: 1.9rem;
    right: var(--screen-pad-x);
  }

  .menu-overlay {
    inset: 0 0 0 auto;
    width: 30rem;
    border-inline: 0;
    border-left: 1px solid rgba(45, 216, 202, 0.22);
    transform: none;
  }

  .to-top {
    right: 28px;
    bottom: 28px;
  }

  /* --- Screens allgemein: Inhalt mittig, volle Breite --- */
  .screen {
    min-height: min(100svh, 56rem);
  }

  .screen__content {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
  }

  .cta-button,
  .screen-link {
    max-width: 30rem;
    font-size: 1.35rem;
  }

  /* --- Hero: Text links, Video als praezises 9:16-Panel rechts --- */
  .screen--hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
    min-height: 100svh;
    padding-inline: max(var(--screen-pad-x), calc((100vw - var(--content-max)) / 2));
    padding-block: calc(var(--header-height) + 1.5rem) 3rem;
    background-color: var(--color-black);
    background-image:
      linear-gradient(rgba(45, 216, 202, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(45, 216, 202, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 16% 24%, rgba(45, 216, 202, 0.09), transparent 26rem);
    background-size: 44px 44px, 44px 44px, auto;
  }

  .screen--hero .media-slot {
    position: relative;
    inset: auto;
    grid-row: 1;
    grid-column: 2;
    height: min(78svh, 52rem);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 1px solid rgba(45, 216, 202, 0.4);
    clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
    background: #000;
  }

  .screen--hero .screen__shade {
    display: none;
  }

  .screen--hero .screen__content {
    grid-row: 1;
    grid-column: 1;
    min-height: 0;
    max-width: 42rem;
    margin-inline: 0;
    padding: 0;
    row-gap: 2.2rem;
  }

  .screen--hero .display--hero {
    max-width: 14ch;
    font-size: clamp(4.8rem, 6vw, 7rem);
  }

  .screen--hero .lede {
    max-width: 28rem;
    font-size: 1.5rem;
  }

  .screen--hero .cta-button {
    width: min(26rem, 100%);
  }

  /* --- Produkt-Screen: Text links, Bild als Panel rechts --- */
  .screen--product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
    min-height: min(100svh, 60rem);
    padding-inline: max(var(--screen-pad-x), calc((100vw - var(--content-max)) / 2));
    padding-block: calc(var(--header-height) + 1rem) 3rem;
  }

  .screen--product .media-slot {
    position: relative;
    inset: auto;
    grid-row: 1;
    grid-column: 2;
    height: min(72svh, 48rem);
    aspect-ratio: 941 / 1672;
    overflow: hidden;
    border: 1px solid rgba(45, 216, 202, 0.35);
    clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
    background: #000;
  }

  .screen--product .screen__shade {
    display: none;
  }

  .screen--product .screen__content {
    grid-row: 1;
    grid-column: 1;
    min-height: 0;
    max-width: 42rem;
    margin-inline: 0;
    padding: 0;
    gap: 2.2rem;
  }

  .product-copy {
    width: min(30rem, 100%);
  }

  /* --- Statement (#reframe): Text links, Video rechts --- */
  #reframe {
    grid-template-rows: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 4rem;
    align-items: center;
    padding-inline: max(var(--screen-pad-x), calc((100vw - var(--content-max)) / 2));
    background: #000;
  }

  #reframe.screen--statement .screen__content {
    grid-row: 1;
    grid-column: 1;
    padding-inline: 0;
    padding-block: 4rem;
  }

  #reframe .media-slot {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    max-width: 34rem;
    justify-self: end;
    width: 100%;
  }

  #reframe.screen--statement .display {
    font-size: clamp(3rem, 3.6vw, 4.2rem);
  }

  #reframe .lede {
    max-width: 30rem;
  }

  /* --- Health-Claim-Band --- */
  .health-claim {
    grid-template-columns: 3.5rem minmax(0, auto);
    justify-content: center;
    padding-block: 1.6rem;
  }

  .health-claim p {
    max-width: 52rem;
    font-size: 1.18rem;
  }

  /* --- Karten-Raster (Momente, Sportarten, Ratgeber-Teaser) --- */
  .screen--moments .lede,
  .screen--sports .lede {
    max-width: 34rem;
  }

  .moment-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .screen--sports .moment-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .moment-card {
    min-height: 15rem;
  }

  .screen--sports .moment-card {
    min-height: 17rem;
  }

  .moment-card h3 {
    font-size: clamp(1.5rem, 1.5vw, 1.9rem);
  }

  .guide-teaser-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  /* --- Produkt-Fakten: zweispaltig --- */
  .screen--product-facts .screen__content {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    column-gap: 4rem;
    align-items: start;
  }

  .screen--product-facts .screen__eyebrow-block {
    grid-column: 1 / -1;
  }

  .product-facts__visual {
    position: sticky;
    top: 5.5rem;
    margin: 0;
    border: 1px solid rgba(45, 216, 202, 0.16);
    border-radius: var(--radius-panel);
  }

  .product-facts__body {
    padding-top: 0;
  }

  .product-facts__body .display {
    font-size: clamp(2.9rem, 3.2vw, 4rem);
  }

  /* --- FAQ + Kauf-Finale schmaler fuehren --- */
  .screen--faq .screen__content {
    max-width: 56rem;
  }

  .accordion__item p {
    max-width: 46rem;
  }

  .screen--buy-home .screen__content {
    max-width: 48rem;
  }

  /* --- Formel / Wissenschaft (Unterseiten) --- */
  .screen--formula .screen__content {
    max-width: 56rem;
  }

  .science-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  /* --- Artikel-Seiten: zentrierte Lesespalte --- */
  .guide-article,
  .logic-page,
  .moment-detail,
  .buy-page,
  .legal-page {
    padding-inline: max(var(--screen-pad-x), calc((100% - 48rem) / 2));
  }

  .overview-page {
    padding-inline: max(var(--screen-pad-x), calc((100% - 60rem) / 2));
  }

  .guide-hero .display,
  .overview-hero .display {
    max-width: 100%;
  }

  .overview-moment-list,
  .overview-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .overview-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .overview-link-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .buy-retailer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  /* --- Footer --- */
  .site-footer__inner {
    max-width: var(--content-max);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .site-footer__logo,
  .site-footer__rule,
  .site-footer__claim {
    grid-column: 1;
  }

  .site-footer__links {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: end;
    justify-content: flex-end;
  }
}
