/* ─── Variables ────────────────────────────────────────────────────────────── */
:root {
  --black:         #080808;
  --black-2:       #101010;
  --black-3:       #181818;
  --black-4:       #222222;
  --accent:        #C8F135;
  --accent-dim:    rgba(200,241,53,0.08);
  --accent-border: rgba(200,241,53,0.22);
  --white:         #ffffff;
  --gray:          #505050;
  --gray-mid:      #808080;
  --gray-light:    #a8a8a8;
  --border:        rgba(255,255,255,0.07);
  --radius:        20px;
  --font-display:  'Big Shoulders Display', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --font-serif:    'Instrument Serif', serif;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:         0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
  /* Glow effects may extend slightly outside hero — body clips them */
}
a { text-decoration: none; color: inherit; }

/* ─── Film Grain ─────────────────────────────────────────────────────────────── */
/* ─── Floating Call Button ───────────────────────────────────────────────────── */
.float-call-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(200,241,53,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.float-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(200,241,53,0.6);
}

.grain-layer {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.4s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, -2%); }
  50%  { transform: translate(2%, 3%); }
  75%  { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ─── Custom Cursor ─────────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
}
.cursor.hovered { width: 12px; height: 12px; }
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(200,241,53,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
}
.cursor-ring.hovered { width: 58px; height: 58px; opacity: 0.45; }

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── Container ─────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── Typography ────────────────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title.dark { color: #141414; }
/* Accent spans inside headings get italic serif treatment */
.section-title .accent,
.h-line.accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.005em;
}
.section-title .accent { font-size: 0.95em; }
.section-sub {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 64px;
  font-weight: 400;
}
.section-sub.muted { color: #666; }
.accent { color: var(--accent); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: none;
  transition: background var(--trans), transform var(--trans),
              box-shadow var(--trans), color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.btn-accent { background: var(--accent); color: #080808; }
.btn-accent:hover {
  background: #d6ff3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,241,53,0.3);
}
.btn-accent:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.28); color: var(--white); }
.btn-lg  { padding: 17px 38px; font-size: 16px; border-radius: 10px; }
.btn-xl  { padding: 20px 52px; font-size: 18px; border-radius: 12px; }

/* ─── Nav ───────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--trans), padding var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo-img { height: 38px; width: auto; display: block; transition: height var(--trans); }
.logo-img--footer { height: 32px; opacity: 0.9; }
#nav.scrolled .logo-img { height: 28px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  letter-spacing: 0.02em; color: var(--accent);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { padding: 10px 22px; font-size: 14px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
}

/* ─── Hamburger ──────────────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ─── Mobile Menu ────────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.2s, transform 0.2s;
  line-height: 1.1;
}
.mobile-link:hover { color: var(--accent); transform: translateX(6px); }
.mobile-menu-cta {
  margin-top: 32px;
  font-size: 16px;
  padding: 16px 40px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 16vh, 180px) 0 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,241,53,0.07) 0%, transparent 65%);
  top: 30%; right: 0;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,241,53,0.04) 0%, transparent 65%);
  bottom: 10%; left: 5%;
  animation: glowPulse 7s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  #hero { padding: 80px 0 48px; }
  .hero-left { text-align: center; }
  .hero-sub { max-width: 100%; }
  .platform-row { justify-content: center; }
  .hero-label { text-align: center; }
  .hero-headline { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-right {
    display: flex !important;
    justify-content: center;
    margin-top: 24px;
  }
  .phone-wrap { transform: none !important; }
  .phone { width: 175px; height: 350px; }
  .float-badge, .float-views, .float-growth, .float-notif { display: none; }
  .hero-scroll-hint { display: none; }
}
.hero-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 28px; display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.h-line { display: block; }
.h-line.accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.88em;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin-top: 0.04em;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--gray-light);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Platform pills */
.platform-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.p-label {
  font-size: 12px;
  color: var(--gray-mid);
  white-space: nowrap;
}
.platform-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--gray-light);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--trans), color var(--trans);
}
.pill:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
.pill svg { opacity: 0.7; flex-shrink: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 1;
}
.hero-scroll-hint span {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gray); text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ─── Phone Mockup ──────────────────────────────────────────────────────────── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  perspective: 1200px;
}
.phone-wrap {
  position: relative;
  width: 250px;
  will-change: transform;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(200,241,53,0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1;   transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.6; transform: translateX(-50%) scale(1.15); }
}
.phone {
  width: 250px; height: 500px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  background: #0c0c0c;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 40px  rgba(200,241,53,0.22),
    0 0 100px rgba(200,241,53,0.10),
    0 0 200px rgba(200,241,53,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(-2deg); }
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0c0c0c;
  border-radius: 20px;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-screen { width: 100%; height: 100%; position: relative; overflow: hidden; border-radius: inherit; }

/* ─── Feed Swipe ─── */
.phone-feed {
  display: flex;
  flex-direction: column;
  height: 400%;
  animation: feedSwipe 12s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}
@keyframes feedSwipe {
  0%,  26% { transform: translateY(0); }
  33%, 59% { transform: translateY(-25%); }
  66%, 92% { transform: translateY(-50%); }
  99%,100% { transform: translateY(-75%); }
}
.feed-slide {
  position: relative;
  flex: 0 0 25%;
  overflow: hidden;
}
.feed-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 45%, transparent 100%);
}
.feed-slide--1 { background: linear-gradient(160deg, #0a1f12 0%, #0d3a2e 55%, #0a0f1a 100%); }
.feed-slide--2 { background: linear-gradient(160deg, #1a0e08 0%, #3a1e0d 55%, #0a0a1a 100%); }
.feed-slide--3 { background: linear-gradient(160deg, #0e0a1f 0%, #1e0d3a 55%, #0a1a18 100%); }

.feed-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
}
.feed-right {
  position: absolute; right: 12px; bottom: 88px; z-index: 2;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.feed-action {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px; cursor: default;
}
.feed-icon { font-size: 20px; }
.feed-action span:last-child {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.feed-bottom {
  position: absolute; bottom: 24px; left: 14px; right: 56px; z-index: 2;
}
.feed-user {
  font-size: 12px; font-weight: 700;
  color: #fff; margin-bottom: 5px;
}
.feed-caption {
  font-size: 10px; color: rgba(255,255,255,0.8);
  line-height: 1.4; margin-bottom: 12px;
}
.feed-progress {
  height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px;
}
.feed-fill {
  height: 100%; background: var(--accent); border-radius: 2px; width: 0;
}
.feed-fill--1 { animation: fillAnim 12s linear infinite; animation-delay: 0s; }
.feed-fill--2 { animation: fillAnim 12s linear infinite; animation-delay: -8s; }
.feed-fill--3 { animation: fillAnim 12s linear infinite; animation-delay: -4s; }
@keyframes fillAnim {
  0%    { width: 0%; opacity: 1; }
  25%   { width: 100%; opacity: 1; }
  25.1% { width: 0%; opacity: 0; }
  100%  { width: 0%; opacity: 0; }
}
.phone-home {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 4px;
  background: rgba(255,255,255,0.25); border-radius: 2px;
}

/* Floating Badges */
.float-badge {
  position: absolute;
  will-change: transform;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.float-views {
  top: 50px; right: -52px;
  animation: badgeFloat1 3.5s ease-in-out infinite;
}
.float-growth {
  bottom: 280px; left: -68px;
  animation: badgeFloat2 4s ease-in-out infinite;
}
@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.fb-icon-wrap { font-size: 14px; color: var(--accent); line-height: 1; }
.fb-num {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--accent); line-height: 1;
}
.fb-label { font-size: 10px; color: var(--gray-light); font-weight: 500; }

/* Notification-Badge */
.float-notif {
  bottom: 155px; left: -76px;
  padding: 10px 14px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  animation: badgeFloat3 4s ease-in-out 2s infinite;
}
@keyframes badgeFloat3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.fb-notif-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.fb-notif-body { display: flex; flex-direction: column; gap: 2px; }
.fb-notif-title {
  font-size: 10px; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 5px;
}
.fb-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,241,53,0.6); }
  50%       { box-shadow: 0 0 0 4px rgba(200,241,53,0); }
}
.fb-notif-sub { font-size: 9px; color: var(--gray-light); font-weight: 500; }

/* ─── Logos Section ─────────────────────────────────────────────────────────── */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
}
.logos-marquee-outer { overflow: visible; }
.logos-label {
  text-align: center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; color: #999;
  text-transform: uppercase; margin-bottom: 36px;
}
/* Tier labels */
.logos-tier-label {
  text-align: center;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; color: #ccc;
  text-transform: uppercase;
  margin-bottom: 4px;
}
/* Big player static grid */
.logos-big-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  margin-bottom: 8px;
}
.logo-item--big {
  opacity: 0.6 !important;
  padding: 0 64px;
}
.logo-item--big:hover { opacity: 1 !important; }
/* Divider between tiers */
.logos-divider {
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 20px auto 20px;
}
.logos-marquee-outer {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 8px 0;
}
.logos-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  white-space: nowrap;
  transition: transform 0.25s;
  cursor: default;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
}
.li-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.logo-item:hover { transform: scale(1.06); }
.li-sep {
  font-size: 10px;
  opacity: 0.12 !important;
  padding: 0 2px;
  font-family: var(--font-body);
  color: #1a1a1a;
}
.li-sub {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.65;
  margin-top: 2px;
}
.li-amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2em;
  margin: 0 3px;
  font-weight: 400;
  opacity: 0.8;
}
.li-logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
/* ─── Logo Strip Mini (2nd slider) ───────────────────────────────────────── */
.logos-strip-mini {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-strip-mini-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.5;
}
.logos-marquee-mini-outer {
  overflow: hidden;
}
.logos-marquee-mini-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScrollReverse 42s linear infinite;
  will-change: transform;
}
@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.logo-mini-item {
  padding: 6px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.3s, filter 0.3s;
}
.logo-mini-item:hover {
  opacity: 0.7;
  filter: grayscale(0) brightness(1);
}
.logo-mini-item .li-logo-img {
  height: 36px;
  max-width: 110px;
}

