/* ============================================================
   JörgsInsta360 — v2 „Experience"
   Cinematisches Design-System · GSAP-orchestriert
   Farben & Grundwerte zentral in :root, helles Theme via
   [data-theme="light"]-Overrides.
   ============================================================ */

:root {
  /* Flächen */
  --bg:        #07080c;
  --bg-2:      #0b0d14;
  --surface:   #10131c;
  --surface-2: #161a26;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.16);

  /* Text */
  --text:      #f2f3f7;
  --muted:     #9aa1b3;
  --muted-2:   #6b7284;

  /* Akzente */
  --accent:    #ff6a2b;
  --accent-2:  #ffc24d;
  --cyan:      #38e1ff;
  --grad:      linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);

  /* Typo */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* Maße */
  --maxw: 1280px;
  --pad: clamp(1.2rem, 4vw, 3rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Effekte */
  --grain-opacity: 0.055;
}

[data-theme="light"] {
  --bg:        #f4f2ec;
  --bg-2:      #ece9e1;
  --surface:   #fbfaf7;
  --surface-2: #ffffff;
  --line:      rgba(18, 20, 26, 0.12);
  --line-2:    rgba(18, 20, 26, 0.24);

  --text:      #14161c;
  --muted:     #565d6e;
  --muted-2:   #8a8f9c;

  --accent:    #e8590c;
  --accent-2:  #c47a08;
  --cyan:      #0b98b8;
  --grad:      linear-gradient(120deg, #e8590c 0%, #d99a06 100%);

  --grain-opacity: 0.04;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@supports not (overflow: clip) { html { overflow-x: hidden; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
body.is-loading { overflow: hidden; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

::selection { background: var(--accent); color: #0b0700; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* Sichtbarkeit ohne JS/Animation: alles sichtbar; JS versteckt selbst vor Animation */
[data-reveal] { will-change: transform, opacity; }

/* ---------- Filmkorn ---------- */
body::after {
  content: "";
  position: fixed; inset: -60%;
  z-index: 5000; pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 9000;
  background: var(--accent); color: #0b0700; font-weight: 600;
  padding: 0.6rem 1.1rem; border-radius: 10px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   PRELOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 7000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader-count {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 9rem); font-weight: 700; letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.loader-count sup { font-size: 0.3em; vertical-align: super; }
.loader-words {
  margin-top: 1rem; height: 1.6em; overflow: hidden;
  font-size: 0.95rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted);
}
.loader-words div { display: flex; flex-direction: column; }

/* ============================================================
   CUSTOM CURSOR (nur feine Zeiger)
   ============================================================ */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
  .cursor-dot, .cursor-ring {
    display: block; position: fixed; top: 0; left: 0; z-index: 6000;
    pointer-events: none; border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot { width: 7px; height: 7px; background: var(--accent); }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid var(--line-2);
    display: flex; align-items: center; justify-content: center;
    transition: width 0.35s var(--ease), height 0.35s var(--ease),
                background 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .cursor-label {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: #0b0700; opacity: 0; transition: opacity 0.25s var(--ease);
    white-space: nowrap;
  }
  .cursor-ring.is-active {
    width: 76px; height: 76px;
    background: var(--accent); border-color: var(--accent);
  }
  .cursor-ring.is-active .cursor-label { opacity: 1; }
}

/* ---------- Scroll-Fortschritt ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 4500;
  background: transparent;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 4000;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-mark { display: inline-flex; transition: transform 0.7s var(--ease); }
.brand:hover .brand-mark { transform: rotate(360deg); }
.brand-accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-desktop { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  position: relative; font-size: 0.92rem; font-weight: 500; color: var(--muted);
  transition: color 0.25s var(--ease);
  padding: 0.3rem 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  border: 1px solid transparent; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }
.btn .arr { display: inline-block; transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary {
  background: var(--grad); color: #140700;
  box-shadow: 0 10px 34px -12px color-mix(in srgb, var(--accent) 65%, transparent);
}
.btn-primary:hover { box-shadow: 0 16px 44px -12px color-mix(in srgb, var(--accent) 80%, transparent); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Theme-Umschalter */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.4s var(--ease);
}
.theme-toggle:hover { border-color: var(--line-2); color: var(--accent-2); transform: rotate(20deg); }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }

/* Burger */
.burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 18px; height: 1.6px; background: var(--text); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Overlay-Menü (mobil) */
.menu {
  position: fixed; inset: 0; z-index: 3500;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-102%); visibility: hidden;
}
.menu-link {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 9vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.28;
  color: var(--text); display: inline-flex; align-items: baseline; gap: 0.8rem;
}
.menu-link small { font-size: 0.85rem; color: var(--muted-2); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.1em; }
.menu-link:hover { color: var(--accent); }
.menu-foot { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: 74px;
}
#sphereCanvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.hero-glow {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(110px); pointer-events: none;
}
.hero-glow.g1 { width: 46vw; height: 46vw; max-width: 700px; max-height: 700px; top: -12%; right: -6%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 42%, transparent), transparent 65%); }
.hero-glow.g2 { width: 38vw; height: 38vw; max-width: 560px; max-height: 560px; bottom: -14%; left: -8%; background: radial-gradient(circle, color-mix(in srgb, var(--cyan) 26%, transparent), transparent 65%); }

