:root {
  --bg-0: #0a1118;
  --bg-1: #102436;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.15);
  --text: #f2f7fb;
  --muted: #bdd0de;
  --accent: #26d4a4;
  --accent-2: #4ea9ff;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(120% 120% at 15% 10%, #173f5f 0%, var(--bg-0) 55%, #070b12 100%);
  font-family: Manrope, "Segoe UI", sans-serif;
  min-height: 100%;
  overflow-x: hidden;
}

h1,
h2,
strong {
  font-family: Sora, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

main {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding-bottom: 96px;
}

.topbar {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(38, 212, 164, 0.8);
}

.hero {
  min-height: min(92vh, 860px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 34px 0 12px;
}

.eyebrow {
  color: #8ee8cb;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.hero h1 {
  font-size: clamp(2rem, 5.2vw, 4.35rem);
  line-height: 1.02;
  margin: 10px 0 16px;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 220ms ease, filter 220ms ease;
}

.store-btn img {
  display: block;
  width: 170px;
  height: auto;
}

.store-btn.large img {
  width: 210px;
}

.store-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 12px 20px rgba(78, 169, 255, 0.35));
}

.price-chip {
  background: linear-gradient(145deg, rgba(38, 212, 164, 0.2), rgba(78, 169, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  display: grid;
  gap: 2px;
  box-shadow: var(--shadow);
}

.price-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: #d9e8f2;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.phone {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  background: #071018;
}

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

.phone-a {
  width: min(330px, 64vw);
  height: min(670px, 78vh);
  right: 10%;
  top: 2%;
}

.phone-b {
  width: min(280px, 52vw);
  height: min(580px, 68vh);
  left: 0;
  bottom: 0;
}

.stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stats article {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
}

.stats p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery {
  margin-top: 52px;
}

.section-head h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

.grid-shot {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.grid-shot figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 340px;
}

.grid-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.grid-shot figure:hover img {
  transform: scale(1.05);
}

.cta {
  margin-top: 56px;
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(38, 212, 164, 0.12), rgba(78, 169, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta p {
  color: var(--muted);
  margin: 8px auto 18px;
  max-width: 60ch;
}

.suggestions {
  font-size: 0.95rem;
}

.suggestions a {
  color: #9fe9ff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 18px;
  background: rgba(7, 18, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #e7f7ff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 40;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: #33e1bb;
  animation: drift 14s ease-in-out infinite;
}

.orb-b {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -90px;
  background: #397bff;
  animation: drift 18s ease-in-out infinite reverse;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.14;
  z-index: -1;
}

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

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.floaty {
  animation: float 6.4s ease-in-out infinite;
}

.delay-float {
  animation-delay: -2.3s;
}

@keyframes drift {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -18px, 0); }
}

@keyframes float {
  0%,
  100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-0.7deg); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .phone-a {
    right: 6%;
    width: min(360px, 72vw);
  }

  .phone-b {
    left: 6%;
    width: min(300px, 62vw);
  }

  .grid-shot {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
    padding: 16px 0 6px;
  }

  .store-btn img {
    width: 150px;
  }

  .store-btn.large img {
    width: 190px;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-visual {
    min-height: 510px;
  }

  .phone-a {
    width: 62vw;
    height: 430px;
    right: 2%;
  }

  .phone-b {
    width: 50vw;
    height: 370px;
    left: 2%;
  }

  .grid-shot {
    grid-template-columns: 1fr;
  }
}
