/* ============================================================
   Jhilke — Global Styles (Figma Design System)
   Font: Figtree | Background: #0f0f0f | Radix Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0f0f0f;
  --bg2:          #141414;
  --card:         #1b1b1b;
  --card2:        #1a1a1b;
  --card-grad:    linear-gradient(90deg, #1b1b1b, #1a1a1b);
  --gold:         #d4a227;
  --gold-light:   #f0c040;
  --white:        #ffffff;
  --text-muted:   #afafaf;
  --text-faint:   rgba(255,255,255,0.5);
  --text-dim:     rgba(255,255,255,0.7);
  --border:       rgba(255,255,255,0.1);
  --border-light: rgba(255,255,255,0.2);
  --pill-active:  rgba(142,66,206,0.2);
  --pill-border:  #3c204e;
  --radius:       22px;
  --radius-sm:    10px;
  --radius-pill:  58px;
  /* Compatibility aliases */
  --gray:         #afafaf;
  --gray2:        rgba(255,255,255,0.35);
  --purple:       #8e42ce;
  --purple-light: #a855f7;
  --purple-dark:  #5b1d8a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.center     { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── Typography ── */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  letter-spacing: -0.02em;
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: inset 0 1px 4px rgba(255,255,255,0.25);
}
.btn-primary:hover { background: #e8e8e8; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn-dark {
  background: var(--card-grad);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: rgba(255,255,255,0.3); }

/* ── Divider ── */
.divider,
.gradient-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Legacy .tag badge (contact/faq/about pages) ── */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ──────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 16px 24px 0;
  transition: padding 0.3s;
}

.navbar.scrolled { padding-top: 10px; }

.nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 9px 10px 9px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232,150,72,0.55) 0%, rgba(150,72,118,0.42) 52%, rgba(70,40,95,0.5) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo-mark { height: 30px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-get-app {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}
.nav-get-app:hover { background: rgba(255,255,255,0.14); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  padding: 90px 32px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dim);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.03em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav-footer { margin-top: auto; text-align: center; }
.mobile-nav-footer p { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
.mobile-nav-footer .store-btns { display: flex; flex-direction: column; gap: 10px; }

/* ──────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(135% 130% at 10% 78%,
    #f8c044 0%, #ea8f5d 17%, #d06a6c 33%, #a8497f 51%, #6a2c86 71%, #2a1340 100%);
}
.hero-bg img { display: none; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,8,14,0.32) 0%, rgba(10,8,14,0) 50%),
    linear-gradient(to bottom, rgba(15,15,15,0) 78%, rgba(15,15,15,0.92) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-eyebrow span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.6)} }

.hero-title {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #fff;
  text-transform: capitalize;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 0; }

.hero-stat {
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: -0.01em;
}

/* Phone mockup (image from Figma) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-img {
  height: 660px;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,0.6));
}

.phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 120px;
  background: radial-gradient(ellipse, rgba(212,162,39,0.25), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  background: rgba(27,27,27,0.9);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(20px);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.badge-top    { top: 20px; left: -50px; animation: float 4s ease-in-out infinite; }
.badge-bottom { bottom: 60px; right: -50px; animation: float 4s ease-in-out infinite 2s; }
.badge-icon { font-size: 22px; }
.badge-text { font-size: 11px; color: var(--text-muted); letter-spacing: -0.01em; }
.badge-text strong { display: block; font-size: 13px; color: #fff; font-weight: 700; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ──────────────────────────────────────────────────────────
   TODAY'S VIEWERS (Tag chips section)
   ────────────────────────────────────────────────────────── */
.viewers-section { padding: 96px 0; background: var(--bg); overflow: hidden; }

/* Two-card row (viewers + features) */
.cards-row-section { padding: 48px 0 84px; background: var(--bg); }
.cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.info-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.info-card-title { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 14px; text-align: center; }
.info-card-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; text-align: center; }

/* About page */
.about-hero { position: relative; overflow: hidden; text-align: center; padding: 150px 0 80px;
  background: radial-gradient(135% 130% at 50% -10%, #f8c044 0%, #ea8f5d 15%, #d06a6c 30%, #a8497f 48%, #6a2c86 70%, #16101e 100%); }
.about-hero .section-sub { color: rgba(255,255,255,0.92); max-width: 620px; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; padding-bottom: 26px; }
.about-card-img { height: 180px; overflow: hidden; background: #1a1320; }
.about-card-img img { width: 100%; height: 100%; object-fit: cover; }
.about-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin: 22px 24px 10px; letter-spacing: -0.02em; }
.about-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0 24px; }
.about-cards-mobile {}
.info-card .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 28px;
  max-width: 340px;
  margin: 0 auto;
}
.info-card .feature-item {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
  text-align: center;
}
.info-card .feature-icon-img { width: 38px; height: 38px; }
.info-card .feature-item:nth-child(3) { grid-column: 1 / -1; }

.viewers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tag-chips-wrap {
  position: relative;
  height: 220px;
}

.tag-chip {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.tag-chip:hover { transform: scale(1.05) rotate(0deg) !important; }

.chip-1 { background: #c1b2ea; color: #271750; transform: rotate(-8deg); top: 4px;   left: 22%; z-index: 4; }
.chip-2 { background: #eccea4; color: #46331a; transform: rotate(-3deg); top: 62px;  left: 44%; z-index: 2; }
.chip-3 { background: #a2cae6; color: #192c3a; transform: rotate(-8deg); top: 92px;  left: 4%;  z-index: 3; }
.chip-4 { background: #db8edd; color: #381b39; transform: rotate(-3deg); top: 148px; left: 30%; z-index: 1; }

/* ──────────────────────────────────────────────────────────
   FEATURES STRIP
   ────────────────────────────────────────────────────────── */
.features-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.features-section-bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.features-section-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0.12;
}

.features-content { position: relative; z-index: 1; }

.features-top {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 24px;
  text-align: center;
}

.feature-icon-img {
  width: 28px; height: 28px;
  object-fit: contain;
}

.feature-label {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

/* ──────────────────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────────────────── */
.stats-section { padding: 80px 0; background: var(--bg); }

.stats-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.stats-visual img {
  display: block;
  width: auto;
  height: 420px;
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,0.6));
}
.stats-info .section-eyebrow,
.stats-info .section-title { text-align: left; }
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.25s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,0.03); }

.stat-num {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: capitalize;
}
.stat-label {
  font-size: 14px;
  color: var(--text-faint);
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-align: center;
}

/* ──────────────────────────────────────────────────────────
   CATEGORIES / CONTENT
   ────────────────────────────────────────────────────────── */
.categories-section { padding: 96px 0; background: var(--bg); }

.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  border: 1px solid var(--border-light);
  color: #fff;
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.pill.active {
  background: var(--pill-active);
  border-color: var(--pill-border);
  font-weight: 500;
}
.pill .pill-count {
  background: rgba(255,255,255,0.18);
  border-radius: 11px;
  padding: 2px 7px;
  font-size: 12px;
  font-weight: 600;
  color: #ddd;
  letter-spacing: -0.01em;
}

/* Section row header */
.section-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-row-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.see-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.see-all svg { width: 18px; height: 18px; }
.see-all:hover { color: #fff; }

/* Top 10 grid */
.top10-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.top10-scroll::-webkit-scrollbar { display: none; }

.top10-card {
  position: relative;
  flex-shrink: 0;
  width: 130px;
  cursor: pointer;
}

.top10-rank {
  position: absolute;
  bottom: 44px; left: -18px;
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  z-index: 2;
  opacity: 0.22;
  letter-spacing: -0.11em;
  font-style: normal;
  pointer-events: none;
}

.top10-poster {
  width: 116px;
  height: 154px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  margin-left: 14px;
}
.top10-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.top10-poster-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.top10-views {
  position: absolute;
  bottom: 6px; right: 6px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-radius: 900px;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
.top10-views svg { width: 10px; height: 10px; }

.top10-info { margin-top: 10px; padding-left: 14px; }
.top10-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top10-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top10-genre {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
.top10-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
.top10-rating svg { width: 12px; height: 12px; fill: #f5c518; }

/* Popular / New Release grid */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.poster-card {
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.25s;
}
.poster-card:hover { transform: translateY(-4px); }

.poster-img {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.poster-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.poster-views {
  position: absolute;
  bottom: 6px; right: 6px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-radius: 900px;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
}

.poster-info { padding: 10px 2px 4px; }
.poster-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.poster-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.poster-genre {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
.poster-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-dim);
}
.poster-rating svg { width: 11px; height: 11px; fill: #f5c518; }

.content-rows { display: flex; flex-direction: column; gap: 56px; }

/* ──────────────────────────────────────────────────────────
   WATCHING ROUTINE
   ────────────────────────────────────────────────────────── */
.routine-section { padding: 96px 0; background: var(--bg); }

.routine-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.routine-card {
  background: var(--card-grad);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.25s;
}
.routine-card:hover { background: linear-gradient(90deg, #222, #1f1f20); }

.routine-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  position: relative;
}
.routine-card-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.routine-card-body {}
.routine-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.06em;
  margin-bottom: 6px;
  text-transform: capitalize;
}
.routine-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

/* ──────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────── */
.faq-section { padding: 96px 0; background: var(--bg); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--card-grad);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.faq-icon svg { width: 24px; height: 24px; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: #fff; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 32px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 32px 28px; }

.faq-store-btns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.faq-store-btns img { height: 44px; width: auto; border-radius: 6px; }

/* ──────────────────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────────────────── */
.contact-section { padding: 96px 0; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 12px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: -0.04em;
  padding-left: 4px;
}

.form-field input,
.form-field textarea,
.form-field select,
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card-grad);
  border: none;
  outline: none;
  color: #fff;
  padding: 20px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  letter-spacing: -0.04em;
  transition: background 0.2s;
  width: 100%;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-field textarea,
.form-group textarea { height: 160px; }

.form-field input::placeholder,
.form-field textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: linear-gradient(90deg, #222, #1f1f20);
}

/* Support old .form-group class from contact/faq pages */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: -0.04em;
  padding-left: 4px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────
   DOWNLOAD CTA
   ────────────────────────────────────────────────────────── */
.download-cta {
  background: var(--bg);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-cta .container {
  background: linear-gradient(120deg, #361f6b 0%, #4a2b88 48%, #283079 100%);
  border-radius: 28px;
  padding: 64px 40px;
  overflow: hidden;
}
.download-cta .tag { color: rgba(255,255,255,0.8); }
.download-cta p { color: rgba(255,255,255,0.88) !important; }

.store-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1.5px solid var(--border-light);
  color: #fff;
  padding: 12px 24px;
  border-radius: 14px;
  transition: all 0.25s;
  min-width: 160px;
}
.store-btn:hover { border-color: rgba(255,255,255,0.45); transform: translateY(-3px); }
.store-btn-icon { font-size: 28px; }
.store-btn-text { text-align: left; }
.store-btn-text small { display: block; font-size: 10px; color: var(--text-faint); letter-spacing: 0.02em; }
.store-btn-text strong { font-size: 16px; font-weight: 700; }
.store-badge { height: 48px; width: auto; display: block; transition: transform 0.2s; }
.store-badge:hover { transform: translateY(-2px); }
.mobile-nav-footer .store-badge { height: 44px; }

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 260px;
  letter-spacing: -0.01em;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-faint); letter-spacing: -0.01em; }
.footer-bottom a { color: var(--text-muted); font-size: 12px; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ──────────────────────────────────────────────────────────
   OTHER PAGES
   ────────────────────────────────────────────────────────── */

/* Page hero (about, faq, contact) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(135% 130% at 50% -10%, #f8c044 0%, #ea8f5d 15%, #d06a6c 30%, #a8497f 48%, #6a2c86 70%, #16101e 100%);
  padding: 150px 0 80px;
  text-align: center;
}
.page-hero .section-sub { margin: 14px auto 0; color: rgba(255,255,255,0.92); max-width: 640px; }
.page-hero .tag { color: rgba(255,255,255,0.85); }

/* Two-column generic layout (contact / about teasers) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* About blocks */
.about-blocks { display: flex; flex-direction: column; gap: 80px; padding: 80px 0; }

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }

.about-block-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.about-block h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.about-block p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

/* Contact info */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin: 48px 0;
}
.contact-info-card {
  background: var(--card-grad);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.25s;
}
.contact-info-card:hover { background: linear-gradient(90deg, #222, #1f1f20); }
.contact-info-card .icon { font-size: 32px; margin-bottom: 14px; }
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.03em; }
.contact-info-card p  { font-size: 13px; color: var(--text-muted); letter-spacing: -0.01em; }

/* FAQ page categories */
.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.faq-cat-btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  background: transparent;
  letter-spacing: -0.01em;
  transition: all 0.2s;
  cursor: pointer;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--pill-active);
  border-color: var(--pill-border);
  color: #fff;
}

/* ──────────────────────────────────────────────────────────
   SCROLLBAR
   ────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { flex-wrap: wrap; }
  .stat-card { flex: 1 1 30%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 0 60px;
    gap: 48px;
  }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-visual { order: -1; }
  .phone-mockup-img { height: 440px; width: auto; }
  .floating-badge { display: none; }

  .viewers-inner { grid-template-columns: 1fr; }
  .cards-row { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .routine-cards { grid-template-columns: 1fr; }
  .tag-chips-wrap { height: 200px; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-divider { display: none; }

  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-visual img { height: 340px; }
  .stats-info .section-eyebrow, .stats-info .section-title { text-align: center; }
  .stats-grid { flex-direction: column; border: none; gap: 1px; }
  .stat-card { border: 1px solid var(--border); border-radius: var(--radius-sm); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }

  .about-block { grid-template-columns: 1fr; }
  .about-block.reverse { direction: ltr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .poster-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .store-btns { flex-direction: column; align-items: center; }
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Coming-soon notify form */
.notify-form { display:flex; gap:12px; justify-content:center; max-width:480px; margin:28px auto 0; flex-wrap:wrap; }
.notify-form input { flex:1; min-width:220px; padding:14px 20px; border-radius:999px; border:1px solid rgba(255,255,255,0.28); background:rgba(255,255,255,0.10); color:#fff; font-family:inherit; font-size:15px; outline:none; }
.notify-form input::placeholder { color:rgba(255,255,255,0.65); }
.notify-form input:focus { border-color:rgba(255,255,255,0.55); }
.notify-form .btn { white-space:nowrap; }
.notify-msg { margin-top:18px; color:#fff; font-weight:600; }
