/* =============================================================================
   max.baut.ki — Personal Hub · Design-System (Black-Gold, cinematic)
   Geteilt von index.html (Hub) + danke.html (/danke).
   Tokens übernommen aus dem bewährten jarvis-waitlist-Setup.
   ============================================================================= */

:root {
  --bg: #0B0B0C;
  --gold: #C9A96E;
  --gold-light: #E0C896;
  --gold-dark: #9C8557;
  --text: #EDE9E0;
  --muted: #8A867E;
  --line: rgba(156, 133, 87, 0.22);
  --line-soft: rgba(156, 133, 87, 0.12);
  --card: rgba(255, 255, 255, 0.018);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 600px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* hidden muss display:flex/grid der Karten schlagen → sonst tote Leer-Links */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

/* ── Atmosphäre: Goldglow + Goldgrid + Grain (fixed, hinter dem Inhalt) ── */
.bg-glow,
.bg-grid,
.bg-grain { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-glow {
  background:
    radial-gradient(60% 38% at 50% -4%, rgba(201, 169, 110, 0.20), transparent 70%),
    radial-gradient(40% 24% at 50% 0%, rgba(224, 200, 150, 0.10), transparent 65%);
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(156, 133, 87, 0.075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(156, 133, 87, 0.075) 1px, transparent 1px);
  background-size: 54px 54px;
  background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 72% 52% at 50% 10%, #000 0%, rgba(0, 0, 0, 0.35) 48%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 52% at 50% 10%, #000 0%, rgba(0, 0, 0, 0.35) 48%, transparent 78%);
}

.bg-grain {
  z-index: 1;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Layout ── */
.shell { position: relative; z-index: 2; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ── Header ── */
header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.wordmark {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--text);
  text-decoration: none;
}
.wordmark .dot { color: var(--gold); }

.nav-right {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-right:hover { color: var(--gold-light); border-color: var(--gold-dark); }

/* ── Section-Grundgerüst ── */
main { padding: 30px 0 0; }

.section { padding-top: clamp(56px, 13vw, 104px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  color: var(--text);
}
.section-title em { font-style: italic; font-weight: 500; color: var(--gold); }

.section-lead {
  margin-top: 16px;
  font-size: clamp(15px, 4vw, 16.5px);
  color: var(--muted);
  line-height: 1.7;
}

/* ── Hero ── */
.hero { text-align: center; padding-top: clamp(28px, 7vw, 64px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.55);
  animation: pulseDot 2.4s var(--ease) infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5); opacity: 1; }
  70% { box-shadow: 0 0 0 7px rgba(201, 169, 110, 0); opacity: 0.75; }
  100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); opacity: 1; }
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(46px, 13vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 26px 0 0;
  color: var(--text);
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2px;
}

.hero-sub {
  max-width: 470px;
  margin: 24px auto 0;
  font-size: clamp(15px, 4.2vw, 17px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.hero-sub b { color: var(--text); font-weight: 400; }

.terminal {
  display: inline-block;
  margin-top: 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(11px, 3.2vw, 13px);
  letter-spacing: 0.01em;
  color: var(--gold-dark);
}
.terminal .prompt { color: var(--gold); }
.terminal .comment { color: var(--muted); }
.terminal .cursor {
  display: inline-block;
  width: 8px;
  color: var(--gold-light);
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ── Formular-Card ── */
.card {
  position: relative;
  margin: clamp(40px, 9vw, 60px) auto 0;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 6vw, 38px);
  box-shadow:
    0 40px 90px -50px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 60% at 50% 0%, rgba(201, 169, 110, 0.08), transparent 60%);
}
.card > * { position: relative; z-index: 1; }

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(26px, 7vw, 32px);
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
}
.card-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: var(--muted); opacity: 0.7; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}
/* Tastatur-Fokus deutlich sichtbar (WCAG 2.4.11) */
.field input:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.45);
}

