@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0c10;
  --panel: #11161d;
  --panel-2: #221a16;
  --text: #f5f7fb;
  --muted: #b8c0ce;
  --accent: #cda06b;
  --ok: #25d366;
  --danger: #ef4444;
  --border: rgba(205, 160, 107, 0.35);
  --radius: 14px;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 10%, #192132 0%, var(--bg) 40%);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-title-left {
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

