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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #7c3aed, transparent 30%),
    radial-gradient(circle at bottom right, #2563eb, transparent 30%),
    linear-gradient(135deg, #0f172a, #111827);
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; }

/* ── NAVBAR ── */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.logo { display: flex; align-items: center; }

.logo-img {
  height: 68px;
  width: auto;
}

.btn-nav {
  padding: 11px 24px;
  border-radius: 12px;
  background: white;
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.18);
}

/* ── HERO ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 130px 60px 80px;
  gap: 60px;
}

.hero-content { max-width: 580px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.25);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(59,130,246,0.4);
}

.arrow { transition: transform 0.25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── HERO VISUAL ── */

.hero-visual {
  position: relative;
  width: 420px;
  flex-shrink: 0;
  height: 360px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.glow-1 { width: 260px; height: 260px; background: #7c3aed; top: -40px; right: 20px; }
.glow-2 { width: 200px; height: 200px; background: #2563eb; bottom: 0; left: 40px; }

.card-preview {
  position: absolute;
  width: 220px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
  top: 30px; right: 0;
}

.card-preview-2 {
  top: 140px; right: 180px;
  animation-delay: -2s;
  animation-duration: 5s;
}

.card-img-placeholder {
  width: 100%; height: 120px;
  background: linear-gradient(135deg, rgba(96,165,250,0.3), rgba(192,132,252,0.3));
}

.card-info { padding: 14px; display: flex; flex-direction: column; gap: 8px; }

.card-line { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.15); }
.card-line.long  { width: 75%; }
.card-line.short { width: 50%; }

.card-price { font-weight: 700; font-size: 15px; color: #93c5fd; margin-top: 4px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── STATS ── */

.stats {
  padding: 0 60px 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ── HOW IT WORKS ── */

.how {
  padding: 80px 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 24px;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.step-divider {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96,165,250,0.4), rgba(192,132,252,0.4));
  margin-top: 44px;
}

/* ── FEATURES ── */

.features { padding: 20px 60px 80px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 36px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #93c5fd;
}

.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.65; }

/* ── BETA SECTION ── */

.beta-section {
  padding: 40px 60px 100px;
  display: flex;
  justify-content: center;
}

.beta-card {
  max-width: 580px;
  width: 100%;
  text-align: center;
  padding: 60px 52px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.beta-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(124,58,237,0.2));
  border: 1px solid rgba(96,165,250,0.25);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.beta-card h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.beta-card > p { color: rgba(255,255,255,0.58); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }

.beta-form { display: flex; gap: 12px; }

.beta-form input {
  flex: 1;
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
  font-family: inherit;
}

.beta-form input::placeholder { color: rgba(255,255,255,0.38); }

.beta-form input:focus {
  border-color: rgba(96,165,250,0.6);
  box-shadow: 0 0 0 4px rgba(96,165,250,0.12);
}

.beta-form .btn-primary { flex-shrink: 0; padding: 0 28px; height: 52px; font-size: 15px; }

.form-note { margin-top: 16px; font-size: 14px; color: #86efac; min-height: 20px; }

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── FOOTER ── */

.footer {
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.footer-logo { font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .navbar { padding: 0 24px; }

  .hero { flex-direction: column; padding: 120px 24px 60px; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-sub br { display: none; }

  .stats { padding: 0 24px 60px; }
  .stats-grid { grid-template-columns: 1fr; }

  .how { padding: 60px 24px; }
  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step-divider { width: 1px; height: 32px; margin: 0; }

  .features { padding: 20px 24px 60px; }
  .features-grid { grid-template-columns: 1fr; }

  .beta-section { padding: 20px 24px 80px; }
  .beta-card { padding: 40px 28px; }
  .beta-form { flex-direction: column; }
  .beta-form input,
  .beta-form .btn-primary { height: 60px; font-size: 17px; }

  .footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .logo-img { height: 52px; }
  .hero h1 { font-size: 38px; }
}
