* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fefcf7;
  font-family: "Poppins", sans-serif;
  color: #1a1208;
  overflow-x: hidden;
}

/* ── Mandala background texture ── */
.mandala-bg {
  background-image:
    radial-gradient(
      circle at 50% 50%,
      rgba(245, 171, 4, 0.06) 0%,
      transparent 70%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='58' fill='none' stroke='%23F5AB04' stroke-width='0.3' stroke-dasharray='3 6' opacity='0.15'/%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='%23F5AB04' stroke-width='0.3' stroke-dasharray='2 8' opacity='0.1'/%3E%3C/svg%3E");
}

/* ── Om symbol watermark ── */
.om-watermark::before {
  content: "ॐ";
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 320px;
  font-weight: 300;
  color: rgba(245, 171, 4, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ── Gold gradient text ── */
.gold-text {
  background: linear-gradient(135deg, #d4920a 0%, #f5ab04 50%, #e8c048 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow card ── */
.glow-card {
  transition: all 0.4s ease;
}

.glow-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(245, 171, 4, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ── Bead string animation ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.float-anim-slow {
  animation: float 8s ease-in-out infinite 1s;
}

/* ── Section fade-in ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay-1 {
  animation: fadeUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.fade-up-delay-2 {
  animation: fadeUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.fade-up-delay-3 {
  animation: fadeUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

/* ── Gold shimmer button ── */
.btn-gold {
  position: relative;
  background: linear-gradient(135deg, #e8a200 0%, #f5ab04 50%, #ffc83d 100%);
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-gold:hover::after {
  left: 120%;
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(245, 171, 4, 0.45);
  transform: translateY(-2px);
}

/* ── Divider dots ── */
.dot-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.dot-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5ab04;
  opacity: 0.4;
}

.dot-divider span:nth-child(3) {
  opacity: 1;
  width: 8px;
  height: 8px;
}

/* ── Mode card dark ── */
.mode-card-dark {
  background: linear-gradient(145deg, #1a1208 0%, #0d0a04 100%);
  border: 1px solid rgba(245, 171, 4, 0.2);
}

/* ── Noise overlay ── */
.noise::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
}

/* ── Nav ── */
nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Responsive phone mockup ── */
.phone-mockup {
  background: linear-gradient(145deg, #fff8f0, #fff);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(245, 171, 4, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ── Feature icon circle ── */
.icon-circle {
  background: linear-gradient(135deg, #fff8e7, #fdd96a33);
  border: 1px solid rgba(245, 171, 4, 0.25);
}

/* ── Streak badge ── */
@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 171, 4, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(245, 171, 4, 0);
  }
}

.pulse-badge {
  animation: pulse-gold 2s ease infinite;
}

/* ── Testimonial card ── */
.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(245, 171, 4, 0.2);
  position: absolute;
  top: -10px;
  left: 16px;
}

/* ── Scroll indicator ── */
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.scroll-indicator {
  animation: bounce-down 1.5s ease infinite;
}

/* ── Stats counter ── */
.stat-box {
  border-left: 3px solid #f5ab04;
}
