@font-face {
  font-family: "Prata";
  src: url("/assets/fonts/prata-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --night: #09070b;
  --night-deep: #060409;
  --night-raised: #121015;
  --night-soft: #19161c;
  --pearl: #f2eee8;
  --pearl-muted: #c9c1b7;
  --ink: #171419;
  --paper: #f4f0ea;
  --paper-raised: #fffdf9;
  --gold: #d6a43a;
  --gold-light: #f1d37a;
  --gold-deep: #9a7222;
  --ruby: #8b2e3b;
  --ruby-bright: #c2455a;
  --orchid: #d64aa6;
  --ember: #c77a18;
  --line-dark: rgba(242, 238, 232, 0.17);
  --line-dark-soft: rgba(242, 238, 232, 0.09);
  --line-gold: rgba(214, 164, 58, 0.42);
  --line-light: rgba(23, 20, 25, 0.17);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.55);
  --content: 1220px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --aurum-text: linear-gradient(105deg, #9a7222 0%, #f1d37a 38%, #fbe9ad 50%, #f1d37a 62%, #9a7222 100%);
  --memberarea-cart-bg: #fffdf9;
  --memberarea-cart-accent: #8b2e3b;
  --memberarea-cart-text: #171419;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--pearl);
  background: var(--night);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.preview-page {
  color-scheme: light;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--night);
  background: var(--gold-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--night);
  background: var(--gold-light);
  font-weight: 600;
  transform: translateY(-160%);
}

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

.eyebrow,
.micro-label {
  margin: 0;
  color: var(--gold-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--pearl);
  border-radius: 0;
  color: var(--pearl);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--night);
  background: var(--pearl);
  transform: translateY(-2px);
}

.button--gold {
  color: var(--night);
  border-color: var(--gold);
  background: var(--gold);
}

.button--gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button--dark {
  color: var(--pearl);
  border-color: var(--night);
  background: var(--night);
}

.button--dark:hover {
  color: var(--night);
  border-color: var(--gold);
  background: var(--gold);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 600;
}

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

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

