/* noktu.app — brand-consistent static styles. Palette pulled from
   apps/patron-app/lib/theme.ts (1:1). No build step. */

:root {
  --ink: #0C0A09;
  --ink2: #15110E;
  --bone: #EDE7DA;
  --stone: #9E9587;
  --faint: rgba(237, 231, 218, 0.45);
  --coral: #FF6A4D;
  --ember: #FF9A4D;
  --gold: #F5C24B;
  --line: rgba(237, 231, 218, 0.12);
  --glow-text: #2A0F08;
  --glow-gradient: linear-gradient(120deg, #FF6A4D 0%, #FF9A4D 55%, #F5C24B 100%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 150ms ease, color 150ms ease;
}
a:hover { color: var(--coral); border-bottom-color: var(--coral); }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.wordmark {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wordmark.glow {
  background: var(--glow-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Landing (index.html) — one-screen hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
  text-align: center;
  background:
    radial-gradient(680px 320px at 50% 12%, rgba(255, 106, 77, 0.16), transparent 70%),
    var(--ink);
}
.hero-mark {
  font-size: clamp(48px, 9vw, 88px);
  margin-bottom: 18px;
}
.hero-tag {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 400;
  color: var(--bone);
  margin: 0 0 32px;
  max-width: 540px;
}
.appstore-soon {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--stone);
  letter-spacing: 0.04em;
  background: var(--ink2);
}
.hero-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 13px;
  color: var(--stone);
}
.hero-footer a { color: var(--stone); border-bottom-color: transparent; }
.hero-footer a:hover { color: var(--coral); }

/* ─── Content pages (privacy / terms / support) ─── */
.page-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.page-header .wordmark { font-size: 22px; }
.page-nav { display: flex; gap: 18px; font-size: 14px; }
.page-nav a { color: var(--stone); border-bottom-color: transparent; }
.page-nav a:hover { color: var(--coral); }

h1 {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 36px);
  margin: 32px 0 8px;
}
h2 {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 32px 0 8px;
  color: var(--bone);
}
h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 24px 0 6px;
  color: var(--bone);
}
p, li { color: var(--bone); }
.muted { color: var(--stone); font-size: 14px; }
.last-updated { color: var(--faint); font-size: 13px; margin-top: 4px; }

ul, ol { padding-left: 22px; }

/* The visible PLACEHOLDER token — designed to be impossible to miss in
   either a visual scan or a deploy. PM find-replaces these with the
   lawyer's final values BEFORE deploy. Any remaining 〔PLACEHOLDER:…〕
   token renders as bright coral on a dark band so a reviewer sees it
   instantly. */
.placeholder {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(255, 106, 77, 0.18);
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9em;
}

/* PM-TODO drop zone — extremely loud so the "paste draft here" instruction
   can't be missed. Also visible at deploy time if it survives. */
.pm-todo-banner {
  margin: 24px 0;
  padding: 16px 18px;
  border: 2px dashed var(--coral);
  background: rgba(255, 106, 77, 0.08);
  color: var(--coral);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.pm-todo-banner strong { color: var(--coral); }

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--stone);
}
.site-footer a { color: var(--stone); border-bottom-color: transparent; }
.site-footer a:hover { color: var(--coral); }

@media (max-width: 540px) {
  .wrap { padding: 24px 18px 48px; }
  .page-header { padding: 14px 18px; }
  .page-nav { gap: 14px; font-size: 13px; }
  .hero-footer { font-size: 12px; gap: 18px; }
}
