:root {
  --bg-dark: #0b0f14;
  --bg-light: #121826;
  --accent: #6ae3ff;
  --accent-2: #7cffb2;
  --text-main: #ffffff;
  --text-muted: #b8c1cc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: rgba(11, 15, 20, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero {
  background: radial-gradient(circle at top, #162032, #0b0f14);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  padding: 4rem 0;
}

.feature-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
}

.audience {
  background: #0e1422;
  padding: 3rem 0;
  text-align: center;
}

.audience-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.acquire {
  padding: 4rem 0;
}

.acquire-box {
  background: linear-gradient(135deg, #101a2b, #0b0f14);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
}

.acquire-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.email {
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid #1a2233;
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************