@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --slate:       #1C3A47;
  --slate-mid:   #2D4A56;
  --slate-light: #8FA8B2;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE8E1;
  --amber:       #C97C3A;
  --amber-light: #E8A05A;
  --text:        #1A1A1A;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --nav-height: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section { padding: 108px 56px; }

@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .section-sub { margin-bottom: 40px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--amber);
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.4); }
.eyebrow--light::before { background: rgba(255,255,255,0.25); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--slate);
  margin-bottom: 18px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 60px;
}
.section-sub--light { color: rgba(255,255,255,0.5); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
}
.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,124,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid rgba(28,58,71,0.3);
}
.btn-outline:hover {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* ── Tags ────────────────────────────────────────────────── */
.tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 5px;
  background: var(--cream);
  color: var(--slate-mid);
  border: 1px solid rgba(28,58,71,0.09);
  display: inline-block;
}
.tag--amber {
  background: rgba(201,124,58,0.1);
  color: var(--amber);
  border-color: rgba(201,124,58,0.2);
}
