/* =====================================================
   ANCIENT FUTURE GATHERING RESELLER — style.css
   Farben nach ancientfuturegathering.com:
   Navy (#0B1F27) · Teal (#2F6B78) · Cream (#F7F1E4) · Gold (#C9A15C)
   Mobile-first, nur min-width Queries
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

:root {
  --teal:     #2F6B78;
  --teal-lt:  #7FAAB4;
  --cream2:   #EEE4D0;
  --cream3:   #E4D6B8;
  --gold-lt:  #E9D2A4;
  --dk:       #0B1F27;
  --dk2:      #123642;
  --amber:    #C9A15C;
  --amber-lt: #E9D2A4;
  --amber-dk: #9C7A3F;
  --white:    #FFFFFF;
  --warm:     #F7F1E4;
  --text:     #241F19;
  --text2:    #4A4335;
  --text3:    #2F6B78;
  --head:     'Cinzel', 'Times New Roman', serif;
  --sans:     'Cinzel', 'Times New Roman', serif;
  --t:        0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max:      1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; padding: 0; }

#grain { position: fixed; inset: 0; pointer-events: none; z-index: 9000; opacity: 0.016; background-size: 200px 200px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 58px; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,31,39,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,161,92,0.16);
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled { background: rgba(11,31,39,0.99); box-shadow: 0 4px 28px rgba(0,0,0,0.45); }
.nav-logo img { height: 34px; width: auto; opacity: 0.88; transition: opacity var(--t); }
.nav-logo:hover img { opacity: 1; }
.nav-r { display: flex; align-items: center; gap: 0.75rem; }
.lang { display: flex; }
.lang-btn {
  padding: 0.25rem 0.48rem; border-radius: 6px;
  font-family: var(--head); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.32);
  display: flex; align-items: center; gap: 0.2rem;
  transition: color var(--t), background var(--t);
}
.lang-btn .fl { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; display: block; opacity: 0.55; transition: opacity var(--t); }
.lang-btn:hover .fl, .lang-btn.on .fl { opacity: 1; }
.lang-btn:hover { color: var(--amber-lt); }
.lang-btn.on { color: var(--amber-lt); background: rgba(201,161,92,0.12); }
.nav-cta {
  padding: 0.46rem 1.05rem; border-radius: 999px;
  background: var(--amber); color: var(--dk);
  font-family: var(--head); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.nav-cta:hover { background: var(--amber-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,161,92,0.3); }

/* ─── HERO — PARALLAX ──────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: var(--dk);
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; top: -15%; left: 0; right: 0; bottom: -15%; z-index: 0;
  will-change: transform;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero-video { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: none; overflow: hidden; }
.hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 100vh; min-width: 100%; min-height: 56.25vw;
  transform: translate(-50%, -50%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(175deg,
    rgba(11,31,39,0.82) 0%,
    rgba(11,31,39,0.42) 38%,
    rgba(11,31,39,0.55) 70%,
    rgba(11,31,39,0.94) 100%);
}
.hero-body {
  position: relative; z-index: 2; width: 100%;
  padding: 7.5rem 1.25rem 5.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.hero-spiral { width: 46px; opacity: 0.78; filter: brightness(1.3); }
.hero-eyebrow {
  font-family: var(--head); font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 0.28em; font-weight: 700;
  color: rgba(201,161,92,0.62);
}
.hero-title {
  font-family: var(--head); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(2rem, 7.5vw, 4rem); line-height: 1.12; color: #fff;
}
.hero-sub {
  font-size: clamp(0.88rem, 2.2vw, 1rem); line-height: 1.82;
  color: rgba(255,255,255,0.5); max-width: 460px; font-weight: 400;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.chip {
  padding: 0.3rem 0.82rem; border-radius: 999px;
  border: 1px solid rgba(201,161,92,0.28);
  font-family: var(--head); font-size: 0.62rem; font-weight: 600; color: rgba(201,161,92,0.68);
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.chip:hover { border-color: var(--amber); background: rgba(201,161,92,0.08); transform: scale(1.04); }
.hero-btns { display: flex; flex-direction: column; gap: 0.55rem; width: 100%; max-width: 320px; }

/* Ticker */
.ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 0.52rem 0; overflow: hidden;
  background: rgba(11,31,39,0.72); border-top: 1px solid rgba(201,161,92,0.12);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 44s linear infinite; }
