:root {
  color-scheme: dark;
  --background: #101310;
  --surface: #151915;
  --text: #eeefe9;
  --muted: #a0a79c;
  --accent: #d1ee9d;
  --border: #30372e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--background); color: var(--text); }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--background); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.site-shell { width: min(1120px, calc(100% - 96px)); min-height: 100svh; margin-inline: auto; display: flex; flex-direction: column; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 105px; border-bottom: 1px solid var(--border); }
.wordmark { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 650; letter-spacing: .09em; }
.brand-mark { width: 32px; height: 32px; color: var(--accent); }
.header-note, .section-meta, .eyebrow, .entry-number, .coming-soon, .site-footer { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.header-note { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
main { flex: 1; }
.intro { position: relative; padding: 92px 0 100px; isolation: isolate; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--accent); font-size: 12px; letter-spacing: .12em; margin: 0 0 28px; }
.eyebrow > span { font-size: 20px; }
h1 { margin: 0; font-size: clamp(54px, 7.8vw, 96px); line-height: 1.04; letter-spacing: -.065em; font-weight: 550; }
.title-dot { color: var(--accent); }
.tagline { margin: 26px 0 0; font-size: clamp(19px, 2.3vw, 27px); letter-spacing: -.025em; line-height: 1.4; }
.intro-copy { color: var(--muted); font-size: 16px; line-height: 1.8; margin: 19px 0 0; }
.horizon { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.horizon::before { content: ""; position: absolute; width: 65%; height: 80%; right: -13%; bottom: 0; background: radial-gradient(ellipse at 60% 100%, #b8de7220, transparent 65%); }
.horizon::after { content: ""; position: absolute; height: 1px; width: 100%; bottom: 40px; background: linear-gradient(90deg, transparent 5%, #52613a 70%, #d1ee9d 89%, transparent); }
.horizon-marker { position: absolute; right: 10%; bottom: 31px; z-index: 1; color: var(--accent); font: 18px/1 monospace; }
.destinations { padding: 4px 0 65px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.section-heading h2 { font-size: 14px; font-weight: 500; margin: 0; }
.section-meta { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.entry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.entry { min-width: 0; display: flex; flex-direction: column; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 5px; cursor: default; transition: border-color 180ms ease, background-color 180ms ease; }
.entry-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.entry-top svg { width: 25px; height: 25px; stroke: var(--accent); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.entry-number { font-size: 12px; color: var(--muted); }
.entry h3 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -.025em; }
.entry p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 10px 0 28px; }
.coming-soon { display: flex; align-items: center; gap: 7px; margin-top: auto; color: var(--muted); font-size: 12px; }
.coming-soon > span { width: 5px; height: 5px; border: 1px solid currentColor; border-radius: 50%; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-note { display: flex; align-items: center; gap: 26px; }
.footer-spark { color: var(--accent); font-size: 18px; }
.skip-link { position: absolute; top: 12px; left: 12px; z-index: 5; padding: 12px 16px; background: var(--accent); color: var(--background); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

@media (hover: hover) {
  .entry:hover { border-color: #627451; background: #1a2018; }
}
@media (max-width: 900px) {
  .site-shell { width: calc(100% - 64px); }
  .entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro { padding-top: 76px; }
}
@media (max-width: 540px) {
  .site-shell { width: calc(100% - 40px); }
  .site-header { min-height: 82px; }
  .header-note { font-size: 0; gap: 0; }
  .intro { padding: 66px 0 87px; }
  h1 { font-size: clamp(44px, 12vw, 64px); }
  .eyebrow { font-size: 12px; letter-spacing: .075em; margin-bottom: 23px; }
  .tagline { font-size: 19px; }
  .intro-copy { font-size: 16px; max-width: 34ch; }
  .desktop-break { display: none; }
  .entry-grid { grid-template-columns: 1fr; gap: 12px; }
  .entry { padding: 23px; }
  .entry-top { margin-bottom: 22px; }
  .entry p { margin-bottom: 22px; }
  .destinations { padding-bottom: 42px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 10px; padding-block: 22px; }
  .footer-note { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
