/* ============================================================
   Scentstation — LUXURY EDITORIAL × CINEMATIC
   Instrument Serif (display) + Geist (body) + Geist Mono (technical)
   Pure white canvas · jet black ink · bronze accent · spotlit hero
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --bg-soft:   #FAF8F4;
  --bg-elev:   #F2EEE6;
  --bg-warm:   #F7F1E8;
  --ink:       #0A0908;
  --ink-2:     #181612;
  --ink-dim:   #3A3530;
  --ink-mute:  #6B6359;
  --line:      #E4DFD5;
  --line-2:    #C8C0B0;
  --accent:    #B5895A;    /* warm bronze — used SCARCELY for emphasis */
  --accent-2:  #8C6438;
  --accent-soft:#EBDFCC;
  --accent-ink:#FFFFFF;
  --paper:     #FAF8F4;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-2xl: 36px;

  --pad: clamp(20px, 4vw, 64px);

  --t-sans: "Geist", "Söhne", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --t-mono: "Geist Mono", "SF Mono", ui-monospace, monospace;
  --t-display: "Instrument Serif", "Cormorant Garamond", "Times New Roman", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--t-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }

/* ====================== TOP NAVBAR — always-visible, transparent over hero, white on scroll ====================== */
.floatnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;   /* menu sits dead-center */
  padding: 12px var(--pad);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background .35s ease,
    backdrop-filter .35s ease,
    border-color .35s ease,
    padding .35s ease,
    box-shadow .35s ease;
}
.floatnav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(0,0,0,0.2);
  padding: 8px var(--pad);
}
.floatnav__menu {
  display: none;
  gap: clamp(20px, 2.4vw, 36px);
  font-family: var(--t-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-dim);
}
@media (min-width: 820px) {
  .floatnav__menu { display: flex; }
}
.floatnav__menu a {
  position: relative;
  padding: 6px 0;
  transition: color .18s;
}
.floatnav__menu a:hover { color: var(--ink); }
.floatnav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.floatnav__menu a:hover::after { transform: scaleX(1); }

.floatnav__cta {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--accent-ink);
  border-radius: 999px;
  font-family: var(--t-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.floatnav__cta:hover {
  background: #1c1c1c;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 22px -8px rgba(0,0,0,.35);
}

@media (max-width: 540px) {
  .floatnav { padding: 8px 16px; gap: 12px; }
  .floatnav__cta { padding: 8px 14px; font-size: 12px; }
  .floatnav__cta svg { display: none; }
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, background .18s, color .18s, border-color .18s, box-shadow .18s;
  white-space: nowrap;
  background: none;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 15px 26px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

.btn--solid {
  background: var(--ink);
  color: var(--accent-ink);
  border-color: var(--ink);
}
.btn--solid:hover {
  background: #1F1F1F;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.25);
}
.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

/* ====================== HERO — cinematic editorial showcase ====================== */
.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--bg);
}

/* ===== Editorial masthead — wordmark "Scentstation" + tagline ===== */
.hero__masthead {
  position: relative;
  z-index: 4;
  padding: clamp(70px, 9vh, 110px) var(--pad) clamp(6px, 1vh, 12px);
  text-align: center;
  pointer-events: none;
}
/* New image-based wordmark — the actual Scentstation logo */
.hero__name {
  display: inline-block;
  margin: 0;
  line-height: 0;
}
.hero__name-img {
  display: block;
  width: clamp(160px, 18vw, 260px);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  filter: contrast(1.15) drop-shadow(0 4px 18px rgba(0,0,0,0.08));
  animation:
    logoMarkIn 1.0s 2.1s cubic-bezier(.18,.74,.24,1) forwards,
    logoMarkBreath 7s ease-in-out 4.0s infinite;
}
@keyframes logoMarkIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes logoMarkBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: contrast(1.15) drop-shadow(0 6px 22px rgba(0,0,0,0.08));
  }
  50% {
    transform: translateY(-3px) scale(1.014);
    filter: contrast(1.15) drop-shadow(0 14px 36px rgba(160,110,60,0.20));
  }
}
.hero__tagline {
  margin: clamp(12px, 1.4vh, 18px) 0 0;
  font-family: var(--t-sans);
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .9s 3.3s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero__name { animation: none; }
  .hero__name span { animation: none; opacity: 1; transform: none; }
  .hero__tagline { animation: none; opacity: 1; transform: none; }
}
/* cinema vignette — full hero, darker corners pulling focus to center */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 50%,
      rgba(255,255,255,0) 22%,
      rgba(0,0,0,0.06) 50%,
      rgba(0,0,0,0.18) 78%,
      rgba(0,0,0,0.34) 100%);
}
/* cinematic spotlight — warm beam from the top of the hero down to the stage */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 50% 0%,
      rgba(255,238,210,0.65) 0%,
      rgba(255,240,215,0.30) 30%,
      rgba(255,250,235,0.10) 55%,
      transparent 75%);
  mix-blend-mode: screen;
}

