@property --blue-h {
  syntax: '<number>';
  inherits: true;
  initial-value: 210;
}
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
:root {
  --blue-h: 210; --blue-s: 55%; --blue-l: 78%;
  --blue: hsl(var(--blue-h), var(--blue-s), var(--blue-l));
  --blue-deep: hsl(210, 50%, 72%);
  --blue-dark: hsl(210, 45%, 65%);
  --blue-light: hsl(210, 60%, 92%);
  --blue-pale: hsl(210, 50%, 96%);
  --orange: #E8721A;
  --orange-hover: #D4650F;
  --orange-glow: rgba(232, 114, 26, 0.25);
  --surface: #FFFFFF;
  --surface-2: #FAFBFC;
  --surface-3: #F3F5F7;
  --dark: #1A1A1A;
  --dark-mid: #2D2D2D;
  --text: #1A1A1A;
  --text-secondary: #4B5563;
  --text-tertiary: #6B7280;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  --font: 'Montserrat', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --cursor-size: 20px;
}
html.dark {
  --blue: hsl(215, 35%, 28%);
  --blue-deep: hsl(215, 30%, 22%);
  --blue-dark: hsl(215, 28%, 18%);
  --blue-light: hsl(215, 20%, 20%);
  --blue-pale: hsl(220, 20%, 12%);
  --surface: #111318;
  --surface-2: #161820;
  --surface-3: #1C1F28;
  --dark: #E8EAED;
  --text: #E8EAED;
  --text-secondary: #8B92A0;
  --text-tertiary: #5A6170;
  --glass: rgba(22, 24, 32, 0.8);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; transition: background-color 0.5s ease, color 0.4s ease; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  transition: background-color 0.5s ease, color 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 10001;
  transition: transform 0.1s var(--ease), opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; width: var(--cursor-size); height: var(--cursor-size);
  border: 1.5px solid var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%); opacity: 0.6;
}
.cursor-ring.hover { width: 50px; height: 50px; background: rgba(232, 114, 26, 0.08); border-color: var(--orange); opacity: 1; }
.cursor-ring.play-mode { width: 72px; height: 72px; background: var(--orange); border-color: var(--orange); opacity: 1; }
@media (hover: none) { body { cursor: auto; } .cursor-dot, .cursor-ring { display: none !important; } }

.loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--blue); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s, background-color 0.5s ease;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
html.dark .loader { background: hsl(215, 35%, 28%); }
.loader-wordmark {
  font-weight: 900; font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: 0.12em; color: white;
  opacity: 0; transform: translateY(15px);
  animation: loaderIn 0.6s var(--ease) 0.1s forwards;
}
.loader-line {
  width: 40px; height: 2px; background: var(--orange);
  margin-top: 1rem; opacity: 0; transform: scaleX(0);
  animation: loaderLine 0.5s var(--ease) 0.4s forwards;
}
@keyframes loaderIn { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderLine { to { opacity: 1; transform: scaleX(1); } }

.noise::after {
  content: ''; position: absolute; inset: 0; opacity: 0.028; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px; z-index: 1;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex; justify-content: space-between; align-items: center;
  background: transparent;
  transition: padding 0.5s var(--ease), background-color 0.5s ease, box-shadow 0.5s ease;
  view-transition-name: nav;
}
nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4);
  padding: 0.8rem clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--glass-shadow); border-bottom: 1px solid var(--glass-border);
}
html.dark nav.scrolled { background: rgba(17, 19, 24, 0.85); border-bottom-color: rgba(255,255,255,0.06); }
.nav-logo { font-weight: 900; font-size: 0.88rem; letter-spacing: 0.2em; color: white; transition: color 0.5s; position: relative; z-index: 2; }
nav.scrolled .nav-logo { color: var(--text); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.65); transition: all 0.3s; }
nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--orange); }
.nav-cta { padding: 0.55rem 1.3rem !important; border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 100px !important; color: white !important; transition: all 0.3s !important; background: rgba(255,255,255,0.08); }
.nav-cta:hover { background: rgba(255,255,255,0.18) !important; }
nav.scrolled .nav-cta { background: var(--text) !important; color: var(--surface) !important; border-color: var(--text) !important; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--orange); z-index: 1001; width: 0%; transition: none; pointer-events: none; }
.nav-right { display: flex; align-items: center; gap: 1rem; z-index: 2; }
.nav-hamburger {
  display: none; background: none; border: none; padding: 0.5rem;
  cursor: none; z-index: 2; position: relative;
  width: 28px; height: 20px; flex-direction: column; justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 3px; background: white;
  border-radius: 2px; transition: all 0.35s var(--ease); transform-origin: center;
}
nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--surface); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: all 0.5s var(--ease);
}
html.dark .mobile-menu { background: var(--surface); }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.4rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--text);
  transition: color 0.3s; opacity: 0; transform: translateY(20px);
}
.mobile-menu.open a { animation: fadeUp 0.6s var(--ease) forwards; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.06s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.18s; }
.mobile-menu a:hover { color: var(--orange); }

