@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --white: #ffffff;
  --off-white: #f8f9fc;
  --mist: #eef1f7;
  --ink: #141824;
  --ink-soft: #3d4459;
  --line: #dde2ec;
  --violet: #6d28d9;
  --cyan: #0891b2;
  --gold: #d97706;
  --emerald: #059669;
  --hero-glow: rgba(109, 40, 217, 0.08);
  --shadow: 0 18px 50px rgba(20, 24, 36, 0.08);
  --radius: 4px;
  --max: 1180px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Background animation */
.bg-anim {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(165deg, #ffffff 0%, #f4f6fb 45%, #ffffff 100%);
}
.bg-anim::before,
.bg-anim::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-anim::before {
  width: 420px; height: 420px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(109,40,217,0.18), transparent 70%);
}
.bg-anim::after {
  width: 360px; height: 360px;
  bottom: 10%; left: -80px;
  background: radial-gradient(circle, rgba(8,145,178,0.14), transparent 70%);
  animation-delay: -6s;
}

.jewel-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.jewel {
  position: absolute;
  width: var(--s, 10px);
  height: var(--s, 10px);
  background: var(--c, #6d28d9);
  transform: rotate(45deg);
  opacity: 0.12;
  animation: floatJewel var(--d, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  border-radius: 2px;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 40px) scale(1.08); }
}
@keyframes floatJewel {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.08; }
  50% { transform: rotate(45deg) translateY(-28px); opacity: 0.2; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.06); opacity: 0.6; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  
}
.brand img { width: 36px; height: 36px; }
.brand span { font-size: 1.05rem; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--violet); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.play-badge img { width: 155px; transition: transform 0.25s, opacity 0.25s; }
.play-badge:hover img { transform: translateY(-2px); opacity: 0.92; }

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, var(--hero-glow), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(8,145,178,0.06), transparent 50%);
  animation: pulseRing 8s ease-in-out infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { animation: fadeUp 1s ease both; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(5,150,105,0.25);
  background: rgba(5,150,105,0.06);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.hero-free {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 28px;
}
.hero-free::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--violet);
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}
.hero-visual {
  position: relative;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-visual img {
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-glow-ring {
  position: absolute;
  inset: 10% 15%;
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: var(--radius);
  animation: pulseRing 4s ease-in-out infinite;
  pointer-events: none;
}

/* Intro block */
.intro-block {
  padding: 64px 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-block p {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  text-align: center;
}
.intro-block p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

/* Section common */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 14px;
  font-weight: 700;
}
.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
  color: var(--ink-soft);
}

/* Z-pattern rows (Hollow Knight style) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-img { order: 2; }
.feature-row.reverse .feature-text { order: 1; }
.feature-img img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.feature-text p { color: var(--ink-soft); margin-bottom: 12px; }

/* Stats strip - extra block */
.stats-strip {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--violet);
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Free banner */
.free-banner {
  padding: 56px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(109,40,217,0.04), rgba(8,145,178,0.04));
}
.free-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.free-banner p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 28px;
}
.free-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--gold));
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* 4-column cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.card-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.card-item h4 {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.card-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* Split section (sound/visual) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 18px;
}
.split-text p { color: var(--ink-soft); margin-bottom: 16px; }
.split-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.split-images img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
  margin-top: 8px;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* India block - extra */
.india-block {
  padding: 64px 0;
  background: var(--mist);
}
.india-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.india-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.india-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--cyan);
  transform: rotate(45deg);
}

/* Press / reviews */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.press-quotes h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.press-quotes li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}
.press-quotes li::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 1.4rem;
  color: var(--violet);
  font-style: normal;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.award-badge {
  border: 1px solid var(--line);
  padding: 20px 12px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
}
.award-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.award-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Mobile bar */
.mobile-bar {
  padding: 36px 0;
  background: #1e293b;
  color: var(--white);
  text-align: center;
}
.mobile-bar p {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 16px;
}
.mobile-bar .play-badge img { width: 170px; margin: 0 auto; }

/* Site footer block */
.site-footer-main {
  padding: 72px 0 40px;
  background: linear-gradient(160deg, #4c1d95 0%, #312e81 100%);
  color: var(--white);
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-brand img { width: 48px; height: 48px; }
.footer-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-desc {
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.88;
  font-size: 0.95rem;
}
.footer-play {
  display: inline-block;
  margin-bottom: 36px;
}
.footer-play img { width: 170px; margin: 0 auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 20px;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.25s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  margin-top: 28px;
  font-size: 0.78rem;
  opacity: 0.55;
}

/* Inner pages */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--off-white);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p { color: var(--ink-soft); max-width: 640px; }
.page-content { padding: 56px 0 80px; }
.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin: 32px 0 12px;
}
.page-content p, .page-content li {
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.page-content ul { padding-left: 20px; margin-bottom: 20px; }
.page-content ul li { list-style: disc; }
.page-cta {
  margin-top: 40px;
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--line);
  text-align: center;
  border-radius: var(--radius);
}
.page-cta p { margin-bottom: 16px; color: var(--ink-soft); }

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.info-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.info-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.cookie-inner a { color: var(--violet); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-btn {
  padding: 10px 22px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.cookie-btn.accept { background: var(--ink); color: var(--white); }
.cookie-btn:hover { opacity: 0.85; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .feature-row, .split-section, .press-grid, .india-inner, .content-grid-2 {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-img,
  .feature-row.reverse .feature-text { order: unset; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual img { max-width: 300px; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .card-grid, .award-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner .play-badge { display: none; }
}