/* Brand mark — sits inside the white header band, centered, big */
.hero__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(16px, 2.8vh, 32px) var(--pad) clamp(10px, 1.4vh, 18px);
  position: relative;
  z-index: 6;
  opacity: 0;
  transform: scale(0.9);
  animation: heroBrandIn .8s 2.3s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__brand img {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  mix-blend-mode: multiply;
  display: block;
  /* contrast crisps the edges so JPG compression gray halos disappear into the white bg */
  filter: contrast(1.18) drop-shadow(0 4px 14px rgba(0,0,0,0.05));
}
@keyframes heroBrandIn {
  to { opacity: 1; transform: scale(1); }
}
/* continuous gentle breathing once the brand has settled */
.hero__brand img {
  animation: heroBrandBreath 5.5s ease-in-out 3.3s infinite;
}
@keyframes heroBrandBreath {
  0%, 100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.06));
  }
  50% {
    transform: scale(1.025) translateY(-3px);
    filter: drop-shadow(0 12px 26px rgba(0,0,0,0.12));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__brand img { animation: none; }
}

/* ===== Back-to-3D button — only visible when a non-stage panel is active ===== */
.hero__back {
  position: absolute;
  top: clamp(200px, 24vh, 270px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(.96);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px 11px 16px;
  background: var(--ink);
  color: var(--accent-ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--t-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.4);
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.2,.7,.2,1),
    background .2s ease;
}
.hero:has(.hero__panel:not(.hero__panel--stage).is-active) .hero__back {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
/* when a panel is open, the breathing logo dims a bit so attention goes to the panel */
.hero:has(.hero__panel:not(.hero__panel--stage).is-active) .hero__brand img {
  opacity: .55;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.04));
  animation-play-state: paused;
}
.hero__back:hover {
  background: #1c1c1c;
  box-shadow: 0 18px 40px -8px rgba(0,0,0,.5);
}
.hero__back:active {
  transform: translateX(-50%) translateY(0) scale(.97);
}
.hero__back-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,0.18);
  animation: backRingPulse 2.4s cubic-bezier(.2,.7,.2,1) infinite;
  pointer-events: none;
}
@keyframes backRingPulse {
  0%   { transform: scale(1);   opacity: .85; }
  100% { transform: scale(1.18); opacity: 0; }
}
.hero__back svg { transition: transform .35s ease; }
.hero__back:hover svg { transform: rotate(-25deg); }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: clamp(8px, 1.5vh, 20px) var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "left"
    "center"
    "right";
  gap: 14px;
  align-items: stretch;
  min-height: 0;
}
@media (min-width: 1000px) {
  .hero__inner {
    grid-template-columns: clamp(240px, 20vw, 320px) minmax(0, 1fr) clamp(240px, 20vw, 320px);
    grid-template-areas: "left center right";
    gap: clamp(28px, 3vw, 56px);
  }
}

/* ===== Animated soft background ===== */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* film grain — subtle cinema texture overlay */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: -50%;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg::after { animation: none; }
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.78;
  will-change: transform;
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none !important; }
}
.hero__blob--1 {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255, 215, 180, 0.85), transparent 65%);
  top: -22%; left: -20%;
  animation: blobDrift1 24s ease-in-out infinite;
}
.hero__blob--2 {
  width: 52vw; height: 52vw;
  background: radial-gradient(circle, rgba(255, 230, 200, 0.75), transparent 65%);
  bottom: -24%; right: -18%;
  animation: blobDrift2 28s ease-in-out infinite;
}
.hero__blob--3 {
  width: 42vw; height: 42vw;
  background: radial-gradient(circle, rgba(245, 195, 160, 0.7), transparent 65%);
  top: 40%; left: 48%;
  transform: translateX(-50%);
  animation: blobDrift3 32s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(12vw, 6vh) scale(1.15); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-10vw, -5vh) scale(1.1); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-30%) translateY(8vh) scale(.85); }
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(8vw, 4vh) scale(1.08); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-6vw, -3vh) scale(1.05); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-4vw, 5vh) scale(.94); }
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .25; }
}

/* ===== Hint pill — sits below the tagline inside the masthead ===== */
.hero__hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  margin: clamp(18px, 2.2vh, 28px) auto 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeUp .9s 3.6s forwards;
  pointer-events: none;
}

/* ===== Light-cone spotlight overlay — lamp from top, sides dimmed (covers full hero) ===== */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* dim the LEFT and RIGHT zones where facts sit */
    linear-gradient(90deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.10) 16%,
      rgba(0,0,0,0.02) 30%,
      rgba(0,0,0,0)   42%,
      rgba(0,0,0,0)   58%,
      rgba(0,0,0,0.02) 70%,
      rgba(0,0,0,0.10) 84%,
      rgba(0,0,0,0.18) 100%);
}
/* the bright cone shaft itself (slight visible beam) */
.hero__spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(360px, 38vw, 620px);
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%,
    rgba(255, 250, 235, 0.5) 0%,
    rgba(255, 250, 235, 0.18) 30%,
    transparent 60%);
  mix-blend-mode: screen;
}

/* ===== Key-Facts rotators (left + right) ===== */
.hero__facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  align-self: center;
  min-height: 200px;
  opacity: 0;
  animation: fadeUp .9s 2.4s forwards;
}
.hero__facts--left  { grid-area: left;  }
.hero__facts--right { grid-area: right; }

