/* ─────────────────────────────────────────────
   tokens.css — CSS-переменные и базовый reset
   ───────────────────────────────────────────── */

:root {
  /* Цвета */
  --bg:       #0d0d0d;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --surface:  #1f1f1f;
  --border:   #2a2a2a;
  --gold:     #c9a84c;
  --gold2:    #e8c96e;
  --gold-dim: rgba(201, 168, 76, .12);
  --text:     #f0ede6;
  --muted:    #888480;
  --red:      #d94f3a;

  /* Геометрия */
  --radius:   6px;
  --max:      1180px;
}

/* ─── RESET ───────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  letter-spacing: -0.02em;
}
 
/* Hero заголовок */
.hero-title {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  letter-spacing: -0.03em;
}
 
/* Заголовки секций */
.section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  letter-spacing: -0.025em;
}
 
/* Навигация лого */
.nav-logo {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  letter-spacing: -0.02em;
}
 
/* Кнопки hero actions - заголовок */
.ha-btn-title {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.015em;
}
 
/* Кнопки hero actions - подзаголовок */
.ha-btn-sub {
  font-family: 'Inter', system-ui, sans-serif !important;
  letter-spacing: 0;
}
 
/* Все параграфы и текст */
p, a, span, div {
  font-family: 'Inter', system-ui, sans-serif !important;
  letter-spacing: -0.01em;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── NOISE OVERLAY ───────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ─── УТИЛИТЫ ─────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section { padding: 100px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.0;
  letter-spacing: .01em;
  color: var(--text);
}

.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 520px; margin-top: 16px;
  font-weight: 400; line-height: 1.7;
}