.hero {
  min-height: max(80svh, 500px); background: var(--blue);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; position: relative; overflow: hidden; padding: 6rem 2rem 4rem;
  transition: background-color 0.5s ease;
  view-transition-name: hero;
}
.hero-title {
  font-weight: 900; font-size: clamp(3.5rem, 16vw, 7rem);
  color: white; letter-spacing: 0.18em; line-height: 1;
  position: relative; z-index: 2;
}
.hw { display: inline-block; opacity: 0; transform: translateY(15px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.hw.in { opacity: 1; transform: translateY(0); }
.hero .platform-links { margin-top: 2.5rem; position: relative; z-index: 2; display: flex; gap: 0.75rem; }
.platform-links a { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: white; text-decoration: none; transition: all 0.3s; cursor: none; padding: 0.6rem 1.4rem; border-radius: 100px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; gap: 0.5rem; }
.platform-links a:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); color: white; }
.hp { opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.hp.in { opacity: 1; transform: translateY(0); }
.scroll-line-static {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 30px; background: var(--orange);
  opacity: 0; transition: opacity 0.8s var(--ease);
  z-index: 2;
}
.scroll-line-static.in { opacity: 1; }

/* Quote Wall */
.quote-wall { padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 5vw, 4rem); background: var(--dark); position: relative; transition: background-color 0.5s ease; view-transition-name: moment; }
html.dark .quote-wall { background: #0C0E14; }
.quote-wall-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.quote-wall .section-label { margin-bottom: 2.5rem; }
.quote-grid { columns: 3; column-gap: clamp(1rem, 2vw, 1.5rem); }
.qc {
  break-inside: avoid; margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.2rem, 2.5vw, 2rem); border-radius: var(--radius-sm);
  background: transparent; cursor: none;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.qc.vis { opacity: 1; transform: translateY(0); }
.qc:hover { background: rgba(255,255,255,0.04); }
.qc:hover .qc-text { text-shadow: 0 0 30px rgba(232,114,26,0.15); }
.qc:hover .qc-author { opacity: 1; }
.qc-text { font-family: var(--font); font-style: italic; color: white; line-height: 1.35; text-wrap: balance; overflow-wrap: break-word; word-break: break-word; }
.qc-author { display: block; margin-top: 0.6rem; font-size: 0.72rem; font-weight: 600; color: var(--orange); opacity: 0.5; transition: opacity 0.4s var(--ease); font-style: normal; text-decoration: none; cursor: none; }
/* Size variants */
.qc-lg .qc-text { font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 700; }
.qc-lg { opacity: 1; } .qc-lg.vis { opacity: 1; }
.qc-md .qc-text { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 600; }
.qc-sm .qc-text { font-size: clamp(0.85rem, 1.5vw, 1.1rem); font-weight: 500; }
/* Opacity hierarchy */
.qc-lg { --qc-opacity: 1; }
.qc-md { --qc-opacity: 0.92; }
.qc-sm { --qc-opacity: 0.85; }
.qc.vis { opacity: var(--qc-opacity, 1); }
/* Responsive */
@media (max-width: 900px) { .quote-grid { columns: 2; } }
@media (max-width: 768px) { .quote-grid { columns: 1; } .qc { padding: 1rem 0.5rem; } .qc-text { text-wrap: auto; } }

/* 404 */
.lost {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--dark); padding: 2rem; text-align: center;
  transition: background-color 0.5s ease;
}
html.dark .lost { background: #0C0E14; }
.lost-inner { max-width: 600px; opacity: 0; transform: translateY(40px); transition: all 1s var(--ease); }
.lost.in .lost-inner { opacity: 1; transform: translateY(0); }
.lost-code {
  font-size: clamp(6rem, 20vw, 12rem); font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.04); letter-spacing: -0.04em;
  margin-bottom: -1rem; user-select: none;
}
.lost-title {
  font-size: clamp(1.4rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2;
  color: white; margin-bottom: 1.25rem; text-wrap: balance;
}
.lost-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.4); font-weight: 400;
  margin-bottom: 2.5rem;
}
.lost-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); text-decoration: none; cursor: none;
  padding: 0.8rem 2rem; border-radius: 100px;
  border: 1px solid rgba(232,114,26,0.3); background: rgba(232,114,26,0.06);
  transition: all 0.4s var(--ease);
}
.lost-btn:hover { background: rgba(232,114,26,0.12); border-color: rgba(232,114,26,0.5); transform: translateY(-2px); }
.lost-btn svg { transition: transform 0.35s var(--ease); }
.lost-btn:hover svg { transform: translateX(3px); }

section { padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem); transition: background-color 0.5s ease; }
.section-title { font-weight: 800; font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.06; color: var(--text); margin-bottom: 1.5rem; max-width: 700px; letter-spacing: -0.015em; text-wrap: balance; }
.section-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }
.section-text { font-size: 0.98rem; line-height: 1.75; color: var(--text-secondary); max-width: 520px; font-weight: 400; }
.rv { opacity: 0; transform: translateY(50px); transition: all 1s var(--ease); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.08s; } .rv.d2 { transition-delay: 0.16s; } .rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.30s; } .rv.d5 { transition-delay: 0.36s; } .rv.d6 { transition-delay: 0.44s; }
.rv.d7 { transition-delay: 0.52s; } .rv.d8 { transition-delay: 0.60s; }

.about-wrap { background: var(--surface); }
.about { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(3rem, 7vw, 8rem); max-width: 1080px; margin: 0 auto; align-items: center; }
.about-img { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius); background: var(--blue); position: relative; overflow: hidden; transform: translateY(-2.5rem); box-shadow: 0 30px 80px rgba(0,0,0,0.08); }
.about-quote { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 1.5rem; }
.about-text { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1rem; font-weight: 400; }
.about-sig { font-weight: 700; font-size: 0.85rem; color: var(--text); margin-top: 1.75rem; display: flex; align-items: center; gap: 0.75rem; }
.about-sig::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); }

.guests-wrap { background: var(--blue-pale); position: relative; }
.guests-inner { max-width: 1200px; margin: 0 auto; }
.guests-header { margin-bottom: 3.5rem; }
.guests-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gc { position: relative; border-radius: 18px; overflow: hidden; cursor: none; background: var(--blue); transition: all 0.5s var(--ease), background-color 0.5s ease; min-height: 280px; text-decoration: none; display: block; color: inherit; }
.gc:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 24px 70px rgba(0,0,0,0.12); z-index: 5; }
.swipe-hint { display: none; }
.gc-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 5rem; color: rgba(255,255,255,0.06); transition: transform 0.7s var(--ease); }
.gc:hover .gc-bg { transform: scale(1.08); }
.gc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gc:hover .gc-img { transform: scale(1.06); }
.gc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 40%, transparent 65%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; transition: background 0.5s; }
.gc:hover .gc-ov { background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.15) 75%); }
.gc-name { font-weight: 700; font-size: 0.95rem; color: white; }
.gc-hook { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.5; max-height: 0; overflow: hidden; transition: all 0.55s var(--ease); opacity: 0; transform: translateY(6px); }
.gc:hover .gc-hook { max-height: 200px; margin-top: 0.4rem; opacity: 1; transform: translateY(0); }
.gc-ep { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); opacity: 0; transform: translateY(4px); transition: all 0.4s var(--ease) 0.1s; margin-top: 0.4rem; }
.gc:hover .gc-ep { opacity: 1; transform: translateY(0); }

.listen-wrap { background: var(--surface); }
.listen-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.spotify-embed { max-width: 600px; margin: 2.5rem auto 0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
html.dark .spotify-embed { box-shadow: 0 8px 40px rgba(0,0,0,0.2); }

.proof-wrap { background: var(--blue-pale); position: relative; view-transition-name: proof; }
.proof-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.proof-stats { display: flex; justify-content: center; gap: clamp(2.5rem, 7vw, 6rem); margin-bottom: 4.5rem; flex-wrap: wrap; }
.proof-number { font-weight: 900; font-size: clamp(2.8rem, 7vw, 4.5rem); color: var(--text); line-height: 1; letter-spacing: -0.03em; }
.proof-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); margin-top: 0.5rem; }
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.proof-card { background: var(--surface); border-radius: 16px; padding: 1.75rem; text-align: left; border: 1px solid rgba(0,0,0,0.03); transition: all 0.4s var(--ease), background-color 0.5s ease; cursor: none; }
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
html.dark .proof-card { border: 1px solid rgba(255,255,255,0.06); }
.proof-stars { color: var(--orange); font-size: 0.8rem; margin-bottom: 0.75rem; letter-spacing: 0.08em; }
.proof-text { font-size: 0.88rem; line-height: 1.6; color: var(--text); font-weight: 500; margin-bottom: 0.75rem; }
.proof-author { font-size: 0.65rem; color: var(--text-tertiary); font-weight: 600; letter-spacing: 0.06em; }

