:root {
  --sapphire: #1E40AF;
  --sapphire-deep: #1E3A8A;
  --sapphire-light: #3B82F6;
  --sapphire-surface: #EFF2FF;
  --gold: #F59E0B;
  --gold-surface: #FEF3C7;
  --surface-warm: #FAFAF7;
  --surface-card: #ffffff;
  --on-surface: #111827;
  --on-surface-muted: #6B7280;
  --border: rgba(17, 24, 39, 0.1);

  --movie: #DC2626;
  --series: #9333EA;
  --documentary: #0D9488;
  --book: #059669;
  --audiobook: #6366F1;
  --podcast: #EA580C;
  --game: #0891B2;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(30, 64, 175, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--surface-warm);
  color: var(--on-surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sapphire); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--sapphire);
}
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--sapphire);
  color: white;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -1px;
}
.brand-mark-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 2px 6px rgba(30, 64, 175, 0.15);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--on-surface);
  font-weight: 600;
  font-size: 14px;
}
.nav-cta {
  background: var(--sapphire);
  color: white !important;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}
.nav-cta:hover { background: var(--sapphire-deep); text-decoration: none; }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  background: var(--sapphire-surface);
  color: var(--sapphire-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero h1 em {
  color: var(--sapphire);
  font-style: normal;
}
.hero p.lead {
  font-size: 18px;
  color: var(--on-surface-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--sapphire);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--sapphire-deep); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: white;
  color: var(--sapphire);
  border: 1px solid var(--border);
}

.hero-phones {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  perspective: 1200px;
  flex-wrap: wrap;
}
.phone-img {
  width: 260px;
  max-width: 80%;
  height: auto;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.phone-img-right {
  transform: rotateY(-6deg) translateY(8px);
}
.phone-img-left {
  transform: rotateY(6deg);
}
@media (max-width: 720px) {
  .phone-img { width: 200px; }
  .phone-img-right, .phone-img-left { transform: none; }
}
.phone {
  width: 240px;
  height: 480px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--sapphire), var(--sapphire-deep));
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  color: white;
  position: relative;
  overflow: hidden;
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: rgba(0,0,0,0.7);
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  flex: 1;
  background: var(--surface-warm);
  color: var(--on-surface);
  border-radius: 26px;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
}
.phone-title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.phone-chip {
  background: var(--sapphire-surface);
  border-radius: 10px;
  padding: 8px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}
.phone-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.phone-cover {
  flex: 1;
  aspect-ratio: 2/3;
  border-radius: 8px;
}

/* ---------- SECTION ---------- */
section { padding: 80px 0; }
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-lead {
  text-align: center;
  font-size: 17px;
  color: var(--on-surface-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---------- CATEGORIES ---------- */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.cat {
  background: var(--surface-card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.15s ease;
}
.cat:hover { transform: translateY(-4px); }
.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}
.cat-movie { background: var(--movie); }
.cat-series { background: var(--series); }
.cat-doc { background: var(--documentary); }
.cat-book { background: var(--book); }
.cat-audiobook { background: var(--audiobook); }
.cat-podcast { background: var(--podcast); }
.cat-game { background: var(--game); }
.cat h3 { font-size: 16px; margin-bottom: 4px; }
.cat p { font-size: 13px; color: var(--on-surface-muted); }

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--surface-card);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature h3 span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sapphire-surface);
  color: var(--sapphire-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.feature p { color: var(--on-surface-muted); font-size: 14px; line-height: 1.6; }

/* ---------- PRICING ---------- */
.pricing-section {
  background: linear-gradient(180deg, var(--surface-warm), white);
}
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sapphire), var(--sapphire-deep));
  color: white;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.price-amount {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-period { opacity: 0.85; font-size: 16px; margin-bottom: 24px; }
.price-features { text-align: left; margin: 24px 0; }
.price-features li {
  list-style: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.price-features li::before {
  content: '✓';
  background: rgba(255,255,255,0.2);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.btn-white {
  background: white;
  color: var(--sapphire);
  width: 100%;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--on-surface);
  color: white;
  padding: 56px 0 28px;
  margin-top: 80px;
}
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-size: 13px; margin-bottom: 14px; letter-spacing: 0.8px; opacity: 0.6; }
.footer ul { list-style: none; }
.footer ul li { padding: 5px 0; font-size: 14px; }
.footer a { color: white; opacity: 0.7; }
.footer a:hover { opacity: 1; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}
.attribution {
  margin-top: 32px;
  padding: 20px 24px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.45;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.attribution p {
  margin: 6px 0;
}
.attribution a {
  color: white;
  opacity: 0.8;
  text-decoration: underline;
}

/* ---------- LEGAL PAGE ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.legal .updated {
  color: var(--on-surface-muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  font-weight: 800;
}
.legal h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #1F2937;
}
.legal ul, .legal ol { padding-left: 24px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-block; }
  .hero { padding: 56px 0 40px; }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .hero-phones .phone:nth-child(2) { display: none; }
  .phone { width: 200px; height: 400px; }
}
