/* DigitalFineGold · website styles · "Matter Tresor"
   Warm anthracite + champagne gold. Editorial, matte, restrained.
   No glows, no gradient text, gold used only as an accent. */

:root {
  /* surfaces · warm near-black, matte */
  --ground: #17150f;
  --ground-2: #1b1912;
  --card: #211e16;
  --card-2: #1c1a13;
  --sunken: #14120c;
  --hair: rgba(236, 230, 216, 0.10);
  --hair-strong: rgba(236, 230, 216, 0.20);

  /* text · warm ivory scale */
  --ink: #ece6d8;
  --muted: #9e9784;
  --faint: #6f6a59;

  /* accent · champagne gold (solid, no gradients) */
  --gold: #c2a14e;
  --gold-deep: #a98a3c;
  --gold-soft: #d8be84;
  --gold-wash: rgba(194, 161, 78, 0.10);
  --gold-line: rgba(194, 161, 78, 0.28);

  /* market signals · muted, not neon */
  --up: #86a081;
  --down: #c0897c;

  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Roboto Mono', Menlo, monospace;

  /* form & rhythm tokens */
  --r-control: 8px;          /* Eingaben, Knoepfe, Pillen */
  --r-surface: 12px;         /* Karten, Panels, Tabellen */
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.35);
  --dur: 0.25s;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Feine Koernung ueber allen Flaechen: nimmt dem Dunkel die digitale Glaette.
   Eingebettetes SVG-Rauschen, keine Ladezeit, keine Interaktion. */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(194, 161, 78, 0.26); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--muted); /* war: var(--gold). Gold nur noch fuer Preis und Hauptaktion. */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--gold-line);
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.08; letter-spacing: 0.2px; color: var(--ink); }
.display { font-size: clamp(40px, 6.4vw, 80px); font-weight: 500; line-height: 1.04; letter-spacing: -0.4px; }
.h2 { font-size: clamp(29px, 4vw, 50px); line-height: 1.08; font-weight: 500; letter-spacing: -0.2px; }
.lead { color: var(--muted); font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.62; text-wrap: pretty; }

/* gold accent text · SOLID, used sparingly */
.gold-text { color: var(--gold); }
.serif { font-family: var(--serif); }
.tnum { font-variant-numeric: tabular-nums; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding: clamp(76px, 11vw, 150px) 0; }
.rule-top { border-top: 1px solid var(--hair); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.2px;
  padding: 15px 26px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #1c160a; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hair-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 11px 18px; font-size: 13px; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20, 18, 12, 0.86);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 15px; color: var(--muted); font-weight: 500; position: relative; padding: 4px 0; transition: color .2s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; white-space: nowrap; }

/* ── Auth: Login-Link + Konto-Chip ─────────────────────── */
.nav-login { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .2px; padding: 4px 2px; transition: color .2s; }
.nav-login:hover { color: var(--ink); }
.acct { position: relative; }
.acct-chip { display: inline-flex; align-items: center; gap: 9px; padding: 5px 11px 5px 5px; background: var(--sunken); border: 1px solid var(--hair-strong); border-radius: 999px; cursor: pointer; font-family: var(--sans); transition: border-color .2s, background .2s; }
.acct-chip:hover { border-color: var(--gold-line, rgba(194,161,78,0.35)); background: var(--card); }
.acct-ava { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-soft, #d8be84), var(--gold)); color: #1c160a; font-size: 12px; font-weight: 700; letter-spacing: .3px; flex-shrink: 0; }
.acct-ava.lg { width: 42px; height: 42px; font-size: 16px; }
.acct-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.acct-chev { color: var(--faint); transition: transform .22s ease; }
.acct.open .acct-chev { transform: rotate(180deg); }
.acct-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 244px; background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 60; }
.acct.open .acct-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.acct-head { display: flex; align-items: center; gap: 12px; padding: 8px 8px 14px; }
.acct-id { min-width: 0; }
.acct-id b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.acct-id span { display: block; font-size: 12px; color: var(--faint); font-family: var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-badge { display: flex; align-items: center; gap: 7px; margin: 0 8px 8px; padding: 8px 10px; border-radius: 8px; background: var(--gold-wash, rgba(194,161,78,0.1)); font-family: var(--mono); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; color: var(--gold); }
.acct-dot { width: 7px; height: 7px; border-radius: 50%; background: #4fae6b; box-shadow: 0 0 0 3px rgba(79,174,107,0.18); }
.acct-item { display: flex; align-items: center; gap: 10px; width: 100%; box-sizing: border-box; padding: 10px 10px; border: none; background: none; border-radius: 8px; font-family: var(--sans); font-size: 15px; color: var(--muted); text-align: left; cursor: pointer; transition: background .16s, color .16s; }
.acct-item svg { color: var(--faint); flex-shrink: 0; transition: color .16s; }
.acct-item:hover { background: var(--sunken); color: var(--ink); }
.acct-item:hover svg { color: var(--gold); }
.acct-item.primary { color: var(--ink); font-weight: 600; }
.acct-item.primary svg { color: var(--gold); }
.acct-item.logout { color: var(--faint); border-top: 1px solid var(--hair); border-radius: 0 0 9px 9px; margin-top: 4px; }
.acct-item.logout:hover { color: #c0897c; background: rgba(192,137,124,0.08); }
.acct-item.logout:hover svg { color: #c0897c; }
/* [data-auth] visibility is toggled in web/auth.js (member elements ship with inline display:none) */

/* Angemeldet-Streifen auf der Kaufseite */
.auth-strip { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--gold-wash, rgba(194,161,78,0.1)); border: 1px solid var(--gold-line, rgba(194,161,78,0.28)); border-radius: 12px; margin-bottom: 30px; }
.auth-strip .acct-ava { width: 40px; height: 40px; font-size: 15px; }
.auth-strip .as-txt b { display: block; font-size: 15px; color: var(--ink); font-weight: 600; }
.auth-strip .as-txt span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
@media (max-width: 720px) { .acct-name { display: none; } .acct-chip { padding: 4px; } }
.nav-burger { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ── Wordmark ───────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; display: block; }
.wordmark { line-height: 1; display: inline-block; }
.wordmark .wm-main { font-family: var(--serif); font-weight: 500; letter-spacing: 0.3px; white-space: nowrap; color: var(--ink); }
.wordmark .wm-main b { font-weight: 600; color: var(--gold); }
.wordmark .wm-sub { font-family: var(--mono); letter-spacing: 2.6px; text-transform: uppercase; color: var(--faint); margin-top: 6px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 88px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 540px at 66% 44%, rgba(194,161,78,0.16), transparent 62%),
    radial-gradient(130% 95% at 50% 0%, #221e15 0%, var(--ground) 58%),
    var(--ground);
}
.hero-bg::after { /* bottom vignette */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 120%, rgba(0,0,0,0.5), transparent 60%);
}
/* giant faint bars watermark */
.hero-watermark {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%); z-index: 0;
  width: min(760px, 70vw); aspect-ratio: 1; opacity: 0.05; pointer-events: none;
  background: url('assets/bars.png') center/contain no-repeat;
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 72%); mask-image: radial-gradient(circle, #000 40%, transparent 72%);
}
/* faint editorial vertical rules */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none;
  background-image: linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: calc((min(1200px, 100vw) - 2 * var(--gutter)) / 4) 100%;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy { max-width: 620px; }
.hero h1 { margin: 24px 0 0; }
.hero .lead { margin-top: 24px; max-width: 500px; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.price-chip {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 32px;
  padding: 13px 18px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--hair);
}
.price-chip .pc-coin { width: 36px; height: 36px; flex-shrink: 0; }
.price-chip .pc-coin img { width: 100%; height: 100%; display: block; }
.price-chip .pc-label { font-size: 10.5px; color: var(--faint); font-family: var(--mono); letter-spacing: 1px; text-transform: uppercase; }
.price-chip .pc-val { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-top: 3px; transition: color .5s ease; }
.price-chip .pc-val.tick-up { color: var(--up); transition: color .15s ease; }
.price-chip .pc-val.tick-down { color: var(--down); transition: color .15s ease; }
.price-chip .pc-up { color: var(--up); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(134,160,129,0.4); } 70% { box-shadow: 0 0 0 6px rgba(134,160,129,0); } 100% { box-shadow: 0 0 0 0 rgba(134,160,129,0); } }
.live-dot.anim { animation: pulse 2.4s infinite; }

/* ── Hero bar centerpiece ───────────────────────────────── */
.bar-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; perspective: 1300px; }
.bar-spotlight {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,161,78,0.18), transparent 60%); pointer-events: none;
}
.bar-orbit { position: relative; animation: barfloat 6s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes barfloat { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(10px); } }
.bar-tilt { position: relative; width: clamp(190px, 24vw, 300px); aspect-ratio: 253 / 407; transform-style: preserve-3d; transition: transform .15s ease-out; will-change: transform; }
.bar-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 30px 44px rgba(0,0,0,0.6)); }
.bar-clip { position: absolute; inset: 3%; border-radius: 8% / 5%; overflow: hidden; pointer-events: none; }
.bar-glare {
  position: absolute; inset: 0;
  background: linear-gradient(118deg, transparent 36%, rgba(255,251,236,0.55) 47%, rgba(255,251,236,0.04) 55%, transparent 64%);
  background-size: 250% 250%; mix-blend-mode: screen;
  animation: barglare 6.5s ease-in-out infinite;
}
@keyframes barglare { 0%,100% { background-position: 135% 0; } 50% { background-position: -35% 0; } }
.bar-seal {
  position: absolute; right: -6%; bottom: 4%; width: 30%; aspect-ratio: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
  animation: sealspin 22s linear infinite;
}
.bar-seal img { width: 100%; height: 100%; display: block; }
@keyframes sealspin { to { transform: rotate(360deg); } }
.bar-reflection {
  position: absolute; bottom: 54px; width: 230px; height: 32px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6), transparent 72%); filter: blur(8px);
}
@media (prefers-reduced-motion: reduce) {
  .bar-orbit, .bar-glare, .bar-seal { animation: none; }
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 2.8px; text-transform: uppercase; color: var(--faint);
}
.scroll-cue .mouse { width: 21px; height: 33px; border: 1px solid var(--hair-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 2.5px; height: 6px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: wheel 1.9s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 11px); } }

