/* ==========================================================================
   Landing Page — Bold Layout, Brand-Farben (Creme/Orange/Lila/Schwarz)
   Mobile-first, Breakpoints: 768px, 1024px
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO — Creme BG, fette Headline links, Mockup rechts
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  overflow: hidden;
  padding: var(--space-lg) 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(200, 180, 215, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(248, 94, 52, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-xl);
  }
}

/* Badge */
.hero__badge {
  display: inline-block;
  background: rgba(248, 94, 52, 0.1);
  color: var(--color-cta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(248, 94, 52, 0.2);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

/* Headline */
.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--color-terminal);
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-sm) 0;
}

.text-glow {
  color: var(--color-cta);
}

/* Subline */
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 0 var(--space-md) 0;
}

/* Bullet Points */
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__bullets li {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.7);
}

/* --------------------------------------------------------------------------
   FORM — shared Hero + Final CTA
   -------------------------------------------------------------------------- */

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row--center {
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
}

.form-input {
  flex: 1;
  min-height: 52px;
  padding: 0 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #fff;
  border: 2px solid rgba(26, 26, 26, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: rgba(26, 26, 26, 0.3);
}

.form-input:focus {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(248, 94, 52, 0.1);
}

.form-btn {
  min-height: 52px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(248, 94, 52, 0.25);
  transition: all 0.2s ease;
}

.form-btn:hover {
  box-shadow: 0 6px 20px rgba(248, 94, 52, 0.35);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.4);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  min-width: 16px;
  min-height: 16px;
  accent-color: var(--color-cta);
  cursor: pointer;
}

.form-consent a {
  color: rgba(26, 26, 26, 0.5);
  text-decoration: underline;
}

.form-consent--dark {
  color: rgba(249, 244, 238, 0.4);
}

.form-consent--dark a {
  color: rgba(249, 244, 238, 0.55);
}

.form-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   MOCKUP — Notion Library Vorschau (dunkle Card, schwebt)
   -------------------------------------------------------------------------- */

.hero__visual {
  display: flex;
  justify-content: center;
}

.mockup {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-terminal);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.4s ease;
}

.mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1rem;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.mockup__dot--red { background: #ff5f57; }
.mockup__dot--yellow { background: #febc2e; }
.mockup__dot--green { background: #28c840; }

.mockup__title {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
}

.mockup__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mockup__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s;
}

.mockup__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mockup__item span {
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   SOCIAL PROOF BAR — Orange Band
   -------------------------------------------------------------------------- */

.proof-bar {
  background: var(--color-cta);
  padding: 0.9rem 0;
  text-align: center;
}

.proof-bar p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.proof-bar strong {
  font-weight: 800;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   FEATURES — Dunkle Section, Feature Cards
   -------------------------------------------------------------------------- */

.features {
  background: var(--color-terminal);
  padding: var(--space-xl) 0;
}

.features__headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text-light);
  margin: 0 0 0.5rem 0;
}

.features__sub {
  font-size: 1rem;
  color: rgba(249, 244, 238, 0.45);
  margin: 0 0 var(--space-lg) 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.feature-card:hover {
  border-color: rgba(248, 94, 52, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 0.4rem 0;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(249, 244, 238, 0.45);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   WHY SECTION — Lila-Accent Hintergrund
   -------------------------------------------------------------------------- */

.why-section {
  background: var(--color-accent);
  padding: var(--space-xl) 0;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-terminal);
  line-height: 1.1;
  margin: 0 0 var(--space-md) 0;
}

.why__text .text-glow {
  color: var(--color-cta);
  text-shadow: none;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--color-terminal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.why__point p {
  margin: 0;
  font-size: 1rem;
  color: rgba(11, 12, 13, 0.75);
  line-height: 1.5;
  font-weight: 500;
}

/* Image Placeholder */
.why__image {
  display: flex;
  justify-content: center;
}

.why__placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.25);
  border: 2px dashed rgba(11, 12, 13, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(11, 12, 13, 0.3);
}

.why__placeholder span {
  font-size: 2rem;
}

.why__placeholder p {
  margin: 0;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   FINAL CTA — Dunkle Section, zweites Formular
   -------------------------------------------------------------------------- */

.final-cta {
  background: var(--color-terminal);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(248, 94, 52, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__headline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-text-light);
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
  position: relative;
}

.final-cta__sub {
  font-size: 1.05rem;
  color: rgba(249, 244, 238, 0.45);
  margin: 0 0 var(--space-md) 0;
  position: relative;
}

.final-cta__form {
  position: relative;
}

/* Dark form inputs */
.final-cta .form-input {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.final-cta .form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.final-cta .form-input:focus {
  border-color: var(--color-cta);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(248, 94, 52, 0.15);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  padding: 2rem 0;
  text-align: center;
  background: var(--color-terminal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links a {
  color: rgba(249, 244, 238, 0.3);
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: rgba(249, 244, 238, 0.55);
  text-decoration: underline;
}

.footer-sep {
  margin: 0 0.5rem;
  color: rgba(249, 244, 238, 0.15);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(249, 244, 238, 0.18);
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge { animation: fadeInUp 0.6s ease both; }
.hero__headline { animation: fadeInUp 0.6s 0.1s ease both; }
.hero__sub { animation: fadeInUp 0.6s 0.2s ease both; }
.hero__form { animation: fadeInUp 0.6s 0.3s ease both; }
.hero__visual { animation: fadeInUp 0.8s 0.4s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}
