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

:root {
  --red: #ff0000;
  --dark: #0f0f0f;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --text: #f1f1f1;
  --muted: #aaaaaa;
  --radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

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

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.nav-logo img { width: 28px; height: 28px; border-radius: 6px; }

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

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

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn:hover { opacity: 0.85; text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--red); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

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

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.card p { font-size: 0.88rem; color: var(--muted); }

/* INSTALL */
.install {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  text-align: center;
}

.install .section-title { margin-bottom: 1.5rem; }

.steps {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  counter-reset: steps;
}

.steps li {
  list-style: none;
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.steps li::before {
  content: counter(steps);
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

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

code {
  background: #2a2a2a;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.88em;
  font-family: "SF Mono", "Fira Code", monospace;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

/* PRIVACY PAGE */
.prose {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.prose h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.4rem; }
.prose .subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 3rem; }

.prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.prose p, .prose li {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.75;
}

.prose ul { padding-left: 1.4rem; margin-top: 0.5rem; }
.prose li { margin-bottom: 0.3rem; }

.prose .highlight {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  color: var(--text);
}
