:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --card: rgba(255, 255, 255, 0.06);
  --text: #eef2f7;
  --muted: #b3bdc9;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d9b36c;
  --gold-strong: #f0c77a;
  --max: 1120px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(217, 179, 108, 0.18), transparent 30%),
    linear-gradient(180deg, #11141a 0%, #0b0d12 100%);
  line-height: 1.6;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
}

.hero-content {
  padding: 72px 0 24px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  max-width: 980px;
  margin-bottom: 24px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 160ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #17120b;
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover,
.nav-link:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head.narrow {
  max-width: 700px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.quote-card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card.soft {
  min-height: 220px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card p,
.quote-card footer,
.footer p {
  color: var(--muted);
}

.num {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--gold-strong);
}

.accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-card {
  max-width: 760px;
}

.quote-card p {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  color: var(--text);
}

.footer {
  padding: 28px 0 48px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 960px) {
  .grid.four,
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 40px;
  }

  .grid.four,
  .grid.two,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  h1 {
    line-height: 1.04;
  }
}
