* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-text);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.section {
  padding: var(--space-6) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverted);
}

.section--dark p {
  color: var(--gray-400);
}

.section--dark .eyebrow {
  color: var(--blue-300);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-5);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(26, 79, 143, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(26, 79, 143, 0.7);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  transform: translateY(-2px);
}

.prose {
  max-width: 720px;
}

.prose p {
  color: var(--text);
  margin-bottom: 16px;
}

.prose h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.prose h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.prose ul {
  margin: 10px 0 18px 20px;
  list-style: disc;
}

.prose li {
  color: var(--text);
  margin-bottom: 6px;
}

.prose a {
  color: var(--blue-500);
  text-decoration: underline;
}

.prose strong {
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
