﻿:root {
  --bg: #070b14;
  --bg-soft: #0b1220;
  --surface: rgba(16, 24, 42, 0.88);
  --surface-strong: #121b2d;
  --surface-border: rgba(124, 151, 205, 0.24);
  --surface-border-strong: rgba(124, 151, 205, 0.34);
  --text: #f4f8ff;
  --text-soft: #a9bcde;
  --text-muted: #8198c2;
  --accent: #35d6a7;
  --accent-2: #2d8fff;
  --accent-soft: rgba(53, 214, 167, 0.18);
  --danger: #ff6f91;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-xl: 0 35px 80px rgba(0, 0, 0, 0.48);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.3);
  --content-width: 1320px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 72px;
  --transition-fast: 160ms ease-out;
  --transition-mid: 220ms ease-out;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.6;
  letter-spacing: 0.001em;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(45, 143, 255, 0.26), transparent 58%),
    radial-gradient(720px 420px at -10% 26%, rgba(53, 214, 167, 0.18), transparent 58%),
    linear-gradient(180deg, #0a1120 0%, #070b14 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(150, 170, 220, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 170, 220, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  z-index: -2;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

