/* Подключаем дружелюбный шрифт */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #f6f8fc;
    --bg-header: #ffffff;

    --color-primary: #5b7cff;
    --color-secondary: #ffb703;

    --text-main: #1f2937;
    --text-muted: #6b7280;

    --radius: 16px;
}

html,
body {
    height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Onest Variablefont Wght", Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}
/* =====================================================
   BUTTON SYSTEM (без свечения)
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: 'Onest Variablefont Wght', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;

  padding: 22px 42px;
  border-radius: 999px;
  border: none;

  cursor: pointer;
  text-decoration: none;
  user-select: none;

  transition:
    transform 0.12s ease,
    background-color 0.12s ease,
    color 0.12s ease;
}

/* ===== PRIMARY ===== */
.btn-primary {
  background: #ff8c42;
  color: #0b2a57;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

/* ===== SECONDARY ===== */
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ===== SMALL ===== */
.btn-sm {
  font-size: 14px;
  padding: 12px 22px;
}

/* ===== DISABLED ===== */
.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