.hero__fact {
  grid-row: 1; grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition:
    opacity .6s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
  padding: 24px 16px;
  width: 100%;
  pointer-events: none;
  /* prevent residual shadow halos from previous facts during the swap */
  will-change: opacity, transform;
}
.hero__fact.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hero__fact.is-leaving {
  opacity: 0;
  transform: translateY(-24px) scale(.98);
  transition-duration: .42s, .5s;
}
/* While leaving: drop the text-shadow so the fading halo doesn't blur into the next fact */
.hero__fact.is-leaving .hero__fact-num,
.hero__fact.is-leaving .hero__fact-label {
  text-shadow: none;
  transition: text-shadow .25s ease;
}
.hero__fact-eyebrow {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 2px;
}
.hero__fact-num {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(52px, 6.2vw, 96px);
  letter-spacing: -0.022em;
  line-height: 0.92;
  color: var(--ink);
  /* tight glow only — keeps text crisp during cross-fades */
  text-shadow:
    0 0 12px rgba(255,255,255,0.55),
    0 2px 4px rgba(255,255,255,0.45);
}
.hero__fact-num em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 400;
}
.hero__fact-label {
  font-family: var(--t-sans);
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: -0.005em;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  max-width: 24ch;
  text-shadow: 0 0 8px rgba(255,255,255,0.7);
}

/* small dot indicator strip showing which fact is current */
.hero__fact-dots {
  display: inline-flex;
  gap: 5px;
  margin-top: 12px;
}
.hero__fact-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(10,10,10,0.16);
  transition: background .3s, transform .3s;
}
.hero__fact-dot.is-current {
  background: var(--accent-2);
  transform: scale(1.3);
}

/* ===== Center: stage + panel carousel (stretches to full row height) ===== */
.hero__center {
  grid-area: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  align-self: stretch;
}
.hero__panel--stage { min-height: 0; }
.hero__panel {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.hero__panel[hidden] { display: none; }
.hero__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hero__panel--stage {
  display: grid;
  place-items: center;
  overflow: visible;
}

/* Panel content cards (Modell / Spec / Kontakt / FAQ) */
.hero__panel:not(.hero__panel--stage) {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.hero__panel-head {
  margin-bottom: clamp(16px, 2vw, 24px);
}
.hero__panel-kicker {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 10px;
}
.hero__panel-title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 0 0 14px;
  text-wrap: balance;
  color: var(--ink);
}
.hero__panel-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-2);
}
.hero__panel-lede {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}

/* Modell list */
.hero__panel-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero__panel-list li {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  color: var(--ink);
}
.hero__panel-list strong {
  font-weight: 600;
  color: var(--ink);
}
.hero__panel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--accent-ink);
  border: none;
  border-radius: 999px;
  font-family: var(--t-sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.hero__panel-cta:hover {
  background: #1c1c1c;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.35);
}

/* Spec table */
.hero__panel-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.hero__panel-specs > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero__panel-specs dt {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.hero__panel-specs dd {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-align: right;
}
.hero__panel-specs dd small {
  font-weight: 400;
  font-size: 0.7em;
  color: var(--ink-dim);
  margin-left: 4px;
}

/* Contact form (compact) */
.hero__panel-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__panel-form input,
.hero__panel-form select {
  font-family: var(--t-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  letter-spacing: -0.01em;
  transition: border-color .18s, box-shadow .18s;
}
.hero__panel-form input::placeholder { color: var(--ink-mute); }
.hero__panel-form input:focus,
.hero__panel-form select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.hero__panel-form button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--accent-ink);
  border: none;
  border-radius: 999px;
  font-family: var(--t-sans);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.hero__panel-form button[type="submit"]:hover {
  background: #1c1c1c;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.35);
}
.hero__panel-form-status {
  margin: 4px 0 0;
  font-size: 13px;
  font-family: var(--t-mono);
  min-height: 1em;
}
.hero__panel-form-status[data-state="success"] { color: var(--ink); }
.hero__panel-form-status[data-state="error"]   { color: #B91C1C; }

/* FAQ accordion */
.hero__panel-faq { display: grid; gap: 8px; }
.hero__panel-faq details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.hero__panel-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.012em;
  transition: background .15s;
}
.hero__panel-faq summary::-webkit-details-marker { display: none; }
.hero__panel-faq summary:hover { background: var(--bg-soft); }
.hero__panel-faq summary span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-family: var(--t-mono);
  font-size: 13px;
  transition: transform .25s ease, background .2s, color .2s;
  flex-shrink: 0;
}
.hero__panel-faq details[open] summary span {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--accent-ink);
  border-color: var(--ink);
}
.hero__panel-faq details > div {
  padding: 0 16px 14px;
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Mobile: stack cards horizontally below center */
@media (max-width: 999px) {
  .hero__cards {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    animation: none;
    opacity: 1;
  }
  .hero__cards .hero__card {
    flex: 0 0 78%;
    min-width: 260px;
    scroll-snap-align: center;
  }
}

.hero__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "eyebrow eyebrow"
    "title   arrow"
    "meta    meta";
  gap: 8px 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              border-color .2s ease,
              box-shadow .25s ease,
              background .25s ease;
}
.hero__card:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.2);
}
.hero__card.is-active {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink), 0 18px 40px -18px rgba(0, 0, 0, 0.25);
}
.hero__card.is-active .hero__card-arrow {
  background: var(--ink);
  color: var(--accent-ink);
}
.hero__card--accent.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 22px 44px -16px rgba(0, 0, 0, 0.5);
}
.hero__card--accent.is-active .hero__card-arrow {
  background: rgba(255, 255, 255, 0.28);
  color: var(--accent-ink);
}