.news-wrap { background: var(--surface); }
.news-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.news-form { display: flex; gap: 0.65rem; margin-top: 2rem; }
.news-input { flex: 1; padding: 1.05rem 1.6rem; border: 2px solid var(--blue-light); border-radius: 100px; font-family: var(--font); font-size: 0.84rem; font-weight: 500; color: var(--text); outline: none; transition: all 0.3s, background-color 0.5s ease; background: var(--surface); cursor: none; }
.news-input::placeholder { color: var(--text-tertiary); }
.news-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232, 114, 26, 0.08); }
html.dark .news-input { border-color: rgba(255,255,255,0.08); }
html.dark .news-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232, 114, 26, 0.12); }
.news-btn { padding: 1.05rem 2rem; background: var(--orange); color: white; font-family: var(--font); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.04em; border: none; border-radius: 100px; cursor: none; transition: all 0.35s var(--ease); white-space: nowrap; }
.news-btn:hover { background: var(--orange-hover); transform: translateY(-2px); }
.news-btn.success { background: #22C55E; pointer-events: none; }
.news-sub { font-size: 0.75rem; color: var(--text-tertiary); margin-top: 0.75rem; }

.partners-wrap { background: var(--surface-2); }
.partners-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: clamp(2.5rem, 6vw, 5rem); margin-top: 3rem; flex-wrap: wrap; }
.partner-logo { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.1em; color: var(--text); opacity: 0.25; transition: opacity 0.35s; cursor: none; }
.partner-logo:hover { opacity: 0.5; }
.partners-cta { margin-top: 2.5rem; }
.partners-cta a { font-size: 0.75rem; font-weight: 600; color: var(--orange); text-decoration: none; transition: opacity 0.3s; cursor: none; }
.partners-cta a:hover { opacity: 0.7; }

footer { background: var(--dark); padding: 5rem clamp(1.5rem, 5vw, 4rem) 2rem; position: relative; overflow: hidden; transition: background-color 0.5s ease; view-transition-name: footer; }
html.dark footer { background: #0A0C10; }
.ft-watermark { font-weight: 900; font-size: clamp(4.5rem, 14vw, 13rem); letter-spacing: 0.04em; color: rgba(255,255,255,0.04); text-align: center; line-height: 1; margin-bottom: 2.5rem; user-select: none; }
.ft-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; position: relative; z-index: 2; }
.ft-logo { font-weight: 900; font-size: 0.8rem; letter-spacing: 0.2em; color: white; margin-bottom: 0.6rem; }
.ft-text { font-size: 0.72rem; line-height: 1.7; color: rgba(255,255,255,0.25); max-width: 260px; }
.ft-links { display: flex; flex-direction: column; gap: 0.55rem; }
.ft-links a { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; cursor: none; }
.ft-links a:hover { color: white; }
.ft-bottom { max-width: 1080px; margin: 3.5rem auto 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.62rem; text-align: center; color: rgba(255,255,255,0.15); }
.ft-impressum { max-width: 1080px; margin: 0.6rem auto 0; font-size: 0.55rem; text-align: center; color: rgba(255,255,255,0.08); letter-spacing: 0.02em; display: none; }
.ft-impressum.show { display: block; }

.sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; transform: translateY(100%); transition: transform 0.6s var(--ease); }
.sticky.show { transform: translateY(0); }
.sticky-link { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.85rem 2rem; background: #1DB954; color: white; text-decoration: none; font-family: var(--font); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; cursor: none; transition: background 0.3s; }
.sticky-link:hover { background: #1ed760; }
.sticky-icon { flex-shrink: 0; }
.sticky-text { white-space: nowrap; }
.sticky-arrow { transition: transform 0.3s var(--ease); }
.sticky-link:hover .sticky-arrow { transform: translateX(4px); }

.theme-toggle {
  background: none; border: none;
  display: flex; align-items: center; gap: 0.5rem;
  cursor: none; transition: opacity 0.6s var(--ease);
  opacity: 1;
}
.theme-toggle-pill {
  width: 44px; height: 24px; border-radius: 100px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  position: relative; transition: all 0.4s var(--ease); cursor: none;
}
nav.scrolled .theme-toggle-pill { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12); }
html.dark .theme-toggle-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
html.dark nav.scrolled .theme-toggle-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.theme-toggle-pill:hover { background: rgba(255,255,255,0.2); }
nav.scrolled .theme-toggle-pill:hover { background: rgba(0,0,0,0.1); }
html.dark nav.scrolled .theme-toggle-pill:hover { background: rgba(255,255,255,0.15); }
.theme-toggle-knob {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; transition: all 0.4s var(--ease);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
nav.scrolled .theme-toggle-knob { background: var(--text); }
html.dark .theme-toggle-knob { left: 22px; background: #A8C8E8; }
html.dark nav.scrolled .theme-toggle-knob { background: #A8C8E8; }
.theme-toggle-label {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  transition: color 0.4s;
}
nav.scrolled .theme-toggle-label { color: var(--text-tertiary); }
html.dark .theme-toggle-label { color: rgba(255,255,255,0.3); }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(140%);
  z-index: 9999; width: min(90vw, 480px);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06); border-radius: 1.2rem;
  padding: 1.4rem 1.6rem; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); opacity: 0;
}
html.dark .cookie-banner {
  background: rgba(26,31,46,0.92); border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-text { font-size: 0.72rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 1rem; }
.cookie-text a { color: var(--orange); text-decoration: none; }
.cookie-btns { display: flex; gap: 0.6rem; }
.cookie-btn { flex: 1; padding: 0.6rem 1rem; border-radius: 0.6rem; font-family: var(--font);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.03em; border: none; cursor: pointer; transition: all 0.3s; }
.cookie-btn.accept { background: var(--orange); color: white; }
.cookie-btn.accept:hover { background: var(--orange-hover); }
.cookie-btn.decline { background: var(--surface-3); color: var(--text-secondary); }
.cookie-btn.decline:hover { background: var(--surface-2); }
html.dark .cookie-btn.decline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
html.dark .cookie-btn.decline:hover { background: rgba(255,255,255,0.12); }

/* DSGVO Modal */
.dsgvo-overlay {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.dsgvo-overlay.open { opacity: 1; visibility: visible; }
.dsgvo-box {
  background: var(--surface); border-radius: 1.2rem; max-width: 640px; width: 100%;
  max-height: 80vh; overflow-y: auto; padding: 2.5rem; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
html.dark .dsgvo-box { background: #1A1F2E; }
.dsgvo-close {
  position: absolute; top: 1.2rem; right: 1.2rem; background: var(--surface-3); border: none;
  width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
html.dark .dsgvo-close { background: rgba(255,255,255,0.08); color: white; }
.dsgvo-close:hover { background: var(--surface-2); }
.dsgvo-box h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text); }
.dsgvo-box h3 { font-size: 0.85rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--text); }
.dsgvo-box p { font-size: 0.75rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 0.8rem; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .guests-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-img { aspect-ratio: 1; max-width: 260px; margin: 0 auto; transform: none; }
  .guests-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 0.8rem; padding: 0 clamp(1.5rem, 5vw, 4rem) 1.5rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    position: relative;
  }
  .guests-grid::-webkit-scrollbar { display: none; }
  .gc { flex: 0 0 70vw; scroll-snap-align: center; min-height: 360px; border-radius: 16px; }
  .gc-hook { max-height: 200px; opacity: 1; transform: translateY(0); margin-top: 0.3rem; font-size: 0.78rem; }
  .gc-ep { opacity: 1; transform: translateY(0); }
  .gc-ov { background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.1) 75%); }
  .swipe-hint {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    margin-top: 1rem; opacity: 0.5; transition: opacity 0.6s;
  }
  .swipe-hint.hidden { opacity: 0; }
  .swipe-hint svg { animation: swipeNudge 2s ease-in-out infinite; }
  @keyframes swipeNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
  .news-form { flex-direction: column; }
  .ft-inner { flex-direction: column; align-items: center; text-align: center; }
  .ft-text { margin: 0 auto; }
  .ft-links { align-items: center; }
  .platform-links { flex-direction: column; gap: 0.5rem; }
  .platform-links a { justify-content: center; }
  .theme-toggle-label { display: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  body, * { cursor: auto; }
}
