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

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

:root {
  --bg: #06070f;
  --surface: #0d0e1a;
  --border: rgba(255,255,255,0.07);
  --text: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.42);
  --subtle: rgba(255,255,255,0.22);
  --accent: #e8637a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

html { background: var(--bg); }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  padding: 60px 24px 100px;
  line-height: 1.6;
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-brand span { color: var(--accent); }

.nav-back {
  font-size: 13px;
  color: var(--subtle);
  text-decoration: none;
  letter-spacing: 0.1px;
}

.nav-back:hover { color: var(--muted); }

/* Header */
.page-header { margin-bottom: 48px; }

.page-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 8px;
}

.page-date {
  font-size: 12px;
  color: var(--subtle);
  letter-spacing: 0.3px;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* Content */
.section { margin-bottom: 36px; }

.section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 16px;
}

p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

ul {
  list-style: none;
  margin-bottom: 12px;
}

ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

a { color: var(--text); text-decoration: underline; text-decoration-color: var(--border); }
a:hover { text-decoration-color: var(--muted); }

/* Support cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.65;
  margin-bottom: 0;
}

.contact-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}

.contact-link:hover { color: var(--text); border-color: var(--subtle); }

/* Footer */
.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  color: var(--subtle);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 11px;
  color: var(--subtle);
  text-decoration: none;
}

.footer-links a:hover { color: var(--muted); }