/* Public coming-soon site */
.shipping-bar {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 8px 20px;
  color: var(--night);
  background: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.public-header {
  position: relative;
  z-index: 20;
  display: grid;
  width: min(100% - 40px, var(--content));
  min-height: 92px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.preview-entry {
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.preview-entry::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.preview-entry:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.public-header .brand-lockup {
  align-items: center;
}

.brand-word {
  font-family: "Prata", Georgia, serif;
  font-size: 1.34rem;
  letter-spacing: 0.19em;
  line-height: 1;
}

.brand-sub {
  color: var(--gold-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.public-nav {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
}

.public-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.public-nav a:hover {
  color: var(--gold-light);
}

.public-hero {
  position: relative;
  display: grid;
  width: min(100% - 40px, var(--content));
  min-height: 710px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.03fr) minmax(350px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 8vw, 112px);
  padding: 68px 0 86px;
}

.public-hero::before {
  position: absolute;
  width: 1px;
  height: 102px;
  top: 0;
  left: 45%;
  background: var(--line-dark);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: clamp(0px, 2vw, 28px);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 24px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(3.65rem, 6.6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-light);
  font-size: 0.57em;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.hero-copy__lead {
  max-width: 590px;
  margin: 0;
  color: var(--pearl-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.release-note {
  display: grid;
  max-width: 520px;
  margin: 54px 0 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  color: var(--pearl-muted);
  font-size: 0.78rem;
}

.release-note strong {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
}

.video-portal {
  position: relative;
  width: min(100%, 460px);
  justify-self: center;
  padding: 13px;
  border: 1px solid rgba(214, 164, 58, 0.68);
  background: var(--night-raised);
  box-shadow: var(--shadow);
}

.video-portal::before,
.video-portal::after {
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-color: var(--gold-light);
  content: "";
  pointer-events: none;
}

.video-portal::before {
  top: -8px;
  left: -8px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.video-portal::after {
  right: -8px;
  bottom: -8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.video-portal video {
  width: 100%;
  aspect-ratio: 464 / 688;
  object-fit: cover;
  background: #140b13;
  filter: brightness(1.22) contrast(1.02) saturate(1.08);
}

.video-portal__caption {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.video-portal__caption span {
  max-width: 190px;
  padding: 9px 11px;
  color: var(--pearl);
  background: rgba(9, 7, 11, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.video-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid var(--pearl);
  color: var(--pearl);
  background: rgba(9, 7, 11, 0.78);
  cursor: pointer;
  pointer-events: auto;
}

.video-toggle:hover {
  color: var(--night);
  background: var(--pearl);
}

.vitality-line {
  width: min(100% - 40px, var(--content));
  height: 62px;
  margin: 0 auto;
  color: var(--gold);
  overflow: visible;
}

.vitality-line path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1260;
  stroke-dashoffset: 1260;
  animation: draw-vitality 2.4s 250ms ease-out forwards;
}

@keyframes draw-vitality {
  to { stroke-dashoffset: 0; }
}

.public-products {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 94px 0 116px;
}

.section-heading {
  display: grid;
  margin-bottom: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: 40px;
}

.section-heading h2,
.content-section h2,
.empty-spec h2 {
  margin: 13px 0 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.45rem, 4.4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--pearl-muted);
}

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

.public-product {
  position: relative;
  min-height: 485px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  background: var(--night-raised);
  overflow: hidden;
}

.public-product::after {
  position: absolute;
  height: 4px;
  right: 22px;
  bottom: 0;
  left: 22px;
  background: var(--accent, var(--gold));
  content: "";
}

.public-product--heart { --accent: var(--ruby); }
.public-product--women { --accent: var(--orchid); }
.public-product--men { --accent: var(--ember); }

.public-product__index {
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.public-product__image {
  display: grid;
  height: 270px;
  place-items: center;
  margin: 11px 0 21px;
  background: #0d0b0f;
  overflow: hidden;
}

.public-product__image img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.16);
  transform-origin: center top;
  transition: transform 280ms ease;
}

.public-product--heart .public-product__image img {
  padding: 13px;
  object-fit: contain;
  transform: none;
}

.public-product:hover .public-product__image img {
  transform: scale(1.2);
}

.public-product--heart:hover .public-product__image img {
  transform: scale(1.035);
}

.public-product h3 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.public-product__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: var(--pearl-muted);
  font-size: 0.82rem;
}

.public-product__meta strong {
  color: var(--pearl);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
}

.public-story {
  border-block: 1px solid var(--line-dark);
  background: var(--night-raised);
}

.public-story__inner {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.story-mark {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  border-right: 1px solid var(--line-dark);
  overflow: hidden;
}

.story-mark::before,
.story-mark::after {
  position: absolute;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "";
}

.story-mark::before {
  width: 300px;
  height: 300px;
}

.story-mark::after {
  width: 420px;
  height: 420px;
}

.story-mark span {
  position: relative;
  z-index: 2;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: -0.09em;
}

.story-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 110px);
}

.story-copy h2 {
  max-width: 670px;
  margin: 16px 0 24px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.story-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--pearl-muted);
  font-size: 1.05rem;
}

.public-cta {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 100px 0;
}

.public-cta h2 {
  max-width: 800px;
  margin: 12px 0 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.public-footer {
  border-top: 1px solid var(--line-dark);
}

.public-footer__main {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 0.75fr;
  gap: clamp(28px, 4vw, 60px);
  padding: 58px 0 48px;
}

.public-footer__main p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--pearl-muted);
  font-size: 0.86rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  min-height: 34px;
  padding: 0;
  border: 0;
  color: var(--pearl-muted);
  background: transparent;
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--pearl);
}

.public-footer__bottom {
  display: flex;
  width: min(100% - 40px, var(--content));
  min-height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  color-scheme: light;
  color: var(--ink);
  background: var(--paper);
}

.legal-section__inner {
  width: min(100% - 40px, 930px);
  margin: 0 auto;
  padding: 80px 0;
}

.legal-section .eyebrow {
  color: var(--ruby);
}

.legal-section h2 {
  margin: 12px 0 34px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.legal-card {
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.legal-card:last-child {
  border-bottom: 1px solid var(--line-light);
}

.legal-card summary {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-family: "Prata", Georgia, serif;
  font-size: 1.5rem;
  cursor: pointer;
}

.legal-card summary::-webkit-details-marker { display: none; }
.legal-card summary::after { content: "+"; color: var(--ruby); font-family: "Instrument Sans", sans-serif; }
.legal-card[open] summary::after { content: "–"; }

.legal-card__content {
  max-width: 760px;
  padding: 20px 0 4px;
  color: #5e5760;
  font-size: 0.94rem;
}

.legal-card__content h3 {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.legal-card__content ul {
  padding-left: 20px;
}

/* Login */
.login-page {
  min-height: 100vh;
  color: var(--pearl);
  background: var(--night);
}

.login-stage {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 80px 22px;
  overflow: hidden;
}

.login-stage::before,
.login-stage::after {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "";
}

.login-stage::before { top: -360px; right: -150px; }
.login-stage::after { bottom: -400px; left: -170px; }

.login-back {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 30px;
  min-height: 44px;
  font-size: 0.84rem;
}

.login-back:hover { color: var(--gold-light); }

.login-card {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--line-dark);
  background: var(--night-raised);
  box-shadow: var(--shadow);
}

.brand-lockup--center {
  width: 100%;
  align-items: center;
  margin-bottom: 44px;
}

.login-pulse {
  position: relative;
  height: 18px;
  margin-bottom: 31px;
  border-block: 1px solid var(--line-dark);
}

.login-pulse::before {
  position: absolute;
  width: 70px;
  height: 1px;
  top: 8px;
  left: calc(50% - 35px);
  background: var(--gold);
  box-shadow: -22px -5px 0 -0.2px var(--gold), 22px 5px 0 -0.2px var(--gold);
  content: "";
  transform: rotate(-9deg);
}

.login-card h1 {
  margin: 10px 0 15px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.login-intro,
.login-note {
  color: var(--pearl-muted);
}

.login-intro { margin: 0 0 30px; }
.login-note { margin: 22px 0 0; font-size: 0.76rem; }

.login-form {
  display: grid;
  gap: 12px;
}

.login-form label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  min-height: 52px;
  margin-bottom: 8px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  color: var(--pearl);
  background: var(--night);
}

.login-form input:focus {
  border-color: var(--gold);
}

.form-message {
  margin: 0 0 22px;
  padding: 12px 14px;
  font-size: 0.84rem;
}

.form-message--error {
  color: #ffd7da;
  border: 1px solid #9a3e49;
  background: #32171c;
}

/* Protected preview shell */
.shipping-bar--preview {
  display: flex;
  justify-content: space-between;
}

.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preview-status > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ruby);
}

.preview-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  min-height: 92px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  border-bottom: 1px solid var(--line-light);
  background: rgba(244, 240, 234, 0.96);
  backdrop-filter: blur(16px);
}

.preview-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.2vw, 32px);
  font-size: 0.84rem;
}

