:root {
  --bg: #0a1218;
  --ink: #e8f1f7;
  --muted: #8fa6b8;
  --accent: #6ad4f0;
  --accent-ink: #041018;
  --line: #243442;
  --font-d: "Fraunces", Georgia, serif;
  --font-b: "Sora", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--bg);
}
.atmosphere {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 480px at 8% -10%, #163048 0%, transparent 55%),
    radial-gradient(700px 400px at 95% 0%, rgba(106, 212, 240, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, #0a1218, #101c26 45%, #081017);
}
.top, .hero, .listings, .page, footer {
  max-width: 980px; margin: 0 auto; padding: 1.25rem 1.4rem;
}
.top { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: var(--font-d); font-weight: 700; color: var(--ink); text-decoration: none; font-size: 1.15rem; }
nav { display: flex; gap: 1rem; align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
nav a.cta { background: var(--accent); color: var(--accent-ink); padding: 0.4rem 0.75rem; font-weight: 600; }
.hero { min-height: calc(100vh - 5rem); display: flex; flex-direction: column; justify-content: center; }
.brand-mark { font-family: var(--font-d); font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 700; margin: 0 0 0.6rem; line-height: 1.05; }
.hero h1, .page h1 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; max-width: 34ch; margin: 0 0 0.8rem; }
.lede { color: var(--muted); max-width: 40ch; line-height: 1.55; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.btn { display: inline-flex; text-decoration: none; padding: 0.65rem 1.05rem; font-weight: 600; }
.btn.primary { background: var(--accent); color: var(--accent-ink); }
.btn.ghost { border: 1px solid var(--line); color: var(--ink); }
.listings h2, .page h2 { font-family: var(--font-d); }
.grid { display: grid; gap: 0.85rem; }
.item { border-left: 3px solid var(--accent); padding: 0.85rem 1rem; background: rgba(0,0,0,0.25); }
.item a { color: var(--accent); }
.meta { color: var(--muted); font-size: 0.85rem; }
form { display: grid; gap: 0.75rem; max-width: 420px; }
input, select, textarea, button {
  font: inherit; padding: 0.65rem 0.75rem; border: 1px solid var(--line);
  background: rgba(0,0,0,0.35); color: var(--ink);
}
button { background: var(--accent); color: var(--accent-ink); font-weight: 600; border: 0; cursor: pointer; }
footer { display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; }
footer a { color: var(--muted); }
@media (max-width: 700px) {
  nav a:not(.cta) { display: none; }
}

