:root {
  --color-primary: #14349D;
  --color-ink: #0B0F1A;
  --color-sand: #F6F4F1;
  --color-mist: #E6ECF8;
  --color-cloud: #F0F3FA;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--color-ink);
  background: linear-gradient(135deg, #F6F4F1 0%, #EEF2FB 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(20, 52, 157, 0.05), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(230, 236, 248, 0.4), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.card-shadow {
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.glass {
  background: rgba(246, 244, 241, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(11, 15, 26, 0.1);
}

.nav-shadow {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 52, 157, 0.1), rgba(20, 52, 157, 0));
  filter: blur(40px);
  right: -80px;
  top: -80px;
  z-index: -1;
}

.hero-slider {
  position: relative;
  min-height: 320px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

@media (min-width: 640px) {
  .hero-orb {
    width: 400px;
    height: 400px;
    right: -120px;
    top: -120px;
  }
}

@media (min-width: 1024px) {
  .hero-orb {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

.story-content h2,
.story-content h3,
.story-content h4 {
  font-family: 'Poppins', sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

.story-content p {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.story-content ul,
.story-content ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0.75rem;
}

.story-content li {
  margin-bottom: 0.4rem;
}

.story-content a {
  color: var(--color-primary);
  text-decoration: underline;
}


@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