.li-bryght {
  letter-spacing: 0.18em;
  font-size: 17px;
}
.li-holy { color: #1a1a1a; opacity: 0.5 !important; }
.li-holy svg { width: 58px; height: 26px; }
.li-audi-rings { width: 88px; height: 30px; color: #1a1a1a; }

/* ─── Problem ───────────────────────────────────────────────────────────────── */
.section-dark  { padding: 120px 0; background: var(--black); }
.section-light {
  padding: 120px 0;
  background-color: #e8e8e8;
  position: relative;
  overflow: hidden;
}
.dot-layer {
  position: absolute;
  inset: -26px;
  background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 26px 26px;
  will-change: transform;
  animation: dotDrift 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.section-light .container { position: relative; z-index: 1; }
@keyframes dotDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(26px, 26px); }
}
/* Neon-Glow-Blob oben rechts */
.section-light::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 700px; height: 700px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,241,53,0.38) 0%, transparent 60%);
  will-change: transform, filter;
  animation: blobPulse1 8s ease-in-out infinite, blobColor1 40s linear infinite;
}
/* Zweiter Blob unten links */
.section-light::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 500px; height: 500px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,241,53,0.26) 0%, transparent 60%);
  will-change: transform, filter;
  animation: blobPulse2 10s ease-in-out infinite, blobColor2 48s linear infinite;
}
@keyframes blobPulse1 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.12) translate(-20px, 20px); }
}
@keyframes blobPulse2 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.1) translate(15px, -15px); }
}
@keyframes blobColor1 {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes blobColor2 {
  0%   { filter: hue-rotate(120deg); }
  100% { filter: hue-rotate(480deg); }
}
.section-light .section-label { color: #888; }

.problem-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 16px 8px 48px;
}
@media (max-width: 768px) { .problem-grid { flex-direction: column; } }

.problem-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 36px 32px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  cursor: default;
}
/* Domino-Kipp-Winkel */
.problem-card:nth-child(1) { transform: rotate(-4deg);   margin-top: 28px; }
.problem-card:nth-child(2) { transform: rotate(2.5deg);  margin-top: 0; }
.problem-card:nth-child(3) { transform: rotate(-2deg);   margin-top: 44px; }