/* "auf Anfrage" hint — appears on hover/focus of the Aufstellen card */
.hero__card-hint {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px) scale(.92);
  transition: opacity .25s ease, transform .3s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.35);
}
.hero__card:hover .hero__card-hint,
.hero__card:focus-visible .hero__card-hint {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* When a non-stage panel is open, hide the example-perfumes chip */
.hero:has(.hero__panel:not(.hero__panel--stage).is-active) .hero__chip {
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.hero__card-eyebrow {
  grid-area: eyebrow;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__card-title {
  grid-area: title;
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.005em;
  line-height: 1.0;
  margin: 0;
  align-self: center;
  color: var(--ink);
}
.hero__card-meta {
  grid-area: meta;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.4;
}
.hero__card-arrow {
  grid-area: arrow;
  align-self: center;
  justify-self: end;
  width: 40px; height: 40px;
  padding: 11px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink);
  transition: background .25s ease, transform .25s ease, color .25s ease;
  flex-shrink: 0;
}
.hero__card:hover .hero__card-arrow {
  background: var(--ink);
  color: var(--accent-ink);
  transform: translateX(3px);
}

/* dark accent variant — final CTA */
.hero__card--accent {
  background: var(--ink);
  color: var(--accent-ink);
  border-color: var(--ink);
}
.hero__card--accent .hero__card-eyebrow { color: rgba(255, 255, 255, 0.55); }
.hero__card--accent .hero__card-meta    { color: rgba(255, 255, 255, 0.68); }
.hero__card--accent .hero__card-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-ink);
}
.hero__card--accent:hover {
  background: #1c1c1c;
  border-color: #1c1c1c;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.4);
}
.hero__card--accent:hover .hero__card-arrow {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(3px);
}

/* (mobile rule for .hero__cards lives further up where it's effective) */

/* ===== Info chip — small, bulletproof-centered, perfume sample row ===== */
.hero__chip {
  position: absolute;
  bottom: clamp(16px, 2.6vh, 28px);
  left: 0;
  right: 0;
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  width: max-content;
  max-width: min(560px, calc(100vw - 40px));
  overflow: hidden;
  z-index: 3;
  opacity: 0;
  animation: fadeUp .9s 2.4s forwards;
}
.hero__chip-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__chip-label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-2);
}

/* Scroll indicator at the bottom-right of the hero — editorial vertical mark */
.hero__scroll {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(20px, 3vh, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-dim);
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  animation: fadeUp .9s 2.8s forwards;
  transition: color .2s;
}
@media (max-width: 1100px) {
  .hero__scroll { display: none; }
}
.hero__scroll:hover { color: var(--ink); }
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent-2), transparent);
  animation: scrollPulse 2.6s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
.hero__chip-sep { color: var(--ink-mute); }
.hero__chip-text {
  font-family: var(--t-sans);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero__chip {
    padding: 8px 14px;
    bottom: 12px;
  }
  .hero__chip-text { font-size: 11px; }
  .hero__chip-label { font-size: 9px; }
}

/* ===== 3D Stage — fills the center cell, dramatic spotlight ===== */
.stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  z-index: 1;
  /* cinematic spotlight — central glow + soft falloff */
  background:
    radial-gradient(50% 60% at 50% 55%, rgba(0,0,0,.10), transparent 70%),
    radial-gradient(70% 90% at 50% 50%, rgba(255,255,255,.85), rgba(255,255,255,0) 75%);
}
/* faint "floor" shadow ellipse for cinema feel */
.stage::after {
  content: "";
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 18px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.18), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}
.hero__panel--stage { padding: 0; }

.stage__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  cursor: grab;
  touch-action: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.stage__canvas.is-ready { opacity: 1; }
.stage__canvas:active { cursor: grabbing; }

.stage__hint {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.stage.is-revealed .stage__hint { opacity: 1; }
.stage.is-demo .stage__hint     { opacity: 0; }
.stage__hint svg { display: inline-block; }

/* ===== Demo CTA button — appears after reveal ===== */
.demo-cta {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 30px 17px 24px;
  font-family: var(--t-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--accent-ink);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .6s ease,
    transform .6s cubic-bezier(.2,.7,.2,1),
    background .2s, box-shadow .25s;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.4);
  z-index: 4;
}
.demo-cta:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.demo-cta:hover {
  background: #1c1c1c;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.4);
}
.demo-cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.demo-cta__pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(10,10,10,0.25);
  animation: demoCtaPulse 2.4s cubic-bezier(.2,.7,.2,1) infinite;
  pointer-events: none;
}
@keyframes demoCtaPulse {
  0%   { transform: scale(1);   opacity: .85; }
  100% { transform: scale(1.25); opacity: 0; }
}
.stage.is-demo .demo-cta { opacity: 0; pointer-events: none; }

