:root {
  --bg: #0b1018;
  --bg-soft: #0f1725;
  --text: #f5f7fb;
  --muted: #b7c0d4;
  --accent: #3de1ff;
  --accent-2: #ffb347;
  --accent-3: #5cff9d;
  --card: rgba(18, 24, 36, 0.78);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(2, 8, 23, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

button {
  font-family: "Space Grotesk", sans-serif;
  border: none;
  cursor: pointer;
}

.bg-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  z-index: -3;
}

.orb-1 {
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(61, 225, 255, 0.55), rgba(61, 225, 255, 0));
}

.orb-2 {
  bottom: -220px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.45), rgba(255, 179, 71, 0));
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  z-index: -4;
  opacity: 0.3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 24, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.primary {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #021019;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.ghost {
  padding: 12px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.accent {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: var(--card);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.stat {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  width: 320px;
  border-radius: 30px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.4));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.1);
}

.screen {
  background: #0c1422;
  border-radius: 20px;
  padding: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.screen-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--card);
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  width: 200px;
  box-shadow: var(--shadow);
}

.floating-card .tag {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.section-header {
  max-width: 640px;
}

.steps,
.grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card,
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.market-panel {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.market-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.market-callout {
  background: linear-gradient(135deg, rgba(61, 225, 255, 0.1), rgba(92, 255, 157, 0.1));
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.4px;
}

.chip.success {
  background: rgba(92, 255, 157, 0.15);
  color: var(--accent-3);
}

.pricing {
  background: radial-gradient(circle at top, rgba(61, 225, 255, 0.12), transparent 60%);
  border-radius: 32px;
}

.price {
  font-size: 2.4rem;
  color: var(--text);
  margin: 12px 0;
  font-weight: 700;
}

.price-card.highlight {
  border: 1px solid rgba(61, 225, 255, 0.4);
  background: linear-gradient(160deg, rgba(61, 225, 255, 0.18), rgba(15, 23, 37, 0.9));
}

.cta {
  text-align: center;
}

.cta-content {
  background: var(--card);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.cta-form input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  min-width: 240px;
}

.store-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.faq {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.faq details {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.legal-card {
  margin-top: 24px;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-list li {
  margin-bottom: 8px;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  margin-bottom: 8px;
}

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

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

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

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-visual {
    order: -1;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
  }

  .phone {
    width: 100%;
  }
}
.gallery {
  background: linear-gradient(180deg, rgba(11, 16, 24, 0.4), rgba(11, 16, 24, 0.9));
  border-radius: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.carousel {
  position: relative;
  margin-top: 32px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(11, 16, 24, 0.85);
  color: var(--text);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  z-index: 2;
}

.carousel-btn.prev {
  left: -6px;
}

.carousel-btn.next {
  right: -6px;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  border-color: transparent;
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .carousel-btn.prev {
    left: 6px;
  }

  .carousel-btn.next {
    right: 6px;
  }
}