.preview-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.preview-nav a::after {
  position: absolute;
  height: 2px;
  right: 0;
  bottom: 6px;
  left: 0;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.preview-nav a:hover::after,
.preview-nav a.is-current::after {
  transform: scaleX(1);
}

.preview-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-actions form { margin: 0; }

.commerce-pill {
  padding: 7px 9px;
  border: 1px solid var(--line-light);
  color: #655c65;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logout-button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.76rem;
  cursor: pointer;
}

.logout-button:hover {
  color: var(--paper);
  background: var(--ink);
}

.nav-toggle {
  display: none;
}

.preview-main {
  min-height: calc(100vh - 240px);
}

.preview-hero {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  padding: 72px 0 90px;
}

.preview-hero h1,
.shop-intro h1,
.ingredients-intro h1,
.affiliate-intro h1,
.product-copy h1 {
  margin: 15px 0 24px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.preview-hero__lead,
.shop-intro__lead,
.ingredients-intro__lead,
.affiliate-intro__lead,
.product-lead {
  max-width: 650px;
  margin: 0;
  color: #645d65;
  font-size: 1.08rem;
}

.preview-hero .hero-actions {
  margin-top: 32px;
}

.preview-video {
  position: relative;
  width: min(100%, 400px);
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--line-light);
  background: var(--night);
  box-shadow: 20px 24px 0 var(--gold);
}

.preview-video video {
  width: 100%;
  aspect-ratio: 464 / 688;
  object-fit: cover;
  filter: brightness(1.22) contrast(1.02) saturate(1.08);
}

.preview-video .video-toggle {
  position: absolute;
  right: 23px;
  bottom: 23px;
}

.preview-metrics {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto 100px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-light);
}

.preview-metrics div {
  padding: 26px;
}

.preview-metrics div + div {
  border-left: 1px solid var(--line-light);
}

.preview-metrics span,
.fact-strip span {
  display: block;
  margin-bottom: 8px;
  color: #625b63;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-metrics strong {
  font-family: "Prata", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.preview-section,
.shop-intro,
.ingredients-intro,
.affiliate-intro,
.content-section,
.notice-panel,
.empty-spec,
.next-products {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.preview-section {
  padding: 0 0 110px;
}

.preview-section .section-heading > p:last-child,
.shop-intro__lead,
.ingredients-intro__lead,
.affiliate-intro__lead {
  color: #645d65;
}

.preview-section .section-heading h2,
.preview-page .content-section h2,
.preview-page .empty-spec h2 {
  color: var(--ink);
}

.preview-page .eyebrow { color: var(--ruby); }

.product-card {
  --product-accent: var(--gold);
  border: 1px solid var(--line-light);
  background: var(--paper-raised);
}

.product-card--heart { --product-accent: var(--ruby); }
.product-card--women { --product-accent: var(--orchid); }
.product-card--men { --product-accent: var(--ember); }

.product-card__image {
  position: relative;
  display: grid;
  height: 335px;
  place-items: center;
  border-bottom: 4px solid var(--product-accent);
  background: var(--night);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform 250ms ease;
}

.product-card:hover .product-card__image img { transform: scale(1.035); }

.product-card__body {
  padding: 25px;
}

.product-card__kicker {
  color: #776f77;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card__title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.product-card h3 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.08;
}

.product-card__title-row strong {
  white-space: nowrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.79rem;
  font-weight: 500;
}

.product-card__body > p {
  min-height: 76px;
  color: #645d65;
  font-size: 0.87rem;
}

.product-card__widget { margin-top: 22px; }

.shop-intro,
.ingredients-intro,
.affiliate-intro {
  padding: 76px 0 52px;
}

.shop-intro h1,
.ingredients-intro h1,
.affiliate-intro h1 {
  max-width: 900px;
}

.shop-toolbar {
  display: flex;
  width: min(100% - 40px, var(--content));
  margin: 0 auto 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  border-block: 1px solid var(--line-light);
  color: #655e66;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-grid-wrap {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding-bottom: 110px;
}

.product-hero {
  --product-accent: var(--gold);
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding: 75px 0 92px;
}

.product-hero--heart { --product-accent: var(--ruby); }
.product-hero--women { --product-accent: var(--orchid); }
.product-hero--men { --product-accent: var(--ember); }

.product-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  border: 1px solid var(--line-light);
  background: var(--night);
  overflow: hidden;
}

.product-visual::after {
  position: absolute;
  height: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--product-accent);
  content: "";
}

.product-visual img {
  position: relative;
  z-index: 2;
  width: 92%;
  max-height: 490px;
  object-fit: contain;
}

.product-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid var(--product-accent);
  border-color: color-mix(in srgb, var(--product-accent) 70%, transparent);
  border-radius: 50%;
}

.product-copy .eyebrow { color: var(--product-accent); }
.product-copy h1 { font-size: clamp(3rem, 5.7vw, 5.8rem); }

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #645d65;
  font-size: 0.82rem;
}

.back-link:hover { color: var(--ink); }

.product-price {
  margin: 27px 0 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.05rem;
  font-weight: 500;
}

.commerce-lock {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border: 1px solid var(--line-light);
}

.commerce-lock__price {
  display: none;
}

.commerce-lock button {
  min-height: 50px;
  border: 0;
  color: #9b949b;
  background: #e6e0da;
  cursor: not-allowed;
}

.commerce-lock small {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border-top: 1px solid var(--line-light);
  color: #716971;
  font-size: 0.69rem;
}

.review-note {
  display: grid;
  margin-top: 28px;
  grid-template-columns: auto 1fr;
  gap: 14px;
  color: #665f66;
  font-size: 0.78rem;
}

.review-note strong {
  color: var(--ruby);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-strip {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-light);
}

.fact-strip > div {
  padding: 27px;
}

.fact-strip > div + div { border-left: 1px solid var(--line-light); }
.fact-strip strong { font-size: 1rem; font-weight: 600; }

.content-section {
  padding: 100px 0;
}

.content-section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(50px, 9vw, 130px);
}

.content-section > div > p:not(.eyebrow) {
  color: #655e66;
}

.ingredient-table {
  width: 100%;
  align-self: center;
  border-top: 1px solid var(--line-light);
  border-collapse: collapse;
}

.ingredient-table th,
.ingredient-table td {
  height: 56px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
}

.ingredient-table thead th {
  height: 42px;
  color: #625b63;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ingredient-table th[scope="row"] {
  padding-right: 20px;
  font-weight: 400;
}

.ingredient-table td:last-child,
.ingredient-table thead th:last-child {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: right;
}

