/* ======================================
   ELVIUM Group — base site styles
   ====================================== */

/* Design tokens */
:root{
  --bg:#0f172a;
  --panel:#020617;

  --text:#e5e7eb;
  --muted:#9ca3af;
  --muted-2:#6b7280;

  --border: rgba(148,163,184,.14);

  --radius: 16px;

  --container: 1100px;
}

/* Reset */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  line-height:1.65;
  background:
    radial-gradient(900px 450px at 15% 10%, rgba(56,189,248,.10), transparent 60%),
    radial-gradient(800px 420px at 85% 25%, rgba(99,102,241,.10), transparent 60%),
    var(--bg);
}

/* Links */
a{
  color:inherit;
  text-decoration:none;
}

/* Layout */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 24px;
}

/* Headings */
h1,h2,h3,h4{
  margin:0;
  font-weight:600;
  line-height:1.15;
}

p{
  margin:0;
  color:var(--text);
}

/* Utility */
.muted{
  color: var(--muted);
}
