/* BunnyConvert onboarding v2 — standalone preview stylesheet */
:root {
  --bg: #0b0f17;
  --surface: #11151f;
  --surface-2: #161a26;
  --line: rgba(255,255,255,0.10);
  --ink: #e6e9f0;
  --muted: #aab2c0;
  --faint: #7e8696;
  --accent: #7c3aed;
  --accent-2: #a855f7;
  --accent-soft: rgba(124,58,237,0.18);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5; -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

/* ============ Stage ============ */
.ob {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.ob-wash {
  position: fixed; pointer-events: none; z-index: 0;
  filter: blur(40px);
}
.ob-wash-tl {
  top: -10%; left: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,0.30), transparent 60%);
}
.ob-wash-br {
  bottom: -15%; right: -15%; width: 65vw; height: 65vw;
  background: radial-gradient(circle at 70% 70%, rgba(168,85,247,0.24), transparent 60%);
}

/* ============ Slide ============ */
/* v244 — tighter slide motion. The 260ms cross-fade with overlapping
   cascades made every tap feel like it took half a second. New timing:
   140ms exit, 200ms enter, content cascades capped at 240ms total. The
   exiting slide stacks absolutely so the next one can claim its space
   without a layout reflow. */
.ob-slide {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  display: none; flex-direction: column; align-items: center; text-align: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity 200ms cubic-bezier(.22,1,.36,1), transform 200ms cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.ob-slide.active { display: flex; opacity: 1; transform: translateY(0); }
.ob-slide.exiting {
  display: flex; opacity: 0; transform: translateY(-4px);
  transition-duration: 140ms;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% - 4px));
  pointer-events: none;
}

.ob-title {
  font-size: clamp(1.6rem, 5.2vw, 2.05rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.18;
  margin: 8px 0 10px; color: #fff;
}
.ob-sub {
  font-size: 0.97rem; color: var(--muted);
  margin: 0 0 28px; max-width: 380px;
}

/* ============ Skip + Dots ============ */
.ob-skip {
  position: fixed; top: 18px; right: 18px; z-index: 5;
  background: transparent; border: 0; color: var(--faint);
  font: inherit; font-size: 0.85rem; cursor: pointer; padding: 8px 10px;
  border-radius: 8px;
}
.ob-skip:hover { color: var(--ink); background: rgba(255,255,255,0.05); }

.ob-dots {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.ob-dot {
  width: 22px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.14);
  transition: background 240ms, width 240ms;
}
.ob-dot.active { background: linear-gradient(90deg, var(--accent), var(--accent-2)); width: 28px; }

/* ============ Aurora orb ============ */
.ob-orb {
  width: 280px; height: 280px; margin: 0 0 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(168,85,247,0.6), rgba(124,58,237,0.4) 40%, transparent 70%);
  filter: blur(28px); opacity: 0.85;
  animation: ob-orb-breathe 6s ease-in-out infinite;
}
.ob-orb-sm { width: 200px; height: 200px; position: absolute; top: -10px; z-index: -1; }
@keyframes ob-orb-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.04); opacity: 1; }
}

