/* ---------- Design tokens (all colors in one place) ---------- */
:root {
  --bg:            #0a0a0b;
  --bg-2:          #121214;
  --surface:       #17171a;
  --surface-2:     #1f1f24;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --brand:         #e50914;  /* Netflix-style crimson */
  --brand-2:       #ff3b30;
  --brand-glow:    rgba(229,9,20,0.55);
  --gold:          #ffb830;
  --grad:          linear-gradient(100deg, #ff9b1e 0%, #ff5a1f 42%, #e50914 100%);

  --text:          #f5f5f7;
  --text-dim:      #b5b5bd;
  --text-mute:     #7c7c86;

  --radius:        16px;
  --radius-lg:     22px;
  --maxw:          1180px;
  --ease:          cubic-bezier(.22,1,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans Devanagari", "Poppins", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient animated background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 400px at 15% -5%, rgba(229,9,20,0.18), transparent 60%),
    radial-gradient(700px 500px at 100% 10%, rgba(255,59,48,0.10), transparent 55%),
    radial-gradient(500px 500px at 50% 120%, rgba(229,9,20,0.10), transparent 60%);
  z-index: -1;
  pointer-events: none;
  animation: bgFloat 14s ease-in-out infinite alternate;
}
@keyframes bgFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-24px) scale(1.05); }
}

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Reusable image slot ---------- */
.img-slot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
}
.img-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
/* Placeholder shown when image is missing/broken */
.img-slot .ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 14px;
  color: var(--text-mute);
  border: 1.5px dashed var(--border-strong);
  border-radius: inherit;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 12px, transparent 12px 24px);
}
.img-slot .ph .ic { font-size: 26px; opacity: .8; }
.img-slot .ph .lbl { font-size: 12px; font-weight: 600; letter-spacing: .3px; }
.img-slot .ph .path { font-size: 11px; font-family: "Poppins", monospace; color: var(--brand-2); opacity: .85; }
/* Hide broken-image icon so only our placeholder shows */
.img-slot img:not([src]), .img-slot img[src=""] { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px var(--brand-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px var(--brand-glow); }
.btn-primary .arw { transition: transform .25s var(--ease); }
.btn-primary:hover .arw { transform: translateX(5px); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.pulse { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 30px var(--brand-glow); }
  50%     { box-shadow: 0 8px 44px var(--brand-glow), 0 0 0 6px rgba(229,9,20,0.12); }
}

/* ---------- Navigation ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,11,0.72);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand {
  font-family: "Poppins", sans-serif;
  font-weight: 900; font-size: 24px; letter-spacing: .5px;
  color: var(--brand);
  text-shadow: 0 0 22px var(--brand-glow);
}
.brand span { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-dim); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav .btn { padding: 10px 20px; font-size: 14px; }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ---------- Section shell ---------- */
section { padding: 92px 0; position: relative; }
.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand-2);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(229,9,20,0.1); border: 1px solid rgba(229,9,20,0.25);
  margin-bottom: 18px;
}
.sec-title { font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; line-height: 1.15; }
.sec-sub { color: var(--text-dim); font-size: 17px; margin-top: 12px; }
.center { text-align: center; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.hero h1 { font-weight: 800; line-height: 1.18; letter-spacing: -.5px; }
.hero h1 span { display: block; padding: 0.06em 0; }
.hero h1 .line-white {
  font-size: clamp(52px, 8vw, 92px); color: var(--text); font-weight: 900;
}
.hero h1 .line-accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 18px rgba(229,9,20,0.35));
}
.hero h1 .line-accent:not(.line-2) { font-size: clamp(40px, 6vw, 68px); font-weight: 900; }
.hero h1 .line-2 { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; line-height: 1.25; margin-top: 4px; }
.hero p.sub {
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 500;
  color: var(--text-dim); margin-top: 14px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--brand-2);
  background: rgba(229,9,20,0.08); border: 1px solid rgba(229,9,20,0.35);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 8px var(--brand); animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero p.lead { color: var(--text-dim); font-size: 18px; margin: 20px 0 26px; max-width: 520px; }

/* Price + CTA on one row (matches original) */
.buy-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.price-block { display: flex; flex-direction: column; gap: 2px; }
.price-now {
  font-family: "Poppins"; font-size: clamp(34px, 4.4vw, 50px); font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; line-height: 1;
}
.price-meta { font-size: 14px; color: var(--text-mute); }
.price-old { text-decoration: line-through; }

.trust-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; color: var(--text-dim); font-size: 13.5px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
  box-shadow: 0 0 8px rgba(46,204,113,0.8); animation: pulse-dot 1.8s ease-in-out infinite;
}
.stars { color: var(--gold); letter-spacing: 1px; }

