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

:root {
  --accent:  #B8FF4A;
  --ink-900: #08080C;
  --surface: #14141F;
  --paper:   #F2F2FA;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--ink-900);
  color: var(--paper);
  font-family: 'Outfit', system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  max-width: 1200px;
  width: 100%;
}

.heading {
  font-weight: 800;
  font-size: clamp(80px, 13vw, 220px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  position: relative;
  color: var(--paper);
}

.heading .dot {
  color: var(--accent);
}

.subtitle {
  margin-top: clamp(24px, 4vw, 48px);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0.04em;
  color: var(--paper);
  opacity: 0.4;
  text-transform: uppercase;
}