.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 0.5rem 1rem; border: 1px solid color-mix(in srgb, var(--accent-2) 35%, transparent);
  border-radius: 999px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.75); } }

.hero-title {
  margin-top: 1.6rem;
  font-size: clamp(3.4rem, 12.5vw, 10.5rem);
  text-transform: uppercase; letter-spacing: -0.035em; line-height: 0.92;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; }
.hero-title .fill { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--text) 80%, transparent);
}

.hero-sub {
  max-width: 560px; margin-top: 1.8rem;
  color: var(--muted); font-size: clamp(1.02rem, 1rem + 0.4vw, 1.22rem);
}
.hero-sub strong { color: var(--text); }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }

.hero-stats {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  display: flex; gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1;
}
.stat-num .plus { color: var(--accent); }
.stat-num.is-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }

.scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted-2); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-hint .wheel {
  width: 24px; height: 40px; border: 1.5px solid var(--line-2); border-radius: 13px; position: relative;
}
.scroll-hint .wheel::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 3.5px; height: 8px;
  background: var(--accent); border-radius: 2px; transform: translateX(-50%);
  animation: wheel 1.9s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 75% { opacity: 0; transform: translate(-50%, 13px); } 100% { opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 1.15rem 0; position: relative; z-index: 2; background: var(--bg);
}
.marquee-track { display: flex; width: max-content; animation: mq 30s linear infinite; }
.marquee-seg { display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; flex: none; }
.marquee-seg span {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee-seg .sep { color: var(--accent); font-size: 0.8rem; letter-spacing: 0; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS · Grundgerüst
   ============================================================ */
.sec { padding-block: clamp(5rem, 13vh, 10rem); position: relative; }
.sec-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
section[id] { scroll-margin-top: 84px; }

.sec-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.sec-tag {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.sec-tag::after { content: ""; height: 1px; width: 64px; background: var(--accent); opacity: 0.5; }
.sec-tag .idx { color: var(--muted-2); letter-spacing: 0.1em; }
.sec-title { font-size: clamp(2.2rem, 6vw, 4.4rem); text-transform: uppercase; letter-spacing: -0.02em; }
.sec-title .fill { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-lead { color: var(--muted); max-width: 560px; margin-top: 1rem; }
.sec-lead a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   01 · ÜBER MICH
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.about-media { position: relative; }
.reveal-img {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5; border: 1px solid var(--line);
}
.reveal-img img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.about-badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2;
  display: flex; flex-direction: column; line-height: 1.25;
  background: color-mix(in srgb, var(--bg) 74%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 0.65rem 1rem;
}
.about-badge strong { font-family: var(--font-display); font-size: 0.95rem; }
.about-badge span { font-size: 0.76rem; color: var(--accent-2); }
.about-frame {
  position: absolute; inset: auto -14px -14px auto; width: 58%; height: 58%;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: var(--radius); z-index: -1;
}

.about-text p { color: var(--muted); margin-top: 1.1rem; max-width: 56ch; }
.about-text p strong { color: var(--text); }
.about-list { margin-top: 1.7rem; display: grid; gap: 0.2rem; }
.about-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line);
  color: var(--muted); font-weight: 500;
  transition: color 0.3s var(--ease), padding-left 0.35s var(--ease);
}
.about-list li:hover { color: var(--text); padding-left: 0.8rem; }
.about-list .pin {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--grad); box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 60%, transparent);
}
.about-text .btn { margin-top: 2rem; }

/* ============================================================
   02 · THEMEN
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 2vw, 1.4rem); perspective: 1200px; }
.tcard {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 1.9rem 1.6rem;
  min-height: 240px; display: flex; flex-direction: column; gap: 0.7rem;
  transform-style: preserve-3d;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
  overflow: hidden;
}
.tcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.tcard:hover { border-color: var(--line-2); background: var(--surface-2); }
.tcard:hover::before { transform: scaleX(1); }
.tcard-num {
  position: absolute; top: 1.1rem; right: 1.3rem;
  font-family: var(--font-display); font-size: 0.8rem; color: var(--muted-2);
}
.tcard-ico { font-size: 2rem; line-height: 1; margin-bottom: 0.9rem; transform: translateZ(30px); }
.tcard h3 { font-size: 1.18rem; transform: translateZ(24px); }
.tcard p { font-size: 0.92rem; color: var(--muted); transform: translateZ(16px); }

/* ============================================================
   03 · VIDEOS (horizontale Galerie)
   ============================================================ */
