:root {
  --bg: #0b0d10;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #38bdf8;
  --radius: 10px;
  --maxw: 760px;
  --nav-height: 56px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.navbar .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.brand {
  font-weight: 600;
  font-size: 1rem;
}

/* Main wrapper */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 2rem) 1.25rem 3rem;
}

/* Typography */
h1,
h2 {
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

h1 {
  font-size: 2rem;
  margin-top: 2rem; /* extra margin for "Dear Stranger" */
}

h2 {
  font-size: 1.25rem;
}

p {
  margin: 0.75rem 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 1rem;
}

ul li a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

ul li a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.contact {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}
