/* ============================================================
   OnlyClick Landing Page
   Brand: Purple (#8B5CF6) → Pink (#EC4899) gradient
   Stack: Pure HTML + CSS, no framework
   ============================================================ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: #080810;
  color: #e5e7eb;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

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

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

ul { list-style: none; }

/* ─── CONTAINER ─── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.container-narrow { max-width: 640px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { color: #fff; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 7vw, 52px); margin-bottom: 16px; }
h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 12px; text-align: center; }
h3 { font-size: 18px; }
p { color: #9ca3af; margin-bottom: 12px; }
strong { color: #fff; font-weight: 700; }
code {
  background: rgba(139, 92, 246, 0.12);
  color: #A78BFA;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.85em;
  font-family: "SF Mono", Menlo, monospace;
}

/* ─── BRAND GRADIENT TEXT ─── */
.grad {
  background: linear-gradient(135deg, #A78BFA 0%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── BADGE ─── */
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #A78BFA;
  letter-spacing: 0.03em;
}
.badge-green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

/* ─── BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  color: #fff;
  box-shadow: 0 6px 28px rgba(139, 92, 246, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(139, 92, 246, 0.55);
}
.btn-primary:active { transform: translateY(0); }
.btn-block { width: 100%; }
.btn-hero {
  font-size: 17px;
  padding: 18px 32px;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}
.price-inline {
  margin-left: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   TOP BAR — Live ticker
   ═══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
.topbar a {
  text-decoration: underline;
  font-weight: 900;
  margin-left: 6px;
  color: #fff;
}
.ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: ticker-fade 0.5s ease;
}
.ticker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}
.ticker-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80vw;
}
.ticker-name {
  color: #fff;
  font-weight: 800;
}
.ticker-meta {
  opacity: 0.85;
  font-weight: 600;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
@keyframes ticker-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 28px 0 56px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139, 92, 246, 0.15), transparent 70%),
    #080810;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(236, 72, 153, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 32px;
  text-align: left;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.brand-name {
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-topline .badge { margin-bottom: 0; }

@media (max-width: 540px) {
  .hero-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-topline .badge { font-size: 12px; padding: 6px 12px; }
}

.hero h1 { margin-bottom: 18px; }
.lead {
  font-size: 16px;
  color: #b3b8c2;
  margin: 0 auto 30px;
  max-width: 560px;
  line-height: 1.55;
}

.hero-video {
  position: relative;
  max-width: 640px;
  margin: 0 auto 26px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  font-size: 13px;
  color: #6b7280;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats {
  background: rgba(16, 185, 129, 0.04);
  border-top: 1px solid rgba(16, 185, 129, 0.12);
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
  padding: 24px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  text-align: center;
}
.stats-grid > div { display: flex; flex-direction: column; gap: 2px; }
.stats-grid strong {
  color: #10b981;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}
.stats-grid span {
  font-size: 12px;
  color: #9ca3af;
}

/* ═══════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════ */
.sect {
  padding: 64px 0;
  position: relative;
}
.sect-alt { background: #0c0c18; }
.sect-lead {
  text-align: center;
  color: #9ca3af;
  font-size: 15px;
  margin: 0 auto 36px;
  max-width: 520px;
}
.micro {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   VS GRID (Before / After)
   ═══════════════════════════════════════════ */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vs-card {
  border-radius: 14px;
  padding: 22px 18px;
}
.vs-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.vs-card ul li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #d1d5db;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.vs-card ul li:last-child { border-bottom: 0; }
.vs-before {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.vs-before h3 { color: #f87171; }
.vs-after {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.vs-after h3 { color: #10b981; }

/* ═══════════════════════════════════════════
   SAMPLES GRID
   ═══════════════════════════════════════════ */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sample {
  position: relative;
  background: #111120;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
}
.sample video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(8, 8, 16, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sample-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A78BFA;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 2px 8px;
  border-radius: 100px;
}
.samples-cta {
  margin-top: 24px;
  text-align: center;
}
.samples-cta .btn {
  padding: 13px 28px;
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.feature {
  background: #111120;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover {
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-2px);
}
.feat-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 24px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { color: #9ca3af; font-size: 14px; margin: 0; }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.review {
  background: #111120;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px;
}
.review-hero {
  background:
    linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.04)),
    #111120;
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.stars {
  color: #A78BFA;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-quote {
  color: #d1d5db;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.rev-role {
  font-size: 11px;
  color: #6b7280;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.sect-pricing {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 92, 246, 0.06), transparent 70%),
    #080810;
}
.price-card {
  background: linear-gradient(160deg, #131320 0%, #1a1a2e 100%);
  border: 2px solid rgba(139, 92, 246, 0.35);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.1);
  position: relative;
}
.price-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #EC4899;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.price-old {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 4px;
}
.price-now {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 4px 0 6px;
  letter-spacing: -0.03em;
}
.price-now .cur {
  font-size: 20px;
  color: #9ca3af;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  margin-right: 4px;
}
.price-note {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 24px;
}
.price-features {
  text-align: left;
  margin: 22px 0 24px;
}
.price-features li {
  padding: 10px 0;
  color: #d1d5db;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.setup-note {
  font-size: 13px;
  font-weight: 700;
  color: #A78BFA;
  margin-bottom: 20px;
}
.price-policy {
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  background: #111120;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq[open] { border-color: rgba(139, 92, 246, 0.25); }
.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 48px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #A78BFA;
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 4px 22px 20px;
}
.faq-body p {
  color: #b3b8c2;
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.final {
  text-align: center;
  padding: 72px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 92, 246, 0.12), transparent 70%),
    linear-gradient(180deg, #0c0c18, #080810);
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}
.final h2 { margin: 16px 0 12px; }
.final .btn { max-width: 460px; margin: 8px auto 0; }
.final-note {
  margin-top: 22px;
  font-size: 12px;
  color: #6b7280;
}
.final-note a { color: #10b981; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #050508;
  padding: 36px 0 96px; /* extra bottom for sticky bar */
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.footer-brand img { border-radius: 8px; }
.footer-text {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
.footer-text a { color: #A78BFA; }
.footer-merchant {
  font-size: 12px;
  color: #9ca3af;
  margin: 12px auto 8px;
  max-width: 520px;
  line-height: 1.6;
}
.footer-merchant strong { color: #d1d5db; font-weight: 600; }
.footer-copy {
  font-size: 11px;
  color: #4b5563;
  margin: 0;
}

/* ═══════════════════════════════════════════
   STICKY BOTTOM BAR
   ═══════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-copy {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.sticky-label {
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sticky-price {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.sticky-bar .btn {
  padding: 12px 24px;
  font-size: 14px;
  flex: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .features { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .review-hero { grid-column: 1 / -1; }
  .sticky-copy { display: flex; }
  .sticky-bar .btn { flex: 0 0 auto; padding: 13px 28px; font-size: 15px; }
}

@media (min-width: 900px) {
  .container { max-width: 960px; padding: 0 32px; }
  .container-narrow { max-width: 720px; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .review-hero { grid-column: span 3; }
  .sect { padding: 80px 0; }
  .hero { padding: 36px 0 72px; }
  .hero-video { max-width: 760px; }
}

@media (max-width: 540px) {
  .vs-grid { grid-template-columns: 1fr; }
  .samples-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .samples-grid .sample:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }
  .price-now { font-size: 44px; }
  .btn-hero { font-size: 15px; padding: 16px 20px; }
  .price-inline { font-size: 14px; padding: 3px 8px; }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY & MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid #A78BFA;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.checkout-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.checkout-modal.open { display: flex; }
.checkout-modal.open .checkout-card { animation: checkout-pop 0.28s ease; }

.checkout-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 5, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.checkout-card {
  position: relative;
  width: 100%; max-width: 420px;
  background: linear-gradient(180deg, #15151f 0%, #0e0e18 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03) inset;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.checkout-close {
  position: absolute; top: 10px; right: 12px;
  width: 34px; height: 34px;
  font-size: 22px; line-height: 1;
  color: #9ca3af;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.checkout-close:hover { background: rgba(255,255,255,0.06); color: #fff; }

.checkout-title {
  font-size: 19px; line-height: 1.3;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}
.checkout-sub {
  font-size: 13.5px; color: #9ca3af;
  margin-bottom: 18px; line-height: 1.55;
}

.checkout-form { display: flex; flex-direction: column; gap: 12px; }
.checkout-field { display: flex; flex-direction: column; gap: 5px; }
.checkout-field span {
  font-size: 12.5px; color: #c4b5fd;
  font-weight: 600; letter-spacing: 0.02em;
}
.checkout-field input {
  width: 100%;
  background: #0a0a14;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.15s, background 0.15s;
}
.checkout-field input::placeholder { color: #555; }
.checkout-field input:focus {
  outline: none;
  border-color: #8B5CF6;
  background: #0d0d1a;
}
.checkout-field input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}
.checkout-hint {
  font-size: 11.5px;
  color: #6b7280;
  margin-top: 2px;
  line-height: 1.4;
}

.checkout-summary {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 4px;
}
.checkout-summary span { font-size: 13px; color: #9ca3af; }
.checkout-summary strong { font-size: 18px; color: #fff; font-weight: 700; }

.checkout-submit { margin-top: 6px; }
.checkout-submit:disabled { opacity: 0.6; cursor: wait; }

.checkout-error {
  margin: 4px 0 0;
  font-size: 13px;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
}

.checkout-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
}

.checkout-merchant {
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-merchant strong { color: #d1d5db; font-weight: 600; }

@keyframes checkout-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   HERO VIDEO CAPTION OVERLAYS
   ═══════════════════════════════════════════ */
.hero-video-captions {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  height: 40px;
  pointer-events: none;
  z-index: 2;
}
.hvc {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(8, 8, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  animation: hvc-cycle 9s infinite;
}
.hvc-1 { animation-delay: 0s; }
.hvc-2 { animation-delay: 3s; }
.hvc-3 { animation-delay: 6s; }
@keyframes hvc-cycle {
  0%, 2%   { opacity: 0; transform: translate(-50%, calc(-50% + 6px)); }
  6%, 32%  { opacity: 1; transform: translate(-50%, -50%); }
  36%, 100% { opacity: 0; transform: translate(-50%, calc(-50% - 6px)); }
}
@media (max-width: 540px) {
  .hvc { font-size: 11px; padding: 6px 12px; }
}

/* ═══════════════════════════════════════════
   PERSONA GRID (Cocok buat siapa)
   ═══════════════════════════════════════════ */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.persona {
  background: #111120;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.2s;
}
.persona:hover { border-color: rgba(139, 92, 246, 0.25); }
.persona-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 12px;
}
.persona h3 { margin-bottom: 6px; }
.persona p { color: #9ca3af; font-size: 14px; margin: 0; line-height: 1.55; }

.not-for {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 14px;
  padding: 20px 22px;
  color: #d1d5db;
  font-size: 14px;
}
.not-for strong {
  color: #FBBF24;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.not-for ul li {
  padding: 4px 0;
  color: #b3b8c2;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   STEPS (How it works)
   ═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #111120;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px 22px 22px;
  padding-left: 76px;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: rgba(139, 92, 246, 0.25); transform: translateY(-2px); }
.step-num {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}
.step h3 { margin-bottom: 4px; }
.step p { color: #9ca3af; font-size: 14px; margin: 0; line-height: 1.55; }

/* ═══════════════════════════════════════════
   SAMPLE SOURCE TAG
   ═══════════════════════════════════════════ */
.sample-source {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(8, 8, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #FBBF24;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  z-index: 1;
}
@media (max-width: 540px) {
  .sample-source { font-size: 9px; padding: 4px 7px; }
}

/* ═══════════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════════ */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: #0f0f1c;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.compare thead th {
  background: rgba(139, 92, 246, 0.08);
  color: #9ca3af;
  font-weight: 700;
  text-align: left;
  padding: 16px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare thead th.compare-us {
  color: #fff;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.22), rgba(236, 72, 153, 0.12));
}
.compare tbody th {
  text-align: left;
  font-weight: 600;
  color: #d1d5db;
  padding: 14px;
  background: #0c0c18;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  width: 28%;
}
.compare tbody td {
  padding: 14px;
  color: #9ca3af;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
  line-height: 1.4;
}
.compare tbody td.compare-us {
  background: rgba(139, 92, 246, 0.06);
  color: #fff;
  border-left: 1px solid rgba(139, 92, 246, 0.18);
  border-right: 1px solid rgba(139, 92, 246, 0.18);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.compare-sub {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CHAT-STYLE TESTIMONIAL
   ═══════════════════════════════════════════ */
.review-chat {
  background: #0d0d18;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chat-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-status {
  font-size: 10px;
  color: #10b981;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.chat-role {
  font-size: 11px;
  color: #6b7280;
}
.chat-bubble {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 14px 22px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  max-width: 92%;
  align-self: flex-start;
}
.chat-time {
  position: absolute;
  bottom: 6px;
  right: 12px;
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   FOUNDER NOTE
   ═══════════════════════════════════════════ */
.founder {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(160deg, #131320 0%, #0e0e18 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 18px;
  padding: 28px 26px;
}
.founder-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}
.founder-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FBBF24;
  margin-bottom: 6px;
}
.founder-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.founder-body p {
  color: #b3b8c2;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 8px;
}
.founder-sign {
  font-size: 13px !important;
  color: #6b7280 !important;
  font-style: italic;
}
@media (max-width: 540px) {
  .founder { flex-direction: column; padding: 24px 20px; gap: 14px; }
  .founder-avatar { width: 48px; height: 48px; font-size: 18px; }
}

/* ═══════════════════════════════════════════
   PRICE ANCHOR ROW
   ═══════════════════════════════════════════ */
.anchor-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 auto 28px;
  max-width: 480px;
}
.anchor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0f0f1c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 14px;
}
.anchor-label { color: #9ca3af; }
.anchor-value {
  color: #6b7280;
  font-weight: 700;
  text-decoration: line-through;
}
.anchor-us {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(139, 92, 246, 0.06));
  border-color: rgba(251, 191, 36, 0.35);
}
.anchor-us .anchor-label { color: #fff; font-weight: 700; }
.anchor-us .anchor-value {
  color: #FBBF24;
  text-decoration: none;
  font-size: 16px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .persona-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { padding-left: 22px; padding-top: 70px; }
  .step-num { top: 22px; left: 22px; }
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
   ═══════════════════════════════════════════ */
.legal-page {
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139, 92, 246, 0.1), transparent 70%),
    #080810;
  min-height: calc(100vh - 200px);
}
.legal-header {
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 28px;
}
.legal-back {
  display: block;
  width: fit-content;
  color: #A78BFA;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}
.legal-header .brand { margin-bottom: 24px; }
.legal-back:hover { opacity: 0.7; }
.legal-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-align: left;
}
.legal-updated {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.legal-body {
  color: #b3b8c2;
  font-size: 15px;
  line-height: 1.75;
}
.legal-body h2,
.legal-page h2 {
  text-align: left !important;
  font-size: 20px;
  color: #fff;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal-body p { margin-bottom: 14px; color: #b3b8c2; }
.legal-body ul, .legal-body ol {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li {
  margin-bottom: 6px;
  color: #b3b8c2;
  line-height: 1.65;
}
.legal-body strong { color: #fff; }
.legal-body a {
  color: #A78BFA;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: #c4b5fd; }
.legal-body em { color: #c4b5fd; font-style: italic; }
.legal-sign {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: #6b7280;
}

/* Footer links row */
.footer-links {
  margin: 12px 0 8px;
  font-size: 13px;
  color: #6b7280;
}
.footer-links a {
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-links a:hover { color: #A78BFA; }

/* ════════════════════════════════════════════════════════════
   DUAL MARQUEE CHIPS
   ════════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 10px;
}
.marquee:last-child { margin-bottom: 0; }
.marquee-track {
  display: inline-flex;
  animation: marquee-left 32s linear infinite;
}
.marquee-track.reverse {
  animation: marquee-right 38s linear infinite;
}
@keyframes marquee-left  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  margin: 0 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .marquee-track.reverse { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   ANIMATED FEATURE CARDS — Horizontal Scroll
   ════════════════════════════════════════════════════════════ */
:root {
  --pu: #8B5CF6;
  --pu-light: #A78BFA;
  --pk: #EC4899;
  --pu-dim: rgba(139, 92, 246, 0.12);
  --pu-border: rgba(139, 92, 246, 0.25);
  --oc-border: rgba(255, 255, 255, 0.08);
  --oc-surface: rgba(255, 255, 255, 0.04);
  --oc-muted: #525252;
}

.sect-features { padding-bottom: 60px; }
.features-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.features-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #525252;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.features-title {
  text-align: left;
  margin-bottom: 0;
}
.features-hint {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
  padding: 7px 14px;
}

.feat-scroll {
  margin-top: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 12px;
  scroll-snap-type: x mandatory;
}
.feat-scroll::-webkit-scrollbar { height: 6px; }
.feat-scroll::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.3); border-radius: 3px; }
.feat-row {
  display: flex;
  gap: 16px;
  padding-bottom: 4px;
}
.feat-card {
  scroll-snap-align: start;
  min-width: 270px;
  max-width: 310px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.feat-card:hover {
  border-color: var(--pu-border);
  transform: translateY(-4px);
}
.feat-anim {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: rgba(10, 10, 20, 0.6);
  border-bottom: 1px solid var(--oc-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-body { padding: 18px 20px 20px; }
.feat-body h3 {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}
.feat-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* ── Anim: Timeline ── */
.oc-timeline { width: 230px; display: flex; flex-direction: column; gap: 0; }
.oc-tl-ruler { display: flex; justify-content: space-between; padding: 0 2px; margin-bottom: 4px; }
.oc-tl-ruler span { font-size: 6px; font-weight: 600; color: var(--oc-muted); }
.oc-tl-tracks { position: relative; display: flex; flex-direction: column; gap: 3px; }
.oc-tl-track { height: 18px; border-radius: 4px; position: relative; overflow: hidden; }
.oc-tl-video { background: var(--pu-dim); border: 1px solid var(--pu-border); }
.oc-tl-audio { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.15); }
.oc-tl-sub   { background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.2); }
.oc-tl-label { position: absolute; left: 4px; top: 50%; transform: translateY(-50%); font-size: 5.5px; font-weight: 700; text-transform: uppercase; }
.oc-tl-video .oc-tl-label { color: rgba(139,92,246,.7); }
.oc-tl-audio .oc-tl-label { color: rgba(59,130,246,.6); }
.oc-tl-sub   .oc-tl-label { color: rgba(236,72,153,.6); }
.oc-tl-clip  { position: absolute; top: 2px; bottom: 2px; border-radius: 3px; }
.oc-tl-video .oc-tl-clip { background: rgba(139,92,246,.3); }
.oc-tl-video .oc-tl-clip:nth-child(2) { left: 5%;  width: 28%; }
.oc-tl-video .oc-tl-clip:nth-child(3) { left: 36%; width: 22%; }
.oc-tl-video .oc-tl-clip:nth-child(4) { left: 62%; width: 32%; }
.oc-tl-audio .oc-tl-clip { background: rgba(59,130,246,.2); }
.oc-tl-audio .oc-tl-clip:nth-child(2) { left: 5%; width: 92%; }
.oc-tl-sub .oc-tl-clip { background: rgba(236,72,153,.25); }
.oc-tl-sub .oc-tl-clip:nth-child(2) { left: 8%;  width: 24%; }
.oc-tl-sub .oc-tl-clip:nth-child(3) { left: 40%; width: 18%; }
.oc-tl-sub .oc-tl-clip:nth-child(4) { left: 62%; width: 28%; }
.oc-tl-wave { display: flex; align-items: center; gap: 1px; height: 100%; padding: 0 2px; }
.oc-tl-wave .wb { width: 1.5px; border-radius: 1px; background: rgba(59,130,246,.4); }
.oc-tl-hl {
  position: absolute; top: -2px; bottom: -2px;
  border: 1.5px solid var(--pu); border-radius: 5px;
  background: var(--pu-dim); pointer-events: none; z-index: 2;
  animation: oc-hl 6s ease-in-out infinite;
}
.oc-tl-hl-label {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 6px; font-weight: 800; color: var(--pu);
  padding: 1px 5px; background: var(--pu-dim); border-radius: 3px; white-space: nowrap;
}
@keyframes oc-hl { 0%,100% { left: 5%; width: 27%; } 33% { left: 35%; width: 24%; } 66% { left: 61%; width: 32%; } }
.oc-tl-playhead {
  position: absolute; top: -6px; bottom: -2px; width: 1.5px;
  background: #fff; z-index: 3; animation: oc-ph 6s linear infinite;
}
.oc-tl-playhead::before { content: ''; position: absolute; top: -2px; left: -3px; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4px solid #fff; }
@keyframes oc-ph { 0% { left: 5%; } 100% { left: 95%; } }

/* ── Anim: Reframe ── */
.oc-reframe { display: flex; align-items: center; gap: 16px; }
.oc-rf-wide { width: 80px; height: 45px; border: 2px solid rgba(255,255,255,.2); border-radius: 8px; position: relative; overflow: hidden; animation: oc-morph 4s ease-in-out infinite alternate; }
.oc-rf-wide .inner { position: absolute; inset: 4px; border-radius: 4px; background: linear-gradient(135deg, var(--pu-dim), rgba(139,92,246,.03)); }
.oc-rf-arrow { color: var(--pu-light); font-size: 20px; font-weight: 700; animation: oc-arr 2s ease-in-out infinite; }
.oc-rf-vert { width: 42px; height: 75px; border: 2px solid var(--pu); border-radius: 8px; position: relative; overflow: hidden; box-shadow: 0 0 16px var(--pu-dim); }
.oc-rf-vert .inner { position: absolute; inset: 4px; border-radius: 4px; background: linear-gradient(180deg, rgba(139,92,246,.3), var(--pu-dim)); }
.oc-rf-label { font-size: 8px; font-weight: 600; color: var(--oc-muted); text-align: center; margin-top: 4px; }
@keyframes oc-morph { 0%,40% { width: 80px; height: 45px; border-color: rgba(255,255,255,.2); } 60%,100% { width: 55px; height: 68px; border-color: var(--pu); } }
@keyframes oc-arr { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ── Anim: Karaoke phone ── */
.oc-phone { width: 72px; height: 120px; border: 2px solid rgba(255,255,255,.12); border-radius: 12px; position: relative; overflow: hidden; background: linear-gradient(180deg, #0c0c18, #060610); }
.oc-phone-notch { width: 28px; height: 3px; background: rgba(255,255,255,.12); border-radius: 2px; margin: 5px auto 0; }
.oc-karaoke { position: absolute; bottom: 12px; left: 5px; right: 5px; text-align: center; font-size: 8px; font-weight: 700; color: rgba(255,255,255,.25); line-height: 1.6; }
.oc-karaoke .w { display: inline; transition: color .15s, text-shadow .15s; }
.oc-karaoke .w.lit { color: #fff; text-shadow: 0 0 10px rgba(139,92,246,.7); }
.oc-hook { position: absolute; top: 20px; left: 5px; right: 5px; text-align: center; font-size: 6px; font-weight: 800; text-transform: uppercase; color: var(--pu-light); letter-spacing: .06em; opacity: 0; animation: oc-hook 4s ease-in-out infinite; }
@keyframes oc-hook { 0%,20% { opacity: 0; } 30%,70% { opacity: 1; } 80%,100% { opacity: 0; } }

/* ── Anim: Download ── */
.oc-dl { width: 190px; display: flex; flex-direction: column; gap: 10px; }
.oc-dl-url { background: rgba(255,255,255,.04); border: 1px solid var(--oc-border); border-radius: 6px; padding: 6px 8px; font-size: 7px; font-family: monospace; color: rgba(255,255,255,.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.oc-dl-bar { display: flex; flex-direction: column; gap: 5px; }
.oc-dl-row { display: flex; align-items: center; gap: 6px; }
.oc-dl-quality { font-size: 7px; font-weight: 700; color: var(--oc-muted); width: 32px; text-align: right; }
.oc-dl-track { flex: 1; height: 5px; background: rgba(255,255,255,.05); border-radius: 3px; overflow: hidden; }
.oc-dl-fill { height: 100%; background: linear-gradient(90deg, var(--pu), var(--pk)); border-radius: 3px; }
.oc-dl-fill-1080 { animation: oc-dl1 3s ease-in-out infinite; }
.oc-dl-fill-720  { animation: oc-dl2 3s ease-in-out infinite .4s; }
.oc-dl-fill-4k   { animation: oc-dl3 3s ease-in-out infinite .8s; }
@keyframes oc-dl1 { 0% { width: 0; } 70%,100% { width: 78%; } }
@keyframes oc-dl2 { 0% { width: 0; } 60%,100% { width: 55%; } }
@keyframes oc-dl3 { 0% { width: 0; } 90%,100% { width: 100%; } }
.oc-dl-pct { font-size: 7px; font-weight: 800; width: 28px; }
.oc-dl-pct.done { color: #10b981; }
.oc-dl-badge { font-size: 9px; font-weight: 800; color: var(--pu-light); text-align: center; padding: 3px 8px; background: var(--pu-dim); border: 1px solid var(--pu-border); border-radius: 5px; }

/* ── Anim: AI Models ── */
.oc-models-anim { width: 160px; display: flex; flex-direction: column; gap: 6px; }
.oc-model-item { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 6px; border: 1px solid var(--oc-border); background: var(--oc-surface); opacity: 0; transform: translateX(-8px); animation: oc-mi .4s ease-out forwards; }
.oc-model-item:nth-child(1) { animation-delay: .10s; }
.oc-model-item:nth-child(2) { animation-delay: .25s; }
.oc-model-item:nth-child(3) { animation-delay: .40s; }
.oc-model-item:nth-child(4) { animation-delay: .55s; }
.oc-model-item:nth-child(5) { animation-delay: .70s; }
.oc-model-item:nth-child(6) { animation-delay: .85s; }
@keyframes oc-mi { to { opacity: 1; transform: translateX(0); } }
.oc-model-item.active { border-color: var(--pu-border); background: var(--pu-dim); }
.oc-model-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); flex-shrink: 0; }
.oc-model-item.active .oc-model-dot { background: var(--pu); box-shadow: 0 0 6px var(--pu-dim); }
.oc-model-name { font-size: 8px; font-weight: 700; color: rgba(255,255,255,.4); }
.oc-model-item.active .oc-model-name { color: var(--pu-light); }
.oc-model-tag { font-size: 6px; font-weight: 600; color: var(--oc-muted); margin-left: auto; }
.oc-model-item.active .oc-model-tag { color: rgba(139,92,246,.6); }

/* ── Anim: Speed ── */
.oc-speed { width: 160px; display: flex; flex-direction: column; gap: 8px; }
.oc-speed-row { display: flex; align-items: center; gap: 6px; }
.oc-speed-label { font-size: 8px; font-weight: 700; color: var(--oc-muted); width: 44px; text-align: right; }
.oc-speed-track { flex: 1; height: 6px; background: rgba(255,255,255,.05); border-radius: 3px; overflow: hidden; }
.oc-speed-slow { height: 100%; background: rgba(255,255,255,.15); border-radius: 3px; animation: oc-slow 3s ease-in-out infinite; }
.oc-speed-fast { height: 100%; background: linear-gradient(90deg, var(--pu), var(--pk)); border-radius: 3px; box-shadow: 0 0 8px var(--pu-dim); animation: oc-fast 3s ease-in-out infinite; }
.oc-speed-time { font-size: 8px; font-weight: 800; color: var(--oc-muted); width: 34px; }
.oc-speed-time.hl { color: var(--pu-light); }
@keyframes oc-slow { 0% { width: 0; } 100% { width: 90%; } }
@keyframes oc-fast { 0% { width: 0; } 60%,100% { width: 90%; } }
.oc-speed-badge { font-size: 9px; font-weight: 800; color: var(--pu-light); text-align: center; padding: 3px 8px; background: var(--pu-dim); border: 1px solid var(--pu-border); border-radius: 5px; align-self: center; }

/* ── Anim: No Watermark ── */
.oc-wm-frame { width: 140px; height: 100px; border: 1.5px solid var(--oc-border); border-radius: 10px; position: relative; overflow: hidden; background: var(--oc-surface); }
.oc-wm-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-25deg); font-size: 13px; font-weight: 800; color: rgba(255,255,255,.1); letter-spacing: .1em; text-transform: uppercase; animation: oc-wm-v 4s ease-in-out infinite; white-space: nowrap; }
.oc-wm-text::after { content: ''; position: absolute; left: -10%; top: 50%; width: 120%; height: 2px; background: var(--pu); transform: scaleX(0); transform-origin: left; animation: oc-wm-s 4s ease-in-out infinite; }
@keyframes oc-wm-v { 0%,25% { opacity: 1; } 40%,75% { opacity: 0; } 90%,100% { opacity: 1; } }
@keyframes oc-wm-s { 0%,15% { transform: scaleX(0); } 25%,35% { transform: scaleX(1); } 40%,100% { transform: scaleX(0); } }
.oc-wm-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); font-size: 9px; font-weight: 800; color: var(--pu-light); padding: 4px 10px; background: var(--pu-dim); border: 1.5px solid var(--pu-border); border-radius: 6px; white-space: nowrap; animation: oc-wm-show 4s ease-in-out infinite; }
@keyframes oc-wm-show { 0%,35% { transform: translate(-50%,-50%) scale(0); } 45%,70% { transform: translate(-50%,-50%) scale(1); } 80%,100% { transform: translate(-50%,-50%) scale(0); } }

/* ── Anim: Multi-format ── */
.oc-formats { position: relative; width: 130px; height: 105px; }
.oc-fmt-card { position: absolute; border: 1.5px solid var(--oc-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; background: rgba(10,10,20,.95); }
.oc-fmt-card .ratio { font-size: 9px; font-weight: 800; color: rgba(255,255,255,.5); }
.oc-fmt-card .plat  { font-size: 6px; font-weight: 700; color: var(--pu-light); text-transform: uppercase; letter-spacing: .08em; }
.oc-fmt-916 { width: 38px; height: 67px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; border-color: var(--pu); box-shadow: 0 0 16px var(--pu-dim); animation: oc-fan-916 5s ease-in-out infinite; }
.oc-fmt-11  { width: 50px; height: 50px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; animation: oc-fan-11 5s ease-in-out infinite; }
.oc-fmt-169 { width: 72px; height: 40px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; animation: oc-fan-169 5s ease-in-out infinite; }
@keyframes oc-fan-916 { 0%,20% { transform: translate(-50%,-50%) rotate(0); } 40%,70% { transform: translate(-110%,-50%) rotate(-5deg); } 90%,100% { transform: translate(-50%,-50%) rotate(0); } }
@keyframes oc-fan-11  { 0%,20% { transform: translate(-50%,-50%); opacity: .5; } 40%,70% { transform: translate(-50%,-55%); opacity: 1; } 90%,100% { transform: translate(-50%,-50%); opacity: .5; } }
@keyframes oc-fan-169 { 0%,20% { transform: translate(-50%,-50%); opacity: .4; } 40%,70% { transform: translate(5%,-50%) rotate(4deg); opacity: 1; } 90%,100% { transform: translate(-50%,-50%); opacity: .4; } }

/* ── Anim: Privacy Shield ── */
.oc-shield { position: relative; width: 70px; height: 85px; }
.oc-shield svg { width: 100%; height: 100%; }
.oc-shield-body { fill: none; stroke: var(--pu); stroke-width: 2; filter: drop-shadow(0 0 14px var(--pu-dim)); }
.oc-shield-check { stroke: var(--pu-light); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 30; stroke-dashoffset: 30; animation: oc-draw 2s ease-in-out infinite; }
@keyframes oc-draw { 0%,30% { stroke-dashoffset: 30; } 60%,100% { stroke-dashoffset: 0; } }
.oc-shield-pulse { position: absolute; inset: -10px; border-radius: 50%; border: 1px solid var(--pu-dim); animation: oc-ring 3s ease-out infinite; }
.oc-shield-pulse:nth-child(2) { animation-delay: 1s; }
@keyframes oc-ring { 0% { transform: scale(.8); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }

/* ── Anim: Workflow ── */
.oc-workflow { display: flex; flex-direction: column; gap: 4px; width: 170px; }
.oc-wf-step { display: flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 5px; border: 1px solid var(--oc-border); background: var(--oc-surface); opacity: 0; transform: translateX(-10px); animation: oc-step .4s ease-out forwards; }
.oc-wf-step:nth-child(1) { animation-delay: .10s; }
.oc-wf-step:nth-child(2) { animation-delay: .25s; }
.oc-wf-step:nth-child(3) { animation-delay: .40s; }
.oc-wf-step:nth-child(4) { animation-delay: .55s; }
.oc-wf-step:nth-child(5) { animation-delay: .70s; }
@keyframes oc-step { to { opacity: 1; transform: translateX(0); } }
.oc-wf-step .num { width: 18px; height: 18px; border-radius: 4px; background: var(--pu-dim); border: 1px solid var(--pu-border); display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 800; color: var(--pu); flex-shrink: 0; }
.oc-wf-step .txt { font-size: 8px; font-weight: 600; color: rgba(255,255,255,.45); }
.oc-wf-step.active { border-color: var(--pu-border); background: var(--pu-dim); }
.oc-wf-step.active .txt { color: var(--pu-light); }