.problem-card:hover {
  transform: rotate(0deg) translateY(-10px) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,0.13);
  z-index: 2;
}

.problem-num {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 900;
  color: rgba(200,241,53,0.45); line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
/* Domino-Trennlinie */
.problem-num::after {
  content: '';
  display: block;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, rgba(200,241,53,0.5), transparent);
  margin: 20px 0 24px;
  border-radius: 2px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  color: #141414; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.problem-card p { font-size: 15px; color: #606060; line-height: 1.65; }

/* ─── Leistungen ────────────────────────────────────────────────────────────── */
.leistungen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 992px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .leistungen-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
  }
  .leistungen-grid::-webkit-scrollbar { display: none; }
  .leistung-card { flex: 0 0 270px; scroll-snap-align: start; }
}

.leistung-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.leistung-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(200,241,53,0.05);
}
.l-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--accent);
  transition: background var(--trans), transform var(--trans);
}
.leistung-card:hover .l-icon { background: rgba(200,241,53,0.15); transform: scale(1.1) rotate(-4deg); }
.l-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.leistung-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.leistung-card p { font-size: 14px; color: var(--gray-light); line-height: 1.7; }

/* ─── Numbers ───────────────────────────────────────────────────────────────── */
.section-numbers {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,241,53,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(200,241,53,0.025) 0%, transparent 50%),
    var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  gap: 20px;
}
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }

.number-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.number-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(200,241,53,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.number-item:hover {
  background: var(--black-4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(200,241,53,0.15);
}
.number-item:hover .n-val { text-shadow: 0 0 32px rgba(200,241,53,0.35); }

.n-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin-bottom: 16px;
  transition: text-shadow 0.3s;
  display: block;
  overflow: visible;
}
.n-label {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}
.n-sub { font-size: 13px; color: var(--gray-mid); line-height: 1.5; }

/* ─── Cases ─────────────────────────────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
@media (max-width: 992px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.case-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

/* Background image layer */
.case-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
  opacity: 0.35;
}
.case-card:hover .case-card-bg {
  transform: scale(1);
  opacity: 0.6;
}

/* Dark gradient overlay — always present, stronger at bottom */
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 30%,
    rgba(8,8,8,0.85) 70%,
    rgba(8,8,8,0.97) 100%
  );
  z-index: 1;
  transition: opacity 0.5s var(--ease);
}

/* Big ghost stat watermark */
.case-ghost-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: 2;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.case-card:hover .case-ghost-num { opacity: 0.9; }

/* Content */
.case-content {
  position: relative;
  z-index: 2;
  padding: 32px 36px 36px;
}
.case-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 5px 12px; border-radius: 4px;
  margin-bottom: 20px; width: fit-content; text-transform: uppercase;
}
.case-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px; font-weight: 400;
  line-height: 1.3; margin-bottom: 12px;
  color: var(--white);
}
.case-body {
  font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}
.case-card:hover .case-body { max-height: 120px; opacity: 1; }
.case-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.case-pills span {
  font-size: 11px; font-weight: 600;
  color: var(--accent); background: var(--accent-dim);
  padding: 5px 12px; border-radius: 20px;
}

/* ─── Video Showcase ────────────────────────────────────────────────────────── */
.video-showcase-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,241,53,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(200,241,53,0.04) 0%, transparent 50%),
    var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 992px) { .video-cards-grid { grid-template-columns: 1fr; } }

.video-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color var(--trans), transform var(--trans);
}
.video-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
}

