:root {
  --bg: #0b0512;
  --bg-2: #17091f;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f6efff;
  --muted: #cdbfdd;
  --accent: #ffb347;
  --accent-2: #ff6b45;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #2a0d26 0%, #12071b 35%, #09040f 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 127, 80, 0.14), transparent 28%),
    radial-gradient(circle at 75% 10%, rgba(255, 179, 71, 0.12), transparent 25%),
    radial-gradient(circle at 50% 70%, rgba(199, 61, 255, 0.1), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10, 4, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0813;
  box-shadow: 0 10px 25px rgba(255, 140, 76, 0.35);
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav-links a:hover,
.footer-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.store-btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0813;
  box-shadow: 0 18px 40px rgba(255, 130, 60, 0.24);
}

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

.hero {
  padding: 70px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #f7d8aa;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1,
.section-heading h2,
.safety-panel h2,
.cta-box h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero h1 span,
.section-heading h2 {
  background: linear-gradient(135deg, #fff0cf, var(--accent), #ff7c57);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.section-heading p,
.safety-panel p,
.step-card p,
.feature-card p,
.testimonial-card p,
.cta-box p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  font-size: 1.08rem;
  max-width: 580px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats div,
.step-card,
.feature-card,
.testimonial-card,
.cta-box,
.safety-panel {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
}

.phone-frame {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  border-radius: 28px;
  min-height: 620px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(12, 5, 18, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff6ea;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.badge-1 { left: -12px; top: 12%; }
.badge-2 { right: -10px; bottom: 10%; }

.logo-strip { padding: 10px 0 18px; }
.logo-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  color: #f5d8b5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  opacity: 0.85;
}

.section { padding: 80px 0; }
.alt-section { padding-top: 30px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.left { margin-bottom: 0; }
.section-heading h2,
.safety-panel h2,
.cta-box h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.testimonial-card,
.step-card {
  padding: 26px;
  border-radius: var(--radius);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.22), rgba(255, 107, 69, 0.18));
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
}

.step-num {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffcb85;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.safety-panel,
.cta-box {
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

.safety-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.safety-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff0dc;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 14px;
  color: #ffd59a;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
}

.footer {
  padding: 20px 0 50px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { margin-bottom: 10px; }
.footer-links { display: flex; gap: 18px; color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid,
  .two-col,
  .safety-panel,
  .cta-box,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 44px; }
  .hero-card { order: -1; }
  .phone-frame { margin: 0 auto; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1180px); }
  .btn-nav { display: none; }
  .hero-stats,
  .logo-strip-inner { grid-template-columns: 1fr; }
  .phone-frame img { min-height: auto; }
  .badge-1, .badge-2 {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }
  .hero-card { display: grid; justify-items: center; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