/* ============ SLIDE 1 — Language ============ */
.ob-langs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 12px;
  position: relative; z-index: 3;
}
.ob-lang {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink); font: inherit; font-weight: 500; font-size: 0.95rem;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  transition: transform 120ms, border-color 160ms, background 160ms, box-shadow 200ms;
}
.ob-lang:hover { background: rgba(255,255,255,0.07); border-color: rgba(167,139,250,0.4); }
.ob-lang.active {
  /* v243 — committed accent so selection is unmistakable on dark surface.
     Restrained palette elsewhere; here we commit fully to one accent. */
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px -4px rgba(124,58,237,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: translateY(-1px);
}
.ob-lang:focus-visible {
  outline: 2px solid rgba(167,139,250,0.85);
  outline-offset: 2px;
}

/* ============ SLIDE 2 — Hero (fan of cards) ============ */
.ob-fan {
  position: relative; width: 280px; height: 200px; margin: 4px 0 20px;
  perspective: 800px;
}
.fan-card {
  position: absolute; top: 8px; left: 50%;
  width: 160px; height: 180px;
  background: var(--surface); color: #c4b5fd;
  border: 1px solid var(--line); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 20px 50px -20px rgba(124,58,237,0.55);
  opacity: 0; transform-origin: bottom center;
  transition: transform 320ms cubic-bezier(.22,1,.36,1), opacity 320ms;
}
.fan-card svg { width: 38px; height: 38px; }
.fan-card span { font-size: 0.88rem; font-weight: 600; color: #e6e9f0; }
.ob-slide-2.active .fan-c4 { opacity: 1; transform: translateX(-50%) rotate(-12deg) translateX(-44px); transition-delay: 0ms; }
.ob-slide-2.active .fan-c3 { opacity: 1; transform: translateX(-50%) rotate(-4deg) translateX(-14px); transition-delay: 40ms; }
.ob-slide-2.active .fan-c2 { opacity: 1; transform: translateX(-50%) rotate(4deg) translateX(14px); transition-delay: 80ms; }
.ob-slide-2.active .fan-c1 { opacity: 1; transform: translateX(-50%) rotate(12deg) translateX(44px); transition-delay: 120ms; }

.ob-trust {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.ob-trust li {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px;
  font-size: 0.78rem; color: var(--muted);
}
.ob-trust svg { width: 14px; height: 14px; color: var(--accent-2); }

/* ============ SLIDE 3 — How it works ============ */
.ob-steps {
  position: relative; width: 320px; height: 100px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px; margin: 0 0 18px;
  color: var(--accent);
}
.ob-steps-line {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  color: var(--accent);
}
.ob-steps-line path {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
}
.ob-slide-3.active .ob-steps-line path {
  animation: ob-line-draw 520ms ease-out 80ms forwards;
}
@keyframes ob-line-draw { to { stroke-dashoffset: 0; } }
.step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 80px;
  opacity: 0; transform: scale(0.6);
  transition: opacity 220ms ease-out, transform 220ms cubic-bezier(.34,1.56,.64,1);
}
.ob-slide-3.active .step-1 { opacity: 1; transform: scale(1); transition-delay: 80ms; }
.ob-slide-3.active .step-2 { opacity: 1; transform: scale(1); transition-delay: 200ms; }
.ob-slide-3.active .step-3 { opacity: 1; transform: scale(1); transition-delay: 320ms; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid rgba(167,139,250,0.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  box-shadow: 0 6px 18px -6px rgba(124,58,237,0.6);
}
.step-circle svg { width: 22px; height: 22px; }
.step-label { font-size: 0.83rem; color: var(--muted); }

/* ============ SLIDE 4 — Soft sign-up ============ */
.ob-social {
  width: 100%; max-width: 320px;
  display: flex; flex-direction: column; gap: 10px;
}
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 14px; border-radius: 11px;
  background: #fff; color: #1f1f1f; border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.93rem; font-weight: 600; cursor: pointer; font-family: inherit;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  transition: transform 120ms, box-shadow 200ms, background 160ms;
  opacity: 0; transform: translateY(8px);
  animation: ob-fade-up 360ms cubic-bezier(.22,1,.36,1) forwards;
}
.ob-slide-4.active .auth-social-btn:nth-child(1) { animation-delay: 40ms; }
.ob-slide-4.active .auth-social-btn:nth-child(2) { animation-delay: 100ms; }
.ob-slide-4.active .ob-later                    { animation-delay: 160ms; }
.auth-social-btn:hover { background: #f4f6fa; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.14); }
.auth-social-btn:active { transform: translateY(0); }
.auth-social-btn[disabled] { opacity: .6; cursor: wait; }
.auth-social-apple { background: #111; color: #fff; border-color: #000; }
.auth-social-apple:hover { background: #232323; }
.auth-social-email {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.auth-social-email:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(167,139,250,0.4);
}
.auth-social-email svg { color: var(--accent-2); }

.ob-email-btn {
  width: 100%; padding: 12px 14px; border-radius: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink); font: inherit; font-weight: 500; font-size: 0.93rem;
  cursor: pointer;
  opacity: 0; transform: translateY(8px);
  animation: ob-fade-up 360ms cubic-bezier(.22,1,.36,1) forwards;
}
.ob-email-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(167,139,250,0.4); }

.ob-later {
  width: 100%; padding: 10px;
  background: transparent; border: 0; color: var(--faint);
  font: inherit; font-size: 0.82rem; cursor: pointer; margin-top: 4px;
  opacity: 0;
  animation: ob-fade-up 360ms cubic-bezier(.22,1,.36,1) forwards;
}
.ob-later:hover { color: var(--ink); }

.ob-oauth-err {
  margin-top: 12px; padding: 9px 12px; border-radius: 10px;
  background: rgba(248,113,113,0.10); border: 1px solid rgba(248,113,113,0.30);
  color: #fca5a5; font-size: 0.85rem;
}

@keyframes ob-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA + Preview note ============ */
.ob-cta {
  width: 100%; max-width: 280px;
  padding: 13px 22px; border-radius: 999px; border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font: inherit; font-weight: 700; font-size: 0.98rem; cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(124,58,237,0.65);
  transition: transform 120ms ease-out, box-shadow 200ms;
  margin-top: 4px;
}
.ob-cta:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -10px rgba(124,58,237,0.8); }
.ob-cta:active { transform: scale(0.97); }

.ob-preview-note {
  position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  font-size: 0.74rem; color: var(--faint);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 14px;
}
.ob-preview-note a { color: var(--accent-2); text-decoration: none; }
.ob-preview-note a:hover { text-decoration: underline; }
.ob-preview-note strong { color: var(--ink); font-weight: 600; }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .ob-orb, .ob-slide-2.active .fan-card,
  .ob-slide-3.active .step,
  .ob-slide-3.active .ob-steps-line path,
  .ob-slide-4.active .auth-social-btn,
  .ob-slide-4.active .ob-email-btn,
  .ob-slide-4.active .ob-later {
    animation: none !important; transition-duration: 200ms !important;
  }
  .ob-slide { transition: opacity 200ms !important; transform: none !important; }
  .ob-slide-2.active .fan-card { opacity: 1; }
  .ob-slide-3.active .step { opacity: 1; transform: scale(1); }
  .ob-slide-3.active .ob-steps-line path { stroke-dashoffset: 0; }
  .ob-slide-4.active .auth-social-btn, .ob-slide-4.active .ob-email-btn, .ob-slide-4.active .ob-later { opacity: 1; transform: none; }
}

/* ============ Hello-cycle (slide 1) ============ */
.hello-cycle {
  position: relative;
  width: 100%;
  height: 44px;
  margin: -240px 0 12px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hello-word {
  /* v243 — solid color, weight does the emphasis (impeccable: no gradient text) */
  position: absolute;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 480ms cubic-bezier(.22,1,.36,1),
              transform 480ms cubic-bezier(.22,1,.36,1);
}
.hello-word.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============ SLIDE 3 — Device-mockup (Three taps) ============ */
.ttm-stage {
  position: relative;
  width: 200px; height: 280px;
  margin: 0 0 22px;
}
.ttm-device {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1f2e, #0d1119);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 14px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.5),
    0 30px 60px -20px rgba(124,58,237,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.ttm-notch {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #000;
  border-radius: 99px;
  z-index: 2;
}
.ttm-screen {
  position: relative;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(124,58,237,0.15), transparent 70%), #0b0f17;
  border-radius: 22px;
  overflow: hidden;
}
.ttm-phase {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 360ms cubic-bezier(.22,1,.36,1),
              transform 360ms cubic-bezier(.22,1,.36,1);
}

/* Phase 1 — drop */
.ttm-drop-ring {
  width: 92px; height: 92px;
  border: 1.5px dashed rgba(167,139,250,0.55);
  border-radius: 22px;
  position: relative;
}
.ob-slide-3.active .ttm-drop-ring {
  animation: ttm-pulse 1.6s ease-in-out infinite;
}
@keyframes ttm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.3); }
  50%      { box-shadow: 0 0 0 10px rgba(124,58,237,0); }
}
.ttm-drop-icon {
  position: absolute; top: 50%; left: 50%;
  width: 28px; height: 28px;
  transform: translate(-50%, -50%);
  color: var(--accent-2);
}
.ttm-phase-drop .ttm-drop-ring { position: relative; }
.ttm-phase-drop > .ttm-drop-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% - 6px));
}
.ttm-file-chip {
  font-size: 0.72rem; color: var(--muted);
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 99px;
}

