/* ============================================================
   Shootless Landingpage — styles.css
   Brand-Tokens gespiegelt aus static/css/tokens.css (Quelle der Wahrheit).
   Standalone für shootless.de — keine App-Abhängigkeit.
   ============================================================ */

:root {
  /* Brand */
  --brand-primary: #101014;
  --brand-navy-deep: #1e1b4b;
  --primary: #5b5bd6;
  --primary-strong: #4a4ad0;
  --primary-soft: rgba(91, 91, 214, 0.12);
  --primary-violet: #7c5cff;

  /* Surfaces */
  --surface: #ffffff;
  --surface-alt: #f0efed;
  --surface-paper: #faf9f8;
  --surface-canvas: #f4f3f0;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(16, 16, 20, 0.18);

  /* Text */
  --text-primary: #101014;
  --text-secondary: #43434d;
  --text-muted: #8a8a93;
  --text-on-primary: #ffffff;
  --text-on-dark: #ffffff;

  /* Type */
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 9999px;

  /* Elevation */
  --elevation-1: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --elevation-2: 0 4px 12px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
  --elevation-3: 0 12px 32px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.04);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #5b5bd6 0%, #7c5cff 100%);
  --gradient-primary-hover: linear-gradient(135deg, #6a6ae0 0%, #8a6bff 100%);
  --gradient-hero-text: linear-gradient(135deg, #101014 0%, #1e1b4b 55%, #5b5bd6 100%);
  --gradient-ink: linear-gradient(160deg, #16161c 0%, #1e1b4b 100%);
  --gradient-aurora:
     radial-gradient(ellipse 60% 50% at 15% 0%, rgba(16,16,20,.06), transparent 60%),
     radial-gradient(ellipse 50% 40% at 88% 8%, rgba(91,91,214,.10), transparent 65%),
     radial-gradient(ellipse 70% 60% at 50% 100%, rgba(30,27,75,.05), transparent 70%);
  --glow-brand: 0 0 28px rgba(91,91,214,.34), 0 8px 24px rgba(30,27,75,.18);

  /* Motion */
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --transition: 180ms var(--ease);

  /* Layout */
  --content-max: 1140px;
  --content-narrow: 760px;
  --header-h: 68px;
}

/* ============ RESET / BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; color: var(--text-primary); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--text-primary); font-weight: 500; }
strong { font-weight: 600; color: var(--text-primary); }

.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--content-narrow); }
.center { text-align: center; }
.center > .lead, .center > p { margin-left: auto; margin-right: auto; }
.mt-32 { margin-top: 32px; }

.section { padding: 88px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.kicker {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-strong); margin-bottom: 14px;
}
.kicker.on-dark { color: var(--primary-violet); }

.lead {
  font-size: 1.12rem; color: var(--text-secondary);
  max-width: 680px; margin-top: 14px;
}
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--primary-strong); background: var(--primary-soft);
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.grad-text {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-base); font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: var(--radius-md); border: 1px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient-primary); color: var(--text-on-primary);
  box-shadow: var(--elevation-1);
}
.btn-primary:hover { background: var(--gradient-primary-hover); transform: translateY(-2px); box-shadow: var(--glow-brand); }

.btn-outline { background: var(--surface); color: var(--text-primary); border-color: var(--border-hover); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-strong); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text-primary); }
.btn-ghost:hover { background: var(--surface-alt); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 248, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header[data-scrolled] { border-bottom-color: var(--border); background: rgba(250, 249, 248, 0.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; color: var(--brand-primary); }
.logo-dot { color: var(--primary); }
.nav-desktop { display: flex; gap: 28px; margin-left: auto; }
.nav-desktop a { font-size: .92rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-desktop a:hover { color: var(--text-primary); }
.header-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; background: var(--surface); border-bottom: 1px solid var(--border); }
.nav-mobile a { padding: 12px 4px; font-weight: 500; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border-bottom: 0; margin-top: 8px; }
.nav-mobile[data-open] { display: flex; }

/* ============ HERO ============ */
.hero { position: relative; padding: 64px 0 80px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; background: var(--gradient-aurora); z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; }
.hero-sub { font-size: 1.18rem; color: var(--text-secondary); margin-top: 22px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.trust-line {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px;
  font-size: .88rem; color: var(--text-muted);
}
.trust-line li { position: relative; padding-left: 20px; }
.trust-line li::before {
  content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}
.trust-line.center-line { justify-content: center; }
.trust-line.center-line li { color: rgba(255,255,255,.7); }
.trust-line.center-line li::before { color: var(--primary-violet); }

/* Hero visual: ein Foto -> ganzer Feed */
.hero-visual { display: flex; align-items: center; gap: 18px; }
.hv-input { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.hv-input .ph { width: 132px; }
.hv-input-cap { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.hv-arrow { font-size: 1.6rem; color: var(--primary); flex-shrink: 0; }
.hv-feed { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1; }

/* ============ PLACEHOLDERS ============ */
.ph {
  position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background:
    repeating-linear-gradient(45deg, rgba(91,91,214,.05) 0 12px, rgba(91,91,214,.02) 12px 24px),
    var(--surface-canvas);
  box-shadow: var(--elevation-1); overflow: hidden;
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-label); font-size: .78rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,.85); padding: 5px 11px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); letter-spacing: .01em;
}
.ph-soft { background: var(--gradient-aurora), var(--surface); }
.ph-square { aspect-ratio: 1 / 1; }
.ph-portrait { aspect-ratio: 9 / 16; }
.ph-landscape { aspect-ratio: 4 / 3; }
.ph-cut {
  background:
    repeating-conic-gradient(rgba(0,0,0,.05) 0% 25%, transparent 0% 50%) 0 0 / 22px 22px,
    var(--surface);
}

/* ============ TRUST BAR ============ */
.trust-bar { padding: 28px 0; border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-bar-inner > span { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.trust-logos { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-logos span { font-family: var(--font-display); font-weight: 600; color: var(--text-secondary); opacity: .65; font-size: 1.02rem; }

/* ============ PROBLEM ============ */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.pain-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.pain-icon { font-size: 1.8rem; margin-bottom: 14px; }
.pain-card h3 { margin-bottom: 8px; }

/* ============ SHIFT ============ */
.shift { background: var(--gradient-ink); position: relative; overflow: hidden; }
.shift::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(91,91,214,.22), transparent 70%);
}
.shift .container { position: relative; z-index: 1; }
.on-dark { color: var(--text-on-dark) !important; }
.lead.on-dark { color: rgba(255,255,255,.75) !important; }
.pull-quote {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600;
  color: #fff; margin-top: 32px; line-height: 1.3;
}

/* ============ STEPS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.step-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--elevation-1);
}
.step-num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius-pill);
  background: var(--gradient-primary); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem; margin-bottom: 18px; box-shadow: var(--elevation-1);
}
.step-card h3 { margin-bottom: 8px; }

/* ============ CONTENT TYPES ============ */
.content-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px;
}
.content-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.content-card:hover { transform: translateY(-3px); box-shadow: var(--elevation-2); }
.content-card .ph { border: 0; border-radius: 0; border-bottom: 1px solid var(--border); box-shadow: none; }
.content-card-body { padding: 24px; }
.content-card-body h3 { margin-bottom: 8px; }
.content-card-feature { grid-row: span 2; grid-column: 1; }
.content-card-feature .ph { min-height: 320px; }
.tag {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.tag-star { background: var(--primary-soft); color: var(--primary-strong); }

/* ============ FORMATS ============ */
.format-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.format-chip {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 28px; min-width: 150px;
}
.format-chip strong { font-family: var(--font-display); font-size: 1.15rem; }
.format-chip small { color: var(--text-muted); font-size: .82rem; }
.format-chip [class^="ratio-"] { border: 2px solid var(--primary); border-radius: 4px; margin-bottom: 8px; opacity: .8; }
.ratio-9x16 { width: 18px; height: 32px; }
.ratio-4x5 { width: 26px; height: 32px; }
.ratio-1x1 { width: 30px; height: 30px; }
.ratio-16x9 { width: 36px; height: 20px; }
.volume-banner {
  margin: 40px auto 0; max-width: 760px; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 32px; color: var(--text-secondary);
}
.volume-banner strong { display: block; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 6px; }

/* ============ WHY ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.why-card {
  background: var(--surface-paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px;
}
.why-card h3 { margin-bottom: 10px; }

/* ============ THE MATH / VERSUS ============ */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 48px; }
.versus-card { border-radius: var(--radius-xl); padding: 30px; border: 1px solid var(--border); }
.versus-old { background: var(--surface); }
.versus-new { background: var(--gradient-ink); border-color: transparent; box-shadow: var(--elevation-2); }
.versus-label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.versus-new .versus-label { color: #fff; }
.versus-card ul { list-style: none; }
.versus-card li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .92rem; }
.versus-card li:last-child { border-bottom: 0; }
.versus-old li span { color: var(--text-muted); }
.versus-old li strong { color: var(--text-secondary); }
.versus-new li { border-bottom-color: rgba(255,255,255,.1); }
.versus-new li span { color: rgba(255,255,255,.55); }
.versus-new li strong { color: #fff; }
.versus-vs { font-family: var(--font-display); font-weight: 700; color: var(--text-muted); font-size: 1.1rem; }
.versus-quote {
  text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  color: var(--text-primary); margin-top: 36px;
}

/* ============ PERSONAS ============ */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.persona-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; }
.persona-emoji { font-size: 2rem; display: block; margin-bottom: 14px; }
.persona-card h3 { margin-bottom: 10px; }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: start; }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 34px 30px; display: flex; flex-direction: column;
}
.price-card-featured {
  border-color: var(--primary); box-shadow: var(--glow-brand); transform: translateY(-8px);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: #fff; font-size: .76rem; font-weight: 600;
  padding: 6px 16px; border-radius: var(--radius-pill); white-space: nowrap; box-shadow: var(--elevation-1);
}
.price-name { font-family: var(--font-display); font-size: 1.4rem; }
.price-for { color: var(--text-muted); font-size: .92rem; margin-top: 2px; margin-bottom: 18px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.price-big { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--text-primary); }
.price-period { color: var(--text-muted); font-size: .95rem; }
.price-feat { list-style: none; margin-bottom: 28px; flex: 1; }
.price-feat li { position: relative; padding: 9px 0 9px 26px; font-size: .92rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.price-feat li:last-child { border-bottom: 0; }
.price-feat li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.price-note { text-align: center; color: var(--text-muted); font-size: .88rem; margin-top: 24px; }

/* ============ FAQ ============ */
.faq { margin-top: 44px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 4px 24px; margin-bottom: 12px; transition: var(--transition);
}
.faq details[open] { box-shadow: var(--elevation-1); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: var(--transition); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--text-secondary); }

/* ============ FINAL CTA ============ */
.final-cta { background: var(--gradient-ink); padding: 96px 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(124,92,255,.28), transparent 70%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .btn { margin-top: 28px; }
.final-cta .trust-line { margin-top: 28px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; margin-top: 10px; max-width: 280px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: .9rem; color: var(--text-secondary); transition: var(--transition); }
.footer-nav a:hover { color: var(--primary-strong); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border);
  font-size: .82rem; color: var(--text-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .pain-grid, .steps-grid, .content-grid, .why-grid, .persona-grid, .pricing-grid { grid-template-columns: 1fr; }
  .content-card-feature { grid-row: auto; }
  .content-card-feature .ph { min-height: 0; }
  .versus { grid-template-columns: 1fr; }
  .versus-vs { justify-self: center; }
  .price-card-featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 56px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
