*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lexend', sans-serif;
  background: #20242b;
  color: #edf1f4;
  overflow: hidden;
  height: 100vh;
}

:root {
  --accent: #ffbf46;
  --dark: #20242b;
  --gray: #70747f;
  --light: #edf1f4;
  --glass-bg: rgba(237, 241, 244, 0.04);
  --glass-border: rgba(237, 241, 244, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.25);
}

/* ===== SCROLL CONTAINER ===== */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* ===== SLIDES ===== */
.slide {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 24px;
  overflow: hidden;
}

.slide-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== ANIMATIONS (initial hidden state) ===== */
.anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.active .anim       { opacity: 1; transform: translateY(0); }
.slide.active .anim-d1    { transition-delay: 0.08s; }
.slide.active .anim-d2    { transition-delay: 0.18s; }
.slide.active .anim-d3    { transition-delay: 0.28s; }
.slide.active .anim-d4    { transition-delay: 0.38s; }
.slide.active .anim-d5    { transition-delay: 0.48s; }
.slide.active .anim-d6    { transition-delay: 0.58s; }
.slide.active .anim-d7    { transition-delay: 0.68s; }
.slide.active .anim-d8    { transition-delay: 0.78s; }
.slide.active .anim-d9    { transition-delay: 0.88s; }
.slide.active .anim-d10   { transition-delay: 0.98s; }
.slide.active .anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.active .anim-scale { opacity: 1; transform: scale(1); }

/* ===== TABLER ICONS ===== */
.ti { font-size: 32px; }
.ti-stroke { stroke-width: 1.75; }

/* ===== GLASS ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px var(--glass-shadow);
}
.glass-light {
  background: rgba(237, 241, 244, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(237, 241, 244, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.glass-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, .logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--light);
}
h2 .highlight {
  color: var(--accent);
}

p { line-height: 1.7; color: rgba(237, 241, 244, 0.8); }
p.lead { font-size: clamp(1rem, 2vw, 1.2rem); }

.accent { color: var(--accent); }
.gray { color: var(--gray); }

/* ===== SLIDE 1 — HERO ===== */
.slide-hero {
  background:
    radial-gradient(ellipse 80% 50% at 30% 40%, rgba(255,191,70,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 70% 60%, rgba(237,241,244,0.02) 0%, transparent 50%);
}
.hero-logo {
  text-align: center;
  margin-bottom: 4px;
}
.hero-logo .diwi {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 10rem);
  color: var(--light);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-logo .domain {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-align: center;
  color: rgba(237, 241, 244, 0.9);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-top: 16px;
}
.hero-sub {
  text-align: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--gray);
  margin-top: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bobDown 2.4s ease-in-out infinite;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gray), transparent);
}

