:root {
  --bg:        #09090c;
  --bg-card:   rgba(255,255,255,0.05);
  --bg-card2:  rgba(255,255,255,0.08);
  --border:    rgba(255,255,255,0.09);
  --text:      #ffffff;
  --text-sec:  rgba(255,255,255,0.45);
  --text-muted:rgba(255,255,255,0.25);
  --gold:      #FFD157;
  --gold-dim:  rgba(255,209,87,0.15);
  --green:     #4DE080;
  --red:       #FF7F7A;
  --radius:    18px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.8; }

/* ── Layout ── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,12,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-icon-img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 480px;
  margin: 0 auto 36px;
}
.badge-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
}
.badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.dot-green  { background: var(--green); }
.dot-gold   { background: var(--gold); }
.dot-white  { background: rgba(255,255,255,0.4); }

/* ── Section ── */
section { padding: 56px 0; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 32px;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}
.card-row + .card-row {
  border-top: 1px solid var(--border);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-green  { background: rgba(77,224,128,0.12); }
.icon-gold   { background: rgba(255,209,87,0.12); }
.icon-red    { background: rgba(255,127,122,0.12); }
.icon-blue   { background: rgba(100,160,255,0.12); }
.icon-purple { background: rgba(180,100,255,0.12); }
.icon-white  { background: rgba(255,255,255,0.07); }

.card-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.card-text span {
  font-size: 13px;
  color: var(--text-sec);
}

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.feature-card .icon { font-size: 24px; margin-bottom: 12px; display: block; }
.feature-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.5;
}

/* ── PRO box ── */
.pro-box {
  background: linear-gradient(135deg, rgba(255,209,87,0.08), rgba(255,140,30,0.05));
  border: 1px solid rgba(255,209,87,0.2);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 16px;
}
.pro-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gold);
}
.pro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
}
.pro-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 4px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-sec);
  flex-shrink: 0;
  margin-top: 1px;
}
.step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.step-body p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.5;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
footer .footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
}
footer .footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}
footer .footer-links a:hover { color: var(--text-sec); }

/* ── Privacy page ── */
.prose h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 14px;
  line-height: 1.7;
}
.prose ul {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.prose ul li {
  font-size: 15px;
  color: var(--text-sec);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.prose ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.prose strong { color: var(--text); font-weight: 600; }
.privacy-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.privacy-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  display: block;
}
.privacy-hero h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.privacy-hero p {
  font-size: 15px;
  color: var(--text-sec);
}
.highlight-box {
  background: rgba(77,224,128,0.06);
  border: 1px solid rgba(77,224,128,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.highlight-box p {
  font-size: 15px;
  color: rgba(77,224,128,0.85);
  margin: 0;
}
