
/* =========================================================
   landing.css – Wohnenio MVP Landing Page
   ========================================================= */

/* ---------- Base ---------- */
body {
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.08), transparent 50%),
    radial-gradient(circle at 100% 30%, rgba(124, 58, 237, 0.06), transparent 55%),
    #fafcff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  color: #0f172a;
  line-height: 1.5;
  min-height: 100vh;
}

/* ---------- Logo ---------- */
.landing-logo {
  text-align: center;
  padding: 32px 20px 12px;
}

.landing-logo img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.15));
  transition: transform 0.2s ease;
}

.landing-logo img:hover {
  transform: scale(1.02);
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 80px;
}

.hero-content {
  position: relative;
  overflow: hidden;

  max-width: 620px;
  width: 100%;

  text-align: center;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);

  border-radius: 40px;
  padding: 48px 36px;

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6);

  transition: transform 0.25s ease;
}

.hero-content:hover {
  transform: translateY(-2px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.03),
    rgba(124, 58, 237, 0.03)
  );
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin: 0 0 18px;

  font-size: 3.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;

  background: linear-gradient(135deg, #0f172a, #1e293b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  max-width: 520px;
  margin: 0 auto 30px;

  font-size: 1.08rem;
  color: #475569;
  line-height: 1.7;
}

/* ---------- Hero Note ---------- */
.hero-note {
  margin-top: 40px;
  margin-bottom: 0;

  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #64748b;
}

/* ---------- Actions ---------- */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;

  padding: 14px 32px;

  border-radius: 999px;

  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;

  transition: all 0.2s ease;
}

.hero-btn-primary {
  background: linear-gradient(105deg, #2563eb, #7c3aed);
  color: #fff;

  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.35);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.85);

  border: 1px solid rgba(148, 163, 184, 0.3);

  color: #0f172a;
}

.hero-btn-secondary:hover {
  background: #fff;
  border-color: #2563eb;

  transform: translateY(-2px);

  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
}

/* ---------- Footer ---------- */
.legal-footer {
  text-align: center;

  padding: 32px 20px 40px;

  margin-top: 60px;

  border-top: 1px solid rgba(148, 163, 184, 0.2);

  font-size: 0.85rem;
  color: #64748b;
}

.legal-footer a {
  color: #475569;
  text-decoration: none;

  margin: 0 8px;

  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-footer a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* ---------- Tablet ---------- */
@media (max-width: 768px) {
  .landing-logo img {
    height: 54px;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 480px) {
  .hero {
    padding: 20px 16px 60px;
  }

  .hero-content {
    border-radius: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    text-align: center;
  }
}