/* Honeypot — visuell versteckt, aber für Bots im DOM */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0; padding: 0;
}
.hp input { box-shadow: none; }
.field.invalid input,
.field.invalid select { border-color: rgba(201, 137, 110, 0.6); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { cursor: pointer; }
.field select option { background: #15140f; color: var(--text); }
.field select.placeholder { color: var(--muted); }

.submit {
  width: 100%;
  margin-top: 8px;
  position: relative;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: 0.04em;
  color: #1a160c;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 11px;
  padding: 15px 20px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  box-shadow: 0 14px 30px -14px rgba(201, 169, 110, 0.6);
}
.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(201, 169, 110, 0.7);
  filter: brightness(1.04);
}
.submit:active { transform: translateY(0); }
.submit:disabled { cursor: default; }
.submit .label { transition: opacity 0.2s ease; }
.submit .spinner {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(26, 22, 12, 0.3);
  border-top-color: #1a160c;
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.submit.loading { filter: brightness(0.96); }
.submit.loading .label { opacity: 0; }
.submit.loading .spinner { opacity: 1; }

.form-error {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: #d9a18c;
  text-align: center;
  margin-top: 14px;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
}
.form-error.show { opacity: 1; max-height: 40px; }

.legal {
  margin-top: 18px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.legal a { color: var(--gold-dark); text-decoration: none; border-bottom: 1px solid var(--line-soft); }
.legal a:hover { color: var(--gold); }

/* ── Erfolgs-/Bestätigt-Screen ── */
.success { text-align: center; padding: 12px 4px; }
.success[hidden] { display: none; }
.check {
  width: 64px; height: 64px;
  margin: 4px auto 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, rgba(201, 169, 110, 0.18), transparent 70%);
  display: grid;
  place-items: center;
}
.check svg { width: 30px; height: 30px; }
.check path {
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}
.success.show .check path,
.check.draw path { animation: draw 0.7s var(--ease) 0.15s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 10px;
}
.success-text { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 320px; margin: 0 auto; }
.success-text b { color: var(--text); font-weight: 400; }

/* ── Personal Brand / About ── */
.about { max-width: 560px; margin: 0 auto; }
.about-body {
  margin-top: 20px;
  font-size: clamp(15px, 4vw, 17px);
  color: var(--muted);
  line-height: 1.8;
}
.about-body p + p { margin-top: 14px; }
.about-body b { color: var(--text); font-weight: 400; }
.about-body .gold { color: var(--gold); font-weight: 400; }

/* ── Community-Teaser (gated) ── */
.community { max-width: 560px; margin: 0 auto; }
.comm-list { margin-top: 26px; display: grid; gap: 2px; border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; }
.comm-point {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.012);
}
.comm-point .pt-ic {
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
}
.comm-point .pt-text { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.comm-point .pt-text b { color: var(--text); font-weight: 400; }

.gate-note {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: 13px;
  background: rgba(201, 169, 110, 0.03);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.gate-note svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; stroke: var(--gold); fill: none; }
.gate-note b { color: var(--gold-light); font-weight: 400; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--gold-dark);
  border-radius: 11px;
  padding: 13px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-secondary svg { width: 15px; height: 15px; fill: currentColor; transition: transform 0.25s var(--ease); }
.btn-secondary:hover svg { transform: translateY(-3px); }

/* ── Link-Hub ── */
.linkhub { max-width: 600px; margin: 0 auto; }
.lh-group { margin-top: 26px; }
.lh-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.lh-group-label::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }

.link-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(120% 80% at 0% 50%, rgba(201, 169, 110, 0.10), transparent 60%);
  transition: opacity 0.25s var(--ease);
}
.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dark);
  background: rgba(201, 169, 110, 0.04);
  box-shadow: 0 18px 40px -28px rgba(201, 169, 110, 0.55);
}
.link-card:hover::before { opacity: 1; }
.link-card:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}
.link-card > * { position: relative; z-index: 1; }

.lc-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(201, 169, 110, 0.05);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.lc-ic svg { width: 19px; height: 19px; fill: currentColor; }
.link-card:hover .lc-ic { border-color: var(--gold-dark); color: var(--gold-light); }

.lc-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lc-name { font-family: "Jost", sans-serif; font-weight: 500; font-size: 15px; color: var(--text); }
.lc-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lc-arrow { margin-left: auto; flex-shrink: 0; color: var(--gold-dark); transition: transform 0.25s var(--ease), color 0.25s var(--ease); }
.lc-arrow svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.link-card:hover .lc-arrow { transform: translateX(3px); color: var(--gold); }