.ingredient-row strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

.notice-panel {
  margin-bottom: 100px;
  padding: clamp(30px, 5vw, 54px);
  border-left: 5px solid var(--gold);
  background: var(--paper-raised);
}

.notice-panel ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: #625b63;
}

.empty-spec {
  margin-bottom: 100px;
  padding: 80px;
  border: 1px solid var(--line-light);
  background: var(--paper-raised);
}

.empty-spec p:last-child { color: #655e66; }

.next-products {
  padding: 0 0 110px;
}

.mini-product-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-product-grid a {
  display: grid;
  min-height: 150px;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  border: 1px solid var(--line-light);
  background: var(--paper-raised);
}

.mini-product-grid img {
  width: 150px;
  height: 148px;
  padding: 8px;
  object-fit: contain;
  background: var(--night);
}

.mini-product-grid span { font-family: "Prata", Georgia, serif; font-size: 1.25rem; }
.mini-product-grid strong { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; font-weight: 500; }

.ingredient-overview {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 0 0 110px;
}

.ingredient-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ingredient-panel {
  --product-accent: var(--gold);
  padding: clamp(28px, 4vw, 46px);
  border-top: 5px solid var(--product-accent);
  background: var(--paper-raised);
}

.ingredient-panel--women { --product-accent: var(--orchid); }
.ingredient-panel--men { --product-accent: var(--ember); }

.ingredient-panel h2 {
  margin: 11px 0 24px;
  font-family: "Prata", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.ingredient-panel .ingredient-row { font-size: 0.88rem; }

.heart-pending {
  display: grid;
  margin-top: 18px;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  align-items: center;
  gap: 50px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: var(--paper-raised);
}

.heart-pending img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.heart-pending h2 {
  margin: 10px 0;
  font-family: "Prata", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.heart-pending p:last-child { color: #655e66; }

.registration-flow {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-light);
}

.registration-flow article {
  padding: 34px;
}

.registration-flow article + article { border-left: 1px solid var(--line-light); }

.registration-flow span {
  color: var(--ruby);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.registration-flow h2 {
  margin: 15px 0 10px;
  font-family: "Prata", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.registration-flow p { margin: 0; color: #655e66; font-size: 0.88rem; }

.registration-preview {
  display: grid;
  width: min(100% - 40px, 980px);
  margin: 90px auto 110px;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: 60px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line-light);
  background: var(--paper-raised);
}

.registration-preview h2 {
  margin: 12px 0 18px;
  font-family: "Prata", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.registration-preview__copy > p:last-child { color: #655e66; }

.registration-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.registration-form label {
  display: grid;
  gap: 7px;
  color: #554f56;
  font-size: 0.76rem;
}

.registration-form input {
  width: 100%;
  min-height: 49px;
  padding: 0 12px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  color: #888087;
  background: var(--paper);
}

.registration-form .form-span,
.registration-form button,
.registration-form small {
  grid-column: 1 / -1;
}

.registration-form button {
  min-height: 50px;
  border: 0;
  color: #908991;
  background: #e3ddd7;
}

.registration-form small { color: #7a737a; }

.preview-footer {
  display: flex;
  min-height: 130px;
  padding: 35px max(24px, calc((100vw - var(--content)) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--pearl-muted);
  background: var(--night);
}

.preview-footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.preview-footer strong {
  color: var(--pearl);
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.preview-footer span,
.preview-footer a {
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover { color: var(--gold-light); }

/* MemberArea integration hooks */
#ma-product-add .ma-pa,
[id="ma-product-add"] .ma-pa {
  width: 100%;
}

#ma-product-add .ma-pa__add,
[id="ma-product-add"] .ma-pa__add {
  min-height: 48px;
  border-radius: 0;
  background: var(--ruby);
  font-family: "Instrument Sans", sans-serif;
}

@media (max-width: 1060px) {
  .preview-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line-light);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .preview-nav {
    position: absolute;
    top: 91px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line-light);
    background: var(--paper-raised);
  }

  .preview-nav.is-open { display: flex; }
  .preview-actions { justify-self: end; }

  .public-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 44px;
  }

  .product-grid,
  .public-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid .product-card:last-child,
  .public-product-grid .public-product:last-child {
    grid-column: 1 / -1;
  }

  .product-grid .product-card:last-child .product-card__image,
  .public-product-grid .public-product:last-child .public-product__image {
    height: 320px;
  }
}

@media (max-width: 780px) {
  .public-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .public-header .brand-lockup {
    grid-column: 2;
    align-items: flex-end;
  }

  .preview-entry { grid-column: 1; grid-row: 1; }
  .public-header {
    padding-bottom: 10px;
    grid-template-rows: 66px auto;
  }

  .public-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line-dark);
  }

  .public-nav a {
    min-height: 38px;
    font-size: 0.76rem;
  }

  .public-hero,
  .preview-hero,
  .product-hero,
  .public-story__inner,
  .content-section--split,
  .registration-preview {
    grid-template-columns: 1fr;
  }

  .public-hero {
    min-height: auto;
    gap: 54px;
    padding: 64px 0 76px;
  }

  .hero-copy { padding-left: 0; }
  .hero-copy h1 { font-size: clamp(3.25rem, 14vw, 5.2rem); }
  .video-portal { width: min(92%, 460px); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }

  .public-products { padding: 70px 0 80px; }
  .product-grid,
  .public-product-grid,
  .ingredient-tabs,
  .registration-flow,
  .preview-metrics,
  .fact-strip {
    grid-template-columns: 1fr;
  }

  .product-grid .product-card:last-child,
  .public-product-grid .public-product:last-child { grid-column: auto; }

  .story-mark {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .story-copy { padding: 62px 0 75px; }
  .public-cta { grid-template-columns: 1fr; padding: 78px 0; }
  .public-footer__main { grid-template-columns: 1fr 1fr; }
  .public-footer__main > div:first-child { grid-column: 1 / -1; }
  .public-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }

  .shipping-bar--preview .preview-status--right { display: none; }
  .preview-header { min-height: 78px; gap: 12px; }
  .preview-nav { top: 77px; }
  .commerce-pill { display: none; }
  .preview-hero { padding: 60px 0 78px; }
  .preview-video { width: min(88%, 400px); }

  .preview-metrics div + div,
  .fact-strip > div + div,
  .registration-flow article + article {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .product-hero { padding: 55px 0 78px; }
  .product-visual { min-height: 420px; }
  .product-orbit { width: 300px; height: 300px; }
  .content-section--split { gap: 45px; }
  .heart-pending { grid-template-columns: 1fr; }
  .registration-preview { gap: 35px; }
  .preview-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .shipping-bar { font-size: 0.58rem; letter-spacing: 0.1em; }
  .public-header,
  .public-hero,
  .vitality-line,
  .public-products,
  .public-story__inner,
  .public-cta,
  .public-footer__main,
  .public-footer__bottom,
  .preview-hero,
  .preview-metrics,
  .preview-section,
  .shop-intro,
  .ingredients-intro,
  .affiliate-intro,
  .shop-toolbar,
  .shop-grid-wrap,
  .product-hero,
  .fact-strip,
  .content-section,
  .notice-panel,
  .empty-spec,
  .next-products,
  .ingredient-overview,
  .registration-flow,
  .registration-preview {
    width: min(100% - 28px, var(--content));
  }

  .preview-entry { padding: 0 9px; font-size: 0.57rem; }
  .brand-word { font-size: 1.05rem; }
  .brand-sub { font-size: 0.46rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .release-note { margin-top: 38px; }
  .video-portal { width: 100%; }
  .video-portal__caption span { display: none; }
  .public-product { min-height: 440px; padding: 16px; }
  .public-product__image { height: 210px; }
  .public-product__image img { transform: scale(1.28); }
  .public-product--heart .public-product__image img { transform: none; }
  .public-footer__main { grid-template-columns: 1fr; gap: 35px; }
  .public-footer__main > div:first-child { grid-column: auto; }
  .legal-section__inner { width: min(100% - 28px, 930px); }

  .preview-header { padding-inline: 14px; }
  .preview-header .brand-sub { display: none; }
  .logout-button { padding: 0 9px; font-size: 0.68rem; }
  .preview-hero h1,
  .shop-intro h1,
  .ingredients-intro h1,
  .affiliate-intro h1,
  .product-copy h1 { font-size: clamp(2.65rem, 15vw, 4.2rem); }
  .product-card__image { height: 280px; }
  .product-card__body > p { min-height: auto; }
  .product-visual { min-height: 340px; }
  .empty-spec { padding: 35px 24px; }
  .mini-product-grid { grid-template-columns: 1fr; }
  .mini-product-grid a { grid-template-columns: 100px 1fr; padding-right: 15px; }
  .mini-product-grid img { width: 100px; height: 110px; }
  .mini-product-grid strong { display: none; }
  .registration-form { grid-template-columns: 1fr; }
  .registration-preview { padding: 28px 20px; }
}

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

  .vitality-line path { stroke-dashoffset: 0; }
}

/* ============================================================
   Fable-Layer „Die Goldene Ader“
   Neue öffentliche Designwelt: Aurora, Filmkorn, orchestrierter
   Hero, Scroll-Reveals, Lebensader, Inhaltsstoff- und Rechtsseiten.
   Bestehende Vorschau-/Login-Klassen bleiben kompatibel.
   ============================================================ */

/* --- Atmosphäre: Aurora + Filmkorn (nur dunkle öffentliche Seiten) --- */
.public-body {
  position: relative;
  background:
    radial-gradient(1100px 700px at 84% -160px, rgba(139, 46, 59, 0.20), transparent 68%),
    radial-gradient(900px 640px at -180px 42%, rgba(199, 122, 24, 0.11), transparent 70%),
    radial-gradient(760px 560px at 108% 78%, rgba(214, 74, 166, 0.08), transparent 72%),
    var(--night);
}

.public-body::after,
.login-page::after {
  position: fixed;
  z-index: 900;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.05;
  pointer-events: none;
}

.aurora {
  position: fixed;
  z-index: 0;
  inset: -20vh -10vw;
  overflow: hidden;
  pointer-events: none;
}

.aurora span {
  position: absolute;
  width: clamp(420px, 52vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.5;
  will-change: transform;
}

.aurora span:nth-child(1) {
  top: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(139, 46, 59, 0.34) 0%, transparent 62%);
  animation: aurora-drift 46s ease-in-out infinite alternate;
}

.aurora span:nth-child(2) {
  bottom: -18%;
  left: -10%;
  background: radial-gradient(circle, rgba(199, 122, 24, 0.20) 0%, transparent 64%);
  animation: aurora-drift 58s 4s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(6vw, 8vh, 0) scale(1.14); }
}

/* --- Lebensader: linke Scroll-Fortschrittslinie --- */
.aurum-rail {
  position: fixed;
  z-index: 40;
  top: 0;
  bottom: 0;
  left: clamp(10px, 1.6vw, 26px);
  width: 1px;
  background: var(--line-dark-soft);
  pointer-events: none;
}

.aurum-rail::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-deep), var(--gold-light));
  box-shadow: 0 0 12px rgba(241, 211, 122, 0.55);
  content: "";
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: top;
}

@media (max-width: 1300px) {
  .aurum-rail { display: none; }
}

/* --- Hero-Bühne: Markenbild als Hintergrundwelt --- */
.hero-stage {
  position: relative;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("/assets/images/mbovia-brand-world.webp") right 42% / cover no-repeat;
  content: "";
  opacity: 0.62;
}

.hero-stage::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 11, 0.94) 0%, rgba(9, 7, 11, 0.78) 34%, rgba(9, 7, 11, 0.30) 62%, rgba(9, 7, 11, 0.42) 100%),
    linear-gradient(180deg, rgba(9, 7, 11, 0.62) 0%, transparent 22%, transparent 70%, var(--night) 100%);
  content: "";
}