/* Mini phone frame */
.vc-phone {
  width: 140px;
  margin: 0 auto;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 40px rgba(200,241,53,0.06);
}
.vc-screen {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 ratio */
  overflow: hidden;
}
.vc-bg {
  position: absolute; inset: 0;
}
.vc-bg-1 {
  background: linear-gradient(160deg, #0d1f2e 0%, #0a2e1f 40%, #1a0e2e 80%, #0d0d14 100%);
}
.vc-bg-2 {
  background: linear-gradient(160deg, #1a0a0d 0%, #2e1a0a 40%, #0a1a2e 80%, #0d0d14 100%);
}
.vc-bg-3 {
  background: linear-gradient(160deg, #0a1a0d 0%, #0d2e2e 40%, #1a1a0d 80%, #0d0d14 100%);
}
.vc-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.vc-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vc-platform {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 4px 8px; border-radius: 20px;
  letter-spacing: 0.04em;
}
.vc-play {
  width: 40px; height: 40px;
  background: rgba(200,241,53,0.15);
  border: 1.5px solid rgba(200,241,53,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--accent);
  backdrop-filter: blur(8px);
  padding-left: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.vc-play:hover {
  background: rgba(200,241,53,0.35);
  transform: scale(1.12);
}
.vc-stats-overlay {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 3px;
}
.vc-stats-overlay span {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.4);
  padding: 2px 6px; border-radius: 4px;
  backdrop-filter: blur(4px);
}

.vc-info { display: flex; flex-direction: column; gap: 10px; }
.vc-views {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900;
  color: var(--accent); line-height: 1;
  letter-spacing: -0.01em;
}
.vc-views-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-mid); margin-top: -6px;
}
.vc-caption {
  font-size: 13px; color: var(--gray-light); line-height: 1.6;
}
.vc-tag {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; width: fit-content;
  margin-top: 2px;
}

/* ─── Testimonials ──────────────────────────────────────────────────────────── */
.testi-bg {
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(200,241,53,0.03) 0%, transparent 50%),
    var(--black-2);
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
@media (max-width: 992px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color var(--trans), transform var(--trans);
}
.testi-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 100px; font-weight: 400;
  color: var(--accent); line-height: 0.6;
  opacity: 0.6;
}
.testi-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px; color: var(--gray-light);
  line-height: 1.8; flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.author-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px; color: var(--accent);
}
.author-name  { font-size: 14px; font-weight: 700; }
.author-role  { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }

/* ─── Team ──────────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.team-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-3px); }
.team-photo {
  width: 100%; height: 340px;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--black-3));
  pointer-events: none;
}
.team-info { padding: 28px; }
.team-name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.team-role {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.team-desc { font-size: 14px; color: var(--gray-light); line-height: 1.65; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200,241,53,0.025) 0%, transparent 50%),
    var(--black);
}
.faq-list { max-width: 820px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  background: none; border: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 17px; font-weight: 600;
  cursor: none; text-align: left; gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 24px; font-weight: 300; color: var(--accent);
  flex-shrink: 0; transition: transform 0.35s var(--ease); line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--gray-light);
  line-height: 1.75; max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 26px; }

/* ─── Final CTA ─────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,241,53,0.06) 0%, transparent 60%),
    var(--black-2);
}
.cta-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 800;
  color: rgba(255,255,255,0.018);
  pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: 0.04em;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.01em; line-height: 1.1;
  margin-bottom: 20px; margin-top: 12px;
}
.cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px; font-weight: 400;
  color: var(--accent); margin-bottom: 48px;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-note { font-size: 13px; color: var(--gray-mid); letter-spacing: 0.04em; }

/* ─── Reel Embed Grid ───────────────────────────────────────────────────────── */
.reel-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  justify-items: center;
  align-items: start;
}
.reel-embed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 360px;
}

/* Stat pill above the embed */
.reel-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border-radius: 20px 20px 0 0;
  text-transform: uppercase;
  align-self: flex-start;
  margin-left: 4px;
}

.reel-frame-wrap {
  width: 100%;
  border-radius: 0 16px 16px 16px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(200,241,53,0.25),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(200,241,53,0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.reel-embed-item:hover .reel-frame-wrap {
  box-shadow:
    0 0 0 2px rgba(200,241,53,0.5),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(200,241,53,0.12);
  transform: translateY(-6px);
}
.reel-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

.reel-caption {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin-top: 20px;
  text-transform: uppercase;
  padding: 0 8px;
  transition: color 0.3s;
}
.reel-embed-item:hover .reel-caption { color: var(--white); }

@media (max-width: 900px) {
  .reel-embed-grid { grid-template-columns: 1fr; }
  .reel-embed-item { max-width: 400px; margin: 0 auto; }
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; color: var(--accent);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 14px; color: var(--gray-mid); transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: var(--gray-mid); }

/* ─── Reveal ────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Hero elements animate via CSS — no JS dependency above the fold */
#hero .reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.8s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
  transition: none;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Scroll Progress Bar ───────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 10000;
  box-shadow: 0 0 12px rgba(200,241,53,0.8);
  pointer-events: none;
}

/* ─── Ticker Strip ──────────────────────────────────────────────────────────── */
.ticker-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 11px 0;
  white-space: nowrap;
  border-top: none;
  border-bottom: none;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: tickerScroll 24s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #000;
  text-transform: uppercase;
  flex-shrink: 0;
}
.t-sep { opacity: 0.35; font-size: 10px !important; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Section Inline CTA ────────────────────────────────────────────────────── */
.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  padding: 36px 48px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
}
.section-cta-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: rgba(255,255,255,0.6);
}
.section-cta-text span { color: var(--white); }
@media (max-width: 768px) {
  .section-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}