@keyframes bobDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SLIDE 2 — WHY ===== */
.slide-why {
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(255,191,70,0.03) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(237,241,244,0.015) 0%, transparent 50%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.why-item {
  background: rgba(237, 241, 244, 0.04);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(237, 241, 244, 0.04);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.why-item:hover {
  background: rgba(237, 241, 244, 0.07);
  border-color: rgba(255,191,70,0.15);
  transform: translateY(-4px);
}
.why-item .ti {
  display: block;
  margin: 0 auto 10px;
}
.why-item .label {
  font-size: 0.85rem;
  color: rgba(237, 241, 244, 0.8);
  font-weight: 500;
}

/* ===== SLIDE 3 — PHILOSOPHY ===== */
.slide-philosophy {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,191,70,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(237,241,244,0.02) 0%, transparent 40%);
}
.phil-quote {
  text-align: center;
  margin: 24px 0;
}
.phil-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
}
.phil-quote p strong {
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
}
.phil-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.phil-tag {
  background: rgba(255,191,70,0.08);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== SLIDE 4 — PLAN ===== */
.slide-plan {
  background:
    radial-gradient(ellipse 70% 60% at 40% 50%, rgba(255,191,70,0.035) 0%, transparent 55%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.feature-chip {
  background: rgba(237, 241, 244, 0.04);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(237, 241, 244, 0.8);
  font-weight: 400;
  border: 1px solid rgba(237, 241, 244, 0.04);
  transition: background 0.3s, border-color 0.3s;
  display: flex; align-items: center; justify-content: center;
  min-height: 44px;
}
.feature-chip:hover {
  background: rgba(255,191,70,0.06);
  border-color: rgba(255,191,70,0.12);
}

/* ===== SLIDE 5 — PRICING ===== */
.slide-pricing {
  background:
    radial-gradient(ellipse 70% 60% at 40% 50%, rgba(255,191,70,0.035) 0%, transparent 55%);
}
/* ===== SLIDE 6 — TICKETS ===== */
.slide-tickets {
  background:
    radial-gradient(ellipse 60% 50% at 60% 40%, rgba(255,191,70,0.03) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(237,241,244,0.015) 0%, transparent 40%);
}
/* Timeline */
.timeline {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 8px;
}
.tl-row {
  display: flex;
  gap: 16px;
  position: relative;
}
.tl-row:not(:last-child) { margin-bottom: 0; }
.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  flex-shrink: 0;
  position: relative;
}
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255,191,70,0.4);
}
.tl-row:not(:last-child) .tl-marker::after {
  content: '';
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 22px);
  background: linear-gradient(to bottom, var(--accent), rgba(255,191,70,0.08));
}
.tl-card {
  flex: 1;
  margin-bottom: 20px;
  text-align: center;
  padding: 24px 20px !important;
}
.tl-card h3 {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ticket-list {
  list-style: none;
  text-align: left;
  margin-top: 8px;
  padding-left: 4px;
}
.ticket-list li {
  color: rgba(237, 241, 244, 0.75);
  font-size: 0.78rem;
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}
.ticket-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.price-original {
  color: var(--gray);
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.price-discount {
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-final {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--accent);
}
.price-final small {
  font-family: 'Lexend', sans-serif;
  font-size: 0.5em;
  color: var(--gray);
  font-weight: 300;
}
.price-note {
  color: var(--gray);
  font-size: 0.78rem;
  margin-top: 6px;
}

/* ===== SLIDE 6 — FINAL ===== */
.slide-final {
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,191,70,0.05) 0%, transparent 60%);
}
.steps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}
.step {
  background: rgba(237, 241, 244, 0.04);
  border: 1px solid rgba(237, 241, 244, 0.06);
  padding: 18px 14px 14px;
  border-radius: 14px;
  text-align: center;
  min-width: 110px;
  flex: 1;
  max-width: 150px;
  position: relative;
}
.step .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 32px;
  line-height: 1;
}
.step .ti {
  display: block;
  margin: 0 auto 10px;
  color: var(--accent);
  font-size: 22px;
}
.step .slabel {
  display: block;
  font-size: 0.8rem;
  color: var(--light);
  font-weight: 500;
  margin-bottom: 4px;
}
.step .sdesc {
  display: block;
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 400;
}
.goal-text {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--light);
  margin: 32px 0 24px;
  line-height: 1.4;
}
.goal-text .accent {
  color: var(--accent);
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,191,70,0.25);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,191,70,0.35);
}
.cta-wrap { text-align: center; }

/* ===== DOT NAVIGATION ===== */
.dots-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(237, 241, 244, 0.25);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
  position: relative;
  outline: none;
}
.dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}
.dot:hover {
  border-color: rgba(237, 241, 244, 0.5);
}
.dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(255,191,70,0.4);
  transform: scale(1.25);
}

/* ===== BACKGROUND ORNAMENTS ===== */
.bg-ornaments {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.ornament {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.ornament-1 {
  width: 480px; height: 480px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(255,191,70,0.08) 0%, transparent 70%);
}
.ornament-2 {
  width: 320px; height: 320px;
  bottom: 5%; left: -60px;
  background: radial-gradient(circle, rgba(237,241,244,0.04) 0%, transparent 65%);
}
.ornament-3 {
  width: 200px; height: 200px;
  top: 40%; left: 15%;
  border: 1px solid rgba(255,191,70,0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.ornament-4 {
  width: 140px; height: 140px;
  bottom: 25%; right: 12%;
  background: rgba(237,241,244,0.02);
  border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
}
.ornament-5 {
  width: 280px; height: 280px;
  top: 20%; right: 25%;
  border: 1px solid rgba(237,241,244,0.03);
  border-radius: 63% 37% 54% 46% / 38% 53% 47% 62%;
}

/* ===== SCROLL PARALLAX SPOTS ===== */
.scroll-spot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .slide { padding: 32px 16px; }
  .glass { padding: 24px; }
  .glass-light { padding: 20px; }
  .dots-nav { right: 14px; gap: 10px; }
  .dot { width: 8px; height: 8px; border-width: 1.5px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { gap: 8px; }
  .step { min-width: 80px; padding: 14px 8px 10px; }
  .step .num { font-size: 1.4rem; }
  .step .ti { font-size: 18px; margin-bottom: 5px; }
  .step .slabel { font-size: 0.7rem; }
  .step .sdesc { font-size: 0.6rem; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .why-item { padding: 16px 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .feature-chip { padding: 10px 8px; font-size: 0.72rem; }
  .phil-tag { font-size: 0.7rem; padding: 6px 14px; }
}

/* ===== SCROLLBAR ===== */
.scroll-container::-webkit-scrollbar { width: 4px; }
.scroll-container::-webkit-scrollbar-track { background: transparent; }
.scroll-container::-webkit-scrollbar-thumb { background: rgba(237,241,244,0.08); border-radius: 4px; }
