:root {
  --party-navy: #0f172a;
  --party-pink: #ff5f8a;
  --party-gold: #f4b73c;
  --party-cream: #fff7f1;
  --party-mint: #2bb3b1;
  --party-ink: #1e293b;
  --party-sand: #f7f3ee;
}

body {
  background: var(--party-cream);
  color: var(--party-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.brand {
  font-family: "Fraunces", "Georgia", serif;
  letter-spacing: -0.01em;
}

.mud-typography-h1,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h4 {
  font-family: "Fraunces", "Georgia", serif;
}

.main-content {
  padding: 0;
}

.glass-appbar {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-drawer {
  background: var(--party-navy);
  color: #f8fafc;
}

.text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  padding: 7rem 6vw 6rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 95, 138, 0.22), transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(244, 183, 60, 0.22), transparent 55%),
    radial-gradient(circle at 70% 90%, rgba(43, 179, 177, 0.18), transparent 55%),
    linear-gradient(180deg, #fff7f1 0%, #ffffff 55%, #f7f3ee 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-chip {
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-badge {
  position: absolute;
  right: 8%;
  top: 18%;
  background: #0f172a;
  color: #f8fafc;
  padding: 2.2rem;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
  transform: rotate(-3deg);
  z-index: 1;
}

.badge-inner {
  text-align: left;
}

.hero-sparkles::before,
.hero-sparkles::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 138, 0.35), transparent 60%);
  animation: float 10s ease-in-out infinite;
  top: 60%;
  left: 6%;
  z-index: 0;
}

.hero-sparkles::after {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 183, 60, 0.35), transparent 60%);
  top: 25%;
  left: 60%;
  animation-delay: 2s;
}

.section {
  padding: 5.5rem 6vw;
}

.section-alt {
  background: var(--party-sand);
}

.section-header {
  max-width: 760px;
}

.section-lead {
  margin-top: 0.75rem;
  color: #475569;
}

.card {
  padding: 2rem;
  border-radius: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.feature-card {
  background: linear-gradient(160deg, #0f172a 0%, #1f2937 60%, #111827 100%);
  color: #f8fafc;
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.25);
}

.feature-card .mud-button-root {
  box-shadow: none;
}

.mini-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 180px;
}

.glow-card {
  background: linear-gradient(120deg, rgba(255, 95, 138, 0.18), rgba(244, 183, 60, 0.15));
  border: 1px solid rgba(255, 95, 138, 0.25);
}

.info-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-card {
  margin-top: 2.5rem;
  text-align: center;
  background: #0f172a;
  color: #f8fafc;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 6rem 6vw 4rem;
  }

  .hero-badge {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 2rem;
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .section {
    padding: 4rem 6vw;
  }

  .card {
    padding: 1.6rem;
  }
}
