:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
}

::selection {
  background: #c7d2fe;
  color: #0f172a;
}

.bg-aurora {
  background:
    radial-gradient(1200px 600px at 8% -10%, rgba(99, 102, 241, 0.35), transparent 60%),
    radial-gradient(900px 550px at 90% 0%, rgba(14, 165, 233, 0.3), transparent 55%),
    radial-gradient(700px 500px at 70% 90%, rgba(251, 191, 36, 0.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.gradient-frame {
  background: linear-gradient(135deg, rgba(224, 231, 255, 0.9), rgba(236, 254, 255, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.glass-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.section-glow {
  position: relative;
  overflow: hidden;
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  height: 320px;
  width: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
  pointer-events: none;
}

.section-glow::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  height: 280px;
  width: 280px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
  pointer-events: none;
}

.text-balance {
  text-wrap: balance;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