/* ── 3D Coin (Helvetia 1oz) ──────────────────────────────── */
.coin-scene { perspective: 1500px; width: clamp(240px, 30vw, 360px); height: clamp(240px, 30vw, 360px); animation: barfloat 6.5s ease-in-out infinite; }
.coin3d { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; animation: coinspin 30s linear infinite; will-change: transform; }
.coin3d.dragging { animation: none; }
@keyframes coinspin { from { transform: rotateY(-12deg) rotateX(7deg) rotateY(0deg); } to { transform: rotateY(-12deg) rotateX(7deg) rotateY(360deg); } }
@media (prefers-reduced-motion: reduce) { .coin3d { animation: none; transform: rotateY(-16deg) rotateX(7deg); } .coin-scene { animation: none; } }
.coin-layer { position: absolute; inset: 0; border-radius: 50%; }
.coin-rim {
  background: linear-gradient(96deg, #6e5212 0%, #b88f3a 22%, #ecd690 42%, #f7e7b2 50%, #d8bd79 60%, #97712c 80%, #5f4612 100%);
  /* feather the circular boundary so the stacked discs anti-alias smoothly
     instead of stair-stepping along the rim under 3D rotation */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 98.2%, rgba(0,0,0,0) 99.6%);
          mask-image: radial-gradient(circle at 50% 50%, #000 0 98.2%, rgba(0,0,0,0) 99.6%);
}
.coin-edge { position: absolute; left: 50%; top: 50%; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.coin-face { display: grid; place-items: center; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.coin-face img { width: 100%; height: 100%; display: block; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55)); }
.coin-glint {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none; overflow: hidden;
  background: linear-gradient(115deg, transparent 42%, rgba(255,248,225,0.30) 49%, rgba(255,248,225,0.04) 54%, transparent 60%);
  mix-blend-mode: screen; background-size: 300% 300%;
  animation: glintsweep 26s linear infinite;
}
@keyframes glintsweep { 0% { background-position: 140% 0; } 100% { background-position: -60% 0; } }

/* ── Trust ──────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--ground-2); padding: 28px 0; }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 15px; font-weight: 500; }
.trust-item svg { flex-shrink: 0; opacity: 0.9; }
.trust-item b { color: var(--ink); font-weight: 600; }

/* ── Features ───────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--hair); border: 1px solid var(--hair); border-radius: 12px; overflow: hidden; }
.fcard {
  background: var(--ground); padding: 36px 32px;
  position: relative; transition: background .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.fcard:hover { background: var(--card); transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--gold-line), 0 14px 30px rgba(0,0,0,0.3); z-index: 1; }
.ficon { width: 50px; height: 50px; border-radius: 8px; background: var(--gold-wash); border: 1px solid var(--gold-line); display: grid; place-items: center; margin-bottom: 24px; }
.fcard h3 { font-size: 21px; margin-bottom: 11px; font-weight: 600; }
.fcard p { color: var(--muted); font-size: 15px; line-height: 1.62; margin: 0; }

/* feature grid as cards variant (security uses spacing) */
.feature-grid.spaced { gap: 1px; }

/* ── Ablauf: Zeitstrahl mit Ziffern statt Karten ─────────
   Eine durchgehende Haarlinie oben, Punkt je Schritt,
   grosse Ziffer als Anker. Keine Kästen, keine Icons. */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 46px);
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair);
}
.flow-item { position: relative; padding-top: 28px; }
.flow-item::before {
  content: "";
  position: absolute; top: -4px; left: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}
.flow-n {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 15px;
}
.flow-item h3 { font-size: 20px; font-weight: 600; margin-bottom: 9px; }
.flow-item p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.flow-item .units { margin-top: 18px; }
@media (max-width: 880px) {
  .flow { grid-template-columns: 1fr; gap: 0; border-top: none; }
  .flow-item { padding: 24px 0; border-top: 1px solid var(--hair); }
}

/* ── Spaltensatz: drei Textspalten mit Trennlinien ───────
   Dritte Form neben Zeitstrahl und Datenliste. */
.colset { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
.colset .col { padding: 0 clamp(20px, 3vw, 42px); }
.colset .col:first-child { padding-left: 0; }
.colset .col:last-child { padding-right: 0; }
.colset .col + .col { border-left: 1px solid var(--hair); }
.colset h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.colset p { color: var(--muted); font-size: 15px; line-height: 1.62; margin: 0; }
@media (max-width: 880px) {
  .colset { grid-template-columns: 1fr; }
  .colset .col { padding: 22px 0; }
  .colset .col + .col { border-left: none; border-top: 1px solid var(--hair); }
}

/* ── Partner: Laufband mit Goldstrahl auf der Rahmenlinie ──
   Uebersetzung der 21st.dev Logo-Cloud (Marquee + Border-Beam +
   Titel auf dem Rahmen) in reines CSS, ohne Bibliotheken. */
@property --pm-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.partner-sec { padding: clamp(48px, 7vw, 92px) 0; }
.partner-card { position: relative; border: 1px solid var(--hair); border-radius: var(--r-surface); padding: 40px 0 30px; }
.partner-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--pm-angle), transparent 0 82%, rgba(243, 221, 151, 0.85) 91%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: pm-spin 8s linear infinite;
}
@keyframes pm-spin { to { --pm-angle: 360deg; } }
.partner-title { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: center; transform: translateY(-50%); margin: 0; }
.partner-title .pt-cut { background: var(--ground); padding: 0 16px; }
.partner-title .pt-text {
  font-size: 15px; font-weight: 600; color: var(--ink);
  background-image: linear-gradient(90deg, currentColor 0%, currentColor 45%, #f3dd97 48%, var(--gold) 50%, #f3dd97 52%, currentColor 55%, currentColor 100%);
  background-size: 250% 100%; background-repeat: no-repeat; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: pt-wave 8s linear infinite;
}
@keyframes pt-wave {
  0% { background-position: 100% 0; }
  5% { background-position: 100% 0; }
  17% { background-position: 0% 0; }
  100% { background-position: 0% 0; }
}
.partner-marquee { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
}
.pm-track { display: flex; gap: 56px; width: max-content; animation: pm-marquee 30s linear infinite; }
.partner-marquee:hover .pm-track { animation-play-state: paused; }
.pm-set { display: flex; gap: 56px; align-items: center; }
.pm-set span { font-size: 14px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint); white-space: nowrap; }
.pm-set .pm-logo { height: 46px; width: auto; opacity: 0.55; transition: opacity var(--dur); }
.pm-set .pm-logo.tall { height: 72px; }
/* Optischer Ausgleich einzelner Marken */
.pm-set .pm-logo[src*="argor"] { height: 92px; }
.pm-set .pm-logo[src*="helveticor"] { height: 80px; }
.pm-set .pm-logo[src*="finemetal"] { height: 32px; }
.pm-set a { display: inline-flex; align-items: center; }
.pm-set a:hover .pm-logo { opacity: 0.9; }
.partner-marquee:hover .pm-logo { opacity: 0.8; }
@keyframes pm-marquee { to { transform: translateX(calc(-50% - 28px)); } }
@media (prefers-reduced-motion: reduce) {
  .partner-card::before, .partner-title .pt-text, .pm-track { animation: none; }
  .pm-set[aria-hidden="true"] { display: none; }
  .pm-track { width: auto; flex-wrap: wrap; padding: 0 24px; }
  .partner-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ── Redaktionelle Sektion: Aussage links, Daten rechts ──
   Ersetzt das Icon-Karten-Raster. Keine Kacheln, keine Icons,
   nur Haarlinien und Typografie. */
.sec-editorial {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 5vw, 84px);
  align-items: start;
}
.sec-editorial .sec-lead .lead { margin-top: 22px; }

