/* BASE */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: #07070f;
  color: #ede8e0;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(7,7,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 999;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #c9a96e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  transition: color 0.3s;
}

.nav-links a:hover { color: #c9a96e; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 130px 60px 80px;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(120,50,200,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(30,100,200,0.18) 0%, transparent 55%),
    #07070f;
  flex-wrap: wrap;
}

/* HERO LEFT */
.hero-left {
  max-width: 460px;
}

.hero-tag {
  display: inline-block;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: #c9a96e;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.05rem;
  color: #999;
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-main {
  background: linear-gradient(135deg, #8e44ad 0%, #2980b9 100%);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 28px rgba(142,68,173,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(142,68,173,0.65);
}

.btn-ghost {
  color: #c9a96e;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(201,169,110,0.35);
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(201,169,110,0.1);
  border-color: #c9a96e;
}

/* APP SHOWCASE */
.showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.main-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.slide-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #c9a96e;
  text-align: center;
  max-width: 300px;
  line-height: 1.5;
  min-height: 50px;
  transition: opacity 0.4s;
}

.main-img {
  width: 280px;
  border-radius: 40px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.07),
    0 24px 70px rgba(0,0,0,0.7),
    0 0 60px rgba(142,68,173,0.18);
  transition: opacity 0.4s, transform 0.4s;
}

/* THUMBNAILS */
.thumb-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 340px;
}

.thumb {
  width: 52px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.thumb:hover { opacity: 0.75; }

.thumb.active {
  opacity: 1;
  border-color: #c9a96e;
  box-shadow: 0 0 12px rgba(201,169,110,0.5);
}

/* ARROWS & DOTS */
.arrow-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.arrow {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover { background: rgba(142,68,173,0.5); }

.dots-row {
  display: flex;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #c9a96e;
  width: 22px;
  border-radius: 4px;
}

/* SECTIONS */
.section {
  padding: 110px 48px;
  text-align: center;
}

.dark { background: #0b0b16; }
.darker { background: #07070f; }

.section-head { margin-bottom: 60px; }

.section-head h2,
.download-sec h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.section-head p,
.download-sec > p {
  color: #777;
  font-size: 1rem;
}

/* CHAKRA GRID */
.chakra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.ccard {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--c);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ccard:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.cnum {
  font-size: 0.75rem;
  color: var(--c);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.ccard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  margin: 8px 0 5px;
}

.ccard em {
  font-size: 0.82rem;
  color: var(--c);
  display: block;
  margin-bottom: 14px;
  font-style: italic;
}

.ccard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ccard ul li {
  font-size: 0.87rem;
  color: #888;
  padding-left: 14px;
  position: relative;
}

.ccard ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c);
}

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 34px 24px;
  transition: transform 0.3s;
}

.feat:hover { transform: translateY(-5px); }

.feat > *:first-child { font-size: 2.2rem; display: block; margin-bottom: 14px; }

.feat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 9px;
}

.feat p { color: #777; font-size: 0.88rem; line-height: 1.6; }

/* DOWNLOAD */
.download-sec {
  background:
    radial-gradient(ellipse at center, rgba(100,50,180,0.28) 0%, transparent 65%),
    #07070f;
}

.download-sec p { margin: 14px 0 42px; }

.dl-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dl-btn {
  padding: 17px 44px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dl-btn.apple {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 24px rgba(255,255,255,0.18);
}

.dl-btn.google {
  background: linear-gradient(135deg, #34a853, #4285f4);
  color: #fff;
  box-shadow: 0 4px 24px rgba(66,133,244,0.3);
}

.dl-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

/* FOOTER */
footer {
  padding: 28px;
  text-align: center;
  background: #030306;
  color: #444;
  font-size: 0.83rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .hero {
    flex-direction: column;
    padding: 110px 24px 60px;
    gap: 50px;
    text-align: center;
  }

  .hero-btns { justify-content: center; }

  .navbar { padding: 14px 22px; }
  .nav-links { gap: 18px; }

  .section { padding: 70px 22px; }

  .main-img { width: 240px; }
}