/* ─── Behind the Scenes ─────────────────────────────────────────────────────── */
.bts-section {
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.bts-intro {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 64px;
}
.bts-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 16px;
}
.bts-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black-3);
}
.bts-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.88);
}
.bts-item:hover img { transform: scale(1.04); filter: brightness(1); }
.bts-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.bts-item--a { grid-column: 1; grid-row: 1; }
.bts-item--b { grid-column: 2; grid-row: 1; }
.bts-item--c { grid-column: 1; grid-row: 2; }
.bts-item--d { grid-column: 2; grid-row: 2; }

@media (max-width: 768px) {
  .bts-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .bts-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px;
  }
  .bts-item--a, .bts-item--b, .bts-item--c, .bts-item--d {
    grid-column: auto; grid-row: auto;
  }
}

/* ─── Active Nav Link ───────────────────────────────────────────────────────── */
.nav-links a.active { color: var(--accent); }

/* ─── Cookie Banner ─────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 860px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-text {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}
.cookie-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.cookie-text a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-decline {
  padding: 12px 22px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: transparent;
  color: #666;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-btn-decline:hover { border-color: #999; color: #000; }
.cookie-btn-accept {
  padding: 12px 26px;
  background: #000;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: #222; transform: translateY(-1px); }
@media (max-width: 640px) {
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); }
  .cookie-inner { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ─── Global Mobile Fixes ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .section-dark, .section-light, .bts-section, .section-numbers { padding: 56px 0; }
  .cta-section { padding: 90px 0; }
  .section-title { font-size: clamp(32px, 9vw, 46px); }
  .section-sub { font-size: 15px; margin-bottom: 36px; }
  .numbers-grid { gap: 12px; margin-top: 36px; }
  .number-item { padding: 24px 18px; }
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3) { transform: none !important; margin-top: 0; }
  .cases-grid { gap: 14px; margin-top: 40px; }
  .case-card { min-height: 340px; }
  .case-body { max-height: 120px !important; opacity: 1 !important; }
  .case-card-bg { opacity: 0.5 !important; transform: scale(1) !important; }
  .video-cards-grid { gap: 16px; margin-top: 40px; }
  .video-card { padding: 20px; gap: 20px; }
  .reel-frame-wrap { aspect-ratio: 9/16; height: auto; position: relative; }
  .reel-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
  .team-photo { height: 220px; }
  .team-grid { gap: 16px; margin-top: 40px; }
  .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin: 40px -24px 0;
    padding: 0 24px 16px;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card { flex: 0 0 82vw; scroll-snap-align: start; }
  .testi-grid .reveal,
  .leistungen-grid .reveal { opacity: 1 !important; transform: none !important; }
  .section-cta { margin-top: 40px; }
  .logos-strip-mini { padding: 24px 0; }
  .bts-intro { font-size: 15px; margin-bottom: 40px; }
  .float-call-btn { bottom: 20px; right: 16px; width: 50px; height: 50px; cursor: pointer; touch-action: manipulation; }
  .btn { cursor: pointer; }
  .faq-q { cursor: pointer; }
  footer { padding: 32px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .problem-grid { gap: 14px; }
  .pill { font-size: 11px; padding: 5px 10px; }
  .platform-row { gap: 8px; }
}

/* ─── Swipe Hint ─────────────────────────────────────────────────────────────── */
.swipe-hint { display: none; }
@media (max-width: 576px) {
  .swipe-hint {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--gray-mid);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 12px;
    opacity: 0.5;
  }
}
