/* PocketDramas — promo site
   White background, single accent (purple #7C3AED), instant-visible colors.
   Designed for hPanel-compatible static hosting (no build step). */

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tinted: #faf5ff;
  --text: #0f172a;
  --text-muted: #475569;
  --text-faint: #94a3b8;
  --border: #e2e8f0;

  --primary: #7c3aed;
  --primary-deep: #6d28d9;
  --primary-soft: #ede9fe;

  --accent: #f97316;
  --gold: #f59e0b;
  --success: #10b981;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(124, 58, 237, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---- Top nav ---------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff; font-size: 13px;
}
.brand-name { font-size: 17px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-weight: 500; color: var(--text-muted); transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 18px !important; font-size: 13px !important; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-soft); }

/* ---- Hero ------------------------------------------------------------- */
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center;
  padding: 80px 36px 80px;
  max-width: 1180px; margin: 0 auto;
}
.hero-inner { max-width: 580px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft); color: var(--primary-deep);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary), #ec4899);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 18px; color: var(--text-muted);
  margin-bottom: 28px; max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }

/* Phone mock */
.phone {
  position: relative;
  width: 280px; height: 580px;
  margin: 0 auto;
  border-radius: 38px;
  background: #0b0713;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.phone::after {
  content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #0b0713; border-radius: 0 0 14px 14px;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(180deg, #2a1a4a 0%, #0b0713 100%);
  color: #fff;
  position: relative;
  padding: 24px 18px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
}
.phone-poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(at 30% 20%, rgba(124,58,237,0.6) 0, transparent 50%),
    radial-gradient(at 80% 80%, rgba(236,72,153,0.45) 0, transparent 50%),
    linear-gradient(135deg, #4c1d95 0%, #1e1147 100%);
  opacity: 0.92;
}
.phone-title { position: relative; font-weight: 800; font-size: 18px; }
.phone-sub { position: relative; font-size: 12px; opacity: 0.75; }
.phone-bar {
  position: relative; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2); margin-top: 6px; overflow: hidden;
}
.phone-bar span { display: block; height: 100%; background: var(--primary); border-radius: 2px; }

/* ---- Trust strip ------------------------------------------------------ */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1180px; margin: 0 auto;
  padding: 30px 36px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.trust div { display: flex; flex-direction: column; gap: 4px; }
.trust strong { font-size: 24px; font-weight: 800; color: var(--primary-deep); }
.trust span { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

/* ---- Sections --------------------------------------------------------- */
.section { padding: 90px 36px; max-width: 1180px; margin: 0 auto; }
.section-tinted { background: var(--bg-tinted); max-width: none; }
.section-tinted > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--primary-soft); color: var(--primary-deep);
  font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ---- Feature cards ---------------------------------------------------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature {
  padding: 28px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  margin-bottom: 16px;
}
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--text-muted); font-size: 14px; }

/* ---- Plan card -------------------------------------------------------- */
.plan {
  position: relative;
  max-width: 440px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
}
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: 6px; }
.price { font-size: 56px; font-weight: 900; color: var(--primary-deep); letter-spacing: -0.04em; }
.period { color: var(--text-muted); font-weight: 600; }
.plan-renew { color: var(--text-faint); font-size: 13px; margin: 6px 0 22px; }
.plan-perks { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.plan-perks li {
  position: relative; padding-left: 28px; padding-block: 8px;
  font-size: 14px; color: var(--text);
}
.plan-perks li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-deep);
  font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---- Store buttons ---------------------------------------------------- */
.stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; border-radius: var(--radius-md);
  background: #0f172a; color: #fff;
  transition: transform .15s ease;
}
.store:hover { transform: translateY(-2px); }
.store-soon { background: #1e293b; opacity: 0.85; cursor: default; }
.store-soon:hover { transform: none; }
.store-logo { font-size: 24px; }
.store-meta { display: flex; flex-direction: column; line-height: 1.1; }
.store-small { font-size: 10px; opacity: 0.75; letter-spacing: 0.5px; text-transform: uppercase; }
.store-big { font-size: 18px; font-weight: 700; }

/* ---- FAQ -------------------------------------------------------------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 22px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 15px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; font-size: 20px; color: var(--primary); }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 10px; color: var(--text-muted); font-size: 14px; }

/* ---- Footer ----------------------------------------------------------- */
.footer {
  background: #0f172a; color: #cbd5e1;
  padding: 60px 36px 30px;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer .brand { color: #fff; }
.footer-tag { margin-top: 12px; font-size: 13px; opacity: 0.7; }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: #94a3b8; font-size: 14px; transition: color .15s ease; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  max-width: 1180px; margin: 30px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #64748b; text-align: center;
}

/* ---- Reveal animation ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Doc pages (privacy / terms / contact) ---------------------------- */
.doc {
  max-width: 760px; margin: 60px auto; padding: 0 36px 80px;
}
.doc h1 { font-size: 38px; margin-bottom: 8px; }
.doc .updated { color: var(--text-faint); font-size: 13px; margin-bottom: 28px; }
.doc h2 { font-size: 22px; margin-top: 36px; margin-bottom: 12px; }
.doc p, .doc li { color: var(--text-muted); font-size: 15px; }
.doc ul { padding-left: 22px; }
.doc a { color: var(--primary); }

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 880px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .phone { transform: none; }
  .trust { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; }
  .section { padding: 60px 20px; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer { padding: 50px 20px 24px; }
}
