:root {
  --navy: #0F0F10;
  --navy-light: #19191b;
  --accent: #d8a518;
  --accent2: #c94f46;
  --accent3: #2546d8;
  --text: #e8eaf6;
  --text-muted: #798192;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(216, 172, 50, 0.4);
  --animated-card: rgb(40, 40, 40);
  --animated-card-hover: rgb(50, 50, 50);
  --card: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.07);
  --radius: 12px;
  --radius-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
h1, h2, h3, h4, .display { font-family: 'Syne', sans-serif; }
a { color: inherit; text-decoration: none; }

section { padding: 90px 5%; }
.section-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em;
}
.section-sub { color: var(--text-muted); font-size: 17px; max-width: 560px; margin-bottom: 48px; }
.divider { border: none; border-top: 1px solid var(--border); }