.specs { margin: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--hair);
}
.spec-row:last-child { border-bottom: 1px solid var(--hair); }
.spec-row dt {
  font-family: var(--serif);
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.spec-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .sec-editorial { grid-template-columns: 1fr; gap: 42px; }
  .sec-editorial .sec-lead .h2,
  .sec-editorial .sec-lead .lead { max-width: none; }
  .spec-row { grid-template-columns: 1fr; gap: 9px; padding: 22px 0; }
}

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; }
.step { padding: 0 36px; position: relative; }
.step:first-child { padding-left: 0; }
.step + .step { border-left: 1px solid var(--hair); }
.step-num {
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--gold);
  padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--gold-line); display: inline-block;
}
.step h3 { font-size: 21px; margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.62; margin: 0; }

/* unit converter pills */
.units { display: flex; gap: 7px; margin-top: 20px; flex-wrap: wrap; }
.unit-pill { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--hair); color: var(--faint); transition: .3s; }
.unit-pill.on { background: var(--gold); color: #1c160a; border-color: var(--gold); font-weight: 600; }

/* ── How it works (friendly cards) ──────────────────────── */
.howsteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.how-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--gold, #c9a24b); text-decoration: none; }

/* ── Sparplan preview ───────────────────────────────────── */
.sp-panel { margin-top: 56px; background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 32px 34px 26px; }
.sp-body { display: flex; gap: 40px; align-items: stretch; margin-top: 22px; flex-wrap: wrap; }
.sp-controls { flex: 1 1 320px; display: flex; flex-direction: column; gap: 24px; }
.sp-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.sp-panel .unit-pill { cursor: pointer; user-select: none; }
.sp-result { flex: 1 1 260px; display: flex; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 12px; overflow: hidden; }
.sp-r { flex: 1; background: var(--sunken); padding: 22px 24px; }
.sp-rk { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint); }
.sp-rv { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; margin-top: 10px; line-height: 1; }
.sp-ru { font-size: 12px; color: var(--muted); margin-top: 8px; }
.sp-note { margin-top: 20px; font-size: 12px; color: var(--faint); line-height: 1.5; }
@media (max-width: 640px) { .sp-panel { padding: 24px 20px 20px; } .sp-result { flex-direction: column; } }
.how-link:hover { text-decoration: underline; }
.howcard { background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 30px 28px 32px; transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s; }
.howcard:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.how-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.how-num { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 16px; color: #1c160a; background: var(--gold); }
.how-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-wash); border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold); margin-left: auto; }
.howcard h3 { font-size: 21px; margin-bottom: 9px; font-weight: 600; }
.howcard p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.howcard .units { margin-top: 18px; }
@media (max-width: 1080px) { .howsteps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .howsteps { grid-template-columns: 1fr; } }

/* ── Split / price ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.price-panel { background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 32px; position: relative; }
.price-panel .pp-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }
.pp-big { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; color: var(--ink); }
/* Kauf/Verkauf: Haarlinie statt Boxen */
.pp-spread { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 22px; border-top: 1px solid var(--hair); padding-top: 16px; }
.pp-spread .pps { }
.pp-spread .pps .k { font-size: 13px; color: var(--muted); }
.pp-spread .pps .v { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-top: 6px; }
.pp-spread .pps .u { font-size: 12px; color: var(--faint); margin-top: 3px; }
.chart-box { margin: 18px -6px 0; }
.tf-row { display: flex; gap: 4px; margin-top: 14px; }
.tf { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px 13px; border-radius: 8px; border: 1px solid transparent; cursor: pointer; background: none; transition: .2s; }
.tf.on { background: var(--sunken); border-color: var(--hair); color: var(--ink); }
.tf:hover { color: var(--ink); }

/* ── Product shot ───────────────────────────────────────── */
.product-shot {
  position: relative; border-radius: 12px; border: 1px solid var(--hair);
  background: radial-gradient(420px 420px at 50% 42%, rgba(194,161,78,0.14), transparent 62%), var(--card);
  display: flex; align-items: center; justify-content: center; padding: 56px 40px; overflow: hidden; min-height: 420px;
}
.product-shot .ps-coin { width: clamp(180px, 24vw, 240px); aspect-ratio: 1; position: relative; }
.product-shot .ps-coin img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 22px 36px rgba(0,0,0,0.5)); }
.product-shot .ps-cap {
  position: absolute; left: 22px; bottom: 22px; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint);
}
.prod-list { margin-top: 30px; }
.prod-list .pl { padding: 15px 0; border-top: 1px solid var(--hair); }
.prod-list .pl:last-child { border-bottom: 1px solid var(--hair); }
.prod-list .pl h4 { font-family: var(--serif); font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.prod-list .pl p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }

/* ── App showcase ───────────────────────────────────────── */
.app-show { background: var(--ground-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.app-feature-list { display: flex; flex-direction: column; gap: 8px; margin-top: 38px; }
.afl { padding: 18px 0; border-top: 1px solid var(--hair); }
.afl:last-child { border-bottom: 1px solid var(--hair); }
.afl h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin: 0 0 5px; }
.afl p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }
.store-badges { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 10px; padding: 10px 18px 10px 14px; border-radius: 12px; border: 1px solid var(--gold-line); background: var(--card); color: var(--ink); text-decoration: none; transition: border-color .16s, background .16s, transform .16s; }
.store-btn svg { color: var(--gold); flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn small { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--faint); }
.store-btn b { font-size: 15px; font-weight: 600; }
.store-btn:hover { border-color: var(--gold); background: var(--card-2); transform: translateY(-1px); }

