/* ============================================================================
   Structify · Investoren-Landingpage v3
   Design-System der Produkt-App: Navy #071C24 · Orange #F06B10 · Teal #1E8CB0
   Sora + DM Sans + JetBrains Mono · Gradient #ED8323 → #5BC8E8
   ============================================================================ */

:root {
  --deep: #071C24;
  --dark: #0A1C28;
  --card: #0D2330;
  --elevated: #11313f;
  --subtle: #1E4A5C;
  --orange: #F06B10;
  --orange-lt: #F2A36D;
  --teal: #1E8CB0;
  --teal-lt: #5BC8E8;
  --t-hi: #F9FAFB;
  --t-mid: #8FB0BE;
  --t-low: #5A6B72;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --maxw: 1200px;
  --grad: linear-gradient(135deg, #ED8323, #F4A055 45%, #5BC8E8);
  --grad-orange: linear-gradient(135deg, #F06B10, #F2A36D);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--deep);
  color: var(--t-hi);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mono { font-family: 'JetBrains Mono', monospace; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Inline SVG icons ---- */
.i { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.btn .arr { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Ambient ---- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,107,16,0.05), transparent 70%);
  pointer-events: none; z-index: 0; will-change: transform;
}
.noise { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025; }

/* ---- Buttons ---- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 32px;
  border-radius: 11px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
  cursor: pointer; border: none; transition: transform .2s ease, box-shadow .2s ease; white-space: nowrap;
}
.btn-primary {
  color: #fff; background: var(--grad-orange);
  box-shadow: 0 8px 32px rgba(240,107,16,.4), 0 2px 8px rgba(240,107,16,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(240,107,16,.5); }
.btn-primary:hover::after { left: 130%; }
.btn-ghost { color: rgba(255,255,255,.82); background: transparent; border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.05); transform: translateY(-2px); }
.btn .arr { transition: transform .3s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---- Gradient-border card ---- */
.gcard {
  position: relative;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(140deg, rgba(240,107,16,.35), rgba(255,255,255,.07) 40%, rgba(30,140,176,.3)) border-box;
  border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gcard:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }

/* ---- Scroll reveal ---- */
.sr { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.sr.in { opacity: 1; transform: none; }

/* ---- Section rhythm ---- */
section { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--orange); opacity: .7; }
.sec-title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; }
.sec-lead { color: var(--t-mid); font-size: clamp(16px, 1.6vw, 19px); max-width: 660px; margin-top: 18px; line-height: 1.7; }

/* ============================ NAVBAR ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 68px;
  display: flex; align-items: center; transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,28,36,.8); backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--t-mid); transition: color .2s; }
.nav-links a:hover { color: var(--t-hi); }
.nav-cta { height: 42px; padding: 0 20px; font-size: 14px; border-radius: 9px; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ============================ HERO ============================ */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 90px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grad { position: absolute; inset: 0; background: radial-gradient(ellipse 100% 80% at 50% 28%, #0F4040 0%, #0B2D38 25%, #0A1C28 55%, #071C24 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(#1E4A5C 1.2px, transparent 1.2px); background-size: 26px 26px; animation: grid-float 50s linear infinite; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 { top: -15%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(30,140,176,.14), rgba(30,140,176,.04) 45%, transparent 70%); animation: breathe 9s ease-in-out infinite; }
.orb-2 { bottom: -20%; left: -8%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,107,16,.09), transparent 60%); animation: breathe 11s ease-in-out infinite 3s; }
.hero-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, #F06B10 15%, #F2A36D 50%, #F06B10 85%, transparent); }

.hero-top { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 960px) { .hero-top { grid-template-columns: 1fr; gap: 40px; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px;
  background: rgba(240,107,16,.1); border: 1px solid rgba(240,107,16,.28);
  font-weight: 600; font-size: 13px; color: var(--orange);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(240,107,16,.5); animation: pulse-dot 2.4s infinite; }
.hero h1 { font-size: clamp(38px, 4.6vw, 62px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-top: 30px; }
.hero h1 span { display: block; }
.hero-sub { color: var(--t-mid); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.7; max-width: 540px; margin-top: 26px; }
.hero-think { display: block; font-family: 'Sora', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .16em; color: rgba(255,255,255,.34); margin-top: 14px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 14px;
  display: flex; justify-content: center; z-index: 10;
}
.scroll-cue span { width: 3px; height: 8px; border-radius: 2px; background: var(--orange); margin-top: 7px; animation: cue 1.8s ease-in-out infinite; }
@media (max-height: 760px) { .scroll-cue { display: none; } }

/* ---- Hero mockup ---- */
.mock { animation: screen-float 7s ease-in-out infinite; position: relative; }
.mock-bar { border-radius: 14px 14px 0 0; height: 42px; display: flex; align-items: center; gap: 10px; padding: 0 18px; background: #071C24; border: 1px solid var(--line); border-bottom: none; }
.mock-dots { display: flex; gap: 8px; }
.mock-dots i { width: 12px; height: 12px; border-radius: 50%; }
.mock-url { flex: 1; display: flex; justify-content: center; }
.mock-url span { display: inline-flex; align-items: center; gap: 6px; padding: 0 12px; height: 26px; border-radius: 7px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #4B6B7C; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); }
.mock-screen { border-radius: 0 0 16px 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-top: none; box-shadow: 0 0 0 1px rgba(240,107,16,.07), 0 60px 120px rgba(0,0,0,.75), 0 30px 60px rgba(0,0,0,.5), 0 0 200px rgba(30,140,176,.07); }
.mock-inner { background: #0A1C28; padding: 0 20px 20px; }
.mock-head { height: 44px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #4B6B7C; border-bottom: 1px solid rgba(255,255,255,.05); }
.mock-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; margin-top: 16px; }
.mock-meta { font-size: 11px; color: #4B6B7C; margin-top: 4px; }
.chips { display: flex; gap: 8px; margin-top: 8px; }
.chip { font-size: 10px; padding: 2px 8px; border-radius: 999px; }
.chip-live { background: rgba(239,68,68,.2); color: #f87171; }
.chip-ai { background: rgba(30,140,176,.2); color: var(--teal-lt); }
.rec { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 44px; }
.wave i { width: 4px; border-radius: 3px 3px 0 0; background: linear-gradient(to top, #1E8CB0, rgba(30,140,176,.25)); animation: wave-bar 1.4s ease-in-out infinite alternate; }
.rec-orb { position: relative; width: 60px; height: 60px; }
.rec-orb .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(91,200,232,.25); animation: ring-pulse 3s infinite; }
.rec-orb .core { position: absolute; inset: 8px; border-radius: 50%; background: conic-gradient(#1E8CB0 0deg, #5BC8E8 90deg, #fff 180deg, #1E8CB0 360deg); animation: spin 5s linear infinite; }
.rec-time { text-align: center; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 18px; letter-spacing: .1em; margin-top: 8px; }
.transcript { margin-top: 12px; padding: 12px; border-radius: 10px; font-size: 11px; color: var(--t-mid); background: rgba(7,28,36,.6); border: 1px solid rgba(255,255,255,.05); }
.transcript mark { background: rgba(240,107,16,.15); color: var(--orange); padding: 0 4px; border-radius: 3px; }
.ai-cards { display: flex; gap: 8px; margin-top: 8px; }
.ai-card { flex: 1; padding: 8px 10px; border-radius: 10px; font-size: 11px; }
.ai-card .lbl { font-size: 9px; font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.ai-card .val { margin-top: 4px; }
.ai-mangel { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); }
.ai-mangel .lbl { color: #f87171; }
.ai-mass { background: rgba(240,107,16,.08); border: 1px solid rgba(240,107,16,.2); }
.ai-mass .lbl { color: var(--orange); }
.ai-besch { background: rgba(30,140,176,.08); border: 1px solid rgba(30,140,176,.2); }
.ai-besch .lbl { color: var(--teal-lt); }
.float-card { position: absolute; right: -18px; top: 10%; padding: 14px 18px; min-width: 210px; z-index: 20; box-shadow: 0 16px 48px rgba(0,0,0,.5); animation: float-card 5s ease-in-out infinite; }
.glass { background: rgba(13,35,48,.65); backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.float-card .conf { margin-top: 8px; font-size: 10px; color: var(--t-low); }
.conf-bar { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.conf-bar .track { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.conf-bar .fill { height: 100%; width: 94%; border-radius: 999px; background: linear-gradient(90deg, #1E8CB0, #F06B10); }
@media (max-width: 1180px) { .float-card { display: none; } }

/* ============================ PROOF MARQUEE ============================ */
.strip { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(13,35,48,.4); padding: 18px 0; }
.strip-track { display: flex; align-items: center; gap: 34px; width: max-content; animation: marquee 40s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip span { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-mid); white-space: nowrap; }
.strip i { color: var(--orange); font-style: normal; font-size: 9px; }

/* ============================ PROBLEM ============================ */
.problem { padding: 130px 0 120px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 54px; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; gap: 36px; } }
.pain-list { display: flex; flex-direction: column; gap: 18px; }
.pain { display: flex; gap: 18px; padding: 24px; border-radius: 16px; }
.pain .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); background: rgba(240,107,16,.1); border: 1px solid rgba(240,107,16,.2); }
.pain h4 { font-size: 16px; margin-bottom: 5px; }
.pain p { font-size: 14px; color: var(--t-mid); }
.frame-cap { text-align: center; color: var(--t-low); font-size: 13px; margin-top: 16px; }

/* ============================ KINO / THESE ============================ */
.kino { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.kino-bg { position: absolute; inset: 0; }
.kino-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }
.kino-shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(7,28,36,.92) 0%, rgba(7,28,36,.35) 22%, rgba(7,28,36,.35) 70%, rgba(7,28,36,.96) 100%),
  linear-gradient(90deg, rgba(7,28,36,.9) 0%, rgba(7,28,36,.55) 45%, rgba(7,28,36,.15) 100%); }
.kino-inner { position: relative; z-index: 2; padding: 140px 24px; }
.kino-line { font-size: clamp(34px, 5.4vw, 74px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; }
.kino-grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-top: 6px;
}
.kino-sub { color: rgba(255,255,255,.75); font-size: clamp(16px, 1.8vw, 20px); line-height: 1.75; max-width: 640px; margin-top: 30px; }

/* ============================ GRÜNDE / INVESTMENT-CASE ============================ */
.gruende { padding: 140px 0 60px; }
.grund {
  display: grid; grid-template-columns: 110px 1fr 400px; gap: 40px; align-items: center;
  padding: 64px 0; border-top: 1px solid var(--line);
  margin-top: 64px;
}
.gruende .grund:first-of-type { margin-top: 72px; }
.grund-flip { grid-template-columns: 110px 1fr 400px; }
@media (max-width: 1000px) {
  .grund, .grund-flip { grid-template-columns: 70px 1fr; }
  .gvisual { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .grund, .grund-flip { grid-template-columns: 1fr; gap: 22px; }
}
.gnum {
  font-size: clamp(56px, 7vw, 96px); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(240,107,16,.55);
  align-self: start;
}
.gbody h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; margin-bottom: 16px; }
.gbody p { color: var(--t-mid); font-size: 16px; line-height: 1.75; max-width: 560px; }
.gtags { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 22px; }
.gtags span {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .06em;
  padding: 7px 14px; border-radius: 999px; color: var(--t-mid);
  border: 1px solid var(--line-strong); background: rgba(13,35,48,.5);
}
.gtags .gtag-arrow, .gtags .gtag-x { border: none; background: none; color: var(--orange); font-weight: 700; padding: 0 2px; }
.gvisual { justify-self: end; width: 100%; max-width: 400px; }
.visual-frame {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(240,107,16,.06);
  aspect-ratio: 4/3;
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.visual-frame:hover img { transform: scale(1.04); }
.statmini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.statmini .sm {
  padding: 26px 20px; border-radius: 16px; text-align: center;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(140deg, rgba(240,107,16,.35), rgba(255,255,255,.07) 40%, rgba(30,140,176,.3)) border-box;
  border: 1px solid transparent;
}
.statmini .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); }
.statmini .lbl { color: var(--t-mid); font-size: 12.5px; margin-top: 6px; }

/* ============================ PRODUCT SHOWCASE ============================ */
.showcase { padding: 120px 0; }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 44px 0 32px; }
.tab {
  padding: 10px 20px; border-radius: 10px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--t-mid); background: var(--card); border: 1px solid var(--line); cursor: pointer; transition: all .2s; position: relative; overflow: hidden;
}
.tab:hover { color: var(--t-hi); border-color: var(--line-strong); }
.tab.active { color: #fff; background: var(--grad-orange); border-color: transparent; }
.tab .prog { position: absolute; bottom: 0; left: 0; height: 2px; width: 100%; background: rgba(255,255,255,.7); transform-origin: left; transform: scaleX(0); }
.tab.active .prog { animation: tab-progress 5s linear; }
.showcase-frame { max-width: 1000px; margin: 0 auto; }
.sc-bar { border-radius: 14px 14px 0 0; height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 16px; background: #071C24; border: 1px solid var(--line); border-bottom: none; }
.sc-bar i { width: 11px; height: 11px; border-radius: 50%; }
.sc-screen { position: relative; border-radius: 0 0 16px 16px; overflow: hidden; border: 1px solid var(--line); border-top: none; box-shadow: 0 40px 100px rgba(0,0,0,.6); background: #0A1C28; aspect-ratio: 1400/900; }
.sc-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity .6s ease; }
.sc-screen img.active { opacity: 1; }
.sc-cap { text-align: center; color: var(--t-mid); font-size: 14px; margin-top: 20px; min-height: 22px; }

/* ============================ TEAM ============================ */
.team { padding: 60px 0 120px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
.founder { padding: 32px; border-radius: 18px; display: flex; gap: 22px; align-items: flex-start; }
.founder .av { flex-shrink: 0; width: 84px; height: 84px; border-radius: 16px; overflow: hidden; background: var(--grad-orange); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 30px; color: #fff; }
.founder .av img { width: 100%; height: 100%; object-fit: cover; }
.founder h3 { font-size: 20px; }
.founder .role { color: var(--orange); font-size: 13px; font-weight: 600; margin: 4px 0 12px; font-family: 'Sora', sans-serif; }
.founder p { color: var(--t-mid); font-size: 14px; }

/* ============================ ROUND / CTA FORM ============================ */
.round { padding: 60px 0; }
.round-card { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--line-strong); background: linear-gradient(160deg, #0D2836, #081E28); padding: clamp(36px, 6vw, 72px); }
.round-card .rorb { position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(240,107,16,.1), transparent 65%); }
.round-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .round-grid { grid-template-columns: 1fr; gap: 40px; } }
.round h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.round-lead { color: var(--t-mid); font-size: 17px; line-height: 1.7; margin-top: 20px; }
.round-pts { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.round-pts li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--t-hi); }
.round-pts .ck { color: #34d399; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }

/* Form */
.form { display: flex; flex-direction: column; gap: 16px; }
.form h3 { font-size: 22px; }
.form .field { display: flex; flex-direction: column; gap: 7px; }
.form label { font-size: 13px; color: var(--t-mid); font-weight: 500; }
.form label .opt { color: var(--t-low); }
.form input[type="text"], .form input[type="email"], .form input[type="tel"] {
  height: 50px; padding: 0 16px; border-radius: 11px; background: rgba(7,28,36,.7); border: 1px solid var(--line-strong);
  color: var(--t-hi); font-family: inherit; font-size: 15px; transition: border-color .2s;
}
.form input:focus { outline: none; border-color: var(--orange); }
.form input::placeholder { color: var(--t-low); }
.consent { display: flex; gap: 12px; align-items: flex-start; padding: 4px 0; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
.consent label { font-size: 13px; color: var(--t-mid); line-height: 1.5; }
.form .btn { justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--t-low); }
.form-note a { color: var(--teal-lt); text-decoration: underline; }
.hp { position: absolute; left: -9999px; }

/* ============================ FOOTER ============================ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-logo img { height: 26px; margin-bottom: 16px; }
.footer-logo p { color: var(--t-low); font-size: 14px; max-width: 340px; }
.footer-claim { margin-top: 14px; font-style: italic; color: var(--t-mid) !important; }
.footer-imp { font-size: 13px; color: var(--t-low); line-height: 1.9; }
.footer-imp strong { color: var(--t-mid); font-weight: 600; }
.footer-bottom { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--t-low); }
.footer-bottom a { color: var(--t-mid); }
.footer-bottom a:hover { color: var(--t-hi); }

/* ============================ SIMPLE PAGES (danke / datenschutz) ============================ */
.simple { min-height: 100vh; display: flex; flex-direction: column; }
.simple-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 140px 24px 80px; }
.simple-card { max-width: 720px; }
.simple-card .check { width: 72px; height: 72px; border-radius: 20px; background: var(--grad-orange); display: flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 28px; }
.simple-card h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; }
.simple-card p { color: var(--t-mid); font-size: 18px; line-height: 1.7; margin-top: 20px; }
.legal { max-width: 820px; margin: 0 auto; padding: 140px 24px 80px; }
.legal h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 32px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--t-mid); font-size: 15px; line-height: 1.75; }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal a { color: var(--teal-lt); text-decoration: underline; }
.legal strong { color: var(--t-hi); }

/* ============================ KEYFRAMES ============================ */
@keyframes grid-float { 0% { background-position: 0 0; } 100% { background-position: 26px 26px; } }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: .75; } }
@keyframes screen-float { 0%,100% { transform: perspective(1400px) rotateX(3deg) translateY(0); } 50% { transform: perspective(1400px) rotateX(3deg) translateY(-12px); } }
@keyframes wave-bar { 0%,100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
@keyframes ring-pulse { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.08); opacity: .3; } }
@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(240,107,16,.5); } 70% { box-shadow: 0 0 0 8px rgba(240,107,16,0); } 100% { box-shadow: 0 0 0 0 rgba(240,107,16,0); } }
@keyframes tab-progress { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.09); } }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: .2; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .sr { opacity: 1; transform: none; }
}
