:root {
  --bg: #0c0f14;
  --surface: #151a22;
  --text: #e8ecf1;
  --muted: #9aa3b2;
  --accent: #6eb5ff;
  --border: #2a3344;
  --max: 42rem;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1a2840 0%, var(--bg) 55%);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--surface);
  color: var(--text);
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

header {
  border-bottom: 1px solid var(--border);
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.brand a {
  color: var(--text);
  text-decoration: none;
}

.brand a:hover {
  color: var(--accent);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

nav a {
  font-size: 0.9375rem;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

p strong,
li strong {
  color: var(--text);
}

ul.policy-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

ul.policy-list li {
  margin-bottom: 0.35rem;
}

.lead {
  font-size: 1.0625rem;
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

footer a:hover {
  color: var(--accent);
}

.contact-box {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9375rem;
  color: var(--accent);
}

/* Home: buttons only */
body.page-home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-home .landing-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: 1.5rem;
}

.landing-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 20rem;
}

.landing-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

.landing-btn:hover {
  text-decoration: none;
  background: #1c2330;
  border-color: rgba(110, 181, 255, 0.35);
  color: var(--text);
}

.landing-btn:active {
  transform: scale(0.98);
}

.landing-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