/* phone */
.phone-stage { display: flex; justify-content: center; perspective: 1900px; }
.phone {
  width: 318px; flex-shrink: 0; border-radius: 46px; padding: 11px;
  background: linear-gradient(160deg, #2a271f, #161410 60%);
  box-shadow: 0 50px 90px -34px rgba(0,0,0,0.85), 0 0 0 1px rgba(236,230,216,0.05);
  transform: rotateY(-15deg) rotateX(4deg); transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.phone:hover { transform: rotateY(-6deg) rotateX(2deg); }
.phone-stage .app-shot {
  width: clamp(300px, 38vw, 400px); display: block;
  border-radius: 11% / 5.2%;
  transform: rotateY(-14deg) rotateX(4deg);
  box-shadow: 0 50px 90px -34px rgba(0,0,0,0.85), 0 0 0 1px rgba(236,230,216,0.05);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.phone-stage .app-shot:hover { transform: rotateY(-5deg) rotateX(2deg); }
@media (max-width: 980px) { .phone-stage .app-shot { transform: none; } }
.phone-screen { border-radius: 36px; overflow: hidden; background: var(--ground); position: relative; aspect-ratio: 318 / 660; }
.phone-notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 98px; height: 25px; background: #0c0b08; border-radius: 12px; z-index: 5; }

/* mini app screen */
.mini { position: absolute; inset: 0; display: flex; flex-direction: column; color: var(--ink); }
.mini-status { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px 0; font-size: 12px; font-weight: 700; }
.mini-body { flex: 1; overflow: hidden; padding: 16px 16px 0; }
.mini-h { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.mini-h .mh-sub { font-size: 10.5px; color: var(--muted); }
.mini-h .mh-title { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-top: 2px; }
.mini-chip { font-family: var(--mono); font-size: 10px; padding: 5px 9px; border-radius: 8px; border: 1px solid var(--gold-line); color: var(--gold); display: flex; align-items: center; gap: 5px; }
.mini-card { background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 15px; margin-bottom: 11px; }
.mini-spot { display: flex; align-items: center; gap: 12px; }
.mini-spot .ms-coin { width: 42px; height: 42px; }
.mini-spot .ms-label { font-size: 11px; color: var(--muted); }
.mini-spot .ms-price { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.mini-spot .ms-chg { color: var(--up); font-size: 11.5px; font-weight: 600; margin-left: auto; }
.mini-spark { margin-top: 10px; }
.mini-tabbar { display: flex; justify-content: space-around; padding: 11px 0 16px; border-top: 1px solid var(--hair); background: var(--sunken); }
.mini-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8.5px; color: var(--faint); }
.mini-tab.on { color: var(--gold); }

/* ── CTA band: redaktionell, ohne Karte ─────────────────── */
.cta-band { border-top: 1px solid var(--hair); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; color: var(--ink); font-family: var(--serif); font-size: clamp(18px, 2.1vw, 22px); font-weight: 600; padding: 26px 50px 26px 0; position: relative; display: block; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-q::after { content: ""; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px; transform: translateY(-50%); background:
  linear-gradient(var(--gold), var(--gold)) center/13px 1px no-repeat,
  linear-gradient(var(--gold), var(--gold)) center/1px 13px no-repeat; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(90deg); background:
  linear-gradient(var(--gold), var(--gold)) center/13px 1px no-repeat; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a p { color: var(--muted); font-size: 15px; line-height: 1.68; margin: 0 0 26px; max-width: 760px; }

/* ── KPI band ────────────────────────────────────────────── */
/* Stille Faktenzeile: ersetzt die Zaehler-Kacheln */
.factline {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px 32px;
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  padding: 20px 0;
}
.factline span { font-size: 13px; color: var(--muted); }
@media (max-width: 760px) { .factline { flex-direction: column; gap: 10px; } }
@media (max-width: 900px) { .kpi { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .kpi { grid-template-columns: 1fr; } }

/* ── Brand strip ─────────────────────────────────────────── */
.brandstrip { display: flex; align-items: center; gap: 18px; }
.brandstrip .bs-bars { width: 64px; flex-shrink: 0; opacity: 0.9; }
.brandstrip .bs-bars img { width: 100%; display: block; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--hair); background: var(--ground-2); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer h5 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); margin: 0 0 18px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--hair); flex-wrap: wrap; gap: 14px; }
.footer-bottom .fb-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.4px; color: var(--faint); }

/* ── Trust-Zeile ───────────────────────────────────── */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; padding: 24px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin-top: 48px; }
.trust-strip .tb { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--faint); }
.trust-strip .tb svg { flex-shrink: 0; opacity: .85; }

/* ── Cart-Button mobil kompakt ─────────────────────── */
@media (max-width: 720px) {
  .cart-btn .cart-label { display: none; }
  .nav-inner { gap: 10px; }
}

/* ── Loading screen ─────────────────────────────────────── */
#loader { position: fixed; inset: 0; z-index: 200; background: var(--ground); display: flex; align-items: center; justify-content: center; transition: opacity .7s ease; }
#loader.done { opacity: 0; pointer-events: none; }
#loader .ld-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
#loader .ld-coinwrap { position: relative; width: 132px; height: 132px; display: grid; place-items: center; }
#loader .ld-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
#loader .ld-ring-bg { fill: none; stroke: var(--hair); stroke-width: 2; }
#loader .ld-ring-fg { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; transition: stroke-dashoffset .25s ease; filter: drop-shadow(0 0 4px rgba(194,161,78,0.55)); }
#loader .ld-coin { width: 92px; height: 92px; perspective: 600px; }
#loader .ld-coin3d { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: ld-spin 2.4s linear infinite; }
#loader .ld-face { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; -webkit-backface-visibility: hidden; backface-visibility: hidden; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5)); }
#loader .ld-back { transform: rotateY(180deg); }
@keyframes ld-spin { to { transform: rotateY(360deg); } }
#loader .ld-word { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--ink); letter-spacing: 0.3px; }
#loader .ld-word b { color: var(--gold); font-weight: 600; }
#loader .ld-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--faint); margin-top: -12px; }
@media (prefers-reduced-motion: reduce) { #loader .ld-coin3d { animation: none; } }

/* ── Scroll progress ────────────────────────────────────── */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 70; background: var(--gold); }

/* ── Golden thread (scroll narrative) ───────────────────── */
#goldthread { position: absolute; top: 0; left: 0; width: 100%; pointer-events: none; z-index: 4; overflow: hidden; }
#goldthread svg { position: absolute; top: 0; left: 0; overflow: visible; }
#goldthread .th-track { fill: none; stroke: var(--hair); stroke-width: 1.5; }
#goldthread .th-line {
  fill: none; stroke: url(#thGrad); stroke-width: 2.4; stroke-linecap: round;
  /* Kein drop-shadow hier: der Filter laege ueber der gesamten Seitenhoehe
     und macht jeden Scrollschritt zu einem teuren Repaint. */
}
#goldthread .th-head { fill: #fff6df; filter: drop-shadow(0 0 7px rgba(231,201,123,0.95)); transition: opacity .3s; }
#goldthread .th-head-glow { fill: rgba(216,190,132,0.26); transition: opacity .3s; }
#goldthread .th-origin { fill: #f3dd97; filter: drop-shadow(0 0 8px rgba(231,201,123,0.9)); animation: th-pulse 2.4s ease-in-out infinite; }
#goldthread .th-flow { fill: #fff6df; filter: drop-shadow(0 0 6px rgba(231,201,123,0.95)); opacity: 0; }
@keyframes th-pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
#goldthread .th-ring { fill: var(--ground); stroke: var(--hair); stroke-width: 1.6; transition: stroke .5s ease; }
#goldthread .th-dot { fill: var(--gold); opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0.2); transition: opacity .5s ease, transform .5s cubic-bezier(.2,1.4,.4,1); }
#goldthread .th-node.lit .th-ring { stroke: var(--gold-line); }
#goldthread .th-node.lit .th-dot { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  #goldthread .th-head, #goldthread .th-head-glow, #goldthread .th-flow, #goldthread .th-origin { display: none; }
}

/* ── Scroll reveal ──────────────────────────────────────── */
/* Ruhige Reveals: kurzer Weg, kuerzere Dauer, kein Blur-Theater */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal-left { opacity: 0; transform: translateX(-18px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-right { opacity: 0; transform: translateX(18px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-scale { opacity: 0; transform: translateY(12px); transition: opacity .65s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-blur { opacity: 0; transform: translateY(12px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in, .reveal-blur.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur { opacity: 1 !important; transform: none !important; filter: none !important; }
}
/* ── Product shot: dynamic entrance + idle motion ───────── */
.reveal-left .ps-coin { opacity: 0; transform: translateY(52px) scale(.68) rotate(-16deg); transition: opacity .9s ease .15s, transform 1.2s cubic-bezier(.16, 1.14, .3, 1) .15s; }
.reveal-left.in .ps-coin { opacity: 1; transform: none; }
.reveal-left.in .ps-coin img { animation: psFloat 6s ease-in-out 1.4s infinite; }
@keyframes psFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.product-shot .ps-coin::before {
  content: ''; position: absolute; inset: -16%; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,161,78,0.26), transparent 64%);
  opacity: 0;
}
.reveal-left.in .ps-coin::before { animation: psGlow 6s ease-in-out 1.4s infinite; opacity: 1; transition: opacity 1s ease .6s; }
@keyframes psGlow {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.12); opacity: 1; }
}
.product-shot .ps-coin img { position: relative; }
.reveal-left .product-shot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(247,231,178,0.13) 50%, transparent 68%);
  transform: translateX(-130%);
}
.reveal-left.in .product-shot::after { animation: psSheen 1.5s ease .55s both; }
@keyframes psSheen { to { transform: translateX(130%); } }
.reveal-left .ps-cap { opacity: 0; transform: translateY(10px); transition: opacity .8s ease .8s, transform .8s cubic-bezier(.2,.7,.2,1) .8s; }
.reveal-left.in .ps-cap { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-left .ps-coin, .reveal-left .ps-cap { opacity: 1 !important; transform: none !important; }
  .reveal-left.in .ps-coin img, .reveal-left.in .ps-coin::before, .reveal-left.in .product-shot::after { animation: none !important; }
}

/* eyebrow rule draws in on reveal */
.reveal .eyebrow::before, .reveal-left .eyebrow::before, .reveal-right .eyebrow::before { width: 0; transition: width .9s ease .25s; }
.reveal.in .eyebrow::before, .reveal-left.in .eyebrow::before, .reveal-right.in .eyebrow::before { width: 26px; }

