/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, Arial, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Neon Background ===== */
.neon-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  top: -176px;
  left: -176px;
  background: radial-gradient(circle, rgba(249,115,22,.35), rgba(239,68,68,.25), rgba(236,72,153,.20));
}

.orb-2 {
  bottom: -176px;
  right: -160px;
  background: radial-gradient(circle, rgba(251,191,36,.30), rgba(234,88,12,.20), rgba(0,0,0,.40));
}

.orb-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.06), transparent 55%);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up          { animation: fadeUp .6s ease both; }
.delay-1          { animation-delay: .1s; }
.delay-2          { animation-delay: .2s; }
.delay-3          { animation-delay: .3s; }
.delay-4          { animation-delay: .4s; }

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand-logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,.10);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.brand-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.60);
  line-height: 1.2;
}

/* ===== Main ===== */
.site-main {
  flex: 1;
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem;
}

/* ===== Hero ===== */
.hero {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(to right, #fb923c, #ef4444, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  margin-top: 2.5rem;
  font-size: .95rem;
  color: rgba(255,255,255,.70);
}

.hero-scope {
  margin-top: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.50);
  letter-spacing: .04em;
}

/* ===== Capability Badges ===== */
.badges {
  margin-top: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 640px) {
  .badges { grid-template-columns: repeat(4, 1fr); }
}

.badge {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: .7rem 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.80);
  text-align: center;
}

/* ===== Pitch Upload ===== */
.pitch-section {
  margin-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.pitch-card {
  max-width: 672px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 24px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pitch-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pitch-title {
  font-size: .9rem;
  font-weight: 600;
}

.pitch-hint {
  margin-top: .25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.60);
}

.pitch-controls form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width: 640px) {
  .pitch-controls form {
    flex-direction: row;
    align-items: center;
  }
}

#file-input {
  font-size: .875rem;
  color: rgba(255,255,255,.70);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
}

#file-input::file-selector-button {
  margin-right: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  padding: .45rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
}

#file-input::file-selector-button:hover {
  background: rgba(255,255,255,.18);
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.25rem;
  height: 44px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
  flex-shrink: 0;
}

.upload-btn:hover { opacity: .85; }
.upload-btn:active { opacity: .70; }

#upload-status {
  margin-top: .5rem;
  font-size: .85rem;
  min-height: 1.2em;
}

#upload-status.success { color: #86efac; }
#upload-status.error   { color: #fca5a5; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.60);
}

.site-footer a {
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color .2s;
}

.site-footer a:hover { color: #fff; }

/* ===== Content pages (Impressum / Datenschutz) ===== */
.site-main .content {
  max-width: 720px;
  margin: 0 auto;
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content h2 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
  color: rgba(255,255,255,.80);
}

.content p {
  line-height: 1.7;
  color: rgba(255,255,255,.60);
}

.content h3 {
  font-size: .95rem;
  margin: 1rem 0 .4rem;
  color: rgba(255,255,255,.75);
}

.content ul {
  margin: .5rem 0 1rem 1.5rem;
  line-height: 1.7;
  color: rgba(255,255,255,.60);
}

.content a {
  transition: color .2s;
}

.content a:hover { color: #fff; }

/* ===== Content page header nav ===== */
.site-header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  transition: color .2s;
}

.site-header nav a:hover { color: #fff; }
