/* Matches tailwind.config.js: terminal.*, action, stone, coral */
:root {
  --bg: #050505;
  --surface-kit: #000000;
  --surface: #1a1a1a;
  --surface-elevated: #18181b;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: #3f3f46;
  --text: #ffffff;
  --text-muted: #8e8e93;
  --text-placeholder: #71717a;
  --accent: #007aff;
  --accent-hover: #3395ff;
  --accent-pressed: #0062cc;
  --accent-glow: rgba(0, 122, 255, 0.18);
  --accent-subtle: rgba(0, 122, 255, 0.2);
  --danger: #ff453a;
  --coral: #ff6b6b;
  --mono: 'Space Mono', monospace;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo a {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo a:hover { text-decoration: none; }
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--accent); text-decoration: none; }
nav ul a.active { color: var(--accent); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  border: 1px solid rgba(0, 122, 255, 0.45);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  background: var(--accent-subtle);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

h1 .highlight {
  background: linear-gradient(135deg, #007aff, #40a0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
}

.btn-primary:active {
  background: var(--accent-pressed);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  text-decoration: none;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features h2 {
  font-size: 1rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 3rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 transparent;
}

.feature-card:hover {
  border-color: rgba(0, 122, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 122, 255, 0.12);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HELPLINE */
.helpline {
  background: var(--surface-kit);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.helpline p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.helpline strong { color: var(--text); }

.helpline-numbers {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.helpline-numbers a {
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--accent);
}

/* LEGAL PAGES */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.legal h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal .effective-date {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.legal h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal p, .legal li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal li { margin-bottom: 0.4rem; }

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

footer .footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* MOBILE */
@media (max-width: 640px) {
  nav ul { gap: 1rem; }
  nav ul a { font-size: 0.8rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .features { padding: 4rem 1.5rem; }
  .legal { padding: 6rem 1.5rem 3rem; }
  .helpline-numbers { flex-direction: column; gap: 0.75rem; }
}
