:root {
  color-scheme: dark;
  --bg: #050505;
  --fg: #f7f7f2;
  --muted: #a6a6a0;
  --line: rgba(247, 247, 242, 0.16);
  --soft: rgba(247, 247, 242, 0.06);
  --hard: rgba(247, 247, 242, 0.92);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 75% 12%, rgba(255,255,255,0.09), transparent 28%), var(--bg);
  color: var(--fg);
  min-height: 100vh;
  letter-spacing: -0.02em;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: repeating-radial-gradient(circle at 0 0, #fff 0 1px, transparent 1px 4px);
  z-index: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.brand-mark .solid { fill: currentColor; }
.links {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
}
.links a:hover { color: var(--fg); }

main, footer { position: relative; z-index: 1; }
.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  padding: clamp(68px, 11vw, 150px) clamp(18px, 6vw, 86px);
  max-width: 1160px;
}

eyebrow {}
.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(62px, 12vw, 164px);
  line-height: 0.86;
  letter-spacing: -0.08em;
  margin-bottom: 26px;
  max-width: 1000px;
}

.dot-text {
  font-family: ui-monospace, "SFMono-Regular", consolas, monospace;
  letter-spacing: -0.12em;
  background-image: radial-gradient(circle, currentColor 38%, transparent 42%);
  background-size: 0.18em 0.18em;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.025em var(--fg);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  max-width: 650px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.ghost { color: var(--fg); background: var(--soft); }

.panel, .split, .showcase {
  margin: 0 clamp(18px, 6vw, 86px) clamp(18px, 4vw, 64px);
  border: 1px solid var(--line);
  border-radius: clamp(24px, 4vw, 42px);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metrics div {
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
}
.metrics div:last-child { border-right: 0; }
.metric {
  display: block;
  font-size: clamp(36px, 7vw, 82px);
  font-weight: 700;
  letter-spacing: -0.08em;
}
.metrics p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(28px, 5vw, 70px);
}
h2 {
  font-size: clamp(36px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin-bottom: 0;
}
.cards { display: grid; gap: 14px; }
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(0,0,0,0.2);
}
.card h3 { font-size: 24px; margin-bottom: 8px; }
.card p { color: var(--muted); line-height: 1.55; margin-bottom: 0; }

.showcase {
  min-height: 420px;
  display: grid;
  place-items: end start;
  padding: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 60px);
}
.showcase-card { max-width: 760px; }
.showcase p:last-child { color: var(--muted); font-size: 18px; line-height: 1.55; }

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 70px);
}
.contact h2 { max-width: 780px; }
footer {
  color: var(--muted);
  padding: 38px clamp(18px, 6vw, 86px) 52px;
}

@media (max-width: 760px) {
  .links { display: none; }
  .metrics, .split { grid-template-columns: 1fr; }
  .metrics div { border-right: 0; border-bottom: 1px solid var(--line); }
  .metrics div:last-child { border-bottom: 0; }
  .contact { align-items: flex-start; flex-direction: column; }
}
