:root {
  --ink: #2d3748;
  --ink-soft: #4a5568;
  --ink-lighter: #718096;
  --bg: linear-gradient(135deg, #fef5ff 0%, #eff6ff 50%, #f0fdf4 100%);
  --pink: #fce7f3;
  --lavender: #ede9fe;
  --mint: #d1fae5;
  --sky: #dbeafe;
  --peach: #fed7aa;
  --yellow: #fef3c7;
  --rose: #ffe4e6;
  --accent: #8b5cf6;
  --accent-2: #3b82f6;
  --accent-3: #ec4899;
  --ring: rgba(139, 92, 246, 0.25);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 60px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 25px 70px rgba(139, 92, 246, 0.18), 0 8px 16px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(10deg); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

html, body { 
  margin: 0; 
  padding: 0; 
  background: linear-gradient(135deg, #fef5ff 0%, #eff6ff 50%, #f0fdf4 100%);
  background-size: 400% 400%;
  animation: gradient-shift 20s ease infinite;
  color: var(--ink); 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { 
  color: var(--accent-2); 
  text-decoration: none; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}
a:hover { 
  color: var(--accent); 
  text-decoration: none;
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 32px 24px; 
}

.hero {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  background: 
    radial-gradient(circle at 10% 10%, rgba(252, 231, 243, 0.5), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(209, 250, 229, 0.4), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(237, 233, 254, 0.5), transparent 45%),
    radial-gradient(circle at 75% 60%, rgba(254, 215, 170, 0.3), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.1);
  margin-bottom: 24px;
}

.hero::before {
  content: "✨";
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 32px;
  animation: sparkle 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}

.hero::after {
  content: "🌸";
  position: absolute;
  bottom: 24px;
  left: 40px;
  font-size: 28px;
  animation: sparkle 3.5s ease-in-out infinite 0.7s;
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
}

.hero h1 {
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(139, 92, 246, 0.12);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: var(--ink-soft);
}

.pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(139, 92, 246, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 350px;
  height: 350px;
}

.btn:hover { 
  transform: translateY(-4px) scale(1.03); 
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  background-position: 100% 0;
}

.btn:active {
  transform: translateY(-2px) scale(1.01);
}

.sections { display: grid; gap: 24px; margin-top: 24px; }

.card {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  box-shadow: var(--shadow);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(12px);
  margin-bottom: 20px;
}

.card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 92, 246, 0.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
}

.section-title {
  font-weight: 700;
  margin: 0 0 16px 0;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.badges { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  align-items: center; 
}

.badge {
  font-size: 0.8125rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  color: var(--ink-soft);
}

.badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.badge.pink { 
  background: linear-gradient(135deg, #fce7f3, #fbcfe8); 
  border-color: rgba(236, 72, 153, 0.2);
  color: #be185d;
}
.badge.lavender { 
  background: linear-gradient(135deg, #ede9fe, #ddd6fe); 
  border-color: rgba(139, 92, 246, 0.2);
  color: #6d28d9;
}
.badge.mint { 
  background: linear-gradient(135deg, #d1fae5, #a7f3d0); 
  border-color: rgba(16, 185, 129, 0.2);
  color: #065f46;
}
.badge.sky { 
  background: linear-gradient(135deg, #dbeafe, #bfdbfe); 
  border-color: rgba(59, 130, 246, 0.2);
  color: #1e40af;
}
.badge.peach { 
  background: linear-gradient(135deg, #fed7aa, #fdba74); 
  border-color: rgba(249, 115, 22, 0.2);
  color: #c2410c;
}
.badge.rose { 
  background: linear-gradient(135deg, #ffe4e6, #fecdd3); 
  border-color: rgba(244, 63, 94, 0.2);
  color: #be123c;
}

.kpi {
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  margin-top: 12px;
}

.kpi .k {
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 0 0 1px rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.06);
  min-width: 180px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpi .k:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.15);
}

.kpi .k > div:first-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.muted { 
  color: var(--ink-lighter); 
  font-size: 0.875rem; 
  line-height: 1.6;
}

.footer {
  margin: 32px 0 16px 0;
  padding: 24px;
  color: var(--ink-lighter);
  text-align: center;
  font-size: 0.875rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
  border-radius: var(--radius);
  border: 1px solid rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(12px);
}
