/* EGON — egonapp.com. Brand: noir #0B0B0B · lime #CBFF47 · offWhite #F5F5F5.
   Kanit (display) / system sans (body). */

:root {
  --noir: #0B0B0B;
  --surface: #131921;
  --lime: #CBFF47;
  --off: #F5F5F5;
  --muted: #9aa3ad;
}

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

body {
  background: var(--noir);
  color: var(--off);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wordmark {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.5px;
  color: var(--lime);
  text-decoration: none;
  display: inline-block;
}
.wordmark .dot { color: var(--off); }

h1 {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(34px, 7vw, 56px);
  line-height: 1.05;
  margin: 40px 0 12px;
}
h1 .hl { color: var(--lime); }

h2 {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 36px 0 10px;
  color: var(--off);
}

p, li { color: var(--muted); font-size: 16px; }
p strong, li strong { color: var(--off); font-weight: 600; }
ul { padding-left: 22px; margin: 10px 0; }
li { margin: 6px 0; }

a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

.subtitle { font-size: 18px; color: var(--muted); max-width: 34em; }

.badge {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 22px;
  border: 1px solid rgba(203, 255, 71, 0.4);
  border-radius: 999px;
  color: var(--off);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 14px 0;
}

.meta { font-size: 13px; color: var(--muted); margin-top: 6px; }

footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
