:root {
  --bg: #07111f;
  --bg-soft: #0d1a2d;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.11);
  --border: rgba(255,255,255,0.12);
  --text: #e8eef8;
  --muted: #9fb0c9;
  --accent: #64b0d1;
  --accent-2: #2e7ea7;
  --success: #84d39b;
  --warning: #ffd27a;
  --danger: #ff7b7b;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(100,176,209,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(46,126,167,.14), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #081424 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 700px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }
}