@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #F6F8F7;
  --card: #FFFFFF;
  --border: #ECF1EE;
  --text: #101E1B;
  --muted: #5E6E68;
  --ink: #0B1F1B;
  --ink-deep: #081714;
  --ink-border: #1B3A32;
  --digit-green: #7FE8C9;
  --gold: #B7924F;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}
a { color: #0E6E5A; }

header {
  background: linear-gradient(155deg, var(--ink), var(--ink-deep) 65%);
  border-bottom: 1px solid var(--ink-border);
}
.led-strip {
  height: 3px;
  background: linear-gradient(90deg, var(--digit-green), var(--gold), var(--gold));
}
.header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px;
}
.header-inner a.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
}
.brand-badge {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0E6E5A, #0A4A3C);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  color: #fff;
  margin: 0 0 6px 0;
}
header p.sub {
  color: rgba(237,245,241,0.6);
  font-size: 13px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 1px 2px rgba(16,30,27,0.04), 0 18px 34px -22px rgba(16,30,27,0.16);
}
section { margin-bottom: 28px; }
section:last-child { margin-bottom: 0; }
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin: 0 0 10px 0;
}
p { margin: 0 0 12px 0; color: var(--muted); font-size: 14.5px; }
ul { margin: 0 0 12px 0; padding-left: 20px; color: var(--muted); font-size: 14.5px; }
li { margin-bottom: 6px; }
.contact-list a {
  font-weight: 600;
}
.updated {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 24px;
}
.note {
  background: #FBEEDD;
  border: 1px solid #F0DCB8;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #7A5218;
  margin-bottom: 28px;
}

footer {
  background: linear-gradient(160deg, var(--ink), var(--ink-deep));
  border-top: 1px solid var(--ink-border);
  padding: 24px;
  text-align: center;
}
footer p {
  color: rgba(237,245,241,0.5);
  font-size: 12.5px;
  margin: 0;
}
footer a { color: var(--digit-green); text-decoration: none; }
