:root {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

body {
  font-family: Inter, "Plus Jakarta Sans", Outfit, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

p {
  line-height: 1.65;
}

.glass-surface {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-surface {
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

@media (prefers-color-scheme: dark) {
  .glass-surface {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(100, 116, 139, 0.5);
  }

  .card-surface {
    box-shadow: 0 4px 20px rgba(2, 6, 23, 0.28);
  }
}