.ticker-track span { font-size: 0.6rem; font-style: italic; color: rgba(255,255,255,0.2); flex-shrink: 0; padding-right: 2rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-amber {
  display: flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  background: var(--amber); color: var(--dk);
  font-family: var(--head); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.03em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-amber:hover { background: var(--amber-lt); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,161,92,0.38); }
.btn-ghost {
  display: flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.62);
  font-family: var(--head); font-weight: 600; font-size: 0.88rem;
  transition: border-color var(--t), color var(--t), transform var(--t);
}
.btn-ghost:hover { border-color: var(--amber-lt); color: var(--amber-lt); transform: translateY(-2px); }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.8rem; border-radius: 999px;
  background: #25D366; color: #fff;
  font-family: var(--head); font-weight: 700; font-size: 0.88rem;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-wa:hover { background: #1eb856; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

/* ─── AMBER STRIP ─────────────────────────────────── */
.amber-strip {
  background: var(--amber); padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.strip-text { font-family: var(--head); font-size: 0.82rem; font-weight: 700; color: var(--dk); letter-spacing: 0.02em; }
.strip-cta {
  padding: 0.38rem 0.98rem; border-radius: 999px;
  background: var(--dk); color: var(--amber);
  font-family: var(--head); font-size: 0.68rem; font-weight: 700;
  transition: background var(--t), transform var(--t);
}
.strip-cta:hover { background: var(--dk2); transform: translateY(-1px); }

/* ─── SEKTIONEN ───────────────────────────────────── */
.sec-white { background: var(--white); position: relative; z-index: 1; }
.sec-warm  { background: var(--warm);  position: relative; z-index: 1; }
.sp { padding: 4.5rem 0; }

.eyebrow {
  display: block; font-family: var(--head);
  font-size: 0.54rem; text-transform: uppercase;
  letter-spacing: 0.28em; font-weight: 700; margin-bottom: 0.85rem;
}
.e-amber  { color: var(--amber-dk); }
.e-dark   { color: rgba(201,161,92,0.58); }
.e-on-amb { color: rgba(11,31,39,0.5); }

.h2 {
  font-family: var(--head); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(1.65rem, 4.8vw, 2.65rem); line-height: 1.16; color: var(--text);
}
.h2-wh { color: #fff; }
.h2-am { color: var(--dk); }

.body     { font-size: 0.94rem; line-height: 1.82; color: var(--text2); font-weight: 400; }
.body-wh  { color: rgba(255,255,255,0.54); }
.body-am  { color: rgba(11,31,39,0.68); }

.rule { width: 38px; height: 2px; border-radius: 2px; margin: 0.85rem 0 1.2rem; }
.r-amb { background: linear-gradient(to right, var(--amber), var(--amber-dk)); }
.r-wh  { background: rgba(255,255,255,0.22); }
.r-dk  { background: rgba(11,31,39,0.2); }

/* ─── 2-SPALTEN ──────────────────────────────────── */
.two-col { display: flex; flex-direction: column; gap: 2.5rem; }

/* ─── BILD-CLUSTER ───────────────────────────────── */
.cluster-wrap { padding-bottom: 30px; padding-right: 18px; }
.cluster { position: relative; }
.c-main { border-radius: 16px; overflow: hidden; }
.c-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.6s ease; }
.c-main:hover img { transform: scale(1.04); }
.c-sub {
  position: absolute; bottom: -30px; right: -18px;
  width: 54%; aspect-ratio: 4/3;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.24);
  border: 3px solid var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.c-sub:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.c-sub img { width: 100%; height: 100%; object-fit: cover; }

.cluster3 { position: relative; height: 320px; }
.c3a { position: absolute; top: 0; left: 0; width: 62%; height: 220px; border-radius: 14px; overflow: hidden; }
.c3b { position: absolute; bottom: 0; right: 0; width: 58%; height: 200px; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 32px rgba(0,0,0,0.18); }
.c3c { position: absolute; top: 55px; right: 5%; width: 30%; height: 130px; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.16); z-index: 1; }
.c3a img, .c3b img, .c3c img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.c3a:hover img, .c3b:hover img, .c3c:hover img { transform: scale(1.05); }

.text-col { display: flex; flex-direction: column; gap: 1rem; }

/* ─── STATS ──────────────────────────────────────── */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-top: 0.5rem; }
.stat {
  background: var(--warm); border: 1px solid rgba(201,161,92,0.18);
  border-radius: 12px; padding: 1rem 0.75rem; text-align: center;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.stat:hover { border-color: rgba(201,161,92,0.45); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,161,92,0.1); }
