/* ===========================================================
   Dekho Videos — Website styles (v2 redesign)
   =========================================================== */
:root {
  /* base */
  --bg: #07060C;
  --bg-2: #0B0913;
  --surface: #121020;
  --surface-2: #1A1730;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.15);
  --text: #F3F0FA;
  --muted: #A39EB8;
  --muted-2: #75718A;

  /* brand */
  --pink: #FF3D85;
  --pink-2: #FF6FA3;
  --violet: #8B5CF6;
  --cyan: #22D3EE;
  --gold: #FFC44D;

  --grad: linear-gradient(120deg, #FF3D85 0%, #8B5CF6 100%);
  --grad-soft: linear-gradient(120deg, rgba(255,61,133,.18), rgba(139,92,246,.18));
  --grad-gold: linear-gradient(120deg, #FFC44D, #FF7A59);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-xs: 999px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --shadow-pink: 0 18px 50px rgba(255, 61, 133, 0.32);
  --maxw: 1180px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Sora', var(--font);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ambient glow + grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(620px circle at 8% -8%, rgba(255, 61, 133, 0.18), transparent 60%),
    radial-gradient(680px circle at 96% 4%, rgba(139, 92, 246, 0.20), transparent 58%),
    radial-gradient(700px circle at 50% 120%, rgba(34, 211, 238, 0.10), transparent 60%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 6, 12, 0.66);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: .2px; }
.brand .logo {
  width: 36px; height: 36px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center; font-size: 17px; color: #fff;
  box-shadow: 0 8px 22px rgba(255, 61, 133, .4);
}
.brand span.x { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: .94rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--grad); border-radius: 2px; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: var(--radius-xs); cursor: pointer; border: none;
  transition: transform .16s ease, box-shadow .22s ease, background .2s; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px rgba(255, 61, 133, .48); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-light { background: #fff; color: #160a12; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,255,255,.2); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  background: var(--grad-soft); border: 1px solid var(--line-2);
  color: var(--pink-2); font-weight: 600; font-size: .8rem; padding: 7px 16px; border-radius: var(--radius-xs);
}
.kicker .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(255,61,133,.22); }
.hero h1 { font-family: var(--display); font-size: clamp(2.5rem, 5.4vw, 4.1rem); line-height: 1.04; font-weight: 800; letter-spacing: -1px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: var(--muted); font-size: 1.14rem; margin: 22px 0 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 20px; color: var(--muted-2); font-size: .85rem; display: flex; align-items: center; gap: 8px; }
.hero-note b { color: var(--text); font-weight: 600; }

/* hero poster fan */
.fan { position: relative; height: 480px; }
.fan .card {
  position: absolute; border-radius: 20px; box-shadow: var(--shadow);
  border: 1px solid var(--line-2); overflow: hidden; top: 50%; left: 50%;
  display: flex; align-items: flex-end; padding: 16px;
  font-family: var(--display); font-weight: 700; font-size: .98rem; color: #fff;
  width: 210px; height: 312px;
}
.fan .card span { position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.fan .card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent 60%); z-index: 1; }
.fan .c1 { transform: translate(-50%, -50%) rotate(-12deg) translateX(-130px); background: linear-gradient(150deg, #3a0d2e, #7a1e52); z-index: 1; }
.fan .c2 { transform: translate(-50%, -54%) rotate(0deg);                     background: linear-gradient(150deg, #211345, #4f2c86); z-index: 3; }
.fan .c3 { transform: translate(-50%, -50%) rotate(12deg) translateX(130px);  background: linear-gradient(150deg, #06243a, #155277); z-index: 2; }
.fan .badge { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; font-size: .66rem; font-weight: 700; letter-spacing: .06em; background: rgba(0,0,0,.5); padding: 5px 9px; border-radius: 999px; }
.fan .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #34D77F; box-shadow: 0 0 0 3px rgba(52,215,127,.25); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{ transform: scale(1); opacity: 1 } 50%{ transform: scale(1.4); opacity: .5 } }

/* trust strip */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.trust .t { background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; text-align: center; }
.trust .t b { display: block; font-family: var(--display); font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust .t small { color: var(--muted); font-size: .85rem; }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
.eyebrow { color: var(--pink); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.section-title { font-family: var(--display); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; margin: 12px 0 14px; letter-spacing: -.4px; }
.section-sub { color: var(--muted); max-width: 640px; font-size: 1.02rem; }
.center { text-align: center; margin: 0 auto; }
.center .section-sub { margin-inline: auto; }

/* poster marquee */
.strip-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.strip { display: flex; gap: 16px; width: max-content; animation: slide 36s linear infinite; }
.strip .tile {
  width: 168px; height: 232px; border-radius: 16px; flex-shrink: 0; border: 1px solid var(--line);
  display: flex; align-items: flex-end; padding: 14px; font-family: var(--display); font-weight: 700; font-size: .9rem; color: #fff; position: relative; overflow: hidden;
}
.strip .tile span { position: relative; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.7); }
.strip .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 62%); }
@keyframes slide { to { transform: translateX(-50%); } }

/* bento features */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 188px; gap: 18px; margin-top: 44px; }
.cell {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  position: relative; overflow: hidden; transition: transform .22s, border-color .22s;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cell:hover { transform: translateY(-5px); border-color: var(--line-2); }
.cell .ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-soft); font-size: 22px; position: absolute; top: 26px; left: 26px; }
.cell h3 { font-family: var(--display); font-size: 1.18rem; margin-bottom: 7px; }
.cell p { color: var(--muted); font-size: .94rem; line-height: 1.5; }
.cell.wide { grid-column: span 2; }
.cell.tall { grid-row: span 2; justify-content: flex-end; }
.cell.feat { background: var(--grad); border: none; box-shadow: var(--shadow-pink); }
.cell.feat .ico { background: rgba(255,255,255,.2); }
.cell.feat h3, .cell.feat p { color: #fff; }
.cell.feat p { color: rgba(255,255,255,.88); }

/* categories */
.cats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cat { padding: 11px 22px; border-radius: var(--radius-xs); background: rgba(255,255,255,.03); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; transition: all .2s; cursor: default; }
.cat:hover { border-color: var(--pink); color: #fff; transform: translateY(-2px); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step { background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.step .num { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.35rem; background: var(--grad); color: #fff; box-shadow: var(--shadow-pink); }
.step h3 { font-family: var(--display); margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .92rem; }

/* pricing */
.price-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 44px; max-width: 1040px; margin-inline: auto; }
.price-card { background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; transition: transform .2s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: rgba(255,61,133,.5); background: linear-gradient(180deg, rgba(255,61,133,.1), rgba(255,255,255,.02)); box-shadow: 0 20px 60px rgba(255,61,133,.18); }
.price-card.featured .tag { position: absolute; top: -13px; right: 24px; background: var(--grad); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-xs); }
.price-card h3 { font-family: var(--display); font-size: 1.1rem; color: var(--muted); }
.price-card .amt { font-family: var(--display); font-size: 2.7rem; font-weight: 800; margin: 8px 0; }
.price-card .amt small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; margin: 20px 0; }
.price-card li { padding: 8px 0; color: var(--muted); display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.price-card li::before { content: "✓"; color: var(--pink); font-weight: 800; flex-shrink: 0; }
.price-card.featured li::before { color: var(--pink-2); }

/* FAQ */
.faq { max-width: 800px; margin: 40px auto 0; }
.faq details { background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 12px; transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; padding: 17px 0; font-weight: 600; font-family: var(--display); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--muted); padding: 0 0 17px; line-height: 1.6; }

/* CTA band */
.cta-band { background: var(--grad); border-radius: 30px; padding: 56px 40px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at 80% 20%, rgba(255,255,255,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--display); font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); margin: 12px 0 26px; font-size: 1.05rem; }
.cta-band .btn-ghost { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); color: #fff; }

/* ---------- Inner page hero (legal) ---------- */
.page-hero { padding: 66px 0 34px; text-align: center; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.5px; }
.page-hero p { color: var(--muted); margin-top: 14px; }
.page-hero .updated { display: inline-block; margin-top: 16px; font-size: .82rem; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--line); padding: 7px 16px; border-radius: var(--radius-xs); }