.videos-sec { overflow: clip; }
.h-pin { position: relative; }
.h-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}
.h-hint {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2);
  white-space: nowrap; padding-bottom: 0.6rem;
}
.h-hint .arrow { display: inline-block; animation: nudge 1.8s ease-in-out infinite; color: var(--accent); font-size: 1rem; letter-spacing: 0; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(7px); } }

.vtrack-wrap {
  position: relative;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vtrack-wrap::-webkit-scrollbar { display: none; }
.vtrack {
  display: flex; gap: clamp(1rem, 2.2vw, 1.8rem);
  width: max-content; padding-bottom: 0.5rem;
  will-change: transform;
}
.vcard {
  position: relative; flex: none;
  display: flex; flex-direction: column;
  width: clamp(300px, 36vw, 580px);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.vcard:hover { border-color: var(--line-2); transform: translateY(-6px); }
.vthumb { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.vthumb img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.vcard:hover .vthumb img { transform: scale(1.09); }
.vthumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg) 62%, transparent), transparent 46%);
  pointer-events: none;
}
.vplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85); z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--text);
  font-size: 1rem; padding-left: 4px;
  opacity: 0; transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.vcard:hover .vplay { opacity: 1; transform: translate(-50%, -50%) scale(1); background: var(--accent); color: #140700; border-color: var(--accent); }
.vtag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: color-mix(in srgb, var(--bg) 62%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.32rem 0.75rem; color: var(--accent-2);
}
.vmeta { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: 0.3rem; }
.vtitle { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.35; }
.vnum { font-size: 0.75rem; color: var(--muted-2); font-family: var(--font-display); }

.vcard-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: transparent; border-style: dashed;
  min-height: 300px; text-align: center; padding: 2rem;
}
.vcard-cta .big {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase;
}
.vcard-cta:hover { border-color: var(--accent); }
.vcard-cta:hover .big { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.vprogress { margin-top: 1.6rem; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.vprogress span { display: block; height: 100%; width: 100%; background: var(--grad); transform: scaleX(0); transform-origin: left; }

/* ============================================================
   04 · EQUIPMENT
   ============================================================ */
.gear-list { border-top: 1px solid var(--line); }
.gear-row {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.5rem 0.3rem; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
}
.gear-row:hover { padding-left: 1.4rem; }
.gear-row::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scale(0);
  width: 8px; height: 8px; border-radius: 50%; background: var(--grad);
  transition: transform 0.35s var(--ease);
}
.gear-row:hover::before { transform: translateY(-50%) scale(1); }
.gear-idx { font-family: var(--font-display); font-size: 0.8rem; color: var(--muted-2); width: 2.2rem; flex: none; }
.gear-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  transition: color 0.3s var(--ease);
}
.gear-row:hover .gear-name { color: var(--accent); }
.gear-tag { margin-left: auto; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }

/* ============================================================
   05 · KONTAKT
   ============================================================ */
