:root {
  --bg:        #0c0c0e;
  --bg2:       #141416;
  --bg3:       #1c1c1f;
  --border:    #2a2a2d;
  --border2:   #363639;
  --teal:      #00e5a0;
  --teal-dim:  rgba(0,229,160,.12);
  --teal-glow: rgba(0,229,160,.25);
  --white:     #f0f0f0;
  --muted:     #6b6b72;
  --muted2:    #9999a2;
  --r:         12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: #f5f6f8;
  color: #111;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.page { max-width: 1200px; margin: 0 auto; padding: 48px 24px 72px; }

.sec-row   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sec-title { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #94a3b8; }
.sec-link  { font-size: .78rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 3px; }
.sec-link:hover { opacity: .8; }
