/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:      #0d0d0d;
  --fg:      #f0ede8;
  --accent:  #c8a97e;
  --muted:   #6b6560;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Oxygen', sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Landing layout ────────────────────────────────────── */
.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.content {
  max-width: 560px;
  text-align: left;
}

/* ── Typography ────────────────────────────────────────── */
.content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
}

.content h1 span.accent {
  color: var(--accent);
}

.content p {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.content a:hover {
  border-bottom-color: var(--accent);
}

/* ── Subtle cursor blink ───────────────────────────────── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1.1s step-start infinite;
}
