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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #3ea6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid #272727;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav a {
  margin-left: 24px;
  font-size: 14px;
  color: #aaa;
}

header nav a:hover {
  color: #fff;
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.logo img {
  width: 32px;
  height: 32px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero img {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  color: #aaa;
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  background: #3ea6ff;
  color: #0f0f0f;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* Features */
.features {
  padding: 60px 0;
}

.features h2,
.steps h2,
.privacy-callout h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #181818;
  border: 1px solid #272727;
  border-radius: 12px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #aaa;
}

/* Steps */
.steps {
  padding: 60px 0;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3ea6ff;
  color: #0f0f0f;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.steps-row h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.steps-row p {
  font-size: 14px;
  color: #aaa;
}

/* Privacy callout */
.privacy-callout {
  padding: 60px 0;
  text-align: center;
}

.privacy-callout p {
  color: #aaa;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* Footer */
footer {
  border-top: 1px solid #272727;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

footer a {
  color: #888;
  margin: 0 12px;
}

footer a:hover {
  color: #fff;
}

/* Privacy policy page */
.policy {
  padding: 60px 0;
}

.policy h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.policy .effective {
  color: #666;
  font-size: 14px;
  margin-bottom: 40px;
}

.policy h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: #3ea6ff;
}

.policy p,
.policy li {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 8px;
}

.policy ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy li {
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .features-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  header .container {
    flex-direction: column;
    gap: 12px;
  }

  header nav a {
    margin-left: 16px;
  }
}