/* gold shimmer sweep across section headings on enter (base text stays ink) */
.goldshine { position: relative; }
.goldshine::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%;
  color: var(--gold); pointer-events: none; opacity: 0;
  -webkit-mask-image: linear-gradient(100deg, transparent 38%, #000 50%, transparent 62%);
  mask-image: linear-gradient(100deg, transparent 38%, #000 50%, transparent 62%);
  -webkit-mask-size: 250% 100%; mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: 130% 0; mask-position: 130% 0;
}
.goldshine.go::after { animation: goldshine 1.5s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes goldshine {
  0% { opacity: 1; -webkit-mask-position: 130% 0; mask-position: 130% 0; }
  80% { opacity: 1; }
  100% { opacity: 0; -webkit-mask-position: -40% 0; mask-position: -40% 0; }
}
@media (prefers-reduced-motion: reduce) { .goldshine::after { display: none; } }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .coin-wrap { min-height: 360px; order: -1; }
  .hero-grid-lines { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 28px 0; }
  .step:first-child { padding-top: 0; }
  .step + .step { border-left: none; border-top: 1px solid var(--hair); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 560px) {
  .coin-scene { width: 220px; height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 14px 24px; }
  .hero-cta .btn { flex: 1; }
}

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 65; background: rgba(20,18,12,0.98); backdrop-filter: blur(18px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity .35s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 28px; color: var(--ink); padding: 12px; }
.mobile-menu .btn { margin-top: 22px; }
.mm-close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: var(--ink); font-size: 32px; cursor: pointer; line-height: 1; font-family: var(--sans); }/* DigitalFineGold · website styles · "Matter Tresor"
   Warm anthracite + champagne gold. Editorial, matte, restrained.
   No glows, no gradient text, gold used only as an accent. */

:root {
  /* surfaces · warm near-black, matte */
  --ground: #17150f;
  --ground-2: #1b1912;
  --card: #211e16;
  --card-2: #1c1a13;
  --sunken: #14120c;
  --hair: rgba(236, 230, 216, 0.10);
  --hair-strong: rgba(236, 230, 216, 0.20);

  /* text · warm ivory scale */
  --ink: #ece6d8;
  --muted: #9e9784;
  --faint: #6f6a59;

  /* accent · champagne gold (solid, no gradients) */
  --gold: #c2a14e;
  --gold-deep: #a98a3c;
  --gold-soft: #d8be84;
  --gold-wash: rgba(194, 161, 78, 0.10);
  --gold-line: rgba(194, 161, 78, 0.28);

  /* market signals · muted, not neon */
  --up: #86a081;
  --down: #c0897c;

  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Roboto Mono', Menlo, monospace;

  /* form & rhythm tokens */
  --r-control: 8px;          /* Eingaben, Knoepfe, Pillen */
  --r-surface: 12px;         /* Karten, Panels, Tabellen */
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.35);
  --dur: 0.25s;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Feine Koernung ueber allen Flaechen: nimmt dem Dunkel die digitale Glaette.
   Eingebettetes SVG-Rauschen, keine Ladezeit, keine Interaktion. */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(194, 161, 78, 0.26); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--muted); /* war: var(--gold). Gold nur noch fuer Preis und Hauptaktion. */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--gold-line);
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.08; letter-spacing: 0.2px; color: var(--ink); }
.display { font-size: clamp(40px, 6.4vw, 80px); font-weight: 500; line-height: 1.04; letter-spacing: -0.4px; }
.h2 { font-size: clamp(29px, 4vw, 50px); line-height: 1.08; font-weight: 500; letter-spacing: -0.2px; }
.lead { color: var(--muted); font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.62; text-wrap: pretty; }

/* gold accent text · SOLID, used sparingly */
.gold-text { color: var(--gold); }
.serif { font-family: var(--serif); }
.tnum { font-variant-numeric: tabular-nums; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding: clamp(76px, 11vw, 150px) 0; }
.rule-top { border-top: 1px solid var(--hair); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.2px;
  padding: 15px 26px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #1c160a; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hair-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 11px 18px; font-size: 13px; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20, 18, 12, 0.86);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 15px; color: var(--muted); font-weight: 500; position: relative; padding: 4px 0; transition: color .2s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; white-space: nowrap; }

/* ── Auth: Login-Link + Konto-Chip ─────────────────────── */
.nav-login { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .2px; padding: 4px 2px; transition: color .2s; }
.nav-login:hover { color: var(--ink); }
.acct { position: relative; }
.acct-chip { display: inline-flex; align-items: center; gap: 9px; padding: 5px 11px 5px 5px; background: var(--sunken); border: 1px solid var(--hair-strong); border-radius: 999px; cursor: pointer; font-family: var(--sans); transition: border-color .2s, background .2s; }
.acct-chip:hover { border-color: var(--gold-line, rgba(194,161,78,0.35)); background: var(--card); }
.acct-ava { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-soft, #d8be84), var(--gold)); color: #1c160a; font-size: 12px; font-weight: 700; letter-spacing: .3px; flex-shrink: 0; }
.acct-ava.lg { width: 42px; height: 42px; font-size: 16px; }
.acct-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.acct-chev { color: var(--faint); transition: transform .22s ease; }
.acct.open .acct-chev { transform: rotate(180deg); }
.acct-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 244px; background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 60; }
.acct.open .acct-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.acct-head { display: flex; align-items: center; gap: 12px; padding: 8px 8px 14px; }
.acct-id { min-width: 0; }
.acct-id b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.acct-id span { display: block; font-size: 12px; color: var(--faint); font-family: var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-badge { display: flex; align-items: center; gap: 7px; margin: 0 8px 8px; padding: 8px 10px; border-radius: 8px; background: var(--gold-wash, rgba(194,161,78,0.1)); font-family: var(--mono); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; color: var(--gold); }
.acct-dot { width: 7px; height: 7px; border-radius: 50%; background: #4fae6b; box-shadow: 0 0 0 3px rgba(79,174,107,0.18); }
.acct-item { display: flex; align-items: center; gap: 10px; width: 100%; box-sizing: border-box; padding: 10px 10px; border: none; background: none; border-radius: 8px; font-family: var(--sans); font-size: 15px; color: var(--muted); text-align: left; cursor: pointer; transition: background .16s, color .16s; }
.acct-item svg { color: var(--faint); flex-shrink: 0; transition: color .16s; }
.acct-item:hover { background: var(--sunken); color: var(--ink); }
.acct-item:hover svg { color: var(--gold); }
.acct-item.primary { color: var(--ink); font-weight: 600; }
.acct-item.primary svg { color: var(--gold); }
.acct-item.logout { color: var(--faint); border-top: 1px solid var(--hair); border-radius: 0 0 9px 9px; margin-top: 4px; }
.acct-item.logout:hover { color: #c0897c; background: rgba(192,137,124,0.08); }
.acct-item.logout:hover svg { color: #c0897c; }
/* [data-auth] visibility is toggled in web/auth.js (member elements ship with inline display:none) */

/* Angemeldet-Streifen auf der Kaufseite */
.auth-strip { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--gold-wash, rgba(194,161,78,0.1)); border: 1px solid var(--gold-line, rgba(194,161,78,0.28)); border-radius: 12px; margin-bottom: 30px; }
.auth-strip .acct-ava { width: 40px; height: 40px; font-size: 15px; }
.auth-strip .as-txt b { display: block; font-size: 15px; color: var(--ink); font-weight: 600; }
.auth-strip .as-txt span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
@media (max-width: 720px) { .acct-name { display: none; } .acct-chip { padding: 4px; } }
.nav-burger { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ── Wordmark ───────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; display: block; }
.wordmark { line-height: 1; display: inline-block; }
.wordmark .wm-main { font-family: var(--serif); font-weight: 500; letter-spacing: 0.3px; white-space: nowrap; color: var(--ink); }
.wordmark .wm-main b { font-weight: 600; color: var(--gold); }
.wordmark .wm-sub { font-family: var(--mono); letter-spacing: 2.6px; text-transform: uppercase; color: var(--faint); margin-top: 6px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 88px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 540px at 66% 44%, rgba(194,161,78,0.16), transparent 62%),
    radial-gradient(130% 95% at 50% 0%, #221e15 0%, var(--ground) 58%),
    var(--ground);
}
.hero-bg::after { /* bottom vignette */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 120%, rgba(0,0,0,0.5), transparent 60%);
}
/* giant faint bars watermark */
.hero-watermark {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%); z-index: 0;
  width: min(760px, 70vw); aspect-ratio: 1; opacity: 0.05; pointer-events: none;
  background: url('assets/bars.png') center/contain no-repeat;
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 72%); mask-image: radial-gradient(circle, #000 40%, transparent 72%);
}
/* faint editorial vertical rules */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none;
  background-image: linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: calc((min(1200px, 100vw) - 2 * var(--gutter)) / 4) 100%;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy { max-width: 620px; }
.hero h1 { margin: 24px 0 0; }
.hero .lead { margin-top: 24px; max-width: 500px; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.price-chip {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 32px;
  padding: 13px 18px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--hair);
}
.price-chip .pc-coin { width: 36px; height: 36px; flex-shrink: 0; }
.price-chip .pc-coin img { width: 100%; height: 100%; display: block; }
.price-chip .pc-label { font-size: 10.5px; color: var(--faint); font-family: var(--mono); letter-spacing: 1px; text-transform: uppercase; }
.price-chip .pc-val { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-top: 3px; transition: color .5s ease; }
.price-chip .pc-val.tick-up { color: var(--up); transition: color .15s ease; }
.price-chip .pc-val.tick-down { color: var(--down); transition: color .15s ease; }
.price-chip .pc-up { color: var(--up); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(134,160,129,0.4); } 70% { box-shadow: 0 0 0 6px rgba(134,160,129,0); } 100% { box-shadow: 0 0 0 0 rgba(134,160,129,0); } }
.live-dot.anim { animation: pulse 2.4s infinite; }

/* ── Hero bar centerpiece ───────────────────────────────── */
.bar-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; perspective: 1300px; }
.bar-spotlight {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,161,78,0.18), transparent 60%); pointer-events: none;
}
.bar-orbit { position: relative; animation: barfloat 6s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes barfloat { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(10px); } }
.bar-tilt { position: relative; width: clamp(190px, 24vw, 300px); aspect-ratio: 253 / 407; transform-style: preserve-3d; transition: transform .15s ease-out; will-change: transform; }
.bar-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 30px 44px rgba(0,0,0,0.6)); }
.bar-clip { position: absolute; inset: 3%; border-radius: 8% / 5%; overflow: hidden; pointer-events: none; }
.bar-glare {
  position: absolute; inset: 0;
  background: linear-gradient(118deg, transparent 36%, rgba(255,251,236,0.55) 47%, rgba(255,251,236,0.04) 55%, transparent 64%);
  background-size: 250% 250%; mix-blend-mode: screen;
  animation: barglare 6.5s ease-in-out infinite;
}
@keyframes barglare { 0%,100% { background-position: 135% 0; } 50% { background-position: -35% 0; } }
.bar-seal {
  position: absolute; right: -6%; bottom: 4%; width: 30%; aspect-ratio: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
  animation: sealspin 22s linear infinite;
}
.bar-seal img { width: 100%; height: 100%; display: block; }
@keyframes sealspin { to { transform: rotate(360deg); } }
.bar-reflection {
  position: absolute; bottom: 54px; width: 230px; height: 32px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6), transparent 72%); filter: blur(8px);
}
@media (prefers-reduced-motion: reduce) {
  .bar-orbit, .bar-glare, .bar-seal { animation: none; }
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 2.8px; text-transform: uppercase; color: var(--faint);
}
.scroll-cue .mouse { width: 21px; height: 33px; border: 1px solid var(--hair-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 2.5px; height: 6px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: wheel 1.9s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 11px); } }

