:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: rgba(11, 24, 42, 0.92);
  --text: #f3f7ff;
  --muted: #93a7c4;
  --accent: #24d2ff;
  --accent-2: #8b5cf6;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(36, 210, 255, 0.18), transparent 30%), var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 6px;
  border: 1px solid var(--border);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(36, 210, 255, 0.16);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
  min-height: 46px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 24px rgba(36, 210, 255, 0.22);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stats li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats strong {
  display: block;
  font-size: 1.15rem;
  color: white;
}

.stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.87rem;
  color: var(--muted);
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: white;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.benefit-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.benefit-card h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .page { padding: 16px; }
  .hero-card { grid-template-columns: 1fr; padding: 20px; }
  .benefits { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .brand-row { flex-direction: column; align-items: flex-start; }
  .brand-logo { width: 58px; height: 58px; }
}