.stat-n {
  font-family: var(--head); font-size: 1.9rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber-dk));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-family: var(--head); font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text3); margin-top: 0.22rem; }

/* ─── PROVISION CALLOUT ──────────────────────────── */
.prov-callout {
  background: var(--dk); border-radius: 16px; padding: 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.prov-top { display: flex; align-items: center; gap: 1rem; }
.prov-pct {
  font-family: var(--head); font-size: 2.8rem; font-weight: 700; line-height: 1; flex-shrink: 0;
  background: linear-gradient(135deg, #FAD060, var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.prov-label { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.prov-label strong { display: block; color: rgba(255,255,255,0.88); font-family: var(--head); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.1rem; }
.calc-row { display: flex; align-items: center; gap: 0.9rem; }
.calc-slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 3px; background: rgba(201,161,92,0.22); border-radius: 2px; outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--amber); border: 2px solid rgba(11,31,39,0.7);
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.3); transition: transform 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.4); }
.calc-count { font-family: var(--head); font-size: 1.35rem; font-weight: 700; color: var(--amber-lt); min-width: 2.5ch; text-align: right; }
.calc-hint-sm { font-size: 0.58rem; color: rgba(255,255,255,0.22); }
.calc-out {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(201,161,92,0.08); border: 1px solid rgba(201,161,92,0.22);
  border-radius: 10px; padding: 0.9rem 1.1rem;
}
.calc-out-l { font-family: var(--head); font-size: 0.66rem; font-weight: 600; color: rgba(255,255,255,0.38); line-height: 1.5; }
.calc-out-v {
  font-family: var(--head); font-size: 1.75rem; font-weight: 700;
  background: linear-gradient(135deg, #FAD060, var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.calc-note { font-size: 0.57rem; color: rgba(255,255,255,0.16); }

/* ─── SHOP TAGS / ZITAT ──────────────────────────── */
.shop-tags { display: flex; flex-wrap: wrap; gap: 0.44rem; }
.shop-tag {
  padding: 0.32rem 0.82rem; border-radius: 999px;
  border: 1px solid rgba(11,31,39,0.18);
  font-family: var(--head); font-size: 0.68rem; font-weight: 600; color: rgba(11,31,39,0.68);
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.shop-tag:hover { border-color: var(--dk); background: rgba(11,31,39,0.07); transform: translateY(-2px); }
.zitat {
  border-left: 3px solid rgba(11,31,39,0.18); padding: 0.9rem 1.1rem;
  font-family: var(--sans); font-style: italic; font-size: 0.96rem;
  color: var(--dk); line-height: 1.65; background: rgba(11,31,39,0.04); border-radius: 0 12px 12px 0;
}

/* ─── ICONS-BAR ──────────────────────────────────── */
.icons-bar { background: var(--amber); padding: 2rem 1.25rem; position: relative; z-index: 1; }
.icons-row { display: flex; flex-direction: column; gap: 1.6rem; max-width: var(--max); margin: 0 auto; }
.icon-it { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; text-align: center; }
.icon-it svg { width: 32px; height: 32px; fill: none; stroke: var(--dk); stroke-width: 1.5; opacity: 0.78; transition: transform var(--t), opacity var(--t); }
.icon-it:hover svg { transform: scale(1.18) rotate(-6deg); opacity: 1; }
.icon-it-title { font-family: var(--head); font-size: 0.9rem; font-weight: 700; color: var(--dk); }
.icon-it-sub   { font-size: 0.72rem; color: rgba(11,31,39,0.62); line-height: 1.5; }

/* ─── PROZESS ────────────────────────────────────── */
.process { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2.5rem; }
.proc { display: flex; flex-direction: column; gap: 0.6rem; }
.proc-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--amber); color: var(--dk);
  font-family: var(--head); font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 0.2rem;
  transition: transform var(--t), box-shadow var(--t);
}
.proc:hover .proc-dot { transform: scale(1.18); box-shadow: 0 6px 18px rgba(201,161,92,0.3); }
.proc-title { font-family: var(--head); font-size: 1.06rem; font-weight: 700; color: var(--text); }
.proc-desc  { font-size: 0.88rem; line-height: 1.74; color: var(--text2); }

/* ─── HERO ANIMATED LINES ────────────────────────── */
.hero-title .hl {
  display: block; opacity: 0; transform: translateY(22px);
  animation: hl-in 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-title .hl:nth-child(1) { animation-delay: 0.35s; }
.hero-title .hl:nth-child(2) { animation-delay: 0.72s; }
.hero-title .hl:nth-child(3) { animation-delay: 1.08s; }
@keyframes hl-in { to { opacity: 1; transform: translateY(0); } }

/* ─── FILMSTRIP SLIDER ───────────────────────────── */
.slider-wrap { background: var(--dk); position: relative; overflow: hidden; z-index: 1; padding: 1.4rem 0 1.8rem; }
.slider-track {
  display: flex; gap: 0.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 0 0.75rem;
}
.slide { flex-shrink: 0; width: 74vw; }
.slide img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: center 25%;
  display: block; border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.slide:hover img { transform: scale(1.025); box-shadow: 0 10px 32px rgba(0,0,0,0.4); }
.s-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(11,31,39,0.72); border: 1px solid rgba(201,161,92,0.32);
  color: rgba(201,161,92,0.85); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.s-btn:hover { background: rgba(11,31,39,0.95); border-color: var(--amber); transform: translateY(-50%) scale(1.12); }
.s-prev { left: 0.4rem; }
.s-next { right: 0.4rem; }
.s-dots { position: absolute; bottom: 0.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; z-index: 4; }
.s-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background var(--t), width 0.3s ease; }
.s-dot.on { background: var(--amber); width: 16px; border-radius: 3px; }

/* ─── MÖGLICHKEITEN — BLOB CARDS ────────────────── */
.pb-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }

.pb-card {
  background: var(--white); border: 1px solid rgba(201,161,92,0.14);
  border-radius: 22px; padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pb-card::after {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 140px; height: 140px; pointer-events: none;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(201,161,92,0.065);
  animation: blob-bg 12s ease-in-out infinite;
}
.pb-card:nth-child(2)::after { animation-delay: -4s; }
.pb-card:nth-child(3)::after { animation-delay: -8s; }
.pb-card:hover { transform: translateY(-8px); box-shadow: 0 22px 56px rgba(11,31,39,0.13); border-color: rgba(201,161,92,0.38); }
.pb-card:hover::after { animation-duration: 3.5s; }

.pb-blob-wrap {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber-dk));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 9s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: filter 0.35s ease;
}
.pb-card:nth-child(2) .pb-blob-wrap { animation-delay: -3s; }
.pb-card:nth-child(3) .pb-blob-wrap { animation-delay: -6s; }
.pb-card:hover .pb-blob-wrap { filter: brightness(1.12) saturate(1.15); animation-duration: 3s; }
.pb-blob-wrap svg { width: 30px; height: 30px; fill: none; stroke: var(--dk); stroke-width: 1.8; opacity: 0.85; }

.pb-badge {
  display: inline-flex; align-self: flex-start;
  padding: 0.22rem 0.72rem; border-radius: 999px;
  border: 1px solid rgba(201,161,92,0.35);
  font-family: var(--head); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-dk);
}
.pb-card-title { font-family: var(--head); font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.pb-card-desc  { font-size: 0.88rem; line-height: 1.76; color: var(--text2); flex: 1; }
.pb-card-cta {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 0.35rem;
  font-family: var(--head); font-size: 0.78rem; font-weight: 700; color: var(--dk);
  border-bottom: 1.5px solid rgba(11,31,39,0.22); padding-bottom: 1px;
  transition: border-color var(--t), color var(--t), gap 0.2s ease;
}
.pb-card-cta:hover { border-color: var(--amber-dk); color: var(--amber-dk); gap: 0.55rem; }

@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%      { border-radius: 50% 60% 50% 30% / 30% 50% 70% 50%; }
  75%      { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
}
@keyframes blob-bg {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%     { border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
}

/* ─── FAQ 2-SPALTEN ──────────────────────────────── */
.faq-grid { display: flex; flex-direction: column; }
.faq-col  { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(201,161,92,0.14); }
.faq-item:first-child { border-top: 1px solid rgba(201,161,92,0.14); }
.faq-btn {
  width: 100%; text-align: left; padding: 1.1rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-family: var(--head); font-size: 0.88rem; font-weight: 700; color: var(--text);
  transition: color var(--t);
}
.faq-btn:hover { color: var(--amber-dk); }
.faq-ico {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(201,161,92,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-dk); font-size: 0.95rem; line-height: 1;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.faq-item.open .faq-ico { transform: rotate(45deg); border-color: var(--amber); background: rgba(201,161,92,0.1); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-body { max-height: 240px; }
.faq-body p { font-size: 0.88rem; line-height: 1.76; color: var(--text2); padding-bottom: 1.1rem; }

/* ─── CTA FINAL — DUNKELGRÜN MIT WELLEN ─────────── */
.sec-cta {
  background-color: var(--dk);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='48' viewBox='0 0 120 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24 Q30 6 60 24 Q90 42 120 24' stroke='rgba(251%2C248%2C242%2C0.04)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0 38 Q30 20 60 38 Q90 56 120 38' stroke='rgba(251%2C248%2C242%2C0.025)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 10 Q30 -8 60 10 Q90 28 120 10' stroke='rgba(251%2C248%2C242%2C0.02)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 120px 48px;
  padding: 5.5rem 1.25rem; text-align: center;
  position: relative; overflow: hidden; z-index: 1;
}
.sec-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,92,0.07) 0%, transparent 65%); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.15rem; }
.cta-logo { width: 44px; opacity: 0.68; }
.cta-btns { display: flex; flex-direction: column; gap: 0.65rem; width: 100%; }
.cta-fine { font-size: 0.57rem; color: rgba(255,255,255,0.18); line-height: 1.8; }
.cta-fine a { color: rgba(201,161,92,0.38); border-bottom: 1px solid rgba(201,161,92,0.14); transition: color var(--t); }
.cta-fine a:hover { color: var(--amber-lt); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer { background: #0D1806; border-top: 1px solid rgba(201,161,92,0.1); padding: 1.75rem 1.25rem; position: relative; z-index: 1; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; text-align: center; }
.footer img { height: 26px; opacity: 0.38; }
.footer-copy { font-size: 0.6rem; color: rgba(255,255,255,0.16); line-height: 1.7; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { font-size: 0.62rem; color: rgba(201,161,92,0.32); border-bottom: 1px solid rgba(201,161,92,0.12); transition: color var(--t); }
.footer-links a:hover { color: var(--amber-lt); }

/* ─── REGISTRATION MODAL ─────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(13,24,6,0.72);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  position: relative; width: 100%; max-width: 420px;
  background: var(--dk); border: 1px solid rgba(201,161,92,0.25);
  border-radius: 20px; padding: 2.4rem 1.75rem 1.9rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.9rem;
  transform: translateY(18px) scale(0.97); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 30px; height: 30px; border-radius: 50%;
  color: rgba(255,255,255,0.4); font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
.modal-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.modal-spiral { width: 38px; opacity: 0.8; }
.modal-title { font-family: var(--head); font-weight: 700; font-size: 1.28rem; line-height: 1.32; color: #fff; }
.modal-body  { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.55); }
.modal-btns  { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; margin-top: 0.4rem; }
.modal-later { font-family: var(--head); font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.32); padding: 0.4rem; transition: color var(--t); }
.modal-later:hover { color: rgba(255,255,255,0.62); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (min-width: 600px) {
  .hero-btns   { flex-direction: row; justify-content: center; }
  .hero-video  { display: block; }
  .icons-row   { flex-direction: row; justify-content: center; }
  .cta-btns    { flex-direction: row; justify-content: center; }
  .slide img   { height: 340px; }
  .pb-cards    { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .nav { padding: 0 2rem; height: 64px; }
  .wrap { padding: 0 2rem; }
  .two-col { flex-direction: row; align-items: flex-start; gap: 4.5rem; }
  .two-col.rev { flex-direction: row-reverse; }
  .two-col > .cluster-wrap { flex: 0 0 44%; }
  .two-col > .cluster3     { flex: 0 0 44%; }
  .two-col > .text-col     { flex: 1; padding-top: 1.5rem; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .process { flex-direction: row; gap: 0; }
  .proc { flex: 1; padding: 0 1.75rem; border-left: 1px solid rgba(201,161,92,0.15); }
  .proc:first-child { padding-left: 0; border-left: none; }
  .proc-dot { margin-bottom: 0.75rem; }
  .faq-grid { flex-direction: row; gap: 0 3.5rem; align-items: flex-start; }
  .faq-col { flex: 1; }
  .faq-col:first-child .faq-item:first-child,
  .faq-col:last-child  .faq-item:first-child { border-top: 1px solid rgba(201,161,92,0.14); }
  .slide { width: 42vw; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1000px) {
  .sp { padding: 6rem 0; }
  .slide { width: 28vw; }
  .cluster3 { height: 380px; }
  .c3a { height: 260px; }
  .c3b { height: 240px; }
  .c3c { height: 158px; }
  /* pb-cards already 3-col from 600px */
}

/* LINEUP MARQUEE */
.lineup-ticker-wrap{
  overflow:hidden;
  padding:1.75rem 0 .25rem;
  margin-top:2rem;
  -webkit-mask-image:linear-gradient(90deg,transparent,black 6%,black 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,black 6%,black 94%,transparent);
}
.lineup-ticker-row{display:flex;}
.lineup-ticker{
  display:flex;flex-shrink:0;align-items:center;gap:1rem;padding-right:1rem;
  animation:af-marquee-left 45s linear infinite;will-change:transform;
}
.lineup-ticker .lt-item{
  width:260px;flex-shrink:0;border-radius:.375rem;overflow:hidden;aspect-ratio:4/5;
  border:1px solid rgba(201,161,92,.3);
}
.lineup-ticker .lt-item img{width:100%;height:100%;object-fit:cover;display:block;}
@keyframes af-marquee-left{from{transform:translateX(0)}to{transform:translateX(-100%)}}
@media (max-width:640px){.lineup-ticker .lt-item{width:200px}}
@media (prefers-reduced-motion:reduce){.lineup-ticker{animation:none}}