/* ── 3D Coin (Helvetia 1oz) ──────────────────────────────── */
.coin-scene { perspective: 1500px; width: clamp(240px, 30vw, 360px); height: clamp(240px, 30vw, 360px); animation: barfloat 6.5s ease-in-out infinite; }
.coin3d { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; animation: coinspin 30s linear infinite; will-change: transform; }
.coin3d.dragging { animation: none; }
@keyframes coinspin { from { transform: rotateY(-12deg) rotateX(7deg) rotateY(0deg); } to { transform: rotateY(-12deg) rotateX(7deg) rotateY(360deg); } }
@media (prefers-reduced-motion: reduce) { .coin3d { animation: none; transform: rotateY(-16deg) rotateX(7deg); } .coin-scene { animation: none; } }
.coin-layer { position: absolute; inset: 0; border-radius: 50%; }
.coin-rim {
  background: linear-gradient(96deg, #6e5212 0%, #b88f3a 22%, #ecd690 42%, #f7e7b2 50%, #d8bd79 60%, #97712c 80%, #5f4612 100%);
  /* feather the circular boundary so the stacked discs anti-alias smoothly
     instead of stair-stepping along the rim under 3D rotation */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 98.2%, rgba(0,0,0,0) 99.6%);
          mask-image: radial-gradient(circle at 50% 50%, #000 0 98.2%, rgba(0,0,0,0) 99.6%);
}
.coin-edge { position: absolute; left: 50%; top: 50%; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.coin-face { display: grid; place-items: center; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.coin-face img { width: 100%; height: 100%; display: block; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55)); }
.coin-glint {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none; overflow: hidden;
  background: linear-gradient(115deg, transparent 42%, rgba(255,248,225,0.30) 49%, rgba(255,248,225,0.04) 54%, transparent 60%);
  mix-blend-mode: screen; background-size: 300% 300%;
  animation: glintsweep 26s linear infinite;
}
@keyframes glintsweep { 0% { background-position: 140% 0; } 100% { background-position: -60% 0; } }

/* ── Trust ──────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--ground-2); padding: 28px 0; }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 15px; font-weight: 500; }
.trust-item svg { flex-shrink: 0; opacity: 0.9; }
.trust-item b { color: var(--ink); font-weight: 600; }

/* ── Features ───────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--hair); border: 1px solid var(--hair); border-radius: 12px; overflow: hidden; }
.fcard {
  background: var(--ground); padding: 36px 32px;
  position: relative; transition: background .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.fcard:hover { background: var(--card); transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--gold-line), 0 14px 30px rgba(0,0,0,0.3); z-index: 1; }
.ficon { width: 50px; height: 50px; border-radius: 8px; background: var(--gold-wash); border: 1px solid var(--gold-line); display: grid; place-items: center; margin-bottom: 24px; }
.fcard h3 { font-size: 21px; margin-bottom: 11px; font-weight: 600; }
.fcard p { color: var(--muted); font-size: 15px; line-height: 1.62; margin: 0; }

/* feature grid as cards variant (security uses spacing) */
.feature-grid.spaced { gap: 1px; }

/* ── Ablauf: Zeitstrahl mit Ziffern statt Karten ─────────
   Eine durchgehende Haarlinie oben, Punkt je Schritt,
   grosse Ziffer als Anker. Keine Kästen, keine Icons. */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 46px);
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair);
}
.flow-item { position: relative; padding-top: 28px; }
.flow-item::before {
  content: "";
  position: absolute; top: -4px; left: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}
.flow-n {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 15px;
}
.flow-item h3 { font-size: 20px; font-weight: 600; margin-bottom: 9px; }
.flow-item p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.flow-item .units { margin-top: 18px; }
@media (max-width: 880px) {
  .flow { grid-template-columns: 1fr; gap: 0; border-top: none; }
  .flow-item { padding: 24px 0; border-top: 1px solid var(--hair); }
}

/* ── Spaltensatz: drei Textspalten mit Trennlinien ───────
   Dritte Form neben Zeitstrahl und Datenliste. */
.colset { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
.colset .col { padding: 0 clamp(20px, 3vw, 42px); }
.colset .col:first-child { padding-left: 0; }
.colset .col:last-child { padding-right: 0; }
.colset .col + .col { border-left: 1px solid var(--hair); }
.colset h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.colset p { color: var(--muted); font-size: 15px; line-height: 1.62; margin: 0; }
@media (max-width: 880px) {
  .colset { grid-template-columns: 1fr; }
  .colset .col { padding: 22px 0; }
  .colset .col + .col { border-left: none; border-top: 1px solid var(--hair); }
}

/* ── Partner: Laufband mit Goldstrahl auf der Rahmenlinie ──
   Uebersetzung der 21st.dev Logo-Cloud (Marquee + Border-Beam +
   Titel auf dem Rahmen) in reines CSS, ohne Bibliotheken. */
@property --pm-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.partner-sec { padding: clamp(48px, 7vw, 92px) 0; }
.partner-card { position: relative; border: 1px solid var(--hair); border-radius: var(--r-surface); padding: 40px 0 30px; }
.partner-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--pm-angle), transparent 0 82%, rgba(243, 221, 151, 0.85) 91%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: pm-spin 8s linear infinite;
}
@keyframes pm-spin { to { --pm-angle: 360deg; } }
.partner-title { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: center; transform: translateY(-50%); margin: 0; }
.partner-title .pt-cut { background: var(--ground); padding: 0 16px; }
.partner-title .pt-text {
  font-size: 15px; font-weight: 600; color: var(--ink);
  background-image: linear-gradient(90deg, currentColor 0%, currentColor 45%, #f3dd97 48%, var(--gold) 50%, #f3dd97 52%, currentColor 55%, currentColor 100%);
  background-size: 250% 100%; background-repeat: no-repeat; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: pt-wave 8s linear infinite;
}
@keyframes pt-wave {
  0% { background-position: 100% 0; }
  5% { background-position: 100% 0; }
  17% { background-position: 0% 0; }
  100% { background-position: 0% 0; }
}
.partner-marquee { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
}
.pm-track { display: flex; gap: 56px; width: max-content; animation: pm-marquee 30s linear infinite; }
.partner-marquee:hover .pm-track { animation-play-state: paused; }
.pm-set { display: flex; gap: 56px; align-items: center; }
.pm-set span { font-size: 14px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint); white-space: nowrap; }
.pm-set .pm-logo { height: 46px; width: auto; opacity: 0.55; transition: opacity var(--dur); }
.pm-set .pm-logo.tall { height: 72px; }
/* Optischer Ausgleich einzelner Marken */
.pm-set .pm-logo[src*="argor"] { height: 92px; }
.pm-set .pm-logo[src*="helveticor"] { height: 80px; }
.pm-set .pm-logo[src*="finemetal"] { height: 32px; }
.partner-marquee:hover .pm-logo { opacity: 0.8; }
@keyframes pm-marquee { to { transform: translateX(calc(-50% - 28px)); } }
@media (prefers-reduced-motion: reduce) {
  .partner-card::before, .partner-title .pt-text, .pm-track { animation: none; }
  .pm-set[aria-hidden="true"] { display: none; }
  .pm-track { width: auto; flex-wrap: wrap; padding: 0 24px; }
  .partner-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ── Redaktionelle Sektion: Aussage links, Daten rechts ──
   Ersetzt das Icon-Karten-Raster. Keine Kacheln, keine Icons,
   nur Haarlinien und Typografie. */
.sec-editorial {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 5vw, 84px);
  align-items: start;
}
.sec-editorial .sec-lead .lead { margin-top: 22px; }