/* Phase 2 — grid */
.ttm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 120px;
}
.ttm-grid span {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all 240ms;
}
.ob-slide-3.active .ttm-grid span.hl {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 6px 18px -4px rgba(124,58,237,0.7);
}
.ttm-grid-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
}

/* Phase 3 — done */
.ttm-check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(124,58,237,0.8);
}
.ttm-check svg { width: 30px; height: 30px; }
.ttm-bar {
  width: 100px; height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.ttm-bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.ob-slide-3.active .ttm-phase-done.is-on .ttm-bar i {
  animation: ttm-fill 700ms ease-out forwards;
}
@keyframes ttm-fill { to { width: 100%; } }
.ttm-done-label {
  font-size: 0.78rem; font-weight: 600;
  color: #c4b5fd;
}

/* Phase loop — drop (0-2s) → grid (2-4s) → done (4-6s) */
.ob-slide-3.active .ttm-phase-drop { animation: ttm-show 6s ease-in-out infinite; animation-delay: 0s; }
.ob-slide-3.active .ttm-phase-grid { animation: ttm-show 6s ease-in-out infinite; animation-delay: -4s; }
.ob-slide-3.active .ttm-phase-done { animation: ttm-show 6s ease-in-out infinite; animation-delay: -2s; }
@keyframes ttm-show {
  0%, 28%   { opacity: 1; transform: scale(1); }
  33%, 95%  { opacity: 0; transform: scale(0.96); }
  100%      { opacity: 0; transform: scale(0.96); }
}

/* Phase indicator dots below device */
.ttm-phase-dots {
  position: absolute; bottom: -18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}
.ttm-pd {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.ob-slide-3.active .ttm-pd { animation: ttm-dot 6s ease-in-out infinite; }
.ob-slide-3.active .ttm-pd-1 { animation-delay: 0s; }
.ob-slide-3.active .ttm-pd-2 { animation-delay: -4s; }
.ob-slide-3.active .ttm-pd-3 { animation-delay: -2s; }
@keyframes ttm-dot {
  0%, 28%   { background: var(--accent-2); transform: scale(1.3); }
  33%, 100% { background: rgba(255,255,255,0.15); transform: scale(1); }
}

/* ============ SLIDE 4 — Free tier card ============ */
.free-card {
  position: relative;
  width: 100%; max-width: 320px;
  margin: 0 0 22px;
  padding: 22px 22px 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.free-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  color: #c4b5fd;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(167,139,250,0.4);
  padding: 4px 10px; border-radius: 99px;
  margin-bottom: 14px;
}
.free-badge.pro {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 4px 14px -2px rgba(124,58,237,0.6);
}
.free-card.pro-power {
  background:
    radial-gradient(circle at 90% 10%, rgba(168,85,247,0.16), transparent 55%),
    linear-gradient(160deg, rgba(124,58,237,0.10), rgba(255,255,255,0.02));
  border-color: rgba(167,139,250,0.30);
}

/* GPU hints for animated elements to reduce stutter on mid-range Android */
.ob-orb, .fan-card, .ttm-phase, .pro-shine, .hello-word {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.free-rows {
  display: flex; flex-direction: column; gap: 11px;
  text-align: left;
}
.free-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--ink);
}
.free-dot {
  flex: 0 0 8px;
  width: 8px; height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}
.ob-slide-free.active .free-row {
  opacity: 0;
  animation: ob-fade-up 420ms cubic-bezier(.22,1,.36,1) forwards;
}
.ob-slide-free.active .free-row:nth-child(1) { animation-delay: 60ms; }
.ob-slide-free.active .free-row:nth-child(2) { animation-delay: 130ms; }
.ob-slide-free.active .free-row:nth-child(3) { animation-delay: 200ms; }

/* ============ SLIDE 6 — Pro 7-day trial ============ */
.pro-card {
  position: relative;
  width: 100%; max-width: 320px;
  margin: 0 0 20px;
  padding: 20px 22px 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(168,85,247,0.18), transparent 60%),
    linear-gradient(160deg, rgba(124,58,237,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(167,139,250,0.30);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 50px -20px rgba(124,58,237,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.pro-shine {
  position: absolute; top: 0; left: -60%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.ob-slide-pro.active .pro-shine { animation: pro-sweep 3.6s ease-in-out infinite; }
@keyframes pro-sweep {
  0%, 12% { transform: translateX(0); }
  60%, 100% { transform: translateX(280%); }
}
.pro-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 4px 10px; border-radius: 99px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px -2px rgba(124,58,237,0.7);
}
.pro-headline {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 4px;
}
.pro-sub {
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 14px;
}
.pro-feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.pro-feats li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem; color: var(--ink);
}
.pro-feats svg {
  width: 14px; height: 14px;
  color: #a855f7;
  flex: 0 0 14px;
}
.ob-slide-pro.active .pro-feats li {
  opacity: 0;
  animation: ob-fade-up 380ms cubic-bezier(.22,1,.36,1) forwards;
}
.ob-slide-pro.active .pro-feats li:nth-child(1) { animation-delay: 60ms; }
.ob-slide-pro.active .pro-feats li:nth-child(2) { animation-delay: 120ms; }
.ob-slide-pro.active .pro-feats li:nth-child(3) { animation-delay: 180ms; }
.ob-slide-pro.active .pro-feats li:nth-child(4) { animation-delay: 240ms; }

/* Paywall variants — bigger card, plan toggle */
.pro-paywall {
  width: 100%; max-width: 340px;
  padding: 18px 18px 16px;
}
.pro-title {
  font-size: 1.35rem !important;
  margin: 4px 0 2px !important;
}
.pro-sub-line {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 14px;
}
.pro-plans {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.pro-plan {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 8px;
  text-align: left;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: border-color 180ms, background 180ms, transform 120ms;
}
.pro-plan:hover { background: rgba(255,255,255,0.06); }
.pro-plan:active { transform: scale(0.985); }
.pro-plan.active {
  border-color: rgba(167,139,250,0.8);
  background: rgba(124,58,237,0.10);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18), 0 4px 14px -4px rgba(124,58,237,0.5);
}
.pp-label {
  font-size: 0.95rem;
  font-weight: 700;
  grid-column: 1;
}
.pp-price {
  grid-column: 2;
  grid-row: 1;
  display: flex; align-items: baseline; gap: 2px;
  font-variant-numeric: tabular-nums;
}
.pp-price strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.pp-price small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.pp-equiv {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.72rem;
  color: var(--faint);
}
.pp-save {
  position: absolute;
  top: -8px; right: 12px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.10em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 3px 8px;
  border-radius: 99px;
  box-shadow: 0 3px 10px -2px rgba(124,58,237,0.6);
}
.pro-feats-compact li {
  font-size: 0.80rem !important;
  gap: 7px !important;
}
.pro-feats-compact { gap: 6px !important; }
.pro-feats-compact svg { width: 12px !important; height: 12px !important; }

/* ============ Email auth panel ============ */
.ob-slide-email {
  width: 100%; max-width: 380px;
}
.ob-slide-email.active { display: flex; }
.ob-back {
  position: fixed; top: 18px; left: 18px; z-index: 5;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 160ms, border-color 160ms, transform 120ms;
}
.ob-back:hover { background: rgba(255,255,255,0.07); border-color: rgba(167,139,250,0.4); }
.ob-back:active { transform: scale(0.94); }
.ob-back svg { width: 18px; height: 18px; }

.email-step {
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.email-step[hidden] { display: none !important; }

.ob-field {
  width: 100%; max-width: 320px;
  display: flex; flex-direction: column; gap: 6px;
  margin: 4px 0 18px;
  text-align: left;
}
.ob-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em;
  padding-left: 2px;
}
.ob-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit; font-size: 0.96rem;
  transition: border-color 160ms, background 160ms, box-shadow 200ms;
}
.ob-input::placeholder { color: var(--faint); }
.ob-input:focus {
  outline: none;
  border-color: rgba(167,139,250,0.6);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}
.ob-input-otp {
  letter-spacing: 0.42em;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.ob-link {
  background: transparent; border: 0;
  color: var(--accent-2); font: inherit; font-size: 0.86rem;
  cursor: pointer; padding: 8px;
  margin-top: 4px;
}
.ob-link:hover { color: #c4b5fd; text-decoration: underline; }

.ob-form-err {
  margin-top: 12px; padding: 9px 12px; border-radius: 10px;
  background: rgba(248,113,113,0.10); border: 1px solid rgba(248,113,113,0.30);
  color: #fca5a5; font-size: 0.85rem;
  width: 100%; max-width: 320px;
}

/* ============ Small screens polish ============ */
@media (max-width: 380px) {
  .ob { padding: 18px; }
  .ob-orb { width: 220px; height: 220px; }
  .ob-fan { width: 240px; height: 180px; }
  .fan-card { width: 130px; height: 160px; }
  .ttm-stage { width: 180px; height: 250px; }
  .hello-cycle { margin-top: -200px; }
  .hello-word { font-size: 1.5rem; }
}

/* Reduced-motion additions */
@media (prefers-reduced-motion: reduce) {
  .hello-word { transition: none !important; }
  .ttm-phase, .ttm-pd, .ttm-drop-ring, .pro-shine,
  .ob-slide-free.active .free-row,
  .ob-slide-pro.active .pro-feats li { animation: none !important; }
  .ttm-phase-drop { opacity: 1 !important; transform: none !important; }
  .ttm-phase-grid, .ttm-phase-done { opacity: 0 !important; }
  .ob-slide-free.active .free-row,
  .ob-slide-pro.active .pro-feats li { opacity: 1 !important; transform: none !important; }
}