.contact-wrap { text-align: center; }
.contact-title { font-size: clamp(2.6rem, 8vw, 6rem); text-transform: uppercase; letter-spacing: -0.03em; }
.contact-title .fill { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.contact-lead { color: var(--muted); max-width: 520px; margin: 1.2rem auto 0; }
.contact-mailbox { margin-top: 2rem; }
.contact-mailbox .mail-label { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 0.5rem; }
.js-email {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem, 3.4vw, 1.8rem); color: var(--accent-2);
  user-select: all;
}
.social-row {
  margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 0.7rem;
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 0.95rem 1.7rem; font-weight: 600; font-size: 0.95rem;
  position: relative; overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.social-pill .ico { font-size: 1.05rem; line-height: 1; }
.social-pill small { color: var(--muted-2); font-weight: 500; transition: color 0.35s var(--ease); }
.social-pill::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--pillc, var(--accent));
  transform: translateY(101%); transition: transform 0.4s var(--ease);
}
.social-pill:hover::before { transform: translateY(0); }
.social-pill:hover { color: #fff; border-color: transparent; }
.social-pill:hover small { color: rgba(255, 255, 255, 0.75); }
.social-pill[data-net="youtube"]   { --pillc: #e02f2f; }
.social-pill[data-net="instagram"] { --pillc: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.social-pill[data-net="tiktok"]    { --pillc: #101010; }
.social-pill[data-net="facebook"]  { --pillc: #1877f2; }
.social-pill[data-net="x"]         { --pillc: #101010; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.footer-word-wrap { padding: clamp(2rem, 6vw, 4rem) 0 0; text-align: center; }
.footer-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 12.5vw, 11rem); line-height: 0.95; letter-spacing: -0.03em;
  text-transform: uppercase; white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--text) 32%, transparent);
  transition: color 0.6s var(--ease), -webkit-text-stroke-color 0.6s var(--ease);
  display: inline-block;
}
.footer-word:hover {
  color: var(--accent);
  -webkit-text-stroke-color: transparent;
}
.footer-grid {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 2.2rem 0 0.8rem;
}
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--accent-2); }
.footer-copy { color: var(--muted-2); font-size: 0.85rem; }
.footer-note { padding: 0 0 2rem; }
.footer-note p { color: var(--muted-2); font-size: 0.78rem; max-width: 760px; }
.to-top {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.to-top:hover { background: var(--accent); border-color: var(--accent); color: #140700; transform: translateY(-4px); }

/* ============================================================
   UNTERSEITEN (Partner / Rechtliches)
   ============================================================ */
.page-hero { padding: calc(74px + clamp(3rem, 9vh, 6rem)) 0 clamp(2.5rem, 6vh, 4rem); }
.page-hero .sec-title { font-size: clamp(2.6rem, 8vw, 5.5rem); }

.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 980px; }
.partner-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 2.2rem; display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.partner-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(120deg, var(--cyan), #6a8bff);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.partner-card:hover { border-color: var(--line-2); transform: translateY(-6px); }
.partner-card:hover::before { transform: scaleX(1); }
.partner-logo {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  background: linear-gradient(135deg, #1f8fd6, #58d2ff); color: #052433;
  padding: 0.5rem 0.95rem; border-radius: 12px;
}
.partner-logo.pl-etoro { background: linear-gradient(135deg, #0e9f42, #6ddc4f); color: #05230f; }
.partner-logo.pl-tr { background: linear-gradient(135deg, #22252c, #4a4f5a); color: #f2f3f7; }
[data-theme="light"] .partner-logo.pl-tr { background: linear-gradient(135deg, #14161c, #3a3f4a); }
.partner-tag { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.partner-risk { font-size: 0.78rem; color: var(--muted-2); line-height: 1.5; margin-top: -0.2rem; }
.partner-card h3 { font-size: 1.5rem; }
.partner-card p { color: var(--muted); flex: 1; }
.partner-card .btn { align-self: flex-start; }
.affiliate-note { margin-top: 2.4rem; color: var(--muted-2); font-size: 0.85rem; max-width: 680px; }
.partner-contact { margin-top: 1.2rem; color: var(--muted); }

/* Rechtsseiten (Prosa) */
.legal-main { padding: calc(74px + 3rem) 0 5rem; min-height: 72vh; }
.legal-main .container { max-width: 820px; }
.legal-back { display: inline-flex; gap: 0.5rem; color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; transition: color 0.25s var(--ease); }
.legal-back:hover { color: var(--accent-2); }
.prose h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); text-transform: uppercase; }
.prose .lead { color: var(--muted); margin-top: 0.7rem; }
.prose h2 { font-size: 1.25rem; margin-top: 2.4rem; margin-bottom: 0.6rem; }
.prose p, .prose li { color: var(--muted); }
.prose p { margin-top: 0.7rem; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { margin: 0.7rem 0 0 1.2rem; list-style: disc; display: grid; gap: 0.35rem; }
.prose .js-email { font-size: 1em; font-family: var(--font-body); font-weight: 500; }
.footer-min { border-top: 1px solid var(--line); padding: 1.6rem 0; }
.footer-min .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted-2); font-size: 0.85rem; }
.footer-min a { color: var(--muted); }
.footer-min a:hover { color: var(--accent-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .tgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .h-head { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  /* mobil: native horizontale Swipe-Galerie */
  .vtrack-wrap { scroll-snap-type: x mandatory; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
  .vcard { width: min(78vw, 440px); scroll-snap-align: start; }
  .partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* CTA steckt im Overlay-Menü — im Header ist zu wenig Platz */
  .nav-cta { display: none; }
  .scroll-hint { display: none; }
}
@media (max-width: 560px) {
  .tgrid { grid-template-columns: 1fr; }
  .tcard { min-height: 0; }
  .hero-stats { flex-wrap: wrap; gap: 1.4rem 2.2rem; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .social-row { flex-direction: column; align-items: stretch; }
  .social-pill { justify-content: center; }
}

/* ============================================================
   REDUZIERTE BEWEGUNG
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  body::after { animation: none; }
  .marquee-track { animation: none; }
  .loader { display: none !important; }
}