.specs { margin: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--hair);
}
.spec-row:last-child { border-bottom: 1px solid var(--hair); }
.spec-row dt {
  font-family: var(--serif);
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.spec-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .sec-editorial { grid-template-columns: 1fr; gap: 42px; }
  .sec-editorial .sec-lead .h2,
  .sec-editorial .sec-lead .lead { max-width: none; }
  .spec-row { grid-template-columns: 1fr; gap: 9px; padding: 22px 0; }
}

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; }
.step { padding: 0 36px; position: relative; }
.step:first-child { padding-left: 0; }
.step + .step { border-left: 1px solid var(--hair); }
.step-num {
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--gold);
  padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--gold-line); display: inline-block;
}
.step h3 { font-size: 21px; margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.62; margin: 0; }

/* unit converter pills */
.units { display: flex; gap: 7px; margin-top: 20px; flex-wrap: wrap; }
.unit-pill { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--hair); color: var(--faint); transition: .3s; }
.unit-pill.on { background: var(--gold); color: #1c160a; border-color: var(--gold); font-weight: 600; }

/* ── How it works (friendly cards) ──────────────────────── */
.howsteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.how-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--gold, #c9a24b); text-decoration: none; }

/* ── Sparplan preview ───────────────────────────────────── */
.sp-panel { margin-top: 56px; background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 32px 34px 26px; }
.sp-body { display: flex; gap: 40px; align-items: stretch; margin-top: 22px; flex-wrap: wrap; }
.sp-controls { flex: 1 1 320px; display: flex; flex-direction: column; gap: 24px; }
.sp-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.sp-panel .unit-pill { cursor: pointer; user-select: none; }
.sp-result { flex: 1 1 260px; display: flex; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 12px; overflow: hidden; }
.sp-r { flex: 1; background: var(--sunken); padding: 22px 24px; }
.sp-rk { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint); }
.sp-rv { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; margin-top: 10px; line-height: 1; }
.sp-ru { font-size: 12px; color: var(--muted); margin-top: 8px; }
.sp-note { margin-top: 20px; font-size: 12px; color: var(--faint); line-height: 1.5; }
@media (max-width: 640px) { .sp-panel { padding: 24px 20px 20px; } .sp-result { flex-direction: column; } }
.how-link:hover { text-decoration: underline; }
.howcard { background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 30px 28px 32px; transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s; }
.howcard:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.how-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.how-num { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 16px; color: #1c160a; background: var(--gold); }
.how-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-wash); border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold); margin-left: auto; }
.howcard h3 { font-size: 21px; margin-bottom: 9px; font-weight: 600; }
.howcard p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.howcard .units { margin-top: 18px; }
@media (max-width: 1080px) { .howsteps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .howsteps { grid-template-columns: 1fr; } }

/* ── Split / price ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.price-panel { background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 32px; position: relative; }
.price-panel .pp-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }
.pp-big { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; color: var(--ink); }
/* Kauf/Verkauf: Haarlinie statt Boxen */
.pp-spread { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 22px; border-top: 1px solid var(--hair); padding-top: 16px; }
.pp-spread .pps { }
.pp-spread .pps .k { font-size: 13px; color: var(--muted); }
.pp-spread .pps .v { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-top: 6px; }
.pp-spread .pps .u { font-size: 12px; color: var(--faint); margin-top: 3px; }
.chart-box { margin: 18px -6px 0; }
.tf-row { display: flex; gap: 4px; margin-top: 14px; }
.tf { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px 13px; border-radius: 8px; border: 1px solid transparent; cursor: pointer; background: none; transition: .2s; }
.tf.on { background: var(--sunken); border-color: var(--hair); color: var(--ink); }
.tf:hover { color: var(--ink); }

/* ── Product shot ───────────────────────────────────────── */
.product-shot {
  position: relative; border-radius: 12px; border: 1px solid var(--hair);
  background: radial-gradient(420px 420px at 50% 42%, rgba(194,161,78,0.14), transparent 62%), var(--card);
  display: flex; align-items: center; justify-content: center; padding: 56px 40px; overflow: hidden; min-height: 420px;
}
.product-shot .ps-coin { width: clamp(180px, 24vw, 240px); aspect-ratio: 1; position: relative; }
.product-shot .ps-coin img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 22px 36px rgba(0,0,0,0.5)); }
.product-shot .ps-cap {
  position: absolute; left: 22px; bottom: 22px; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint);
}
.prod-list { margin-top: 30px; }
.prod-list .pl { padding: 15px 0; border-top: 1px solid var(--hair); }
.prod-list .pl:last-child { border-bottom: 1px solid var(--hair); }
.prod-list .pl h4 { font-family: var(--serif); font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.prod-list .pl p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }

/* ── App showcase ───────────────────────────────────────── */
.app-show { background: var(--ground-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.app-feature-list { display: flex; flex-direction: column; gap: 8px; margin-top: 38px; }
.afl { padding: 18px 0; border-top: 1px solid var(--hair); }
.afl:last-child { border-bottom: 1px solid var(--hair); }
.afl h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin: 0 0 5px; }
.afl p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }
.store-badges { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 10px; padding: 10px 18px 10px 14px; border-radius: 12px; border: 1px solid var(--gold-line); background: var(--card); color: var(--ink); text-decoration: none; transition: border-color .16s, background .16s, transform .16s; }
.store-btn svg { color: var(--gold); flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn small { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--faint); }
.store-btn b { font-size: 15px; font-weight: 600; }
.store-btn:hover { border-color: var(--gold); background: var(--card-2); transform: translateY(-1px); }

