:root {
  --bg: #0e0e0e;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #ffffff;
}

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

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.container.narrow {
  max-width: 720px;
}

/* Splash */
.splash {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.splash h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.1em;
}

.tagline {
  margin: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.cta:hover {
  background: var(--fg);
  color: var(--bg);
}

/* Home */
.home {
  background: #111;
}

.home h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.home p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.services {
  list-style: none;
  margin: 2rem 0;
}

.services li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}

.status {
  margin-top: 2rem;
  font-weight: 500;
}

.contact a {
  color: var(--fg);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}