/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #e5e7eb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:root {
  --accent: #8b5cf6;
  --accent-2: #6366f1;
  --accent-3: #3b82f6;
  --bg: #0a0a0f;
  --bg-2: #111116;
  --bg-3: #15151d;
  --border: rgba(255,255,255,0.08);
  --text: #e5e7eb;
  --text-dim: #9ca3af;
  --text-dimmer: #6b7280;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10,10,15,0.85); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: url('app-icon.svg') center/contain no-repeat;
  box-shadow: 0 0 24px rgba(139,92,246,0.4);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 8px 30px rgba(139,92,246,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(139,92,246,0.5); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }

/* HERO */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.bg-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 680px; margin: 0 auto 40px;
}
.hero-cta {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.hero-hint { color: var(--text-dimmer); font-size: 13px; margin-top: 18px; }
.hint { color: var(--text-dimmer); font-size: 13px; }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-dim); font-size: 17px; }

/* GRID / CARDS */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(139,92,246,0.3);
  background: var(--bg-3);
}
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.2));
  color: #c4b5fd;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--text-dim); font-size: 15px; }

/* SCREENSHOTS */
.screens {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  perspective: 1200px;
}
/* Features-mit-Mocks-Grid (6 gleich grosse Cards) */
.screens-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.screen-card { display: flex; flex-direction: column; gap: 16px; }
.screen-card .screen { transition: transform .3s ease, box-shadow .3s ease; }
.screen-card:hover .screen { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(0,0,0,0.55); }
.screen-card h3 { font-size: 18px; font-weight: 600; margin-top: 2px; }
.screen-card p { color: var(--text-dim); font-size: 14px; line-height: 1.55; }
.screen {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform .4s ease;
}
.screen:hover { transform: translateY(-6px); }
.screen-bar {
  height: 28px; background: #1a1a22; display: flex; align-items: center; padding: 0 12px; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.screen-bar span { width: 10px; height: 10px; border-radius: 50%; background: #3a3a44; }
.screen-bar span:first-child { background: #ff5f57; }
.screen-bar span:nth-child(2) { background: #febc2e; }
.screen-bar span:nth-child(3) { background: #28c840; }
.screen-body { padding: 16px; display: flex; gap: 12px; height: calc(100% - 28px); }

/* Screen 1: dashboard mock */
.screen-1 .screen-body { display: flex; }
.mock-sidebar { width: 60px; background: #1a1a22; border-radius: 6px; flex-shrink: 0; }
.mock-main { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mock-row { height: 32px; background: #1a1a22; border-radius: 6px; }
.mock-row-lg { height: 40px; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-tile { height: 50px; background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.15)); border-radius: 6px; }
.mock-gantt { flex: 1; background: #14141c; border-radius: 6px; padding: 14px; display: flex; flex-direction: column; gap: 8px; justify-content: center; position: relative; }
.mock-bar { height: 10px; background: linear-gradient(90deg, var(--accent-3), var(--accent)); border-radius: 4px; position: relative; }

/* Screen 2: calendar mock */
.screen-2 .screen-body { flex-direction: column; }
.mock-cal { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 10px; }
.mock-cal-head { height: 30px; background: #1a1a22; border-radius: 6px; }
.mock-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; flex: 1; }
.mock-cal-grid > div { background: #14141c; border-radius: 4px; }
.mock-cal-grid > div.on { background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(139,92,246,0.4); }

/* Screen 3: list mock */
.screen-3 .screen-body { flex-direction: column; }
.mock-list { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mock-item { height: 28px; background: #14141c; border-radius: 6px; position: relative; }
.mock-item::before { content: ''; position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-3)); }
/* CRM-Variante mit blau-pinkem Avatar */
.mock-list-crm .mock-item::before { background: linear-gradient(135deg, #3b82f6, #ec4899); }

/* Shotlist-Mock: 3x2 Kachel-Grid */
.mock-shots { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 8px; }
.mock-shot { background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(59,130,246,0.18)); border-radius: 6px; position: relative; overflow: hidden; }
.mock-shot::after { content: ''; position: absolute; left: 6px; right: 6px; bottom: 6px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.mock-shot:nth-child(2n)::after { background: rgba(255,255,255,0.35); }

/* Budget-Mock: horizontale Balken */
.mock-budget { flex: 1; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.mock-brow { display: flex; align-items: center; gap: 10px; }
.mock-blabel { width: 40px; height: 8px; background: #1a1a22; border-radius: 4px; flex-shrink: 0; }
.mock-bar-h { height: 10px; display: block; border-radius: 4px; }

/* FEATURES STACK (2 big + 3 small, Mock links, Text rechts) */
.features-stack { display: flex; flex-direction: column; gap: 56px; }
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.feature-row .screen {
  width: 100%;
  aspect-ratio: auto;
}
.feature-big .screen { height: 300px; }
.feature-small .screen { height: 220px; }
.feature-text h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 10px; line-height: 1.2;
}
.feature-text p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

/* Screen-Body eng halten */
.feature-row .screen-body { padding: 14px; gap: 10px; }

/* Tage-Leiste (Shotlist/Drehplan) */
.mock-days {
  display: flex; gap: 6px; margin-bottom: 10px; flex-shrink: 0;
}
.mock-days > span {
  flex: 1 1 0; text-align: center; font-size: 11px; font-weight: 700;
  padding: 7px 0; background: #14141c; border-radius: 5px;
  color: var(--text-dimmer); letter-spacing: 0.12em;
  display: block;
}
.mock-days > span.on {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 0 14px rgba(139,92,246,0.45);
}

/* Groesseres Shot-Grid (4x2) — hoehere Spezifitaet */
.mock-main > .mock-shots.mock-shots-lg {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.mock-shotnum {
  position: absolute; top: 6px; left: 8px;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  z-index: 1;
}

/* Budget: % rechts, fixe Breite */
.mock-bpct {
  font-size: 11px; color: var(--text-dim);
  font-weight: 600; font-variant-numeric: tabular-nums;
  min-width: 34px; text-align: right;
  display: inline-block; margin-left: auto;
}

/* Crew/CRM-Liste */
.mock-crew {
  flex: 1; display: flex; flex-direction: column;
  gap: 6px; justify-content: center;
  min-height: 0;
}
.mock-crew-row {
  display: flex; align-items: center; gap: 10px;
  background: #14141c; border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px 10px;
  min-height: 32px;
}
.mock-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(139,92,246,0.3);
}
.mock-crew-crm .mock-avatar {
  background: linear-gradient(135deg, #3b82f6, #ec4899);
  box-shadow: 0 0 8px rgba(59,130,246,0.3);
}
.mock-ctext {
  flex: 1; display: flex; flex-direction: column; gap: 5px;
  min-width: 0;
}
.mock-cline {
  display: block;
  height: 8px; background: #2a2a34; border-radius: 3px; width: 60%;
}
.mock-cline-sub { width: 38%; background: #1d1d25; height: 6px; }
.mock-tag {
  display: block;
  width: 42px; height: 16px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(139,92,246,0.5), rgba(99,102,241,0.5));
  flex-shrink: 0;
  border: 1px solid rgba(139,92,246,0.35);
}
.mock-tag-crm {
  background: linear-gradient(135deg, rgba(59,130,246,0.5), rgba(236,72,153,0.5));
  border-color: rgba(236,72,153,0.35);
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.price-card-main {
  border-color: rgba(139,92,246,0.4);
  background: linear-gradient(180deg, rgba(139,92,246,0.06), transparent 60%), var(--bg-2);
  box-shadow: 0 20px 60px -20px rgba(139,92,246,0.3);
}
.price-card-soon { opacity: 0.85; }
.price-tag {
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.price-tag-soon { background: #374151; }
.price-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.price-amount { font-size: 42px; font-weight: 700; letter-spacing: -0.02em; }
.price-unit { color: var(--text-dim); font-size: 14px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 15px;
  position: relative;
  padding-left: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* CTA */
.cta-section {
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.1), transparent 60%);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-inner p { color: var(--text-dim); font-size: 17px; margin-bottom: 32px; }

/* FOOTER */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-dim); margin-top: 12px; font-size: 14px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; color: var(--text); }
.footer-cols a { display: block; color: var(--text-dim); font-size: 14px; padding: 4px 0; transition: color .2s; }
.footer-cols a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-dimmer); font-size: 13px; text-align: center; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .screens { grid-template-columns: 1fr 1fr; }
  .screen-1 { grid-column: span 2; }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid .screen-1 { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; gap: 20px; }
  .feature-big .screen { height: 260px; }
  .feature-small .screen { height: 200px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 80px 0 70px; }
  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; }
  .screen-1 { grid-column: span 1; }
  .screens-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features-stack { gap: 32px; }
}
