@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* =========================
   DESIGN TOKENS
========================= */

:root {
  --bg-dark: #020617;
  --bg-light: #f4f8fc;

  --surface: #ffffff;
  --surface-soft: #f1f6fb;

  --ink: #0f172a;
  --ink-light: #ffffff;
  --muted: #5f7088;

  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --blue-glow: rgba(59,130,246,0.35);

  --line: #dbe5f0;

  --radius-lg: 18px;

  --shadow-soft: 0 12px 30px rgba(0,0,0,0.06);
  --shadow-strong: 0 30px 80px rgba(0,0,0,0.35);

  --page-width: 1180px;
}

/* =========================
   RESET & BASE STYLES
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem 0;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--blue);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* =========================
   LAYOUT UTILITIES
========================= */

.container {
  width: min(100% - 2rem, var(--page-width));
  margin: 0 auto;
}

.wrap {
  width: min(100% - 2rem, var(--page-width));
  margin: 0 auto;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

main {
  display: block;
}

footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  font-size: 14px;
}

footer strong {
  color: white;
}