/* During demo: fade out side cards and bottom chip for focus */
.hero:has(.stage.is-demo) .hero__facts,
.hero:has(.stage.is-demo) .hero__chip,
.hero:has(.stage.is-demo) .hero__hint,
.hero:has(.stage.is-demo) .hero__spotlight,
.hero:has(.stage.is-demo) .hero__masthead,
.hero:has(.stage.is-demo) .hero__scroll {
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

/* ===== FULL-PAGE CINEMA MODE — locks the viewport on the demo ===== */
body.is-cinema-mode { overflow: hidden; }
body.is-cinema-mode .floatnav {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
body.is-cinema-mode main > *:not(.hero) { display: none !important; }
body.is-cinema-mode .foot { display: none !important; }
body.is-cinema-mode .hero__masthead,
body.is-cinema-mode .hero__facts,
body.is-cinema-mode .hero__chip,
body.is-cinema-mode .hero__scroll,
body.is-cinema-mode .hero__bg,
body.is-cinema-mode .hero__spotlight {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity .4s ease;
}
body.is-cinema-mode .hero::before,
body.is-cinema-mode .hero::after { opacity: 0; transition: opacity .4s ease; }
body.is-cinema-mode .hero {
  background: #0b0a08;
  min-height: 100vh;
}
body.is-cinema-mode .stage {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  background: #0b0a08;
  z-index: 85;
}
body.is-cinema-mode .demo {
  position: fixed;
  inset: 80px 0;
  z-index: 95;
  padding: 16px 4% 16px;
}
body.is-cinema-mode .hero__letterbox--top    { transform: translateY(0) !important; }
body.is-cinema-mode .hero__letterbox--bottom { transform: translateY(0) !important; }
body.is-cinema-mode .hero__letterbox { z-index: 96; }
@media (max-width: 720px) {
  body.is-cinema-mode .demo { inset: 50px 0; }
}

/* Demo abort × — top-right during cinema */
.demo__abort {
  position: fixed;
  top: 100px;
  right: 22px;
  width: 42px; height: 42px;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  z-index: 97;
  font-family: var(--t-mono);
  font-size: 18px;
  line-height: 1;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.demo__abort:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}
body.is-cinema-mode .demo__abort { display: flex; }
@media (max-width: 720px) {
  .demo__abort { top: 64px; right: 14px; width: 36px; height: 36px; font-size: 16px; }
}

/* SPRAY WOW — bright flash + concentric ring at spray moment */
.demo__flash {
  position: fixed;
  inset: 0;
  z-index: 98;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 230, 0.95) 0%, rgba(255, 245, 215, 0.4) 18%, transparent 42%),
    radial-gradient(ellipse 80% 60% at 50% 42%, rgba(255,255,255,0.3), transparent 60%);
}
.demo__flash::before {
  content: "";
  position: absolute;
  left: 50%; top: 42%;
  width: 0; height: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 0 0 rgba(255, 240, 210, 0.55),
    inset 0 0 0 0 rgba(255, 240, 210, 0.0);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.demo__flash.is-firing {
  animation: sprayFlash .85s cubic-bezier(.6,0,.3,1) forwards;
}
.demo__flash.is-firing::before {
  animation: sprayShock .85s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes sprayFlash {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  40%  { opacity: 0.55; }
  100% { opacity: 0; }
}
@keyframes sprayShock {
  0%   {
    width: 40px; height: 40px;
    opacity: 1;
    box-shadow:
      0 0 0 0 rgba(255, 240, 210, 0.75),
      0 0 80px 12px rgba(255, 245, 215, 0.5);
  }
  100% {
    width: 1600px; height: 1600px;
    opacity: 0;
    box-shadow:
      0 0 0 0 rgba(255, 240, 210, 0),
      0 0 200px 30px rgba(255, 245, 215, 0);
  }
}

/* Cinema letterbox bars — fade in during demo, retract after */
.hero__letterbox {
  position: fixed;
  left: 0; right: 0;
  height: 80px;
  background: #000;
  z-index: 90;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .7s cubic-bezier(.7,0,.3,1);
}
.hero__letterbox--bottom {
  top: auto;
  bottom: 0;
  transform: translateY(100%);
}
.hero__letterbox--top { top: 0; }
.hero:has(.stage.is-demo) ~ .hero__letterbox--top,
.hero:has(.stage.is-demo) ~ * .hero__letterbox--top,
body:has(.stage.is-demo) .hero__letterbox--top { transform: translateY(0); }
body:has(.stage.is-demo) .hero__letterbox--bottom { transform: translateY(0); }
@media (max-width: 720px) {
  .hero__letterbox { height: 50px; }
}

/* ===== Demo Overlay (steps) ===== */
.demo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 4% 6%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 5;
}
.demo[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.demo__progress {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 14px;
}
.demo__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10,10,10,.12);
  transition: background .3s ease, transform .3s ease;
}
.demo__dot.is-active {
  background: var(--ink);
  transform: scale(1.25);
}
.demo__dot.is-done {
  background: var(--ink);
  opacity: .35;
}

.demo__step {
  width: 100%;
  max-width: 680px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 32px 36px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.demo__step:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.demo__step:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.demo__kicker {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.demo__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--ink);
}