/* phone */
.phone-stage { display: flex; justify-content: center; perspective: 1900px; }
.phone {
  width: 318px; flex-shrink: 0; border-radius: 46px; padding: 11px;
  background: linear-gradient(160deg, #2a271f, #161410 60%);
  box-shadow: 0 50px 90px -34px rgba(0,0,0,0.85), 0 0 0 1px rgba(236,230,216,0.05);
  transform: rotateY(-15deg) rotateX(4deg); transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.phone:hover { transform: rotateY(-6deg) rotateX(2deg); }
.phone-stage .app-shot {
  width: clamp(300px, 38vw, 400px); display: block;
  border-radius: 11% / 5.2%;
  transform: rotateY(-14deg) rotateX(4deg);
  box-shadow: 0 50px 90px -34px rgba(0,0,0,0.85), 0 0 0 1px rgba(236,230,216,0.05);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.phone-stage .app-shot:hover { transform: rotateY(-5deg) rotateX(2deg); }
@media (max-width: 980px) { .phone-stage .app-shot { transform: none; } }
.phone-screen { border-radius: 36px; overflow: hidden; background: var(--ground); position: relative; aspect-ratio: 318 / 660; }
.phone-notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 98px; height: 25px; background: #0c0b08; border-radius: 12px; z-index: 5; }

/* mini app screen */
.mini { position: absolute; inset: 0; display: flex; flex-direction: column; color: var(--ink); }
.mini-status { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px 0; font-size: 12px; font-weight: 700; }
.mini-body { flex: 1; overflow: hidden; padding: 16px 16px 0; }
.mini-h { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.mini-h .mh-sub { font-size: 10.5px; color: var(--muted); }
.mini-h .mh-title { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-top: 2px; }
.mini-chip { font-family: var(--mono); font-size: 10px; padding: 5px 9px; border-radius: 8px; border: 1px solid var(--gold-line); color: var(--gold); display: flex; align-items: center; gap: 5px; }
.mini-card { background: var(--card); border: 1px solid var(--hair); border-radius: 12px; padding: 15px; margin-bottom: 11px; }
.mini-spot { display: flex; align-items: center; gap: 12px; }
.mini-spot .ms-coin { width: 42px; height: 42px; }
.mini-spot .ms-label { font-size: 11px; color: var(--muted); }
.mini-spot .ms-price { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.mini-spot .ms-chg { color: var(--up); font-size: 11.5px; font-weight: 600; margin-left: auto; }
.mini-spark { margin-top: 10px; }
.mini-tabbar { display: flex; justify-content: space-around; padding: 11px 0 16px; border-top: 1px solid var(--hair); background: var(--sunken); }
.mini-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8.5px; color: var(--faint); }
.mini-tab.on { color: var(--gold); }

/* ── CTA band: redaktionell, ohne Karte ─────────────────── */
.cta-band { border-top: 1px solid var(--hair); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; color: var(--ink); font-family: var(--serif); font-size: clamp(18px, 2.1vw, 22px); font-weight: 600; padding: 26px 50px 26px 0; position: relative; display: block; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-q::after { content: ""; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px; transform: translateY(-50%); background:
  linear-gradient(var(--gold), var(--gold)) center/13px 1px no-repeat,
  linear-gradient(var(--gold), var(--gold)) center/1px 13px no-repeat; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(90deg); background:
  linear-gradient(var(--gold), var(--gold)) center/13px 1px no-repeat; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a p { color: var(--muted); font-size: 15px; line-height: 1.68; margin: 0 0 26px; max-width: 760px; }

/* ── KPI band ────────────────────────────────────────────── */
/* Stille Faktenzeile: ersetzt die Zaehler-Kacheln */
.factline {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px 32px;
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  padding: 20px 0;
}
.factline span { font-size: 13px; color: var(--muted); }
@media (max-width: 760px) { .factline { flex-direction: column; gap: 10px; } }
@media (max-width: 900px) { .kpi { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .kpi { grid-template-columns: 1fr; } }

/* ── Brand strip ─────────────────────────────────────────── */
.brandstrip { display: flex; align-items: center; gap: 18px; }
.brandstrip .bs-bars { width: 64px; flex-shrink: 0; opacity: 0.9; }
.brandstrip .bs-bars img { width: 100%; display: block; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--hair); background: var(--ground-2); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer h5 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); margin: 0 0 18px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--hair); flex-wrap: wrap; gap: 14px; }
.footer-bottom .fb-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.4px; color: var(--faint); }

/* ── Trust-Zeile ───────────────────────────────────── */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; padding: 24px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin-top: 48px; }
.trust-strip .tb { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--faint); }
.trust-strip .tb svg { flex-shrink: 0; opacity: .85; }

/* ── Cart-Button mobil kompakt ─────────────────────── */
@media (max-width: 720px) {
  .cart-btn .cart-label { display: none; }
  .nav-inner { gap: 10px; }
}

/* ── Loading screen ─────────────────────────────────────── */
#loader { position: fixed; inset: 0; z-index: 200; background: var(--ground); display: flex; align-items: center; justify-content: center; transition: opacity .7s ease; }
#loader.done { opacity: 0; pointer-events: none; }
#loader .ld-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
#loader .ld-coinwrap { position: relative; width: 132px; height: 132px; display: grid; place-items: center; }
#loader .ld-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
#loader .ld-ring-bg { fill: none; stroke: var(--hair); stroke-width: 2; }
#loader .ld-ring-fg { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; transition: stroke-dashoffset .25s ease; filter: drop-shadow(0 0 4px rgba(194,161,78,0.55)); }
#loader .ld-coin { width: 92px; height: 92px; perspective: 600px; }
#loader .ld-coin3d { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: ld-spin 2.4s linear infinite; }
#loader .ld-face { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; -webkit-backface-visibility: hidden; backface-visibility: hidden; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5)); }
#loader .ld-back { transform: rotateY(180deg); }
@keyframes ld-spin { to { transform: rotateY(360deg); } }
#loader .ld-word { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--ink); letter-spacing: 0.3px; }
#loader .ld-word b { color: var(--gold); font-weight: 600; }
#loader .ld-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--faint); margin-top: -12px; }
@media (prefers-reduced-motion: reduce) { #loader .ld-coin3d { animation: none; } }

/* ── Scroll progress ────────────────────────────────────── */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 70; background: var(--gold); }

/* ── Golden thread (scroll narrative) ───────────────────── */
#goldthread { position: absolute; top: 0; left: 0; width: 100%; pointer-events: none; z-index: 4; overflow: hidden; }
#goldthread svg { position: absolute; top: 0; left: 0; overflow: visible; }
#goldthread .th-track { fill: none; stroke: var(--hair); stroke-width: 1.5; }
#goldthread .th-line {
  fill: none; stroke: url(#thGrad); stroke-width: 2.4; stroke-linecap: round;
  /* Kein drop-shadow hier: der Filter laege ueber der gesamten Seitenhoehe
     und macht jeden Scrollschritt zu einem teuren Repaint. */
}
#goldthread .th-head { fill: #fff6df; filter: drop-shadow(0 0 7px rgba(231,201,123,0.95)); transition: opacity .3s; }
#goldthread .th-head-glow { fill: rgba(216,190,132,0.26); transition: opacity .3s; }
#goldthread .th-origin { fill: #f3dd97; filter: drop-shadow(0 0 8px rgba(231,201,123,0.9)); animation: th-pulse 2.4s ease-in-out infinite; }
#goldthread .th-flow { fill: #fff6df; filter: drop-shadow(0 0 6px rgba(231,201,123,0.95)); opacity: 0; }
@keyframes th-pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
#goldthread .th-ring { fill: var(--ground); stroke: var(--hair); stroke-width: 1.6; transition: stroke .5s ease; }
#goldthread .th-dot { fill: var(--gold); opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0.2); transition: opacity .5s ease, transform .5s cubic-bezier(.2,1.4,.4,1); }
#goldthread .th-node.lit .th-ring { stroke: var(--gold-line); }
#goldthread .th-node.lit .th-dot { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  #goldthread .th-head, #goldthread .th-head-glow, #goldthread .th-flow, #goldthread .th-origin { display: none; }
}

/* ── Scroll reveal ──────────────────────────────────────── */
/* Ruhige Reveals: kurzer Weg, kuerzere Dauer, kein Blur-Theater */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal-left { opacity: 0; transform: translateX(-18px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-right { opacity: 0; transform: translateX(18px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-scale { opacity: 0; transform: translateY(12px); transition: opacity .65s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-blur { opacity: 0; transform: translateY(12px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in, .reveal-blur.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur { opacity: 1 !important; transform: none !important; filter: none !important; }
}
/* ── Product shot: dynamic entrance + idle motion ───────── */
.reveal-left .ps-coin { opacity: 0; transform: translateY(52px) scale(.68) rotate(-16deg); transition: opacity .9s ease .15s, transform 1.2s cubic-bezier(.16, 1.14, .3, 1) .15s; }
.reveal-left.in .ps-coin { opacity: 1; transform: none; }
.reveal-left.in .ps-coin img { animation: psFloat 6s ease-in-out 1.4s infinite; }
@keyframes psFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.product-shot .ps-coin::before {
  content: ''; position: absolute; inset: -16%; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,161,78,0.26), transparent 64%);
  opacity: 0;
}
.reveal-left.in .ps-coin::before { animation: psGlow 6s ease-in-out 1.4s infinite; opacity: 1; transition: opacity 1s ease .6s; }
@keyframes psGlow {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.12); opacity: 1; }
}
.product-shot .ps-coin img { position: relative; }
.reveal-left .product-shot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(247,231,178,0.13) 50%, transparent 68%);
  transform: translateX(-130%);
}
.reveal-left.in .product-shot::after { animation: psSheen 1.5s ease .55s both; }
@keyframes psSheen { to { transform: translateX(130%); } }
.reveal-left .ps-cap { opacity: 0; transform: translateY(10px); transition: opacity .8s ease .8s, transform .8s cubic-bezier(.2,.7,.2,1) .8s; }
.reveal-left.in .ps-cap { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-left .ps-coin, .reveal-left .ps-cap { opacity: 1 !important; transform: none !important; }
  .reveal-left.in .ps-coin img, .reveal-left.in .ps-coin::before, .reveal-left.in .product-shot::after { animation: none !important; }
}

/* eyebrow rule draws in on reveal */
.reveal .eyebrow::before, .reveal-left .eyebrow::before, .reveal-right .eyebrow::before { width: 0; transition: width .9s ease .25s; }
.reveal.in .eyebrow::before, .reveal-left.in .eyebrow::before, .reveal-right.in .eyebrow::before { width: 26px; }

/* gold shimmer sweep across section headings on enter (base text stays ink) */
.goldshine { position: relative; }
.goldshine::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%;
  color: var(--gold); pointer-events: none; opacity: 0;
  -webkit-mask-image: linear-gradient(100deg, transparent 38%, #000 50%, transparent 62%);
  mask-image: linear-gradient(100deg, transparent 38%, #000 50%, transparent 62%);
  -webkit-mask-size: 250% 100%; mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: 130% 0; mask-position: 130% 0;
}
.goldshine.go::after { animation: goldshine 1.5s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes goldshine {
  0% { opacity: 1; -webkit-mask-position: 130% 0; mask-position: 130% 0; }
  80% { opacity: 1; }
  100% { opacity: 0; -webkit-mask-position: -40% 0; mask-position: -40% 0; }
}
@media (prefers-reduced-motion: reduce) { .goldshine::after { display: none; } }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .coin-wrap { min-height: 360px; order: -1; }
  .hero-grid-lines { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 28px 0; }
  .step:first-child { padding-top: 0; }
  .step + .step { border-left: none; border-top: 1px solid var(--hair); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 560px) {
  .coin-scene { width: 220px; height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 14px 24px; }
  .hero-cta .btn { flex: 1; }
}

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 65; background: rgba(20,18,12,0.98); backdrop-filter: blur(18px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity .35s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 28px; color: var(--ink); padding: 12px; }
.mobile-menu .btn { margin-top: 22px; }
.mm-close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: var(--ink); font-size: 32px; cursor: pointer; line-height: 1; font-family: var(--sans); }