/* Watchr — "Last Light" brand system
   Espresso ground · Amber brand · Steel support · Copper rare accent */

:root {
  --espresso: #2A1A10;
  --amber:    #EBA317;
  --steel:    #4A5B66;
  --cream:    #F7ECD6;
  --paper:    #FBF4E6;
  --copper:   #B5461F;

  --bg:      var(--paper);
  --surface: var(--cream);
  --ink:     var(--espresso);
  --muted:   var(--steel);
  --brand:   var(--amber);
  --accent:  var(--copper);
  --line:    rgba(42, 26, 16, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:      var(--espresso);
    --surface: #38251A;
    --ink:     var(--cream);
    --muted:   #A6B3BC;
    --line:    rgba(247, 236, 214, 0.14);
    --accent:  #D96B3C;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 940px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img, .brand .mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand);
  display: grid; place-items: center;
  font-weight: 700; color: var(--espresso); font-size: 1.25rem;
}
.brand span { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
nav { display: flex; gap: 22px; }
nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: var(--brand); }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; text-align: center; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand);
  font-family: Georgia, 'Times New Roman', serif;
}
.hero p.lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
}
.cta {
  display: inline-block;
  background: var(--brand);
  color: var(--espresso);
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform .12s ease, filter .12s ease;
}
.cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.cta-note { display: block; margin-top: 14px; font-size: .9rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 44px 0 72px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.step .num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--brand);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 10px;
  display: block;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Pitch band ---------- */
.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 68px 0;
}
.band h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.band p { color: var(--muted); max-width: 660px; font-size: 1.06rem; }
.band .accent { color: var(--accent); font-weight: 600; }

/* ---------- Legal / prose pages ---------- */
.prose { padding: 56px 0 88px; max-width: 720px; }
.prose h1 { font-size: 2.1rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.prose .updated {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: .85rem; color: var(--muted); margin-bottom: 36px;
}
.prose h2 {
  font-size: 1.25rem;
  margin: 34px 0 10px;
  letter-spacing: -0.01em;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { border-top: none; padding-top: 0; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 22px; }
.prose a { color: var(--brand); }

/* ---------- Footer ---------- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.foot {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--brand); }
.foot nav { gap: 18px; }