/* — Step 1 perfumes — */
.demo__perfumes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.demo__perfume {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .2s, transform .2s, background .2s;
  min-height: 70px;
}
.demo__perfume:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  background: var(--bg-soft);
}
.demo__perfume.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--accent-ink);
}
.demo__perfume-brand {
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.2;
}
.demo__perfume.is-selected .demo__perfume-brand { color: rgba(255,255,255,.6); }
.demo__perfume-name {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
@media (max-width: 560px) {
  .demo__perfumes { grid-template-columns: repeat(2, 1fr); }
  .demo__perfume:last-child { grid-column: span 2; }
}

/* — Step 2 terminal — */
.demo__terminal {
  position: relative;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 16px;
  background: #0c0c0c;
  color: #f5f5f5;
  border: 1px solid #1a1a1a;
  border-radius: var(--r-md);
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, background .25s;
}
.demo__terminal:hover { transform: translateY(-1px); }
.demo__terminal-icon { color: #d9d9d9; }
.demo__terminal-status {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.demo__terminal[data-state="connecting"] .demo__terminal-status::after {
  content: " · · ·";
  animation: connectDots 0.9s steps(4) infinite;
}
.demo__terminal[data-state="success"] {
  background: #0a3a17;
  border-color: #1e6a34;
}
.demo__terminal[data-state="success"] .demo__terminal-icon { color: #6dff9b; }
.demo__terminal[data-state="success"] .demo__terminal-status { color: #b6ffc8; }
.demo__terminal-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,.0);
  transition: box-shadow .3s ease;
}
.demo__terminal:not([data-state]) .demo__terminal-glow {
  animation: terminalReady 1.6s ease-in-out infinite;
}
@keyframes terminalReady {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%      { box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
}
@keyframes connectDots {
  0%   { content: " ·"; }
  33%  { content: " · ·"; }
  66%  { content: " · · ·"; }
  100% { content: " · · · ·"; }
}

/* — Step 3 spray button — */
.demo__spray {
  position: relative;
  width: 96px; height: 96px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-ink);
  border: none;
  cursor: pointer;
  font-family: var(--t-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s ease, background .2s;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,.45);
}
.demo__spray:hover { background: #1f1f1f; transform: scale(1.04); }
.demo__spray:active { transform: scale(0.94); }
.demo__spray-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.18);
  animation: sprayRing 2s cubic-bezier(.2,.7,.2,1) infinite;
}
@keyframes sprayRing {
  0%   { transform: scale(1);   opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* — Step 4 done — */
.demo__step--done {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--ink);
}
.demo__step--done svg { color: var(--ink); margin-bottom: 6px; }
.demo__done-sub {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0 0 14px;
}
.demo__restart {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.demo__restart:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

@media (prefers-reduced-motion: reduce) {
  .demo-cta__pulse,
  .demo__spray-ring,
  .demo__terminal-glow { animation: none; }
}

/* ===== Intro: fullscreen splash with big centered logo ===== */
.intro {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  pointer-events: none;
  z-index: 200;
  animation: introOverlayOut .9s 1.7s cubic-bezier(.7,0,.3,1) forwards;
}
@keyframes introOverlayOut {
  to { opacity: 0; visibility: hidden; }
}
.intro__logo {
  width: clamp(280px, 42vw, 520px);
  height: auto;
  opacity: 0;
  transform: scale(.78);
  mix-blend-mode: multiply;
  animation:
    introIn 1.0s .15s cubic-bezier(.2,.7,.2,1) forwards,
    introOut 1.1s 1.35s cubic-bezier(.55,0,.85,0) forwards;
}
@keyframes introIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes introOut {
  to {
    opacity: 0;
    transform: scale(1.35);
    filter: blur(6px);
  }
}

/* spray particles — emitted from logo nozzle area */
.spray {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: rgba(10,10,10,.55);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.spray.go {
  animation: sprayPuff 1.2s cubic-bezier(.2,.6,.3,1) forwards;
}
@keyframes sprayPuff {
  0%   { opacity: .85; transform: translate(0,0) scale(.3); }
  60%  { opacity: .35; }
  100% {
    opacity: 0;
    transform: translate(var(--dx,40px), var(--dy,-30px)) scale(var(--sc,3));
    filter: blur(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro { animation: introOverlayOut .3s 0.5s forwards; }
  .intro__logo { animation: introIn .3s forwards; }
}

/* ====================== STRIP — slim white rail, blends with logo band ====================== */
.strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.strip__row {
  display: grid; grid-template-columns: 1fr;
  padding: 0 var(--pad);
  max-width: 1240px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .strip__row { grid-template-columns: repeat(4, 1fr); }
}
.strip__item {
  padding: 14px 0;
  display: flex; flex-direction: column; gap: 3px;
  transition: transform .25s ease, background-color .25s ease;
}
.strip__item:hover {
  transform: translateY(-1px);
}

/* Strip stagger reveal — each item slides up + scales in */
.strip__item.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1);
}
.strip__item.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.strip__row .strip__item:nth-child(1).reveal { transition-delay: 0s; }
.strip__row .strip__item:nth-child(2).reveal { transition-delay: .12s; }
.strip__row .strip__item:nth-child(3).reveal { transition-delay: .24s; }
.strip__row .strip__item:nth-child(4).reveal { transition-delay: .36s; }

/* the values "Pauschale · 100% Umsatz für dich" subtly type-in look */
.strip__v {
  position: relative;
  display: inline-block;
}
.strip__item.reveal .strip__v {
  background: linear-gradient(90deg, var(--ink) 50%, var(--accent-2) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: inherit;
}
.strip__item.reveal.is-in .strip__v {
  background-position: 0 0;
}
.strip__item + .strip__item { border-top: 1px solid var(--line); }
@media (min-width: 720px) {
  .strip__item { padding: 18px 18px; }
  .strip__item + .strip__item { border-top: 0; border-left: 1px solid var(--line); }
  .strip__item:first-child { padding-left: 0; }
  .strip__item:last-child  { padding-right: 0; }
}
.strip__k {
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.strip__v {
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* ====================== SPEC SECTION ====================== */
.spec {
  background: var(--bg);
}
.spec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1240px;
  margin-inline: auto;
  align-items: center;
}
@media (min-width: 900px) {
  .spec__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(48px, 6vw, 96px);
  }
}

.spec__visual {
  position: relative;
  margin: 0;
}
.spec__visual::before {
  content: "";
  position: absolute;
  inset: -8% -4% -2%;
  background:
    radial-gradient(60% 60% at 50% 60%, rgba(0,0,0,.06), transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}
.spec__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  background: var(--bg);
}
.spec__visual figcaption {
  margin-top: 16px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}

.spec__data {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.spec__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s ease;
}
.spec__row:hover {
  padding-left: 8px;
}
.spec__row dt {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.spec__row dt span {
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 10px;
}
.spec__row dd {
  margin: 0;
  font-family: var(--t-sans);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.022em;
  color: var(--ink);
  text-align: right;
}
.spec__row dd small {
  font-weight: 400;
  font-size: 0.62em;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  margin-left: 4px;
}

/* slide-in animations for spec section */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.reveal-left  { transform: translate3d(-48px, 0, 0); }
.reveal-right { transform: translate3d(48px, 0, 0);  transition-delay: .15s; }

.reveal-left.is-in,
.reveal-right.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right { transform: none; opacity: 1; }
}

/* ====================== SECTION HEAD ====================== */
.section {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  border-top: 1px solid var(--line);
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
/* --left modifier kept for HTML compatibility but now centered like the default */
.section-head--left {
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
  max-width: 720px;
}
.kicker {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.015em;
  line-height: 0.98;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 400;
}
.section-lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto;
}
.section-head--left .section-lede { margin-left: 0; }

/* ====================== MODELL ====================== */
.modell__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1240px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .modell__grid { grid-template-columns: repeat(6, 1fr); }
  .card--big { grid-column: span 6; }
  .card { grid-column: span 3; }
  .card--accent { grid-column: span 6; }
}
@media (min-width: 1100px) {
  .card--big { grid-column: span 3; grid-row: span 2; }
  .card { grid-column: span 3; }
  .card--accent { grid-column: span 6; }
}

.card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.15);
}
.card__num {
  display: block;
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.005em;
  color: var(--accent-2);
  margin-bottom: 16px;
  line-height: 1;
}
.card h3 {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 30px);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.card p {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}
.card--big {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.card--big h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}
.card--accent {
  background: var(--ink);
  color: var(--accent-ink);
  border-color: var(--ink);
}
.card--accent .card__num { color: rgba(255,255,255,.45); }
.card--accent p { color: rgba(255,255,255,.7); }

/* ====================== ORTE ====================== */
.orte__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr;
  max-width: 1240px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .orte__list { grid-template-columns: repeat(2, 1fr); }
}
.ort {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s ease, background .3s;
}
@media (min-width: 900px) {
  .ort { padding: 36px 28px; }
  .ort:nth-child(2n) { border-left: 1px solid var(--line); }
}
.ort:hover {
  background: var(--bg-soft);
  padding-left: clamp(8px, 1.4vw, 24px);
}
.ort__num {
  font-family: var(--t-display);
  font-style: italic;
  font-size: clamp(30px, 2.6vw, 44px);
  letter-spacing: -0.005em;
  color: var(--accent-2);
  margin-top: 0;
  line-height: 1;
  min-width: 48px;
}
.ort__body h3 {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  line-height: 1.05;
}
.ort__body p {
  margin: 0 0 14px;
  color: var(--ink-dim);
  max-width: 44ch;
  font-size: 15px;
}
.ort__tag {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
  background: var(--bg);
}

/* ====================== ABLAUF ====================== */
.steps {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1240px;
}
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.step {
  position: relative;
  padding: 36px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.step:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.15);
}
.step__num {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  line-height: 1.05;
}
.step p { color: var(--ink-dim); margin: 0; font-size: 15px; }

/* ====================== STATS ====================== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(40px, 6vw, 80px) var(--pad);
  background: var(--bg);
  max-width: 1240px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: clamp(28px, 4vw, 48px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .stat { border-bottom: 0; border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }
}
.stat__num {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 112px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
  display: inline-block;
}
.stat__suffix {
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 24px);
  color: var(--ink-dim);
  margin-left: 6px;
  letter-spacing: -0.02em;
}
.stat__label {
  display: block;
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 13px;
  max-width: 26ch;
}

/* ====================== FAQ ====================== */
.faq__list {
  max-width: 880px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.qa { border-bottom: 1px solid var(--line); }
.qa > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: -0.02em;
  transition: color .18s;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { color: var(--ink-dim); }
.qa__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink-dim);
  font-size: 16px;
  font-family: var(--t-mono);
  transition: transform .3s ease, color .2s, border-color .2s, background .2s;
  flex-shrink: 0;
}
.qa[open] .qa__icon {
  transform: rotate(45deg);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.qa__body {
  padding: 0 0 24px;
  color: var(--ink-dim);
  max-width: 72ch;
  font-size: 15px;
  animation: fadeIn .3s ease both;
}

/* ====================== KONTAKT ====================== */
.kontakt {
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(0,0,0,.025), transparent 60%),
    var(--bg);
}
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1240px;
  margin-inline: auto;
}
@media (min-width: 980px) {
  .kontakt__inner { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
}
.kontakt__copy { position: sticky; top: 32px; align-self: start; }
@media (max-width: 979px) { .kontakt__copy { position: static; } }
.kontakt__bullets {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.kontakt__bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 15px;
}
.kontakt__bullets li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--ink-dim);
  font-family: var(--t-mono);
}

