:root {
  --bg: #060606;
  --panel: #0f0f10;
  --text: #f4f4f2;
  --muted: #a2a2a7;
  --line: #232327;
  --soft: #cfcfd4;
  --max: 1180px;
  --radius: 26px;
  --about-max: 980px;
  --about-panel: #111113;
  --about-muted: #aaaaaf;
  --about-soft: #d4d4d8;
  --about-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.eyebrow,
.section-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.76rem;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 6.6rem);
  line-height: 0.95;
  margin: 18px 0 0;
  letter-spacing: -0.05em;
  max-width: 820px;
}

.lead {
  margin-top: 24px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--soft);
  max-width: 640px;
}

.intro {
  margin-top: 16px;
  max-width: 560px;
  color: #c0c0c5;
  font-size: 1rem;
}

main {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

footer {
  padding: 38px 0 60px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}