/* getstarkin.com: the app's editorial look. Dark by default, light when the system asks for it. */
@font-face { font-family: "Instrument Serif"; src: url("/fonts/instrument_serif_regular.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Instrument Serif"; font-style: italic; src: url("/fonts/instrument_serif_italic.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter_variable.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root { color-scheme: dark light; --ink: #0E0E0C; --paper: #F4F1EA; --muted: #8C877E; --hair: #2A2926; --gold: #C9A45C; }
@media (prefers-color-scheme: light) {
  :root { --ink: #F4F1EA; --paper: #0E0E0C; --muted: #6B6760; --hair: #D6D0C4; --gold: #9C7A3C; }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; min-height: 100vh; background: var(--ink); color: var(--paper); font: 16px/1.6 Inter, system-ui, sans-serif; }
a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

.wrap { max-width: 560px; margin: 0 auto; padding: 32px 24px 64px; }
.center { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.narrow { max-width: 420px; }

header.top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px; }
.mark { font-family: "Instrument Serif", Georgia, serif; font-size: 24px; text-decoration: none; letter-spacing: .01em; }
nav.top a { color: var(--muted); text-decoration: none; font-size: 14px; margin-left: 20px; }
nav.top a:hover { color: var(--paper); }

.star { display: block; width: 56px; height: 56px; margin: 8px 0 32px; color: var(--paper); }
.label { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: var(--muted); margin: 0 0 12px; }
h1 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: clamp(40px, 9vw, 56px); line-height: 1.05; margin: 0 0 20px; }
h2 { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
     margin: 48px 0 12px; padding-top: 16px; border-top: 1px solid var(--hair); }
h3 { font-size: 16px; font-weight: 500; margin: 24px 0 4px; }
p, li { color: var(--paper); }
p.lede { color: var(--muted); font-size: 18px; margin: 0 0 40px; }
.muted { color: var(--muted); }
ul, ol { padding-left: 20px; }
li { margin-bottom: 6px; }

.btn { display: block; text-align: center; text-decoration: none; height: 52px; line-height: 52px; border-radius: 2px;
       background: var(--paper); color: var(--ink); font-weight: 500; margin-bottom: 12px; }
.btn.secondary { background: transparent; color: var(--paper); border: 1px solid var(--hair); }
.btn:hover { opacity: .88; }

.features { list-style: none; padding: 0; margin: 0 0 40px; border-top: 1px solid var(--hair); }
.features li { padding: 16px 0; border-bottom: 1px solid var(--hair); margin: 0; }
.features strong { font-weight: 500; display: block; }
.features span { color: var(--muted); font-size: 14px; }

footer.bottom { margin-top: 56px; padding-top: 16px; border-top: 1px solid var(--hair); font-size: 12px; color: var(--muted); }
footer.bottom a { color: var(--muted); margin-right: 16px; }
.gap { margin-top: 48px; }
footer.bottom p { color: var(--muted); margin: 8px 0 0; }