/* legal / prose */
.prose { max-width: 840px; margin: 12px auto 0; background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; }
.prose h2 { font-family: var(--display); font-size: 1.4rem; margin: 32px 0 12px; color: #fff; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--display); font-size: 1.08rem; margin: 20px 0 7px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 11px; line-height: 1.7; }
.prose ul { padding-left: 22px; margin-bottom: 13px; }
.prose a { color: var(--pink); }
.prose strong { color: var(--text); }
.note { background: rgba(255,196,77,.08); border: 1px solid rgba(255,196,77,.3); border-radius: var(--radius-sm); padding: 15px 18px; color: #ffd98a; font-size: .9rem; margin-bottom: 18px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 22px auto 0; }
.contact-card { background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-card h3 { font-family: var(--display); margin-bottom: 6px; }
.contact-item { display: flex; gap: 14px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; flex-shrink: 0; }
.contact-item b { display: block; font-size: .95rem; }
.contact-item span { color: var(--muted); font-size: .9rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; margin-bottom: 7px; color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); color: var(--text);
  border-radius: 11px; padding: 13px 15px; font-family: var(--font); font-size: .95rem; outline: none; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--pink); }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--line); margin-top: 50px; padding: 56px 0 32px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.foot-grid p { color: var(--muted); font-size: .92rem; margin-top: 14px; max-width: 340px; }
.foot-col h4 { font-family: var(--display); font-size: .95rem; margin-bottom: 15px; }
.foot-col a { display: block; color: var(--muted); font-size: .92rem; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted-2); font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 0; transform: translateY(-140%); transition: transform .3s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 15px 24px; width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .fan { height: 400px; margin-top: 6px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .cell { min-height: 168px; }
  .cell.wide, .cell.tall { grid-column: auto; grid-row: auto; }
  .cell .ico { position: static; margin-bottom: 14px; }
  .cell { justify-content: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .price-wrap, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .prose { padding: 28px; }
}

/* ---------- Embed mode (app WebView) ---------- */
body.embed header.site,
body.embed footer.site { display: none !important; }
body.embed .page-hero { padding-top: 28px; }
body.embed section.block { padding-top: 20px; }
body.embed { background: var(--bg); }
