/* Base reset and typography */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --color-bg: #0b1120;
  --color-surface: #111a31;
  --color-surface-alt: #152040;
  --color-surface-hero: linear-gradient(140deg, #0b1224 0%, #111a31 35%, #1a2752 100%);
  --color-accent: #7c5cff;
  --color-accent-soft: rgba(124, 92, 255, 0.18);
  --color-cta: #38bdf8;
  --color-cta-hover: #0ea5e9;
  --color-coral: #fb7185;
  --color-coral-soft: rgba(251, 113, 133, 0.15);
  --color-text: #f8fafc;
  --color-text-muted: rgba(226, 232, 240, 0.78);
  --color-border: rgba(148, 163, 184, 0.25);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --radius-xs: 0.5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.25);
  --shadow-glow: 0 0 0 1px rgba(124, 92, 255, 0.45), 0 30px 60px rgba(124, 92, 255, 0.35);
}

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

html {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-weight: 800;
}

p {
  color: var(--color-text-muted);
}

ul {
  list-style: none;
}

button,
.btn {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}
