:root {
  --bg: #0c1118;
  --bg-2: #101725;
  --card: #141c2c;
  --accent: #4fd1c5;
  --accent-2: #8b5cf6;
  --text: #e6eef7;
  --muted: #9aa7bd;
  --border: rgba(255, 255, 255, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(79, 209, 197, 0.08), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.12), transparent 25%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; }
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(12, 17, 24, 0.92);
  border-bottom: 1px solid var(--border);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(79, 209, 197, 0.35);
}
.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}
nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.section {
  padding: 32px 0 36px;
}
.section.alt {
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.85) 0%, rgba(14, 17, 23, 0.9) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero {
  padding: 70px 0 40px;
}
.hero .inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 1120px;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 700;
}
h1 { font-size: 30px; line-height: 1.2; }
.lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
}
.store-badge img {
  height: 50px;
  width: auto;
  display: block;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #0e1117;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(79, 209, 197, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
  background: rgba(79, 209, 197, 0.12);
  margin-bottom: 12px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 20px;
  overflow: visible;
  box-shadow: none;
  width: 100%;
  max-width: 1280px;
}
.hero-badge-image {
  position: absolute;
  top: 18px; 
  transform: translateX(-50%);
  width: 60px;
  max-width: 36%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  max-width: 1280px;
  display: block;
  height: auto;
  transform: none;
  border-radius: 24px;
  box-shadow: none;
}
.section-title {
  margin: 0 0 10px;
  font-size: 24px;
}
.section-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 12px 0;
}
.card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
}
.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.18);
}
.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 8px 0 12px;
}
.screen-card {
  background: transparent;
  border-radius: 18px;
  border: none;
  overflow: visible;
  box-shadow: none;
  position: relative;
}
.screen-card img {
  display: block;
  width: 110%;
  height: auto;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  transform: translateX(-4%);
}
.screen-label {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted);
  border-top: none;
}
.badge-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
}
.badge-overlay img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}
.hero-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
}
.hero-badges img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 0 12px;
}
.badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.badge img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.badge span {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  padding: 0 0 12px;
}
.feature-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.18);
  margin-top: 6px;
  flex-shrink: 0;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.feature-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.legal-block {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.legal {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.legal-hero {
  background: radial-gradient(circle at 30% 20%, rgba(79, 209, 197, 0.12), transparent 45%), var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}
.legal-hero img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(79, 209, 197, 0.35);
}
.legal-hero h3 {
  margin: 0;
  font-size: 18px;
}
footer {
  padding: 22px 20px 30px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
@media (max-width: 640px) {
  header .container { flex-direction: column; gap: 12px; }
  nav { justify-content: center; }
  nav a { margin-left: 0; }
  .cta-row { width: 100%; }
  footer { flex-direction: column; }
}