/* form */
.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.12);
}
.form__row {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  font-family: var(--t-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  width: 100%;
  transition: border-color .18s, background .18s, box-shadow .18s;
  letter-spacing: -0.01em;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M2 4l4 4 4-4' stroke='%230A0A0A' stroke-width='1.5' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
}

.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--ink-dim);
  line-height: 1.55;
}
.check input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--bg);
  margin-top: 1px;
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.check input:checked { background: var(--ink); border-color: var(--ink); }
.check input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.hp { position: absolute; left: -9999px; }

.btn__spinner {
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: spin .8s linear infinite;
}
.btn[data-loading="true"] .btn__spinner { display: inline-block; }
.btn[data-loading="true"] svg { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__status {
  margin: 4px 0 0;
  font-size: 13px;
  font-family: var(--t-mono);
  min-height: 1em;
}
.form__status[data-state="success"] { color: var(--ink); }
.form__status[data-state="error"]   { color: #B91C1C; }

/* ====================== FOOTER ====================== */
.foot {
  padding: 56px var(--pad) 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.foot__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 32px;
}
.foot__brand { display: flex; align-items: center; gap: 12px; }
.foot__logo { width: 32px; height: 32px; object-fit: contain; mix-blend-mode: multiply; }
.foot__wordmark {
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.022em;
}
.foot__tag {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0;
  max-width: 36ch;
}
.foot__bot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--t-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.foot__nav { display: flex; gap: 28px; }
.foot__nav a { transition: color .2s; }
.foot__nav a:hover { color: var(--ink); }

/* ====================== LEGAL MODALS ====================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity .35s ease,
    visibility 0s linear .35s;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity .35s ease,
    visibility 0s linear 0s;
}
.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: none;
  cursor: pointer;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 56px) clamp(24px, 3.5vw, 48px) clamp(32px, 4vw, 56px);
  box-shadow: 0 50px 120px -40px rgba(0,0,0,.45);
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.modal__close:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--accent-ink);
  transform: rotate(90deg);
}
.modal__kicker {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-block;
  margin-bottom: 10px;
}
.modal__title {
  font-family: var(--t-display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.015em;
  line-height: 0.98;
  margin: 0 0 28px;
  color: var(--ink);
}
.modal__body { color: var(--ink-dim); font-size: 15px; line-height: 1.65; }
.modal__body h3 {
  font-family: var(--t-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 28px 0 10px;
}
.modal__body p, .modal__body address {
  margin: 0 0 14px;
  font-style: normal;
}
.modal__body strong { color: var(--ink); font-weight: 600; }
.modal__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-2);
}
.modal__body a:hover { text-decoration-color: var(--ink); }
.modal__todo {
  font-family: var(--t-mono);
  font-size: 12px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: var(--r-md);
  margin-bottom: 24px !important;
  color: var(--ink-dim);
}
.modal__todo strong { color: var(--accent-2); }

body.modal-open { overflow: hidden; }

/* ====================== UTIL ====================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Section-head stagger reveal — kicker → title → lede each fade up in sequence */
.section-head.reveal {
  opacity: 1;          /* parent doesn't fade — children do */
  transform: none;
}
.section-head.reveal > * {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1.1s cubic-bezier(.2,.7,.2,1),
    transform 1.1s cubic-bezier(.2,.7,.2,1);
}
/* The big title gets an extra-dramatic entrance */
.section-head.reveal .section-title {
  transform: translateY(56px) scale(0.96);
  transform-origin: 50% 100%;
}
.section-head.reveal.is-in > * { transform: translateY(0); }
.section-head.reveal.is-in .section-title { transform: translateY(0) scale(1); }
.section-head.reveal.is-in > *:nth-child(1) { opacity: 1; transition-delay: .05s; }
.section-head.reveal.is-in > *:nth-child(2) { opacity: 1; transition-delay: .22s; }
.section-head.reveal.is-in > *:nth-child(3) { opacity: 1; transition-delay: .40s; }
.section-head.reveal.is-in > *:nth-child(4) { opacity: 1; transition-delay: .58s; }

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