:root {
  --accent: #35b8ff;
  --accent-soft: rgba(53,184,255,0.18);
  --bg1: #02030a;
  --bg2: #050715;
  --bg3: #080b18;
  --card-bg: #121522;
  --border: #262b3d;
  --text-main: #f7f7f7;
  --text-muted: #a4adc3;
  --danger: #ff4b6b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #14182a 0%, #050715 40%, #02030a 100%) fixed no-repeat;
  min-height: 100vh;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }

.hero {
  padding-top: 5rem;
  text-align: center;
}

.logo {
  height: 96px;
  width: auto;
  display: block;
  margin: 0 auto 1.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  background: rgba(0,0,0,0.35);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.chip span.icon { font-size: 1rem; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  margin: 0 0 .5rem;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.25rem;
  margin: 0 0 1.2rem;
  color: var(--danger);
  font-weight: 600;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.btn-main {
  display: inline-block;
  background: var(--accent);
  color: #050812;
  padding: .9rem 2rem;
  border-radius: 999px;
  font-weight: 650;
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  transition: .12s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.btn-main:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.btn-ghost {
  display: inline-block;
  margin-left: .6rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted);
  font-size: .9rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 2.5rem;
  align-items: start;
}
@media(max-width:900px){ .two-col { grid-template-columns:1fr; } }

.card {
  background: radial-gradient(circle at top left, #20273b 0%, #141828 45%, #090b14 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.card h3 { margin-top: 0; }

.tag {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent);
  opacity: .85;
  margin-bottom: .4rem;
}

.step-list {
  list-style: none;
  padding: 0;
  counter-reset: step;
  margin-top: 1.4rem;
}
.step-list li {
  counter-increment: step;
  display: flex;
  gap: .85rem;
  margin-bottom: .9rem;
  color: var(--text-muted);
  font-size: .95rem;
}
.step-list li::before {
  content: counter(step);
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--accent);
  font-size: .78rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.feature-card p { color: var(--text-muted); font-size: .95rem; }

.mini-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .8rem;
}
.mini-pill {
  font-size: .75rem;
  padding: .15rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-muted);
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.faq-item:first-of-type { border-top: none; }
.faq-item h3 { margin-bottom: .3rem; }
.faq-item p { margin: 0; color: var(--text-muted); font-size: .95rem; }

.footer {
  text-align: center;
  color: var(--text-muted);
  padding: 2.4rem 0 2.8rem;
  border-top: 1px solid #191d2b;
  font-size: .86rem;
}

/* Privacy page specific styles */
.header {
  padding-top: 3rem;
  text-align: center;
  padding-bottom: 2rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted);
  font-size: .9rem;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: radial-gradient(circle at top left, #20273b 0%, #141828 45%, #090b14 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.content h1 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: .5rem;
}

.content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: .8rem;
}

.content p {
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content ul {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content li {
  margin-bottom: .4rem;
}

.content em {
  color: var(--text-muted);
  font-style: italic;
}

.content strong {
  color: var(--text-main);
  font-weight: 600;
}

.content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
