/* GeoHiders content pages — shared stylesheet */
:root {
  --bg: #050912;
  --bg-card: #0e1625;
  --bg-card-alt: #0a1120;
  --border: #1a2540;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #00d4aa;
  --accent-dim: #06927a;
  --link: #5ee5c9;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

main { flex: 1; max-width: 760px; margin: 0 auto; padding: 48px 24px 64px; width: 100%; }

header.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(5, 9, 18, 0.95);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
header.site-header .inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
header.site-header a.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 900; font-size: 20px;
  color: var(--accent); text-decoration: none;
  letter-spacing: -0.02em;
}
header.site-header nav { display: flex; gap: 20px; flex-wrap: wrap; }
header.site-header nav a {
  color: var(--text-muted); text-decoration: none; font-size: 14px;
  transition: color 0.15s;
}
header.site-header nav a:hover { color: var(--accent); }

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}

h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin: 28px 0 10px;
}

p { margin-bottom: 16px; color: var(--text); }

ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 8px; color: var(--text); }

a { color: var(--link); transition: color 0.15s; }
a:hover { color: var(--accent); }

strong { color: #fff; font-weight: 600; }

code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  background: var(--bg-card);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.callout {
  background: rgba(0, 212, 170, 0.06);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 4px;
  color: var(--text);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: #fff; margin-top: 0; margin-bottom: 8px; font-size: 17px; }

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}
footer.site-footer .links {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 14px;
}
footer.site-footer .links a {
  color: var(--text-muted); text-decoration: none;
}
footer.site-footer .links a:hover { color: var(--accent); }
footer.site-footer .copy { color: var(--text-dim); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.05em; }

.cta-row {
  display: flex; gap: 12px; margin: 28px 0;
  flex-wrap: wrap;
}
.cta-row .btn {
  display: inline-block;
  background: var(--accent);
  color: #001a14;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  line-height: 1.2;
  transition: transform 0.1s, background 0.15s, border-color 0.15s, color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.cta-row .btn:hover { background: #00f5c4; border-color: #00f5c4; transform: translateY(-1px); }
.cta-row .btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.cta-row .btn.secondary:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.cta-row .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 600px) {
  main { padding: 32px 18px 48px; }
  header.site-header .inner { padding: 12px 18px; }
  header.site-header nav { gap: 14px; }
  header.site-header nav a { font-size: 13px; }
}
