:root {
  --bg: #05070d;
  --bg-2: #08111f;
  --panel: rgba(255,255,255,.065);
  --panel-strong: rgba(255,255,255,.1);
  --border: rgba(255,255,255,.13);
  --text: #f6f8ff;
  --muted: #9aa8c7;
  --blue: #2f8cff;
  --cyan: #00e5ff;
  --gold: #f5c542;
  --platinum: #d8e8ff;
  --shadow: 0 28px 90px rgba(0,0,0,.45);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(47,140,255,.24), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(0,229,255,.13), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(245,197,66,.08), transparent 34%),
    linear-gradient(135deg, #04060b 0%, #08111f 52%, #05070d 100%);
}

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

button,
input {
  font: inherit;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 700px) {
  .footer {
    flex-direction: column;
  }
}