/* ── Brand-Karten mit echten Logos ── */
.brand-card { gap: 12px; }
.brand-logo { display: block; width: auto; flex: 0 0 auto; }
.brand-logo--mdweb { height: 24px; }
.brand-logo--ferguson { height: 36px; }
.brand-sub {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.brand-card:hover .brand-sub { color: var(--gold-dark); }

/* ── Agentur-CTA ── */
.agency-cta { text-align: center; }
.agency-cta .section-title { text-align: center; }
.agency-line {
  margin: 14px auto 26px;
  max-width: 440px;
  color: var(--muted);
  font-size: clamp(15px, 4vw, 16.5px);
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  color: #1a160c;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  padding: 15px 26px;
  text-decoration: none;
  box-shadow: 0 14px 30px -14px rgba(201, 169, 110, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(201, 169, 110, 0.7); filter: brightness(1.04); }
.btn-primary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

/* ── Danke-Reward-Buttons ── */
.reward { max-width: 420px; margin: 30px auto 0; display: grid; gap: 12px; }
.reward-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-radius: 13px;
  border: 1px solid var(--gold-dark);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.10), rgba(201, 169, 110, 0.03));
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  box-shadow: 0 14px 34px -24px rgba(201, 169, 110, 0.6);
}
.reward-card:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -24px rgba(201, 169, 110, 0.75); filter: brightness(1.05); }
.reward-card .lc-ic { background: rgba(201, 169, 110, 0.10); }
.reward-card .lc-name { color: var(--gold-light); }
.reward-fallback {
  margin: 28px auto 0;
  max-width: 360px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.reward-fallback b { color: var(--text); font-weight: 400; }

/* ── Footer ── */
footer {
  margin-top: clamp(64px, 14vw, 110px);
  border-top: 1px solid var(--line-soft);
  padding: 40px 22px 48px;
  text-align: center;
}
.footer-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 5.4vw, 24px);
  color: var(--text);
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.35;
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  margin-top: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  opacity: 0.7;
}

/* ── Reveal (Hero/oben: beim Laden) ── */
.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.85s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ── Reveal (unten: beim Scrollen via IntersectionObserver) ── */
.obs { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.obs.visible { opacity: 1; transform: none; }

/* ── Geteilter Tastatur-Fokus (WCAG 2.4.7 / 2.4.11) ── */
.wordmark:focus-visible,
.nav-right:focus-visible,
.submit:focus-visible,
.btn-secondary:focus-visible,
.btn-primary:focus-visible,
.footer-links a:focus-visible,
.legal a:focus-visible,
.reward-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ═══ Premium-Effekte ═══════════════════════════════════════════ */

/* Gold-Shimmer auf der Hero-Headline */
.hero-title em {
  background: linear-gradient(100deg,
    var(--gold-dark) 0%, var(--gold) 28%, #f3dcae 46%, #fff7e6 50%, #f3dcae 54%, var(--gold) 72%, var(--gold-dark) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: heroShimmer 7s linear infinite;
}
@keyframes heroShimmer { from { background-position: 0% center; } to { background-position: -220% center; } }

/* Shine-Sweep über die Gold-Buttons (Hover) */
.submit, .btn-primary { overflow: hidden; }
.btn-primary { position: relative; }
.submit::after, .btn-primary::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 2;
}
.submit:hover::after, .btn-primary:hover::after { animation: shineSweep 0.7s var(--ease); }
@keyframes shineSweep { to { left: 140%; } }

/* Sheen-Sweep über Link-/Reward-Karten (Hover) */
.link-card::after, .reward-card::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.09), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 2; border-radius: inherit;
}
.link-card:hover::after, .reward-card:hover::after { animation: shineSweep 0.75s var(--ease); }

/* Scroll-Fortschritt (Gold-Linie oben) */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  transform: scaleX(0); transform-origin: left center;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.55);
  z-index: 200; pointer-events: none;
}

/* Cursor-Glow — Gold-Spotlight mit Screen-Blend (Desktop) */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 360px; height: 360px;
  margin: -180px 0 0 -180px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(224, 200, 150, 0.07) 0%, rgba(201, 169, 110, 0.03) 34%, transparent 66%);
  pointer-events: none; z-index: 60; opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* ═══ Gate-Lock — prominenter Community-Hinweis ════════════════ */
.gate-lock {
  margin-top: 24px;
  display: flex; align-items: center; gap: 15px;
  padding: 17px 19px; border-radius: 15px;
  border: 1px solid var(--gold-dark);
  background: linear-gradient(135deg, rgba(201,169,110,0.10), rgba(201,169,110,0.03)), var(--card);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.10), 0 16px 44px -32px rgba(201,169,110,0.55);
  position: relative; overflow: hidden;
}
.gate-lock-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(201,169,110,0.25), rgba(201,169,110,0.05));
  border: 1px solid var(--gold-dark);
}
.gate-lock-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-light); stroke-width: 1.7; }
.gate-lock-text { display: flex; flex-direction: column; gap: 3px; }
.gate-lock-text strong {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 500;
  font-size: clamp(18px, 5vw, 21px); color: var(--gold-light); line-height: 1.2;
}
.gate-lock-text > span { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.gate-lock-text b { color: var(--text); font-weight: 400; }

/* ── Desktop ── */
@media (min-width: 720px) {
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-sub { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .obs { opacity: 1; transform: none; transition: none; }
  .badge-dot, .cursor, .spinner, .success.show .check path, .check.draw path { animation: none; }
  .check path { stroke-dashoffset: 0; }
  .hero-title em { animation: none; }
  .cursor-glow { display: none !important; }
  .submit::after, .btn-primary::after, .link-card::after, .reward-card::after { display: none; }
}