/* Hero cover art */
.hero-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(229,9,20,0.15);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-16px) rotate(1deg); }
}
/* Zoom the hero cover image inside its frame on hover */
.hero-cover img {
  transition: transform .6s var(--ease);
  transform-origin: center;
}
.hero-cover:hover img { transform: scale(1.12); }
/* Info overlaid at the bottom of the cover, over a dark scrim */
.cover-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 26px 22px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 4%, rgba(0,0,0,0.55) 45%, transparent 100%);
}
.badge-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: "Noto Sans Devanagari", "Poppins"; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--brand-2); text-transform: uppercase;
}
.badge-live .ld {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 8px var(--brand);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.cover-caption {
  font-family: "Noto Sans Devanagari", "Poppins";
  font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: #fff;
  line-height: 1.1; margin: 0;
}
.spec-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 13px; font-weight: 600; color: #e9e9ee;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 7px 15px; border-radius: 999px;
}

/* ---------- Preview grid ---------- */
.hint { color: var(--text-mute); font-size: 14px; margin-top: 8px; }
.grid-prev {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.prev-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  cursor: pointer;
}
.prev-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(229,9,20,0.2);
  border-color: rgba(229,9,20,0.5);
}
.prev-card .img-slot { position: absolute; inset: 0; }
/* Zoom the image inside the frame on hover (frame stays fixed, image scales) */
.prev-card .img-slot img {
  transition: transform .6s var(--ease);
  transform-origin: center;
}
.prev-card:hover .img-slot img { transform: scale(1.14); }
.prev-card .overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.prev-card:hover .overlay { opacity: 1; transform: translateY(0); }
.prev-card .ep-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  color: #fff; padding: 4px 9px; border-radius: 7px; border: 1px solid var(--border-strong);
}
.prev-card .hd { position: absolute; top: 12px; right: 12px; z-index: 3;
  font-size: 10px; font-weight: 800; color: var(--gold); }
.prev-card .overlay .t { font-weight: 700; font-size: 16px; }
.prev-card .overlay .s { color: var(--text-dim); font-size: 13px; }

/* ---------- Features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.feat-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,9,20,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.feat-ic {
  width: 58px; height: 58px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(229,9,20,0.2), rgba(255,59,48,0.08));
  border: 1px solid rgba(229,9,20,0.3);
  box-shadow: 0 0 24px rgba(229,9,20,0.15);
}
.feat-card h3 { font-family: "Poppins"; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { color: var(--text-dim); font-size: 15px; }

/* ---------- Final CTA ---------- */
.final {
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(229,9,20,0.22), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 64px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.final h2 { font-size: clamp(28px, 4.6vw, 48px); font-weight: 800; margin: 16px 0 14px; }
.final p { color: var(--text-dim); font-size: 18px; max-width: 560px; margin: 0 auto 30px; }
.final .trust-line { color: var(--text-mute); font-size: 14px; margin-top: 22px; }

/* ---------- Footer ---------- */
footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; }
footer .brand { font-size: 20px; display: inline-block; margin-bottom: 8px; }
footer p { color: var(--text-mute); font-size: 14px; }

/* ---------- Social-proof sales toast ---------- */
.sales-toast {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 13px;
  min-width: 250px; max-width: 320px;
  padding: 13px 16px;
  background: rgba(18,18,20,0.92);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 24px rgba(229,9,20,0.12);
  backdrop-filter: blur(12px);
  opacity: 0; transform: translateY(24px) scale(.96);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.sales-toast.show { opacity: 1; transform: translateY(0) scale(1); }
.st-avatar {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins"; font-weight: 800; font-size: 18px; color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 14px var(--brand-glow);
}
.st-body { line-height: 1.35; }
.st-name { font-size: 14px; font-weight: 700; color: var(--text); margin: 0; }
.st-sub { font-size: 12.5px; color: var(--text-dim); margin: 1px 0 0; }
.st-time { color: var(--text-mute); }
.st-verified { font-size: 11px; color: #2ecc71; margin: 3px 0 0; display: flex; align-items: center; gap: 5px; }
.st-dot { width: 6px; height: 6px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 6px rgba(46,204,113,0.8); }
@media (max-width: 520px) {
  .sales-toast { left: 12px; right: 12px; bottom: 12px; max-width: none; min-width: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cover { max-width: 340px; margin: 0 auto; }
  .grid-prev { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
}
@media (max-width: 520px) {
  .grid-prev { grid-template-columns: 1fr 1fr; gap: 12px; }
  .price-now { font-size: 38px; }
  section { padding: 66px 0; }
}