/* --- Header: schwebend, glasig --- */
.public-body .public-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  padding-inline: max(20px, calc((100vw - var(--content)) / 2));
  background: rgba(9, 7, 11, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* --- Hero-Orchestrierung --- */
.js .public-hero [data-act],
.js .ing-hero [data-act] {
  animation: act-rise 1s var(--ease-out) both;
  animation-delay: calc(120ms + var(--act-i, 0) * 130ms);
}

@keyframes act-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy h1 .aurum-word {
  display: block;
  background: var(--aurum-text);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: aurum-shine 9s ease-in-out 1.6s infinite;
}

@keyframes aurum-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.js .video-portal[data-act] {
  animation-name: portal-rise;
  animation-duration: 1.15s;
}

@keyframes portal-rise {
  from { opacity: 0; transform: translateY(30px) scale(0.965); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.video-portal__frame {
  position: relative;
  overflow: hidden;
}

.portal-sheen {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(112deg, transparent 32%, rgba(251, 233, 173, 0.24) 46%, rgba(255, 255, 255, 0.30) 50%, rgba(251, 233, 173, 0.24) 54%, transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-115%);
}

.js .portal-sheen {
  animation: sheen-sweep 1.7s var(--ease-out) 1.25s forwards;
}

@keyframes sheen-sweep {
  0% { opacity: 1; transform: translateX(-115%); }
  100% { opacity: 0; transform: translateX(115%); }
}

.video-portal {
  border-color: var(--line-gold);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(214, 164, 58, 0.10), 0 0 90px rgba(214, 164, 58, 0.07);
}

.hero-marquee {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 14px 0 4px;
  color: var(--pearl-muted);
  border-top: 1px solid var(--line-dark-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.hero-marquee b {
  color: var(--gold-light);
  font-weight: 500;
}

/* --- Scroll-Reveals --- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: calc(var(--reveal-i, 0) * 110ms);
}

.js [data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* --- Vitalitätslinie: zeichnet erst beim Scrollen --- */
.js .vitality-line path {
  animation: none;
  stroke-dashoffset: 1260;
}

.js .vitality-line.is-inview path {
  animation: draw-vitality 2.2s var(--ease-out) forwards;
}

.vitality-line {
  filter: drop-shadow(0 0 6px rgba(214, 164, 58, 0.45));
}

/* --- Produktkarten: Licht-Sweep und Ghost-Ziffer --- */
.public-product {
  isolation: isolate;
  border-color: var(--line-dark-soft);
  background: linear-gradient(180deg, rgba(25, 22, 28, 0.92), rgba(13, 11, 15, 0.94));
  transition: transform 380ms var(--ease-out), border-color 380ms ease, box-shadow 380ms ease;
}

.public-product:hover {
  border-color: color-mix(in srgb, var(--accent, var(--gold)) 55%, transparent);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(-7px);
}

.public-product::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(242, 238, 232, 0.065) 48%, rgba(242, 238, 232, 0.10) 50%, rgba(242, 238, 232, 0.065) 52%, transparent 64%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
  transition: opacity 200ms ease;
}

.public-product:hover::before {
  animation: card-sweep 850ms var(--ease-out) forwards;
}

@keyframes card-sweep {
  0% { opacity: 1; transform: translateX(-120%); }
  100% { opacity: 0; transform: translateX(120%); }
}

.public-product__ghost {
  position: absolute;
  z-index: 0;
  right: 6px;
  bottom: -32px;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--accent, var(--gold)) 34%, transparent);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(7rem, 10vw, 10rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.public-product__image,
.public-product h3,
.public-product__index,
.public-product__meta,
.public-product__tag {
  position: relative;
  z-index: 2;
}

.public-product__tag {
  display: inline-flex;
  margin-top: 15px;
  padding: 6px 9px;
  border: 1px solid var(--line-dark-soft);
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Claimfreies Markenmotiv statt Etikett-Renderings (Women/Men) */
.public-product__image--abstract {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  background: url("/assets/images/mbovia-brand-world.webp") var(--motif-pos, center 30%) / cover no-repeat #0d0b0f;
}

.public-product__image--abstract::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(72% 88% at 50% 100%, color-mix(in srgb, var(--accent, var(--gold)) 24%, transparent), transparent 72%),
    linear-gradient(180deg, rgba(9, 7, 11, 0.55), rgba(9, 7, 11, 0.24) 52%, rgba(9, 7, 11, 0.62));
  content: "";
}

.public-product__monogram {
  position: relative;
  z-index: 2;
  background: var(--aurum-text);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(4.4rem, 7vw, 6.2rem);
  line-height: 1;
}

.public-product__imgnote {
  position: relative;
  z-index: 2;
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ing-product__thumb--abstract {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 190px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  background: url("/assets/images/mbovia-brand-world.webp") var(--motif-pos, center 30%) / cover no-repeat #0d0b0f;
}

.ing-product__thumb--abstract::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(75% 90% at 50% 100%, color-mix(in srgb, var(--accent, var(--gold)) 22%, transparent), transparent 74%),
    linear-gradient(180deg, rgba(9, 7, 11, 0.5), rgba(9, 7, 11, 0.26) 55%, rgba(9, 7, 11, 0.58));
  content: "";
}

.ing-product__thumb--abstract span {
  position: relative;
  z-index: 2;
  background: var(--aurum-text);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Prata", Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
}

.ing-product__thumb--abstract small {
  position: relative;
  z-index: 2;
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* --- Story: rotierender Goldring + Puls --- */
.story-mark::before {
  border: 1px dashed var(--line-gold);
  animation: ring-turn 70s linear infinite;
}

@keyframes ring-turn {
  to { transform: rotate(360deg); }
}

.story-mark span {
  background: var(--aurum-text);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* --- Transparenz-Sektion (öffentliche Inhaltsstoffe) --- */
.transparency {
  border-block: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(18, 16, 21, 0.68), rgba(9, 7, 11, 0.2));
}

.transparency__inner {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding: 96px 0;
}

.transparency h2 {
  max-width: 720px;
  margin: 14px 0 20px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.transparency p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 30px;
  color: var(--pearl-muted);
}

.transparency__panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-dark);
  background: var(--night-raised);
}

.transparency__panel a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  font-size: 0.95rem;
  transition: background-color 200ms ease, color 200ms ease, padding-left 200ms var(--ease-out);
}

.transparency__panel a + a {
  border-top: 1px solid var(--line-dark-soft);
}

.transparency__panel a:hover {
  color: var(--gold-light);
  background: rgba(214, 164, 58, 0.06);
  padding-left: 28px;
}

.transparency__panel a span:last-child {
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

/* --- Launch-Status --- */
.status-flow {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 100px 0 110px;
}

.status-flow__grid {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-dark);
}

.status-step {
  position: relative;
  padding: 30px 26px 34px;
}

.status-step + .status-step {
  border-left: 1px solid var(--line-dark);
}

.status-step__no {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.status-step h3 {
  margin: 0 0 8px;
  font-family: "Prata", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.status-step p {
  margin: 0;
  color: var(--pearl-muted);
  font-size: 0.86rem;
}

.status-step__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-step__state::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.status-step--active .status-step__state { color: var(--gold-light); }

.status-step--active .status-step__state::before {
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 164, 58, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(214, 164, 58, 0); }
}

.status-step--pending .status-step__state::before {
  background: transparent;
  border: 1px solid var(--pearl-muted);
}

/* --- Footer-Feinschliff --- */
.public-footer {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(6, 4, 9, 0.7));
}

.footer-note {
  margin-top: 14px;
  color: var(--pearl-muted);
  font-size: 0.72rem;
  opacity: 0.75;
}

/* ============================================================
   Öffentliche Inhaltsstoffseite
   ============================================================ */
.ing-hero {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: clamp(56px, 9vh, 110px) 0 30px;
  text-align: center;
}

.ing-hero h1 {
  margin: 16px auto 18px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.9rem, 6.4vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ing-hero h1 em {
  font-style: normal;
  background: var(--aurum-text);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ing-hero > p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--pearl-muted);
  font-size: 1.02rem;
}

.status-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  width: min(100% - 40px, 880px);
  margin: 38px auto 14px;
  padding: 15px 20px;
  border: 1px solid var(--line-gold);
  background: rgba(214, 164, 58, 0.07);
  color: var(--pearl-muted);
  font-size: 0.82rem;
  text-align: center;
}

.status-banner strong {
  color: var(--gold-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ing-subnav {
  position: sticky;
  z-index: 45;
  top: 0;
  border-block: 1px solid var(--line-dark);
  background: rgba(9, 7, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ing-subnav__inner {
  display: flex;
  width: min(100% - 40px, var(--content));
  min-height: 62px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ing-subnav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ing-subnav__links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--pearl-muted);
}

.ing-subnav__links a:hover { color: var(--gold-light); }

.ing-subnav__links a::after {
  position: absolute;
  height: 2px;
  right: 0;
  bottom: 8px;
  left: 0;
  background: var(--accent, var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease-out);
}

.ing-subnav__links a:hover::after { transform: scaleX(1); }

.ing-subnav__note {
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ing-grid {
  display: grid;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  gap: clamp(40px, 6vw, 80px);
  padding: 70px 0 110px;
}

.ing-product {
  --accent: var(--gold);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(34px, 5vw, 70px);
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid var(--line-dark-soft);
  background: linear-gradient(180deg, rgba(25, 22, 28, 0.9), rgba(13, 11, 15, 0.92));
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 90px;
}

.ing-product::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent 78%);
  content: "";
}

.ing-product--women { --accent: var(--orchid); }
.ing-product--men { --accent: var(--ember); }
.ing-product--chocolate { --accent: var(--ruby-bright); }

.ing-product__ghost {
  position: absolute;
  z-index: 0;
  top: -14px;
  right: 8px;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--accent) 26%, transparent);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(5rem, 9vw, 8.6rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ing-product__copy { position: relative; z-index: 2; align-self: center; }

.ing-product__copy .eyebrow { color: color-mix(in srgb, var(--accent) 72%, var(--pearl)); }

.ing-product__copy h2 {
  margin: 14px 0 18px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.ing-product__copy > p {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--pearl-muted);
}

.ing-highlight {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: color-mix(in srgb, var(--accent) 55%, var(--pearl));
  font-style: italic;
  font-size: 0.95rem;
}

.ing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.ing-facts li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line-dark);
  color: var(--pearl-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ing-product__thumb {
  display: grid;
  width: min(100%, 190px);
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line-dark-soft);
  background: #0d0b0f;
}

.ing-product__thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
}

.ing-product--chocolate .ing-product__thumb img {
  object-fit: contain;
  padding: 12px;
}

.label-sheet .is-pending {
  color: #6b6257;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 500;
}

.ing-product--locked .label-sheet__inner {
  display: grid;
  min-height: 300px;
  place-items: center;
  text-align: center;
}

.ing-locked-note {
  max-width: 330px;
  margin: 0 auto;
  color: #45423d;
}

.ing-locked-note strong {
  display: block;
  margin-bottom: 10px;
  color: #10100f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ing-locked-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Etikett-Blatt */
.label-sheet {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 3px;
  background: #0c0a0e;
  box-shadow: 12px 12px 0 color-mix(in srgb, var(--accent) 65%, #40331a), var(--shadow);
}

.label-sheet__inner {
  padding: 20px 20px 16px;
  border: 1px solid #000;
  color: #10100f;
  background: #fdfbf6;
}

.label-sheet h3 {
  margin: 0 0 6px;
  padding-bottom: 7px;
  border-bottom: 9px solid #10100f;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.label-sheet__sub {
  padding: 4px 0;
  margin-bottom: 5px;
  border-bottom: 4px solid #10100f;
  font-size: 0.84rem;
  font-weight: 600;
}

.label-sheet table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.label-sheet th,
.label-sheet td {
  padding: 7px 0;
  border-bottom: 1px solid #10100f;
  text-align: left;
  vertical-align: baseline;
}

.label-sheet thead th {
  border-bottom: 3px solid #10100f;
  font-size: 0.8rem;
  font-weight: 700;
}

.label-sheet td:nth-child(2),
.label-sheet td:last-child,
.label-sheet thead th:nth-child(2),
.label-sheet thead th:last-child {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}

.label-sheet tfoot td {
  padding-top: 9px;
  border-bottom: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: #3c3a36;
}

.label-usage {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent, var(--gold));
  background: rgba(16, 16, 15, 0.045);
}

.label-usage strong {
  display: block;
  margin-bottom: 4px;
  color: #10100f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-usage p {
  margin: 0;
  color: #45423d;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ============================================================
   Rechtsseiten (helle Papierwelt)
   ============================================================ */
.legal-page {
  color-scheme: light;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 90% -180px, rgba(139, 46, 59, 0.07), transparent 70%),
    var(--paper);
}

.legal-shell {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) 0 90px;
}

.legal-shell .eyebrow { color: var(--ruby); }

.legal-shell h1 {
  margin: 14px 0 10px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.legal-shell .legal-updated {
  margin: 0 0 42px;
  color: #6b636c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-shell h2 {
  margin: 44px 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  font-family: "Prata", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.legal-shell p,
.legal-shell li {
  color: #524b53;
  font-size: 0.97rem;
  line-height: 1.7;
}

.legal-shell ul { padding-left: 20px; }

.legal-shell a { border-bottom: 1px solid var(--line-light); }
.legal-shell a:hover { color: var(--ruby); border-color: currentColor; }

.legal-topbar {
  border-bottom: 1px solid var(--line-light);
  background: rgba(244, 240, 234, 0.9);
}

.legal-topbar__inner {
  display: flex;
  width: min(100% - 40px, 860px);
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-topbar .back-link { color: #6b636c; }
.legal-topbar .back-link:hover { color: var(--ink); }

.legal-footer {
  border-top: 1px solid var(--line-light);
}

.legal-footer__inner {
  display: flex;
  width: min(100% - 40px, 860px);
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #6b636c;
  font-size: 0.78rem;
  flex-wrap: wrap;
}

.legal-footer__inner nav {
  display: flex;
  gap: 20px;
}

.legal-footer__inner a:hover { color: var(--ink); }

/* ============================================================
   Login-Veredelung
   ============================================================ */
.login-page {
  background:
    radial-gradient(1000px 620px at 82% -180px, rgba(139, 46, 59, 0.22), transparent 66%),
    radial-gradient(760px 560px at -120px 88%, rgba(199, 122, 24, 0.12), transparent 70%),
    var(--night);
}

.login-card {
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-deep), 0 0 80px rgba(214, 164, 58, 0.06);
}

.js .login-card {
  animation: act-rise 900ms var(--ease-out) both;
}

.login-stage::before {
  border-style: dashed;
  border-color: var(--line-gold);
  animation: ring-turn 90s linear infinite;
}

/* ============================================================
   Responsive: neue Module
   ============================================================ */
@media (max-width: 1060px) {
  .ing-product { grid-template-columns: 1fr; }
  .label-sheet { max-width: 560px; }
}

@media (max-width: 780px) {
  .transparency__inner {
    grid-template-columns: 1fr;
    padding: 72px 0;
  }

  .status-flow { padding: 72px 0 84px; }
  .status-flow__grid { grid-template-columns: 1fr; }

  .status-step + .status-step {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .ing-subnav__inner {
    min-height: 0;
    padding: 10px 0;
    flex-wrap: wrap;
  }

  .ing-subnav__links {
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .ing-subnav__links a { min-height: 40px; }
  .ing-hero { padding-top: 46px; }
  .ing-grid { padding: 52px 0 84px; }
}

@media (max-width: 520px) {
  .transparency__inner,
  .status-flow,
  .ing-hero,
  .status-banner,
  .ing-grid,
  .hero-marquee {
    width: min(100% - 28px, var(--content));
  }

  .ing-subnav__inner { width: min(100% - 28px, var(--content)); }
  .legal-shell,
  .legal-topbar__inner,
  .legal-footer__inner { width: min(100% - 28px, 860px); }
  .legal-shell h1 {
    font-size: clamp(1.85rem, 9vw, 2.2rem);
    overflow-wrap: break-word;
  }

  .ing-product { padding: 22px 16px; }
  .label-sheet__inner { padding: 14px 13px 12px; }
  .label-sheet { box-shadow: 7px 7px 0 color-mix(in srgb, var(--accent) 65%, #40331a), var(--shadow); }
  .badge-emblem { min-height: 40px; padding: 0 11px; font-size: 0.56rem; }
  .hero-marquee { gap: 12px; font-size: 0.56rem; }
  .public-product__ghost { font-size: 6rem; }
}

/* ============================================================
   Reduced Motion: neue Module vollständig beruhigen
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js .vitality-line path,
  .vitality-line path {
    animation: none;
    stroke-dashoffset: 0;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .public-hero [data-act],
  .js .ing-hero [data-act],
  .js .login-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .js .portal-sheen,
  .public-product:hover::before {
    animation: none;
    opacity: 0;
  }

  .aurora span,
  .story-mark::before,
  .login-stage::before,
  .hero-copy h1 .aurum-word,
  .status-step--active .status-step__state::before {
    animation: none;
  }

  .aurum-rail { display: none; }

  .public-product:hover { transform: none; }
}
