/* pricing.css — /pricing page styles. Anime-cyberpunk, parent-targeted copy. */
/* Uses design tokens consistent with theme.css. */

:root {
  --bg-deep: #0a0a12;
  --bg-surface: #12121e;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --fg: #e8e8f0;
  --fg-muted: #8888a8;
  --fg-dim: #555570;
  --accent: #00f0ff;
  --accent-glow: rgba(0, 240, 255, 0.15);
  --accent-secondary: #7b2fff;
  --accent-warm: #ff3c7a;
  --gradient-accent: linear-gradient(135deg, #00f0ff, #7b2fff);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.pr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.pr-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pr-brand-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pr-brand-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for browsers without background-clip: text support */
  color: var(--accent);
}

@supports not (background-clip: text) {
  .pr-brand-name {
    background: transparent;
    color: var(--accent);
  }
}

@media (max-width: 767px) {
  .pr-brand-name {
    background: transparent;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}

.pr-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pr-nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.pr-nav-links a:hover { color: var(--fg); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.pr-hero {
  position: relative;
  padding: 140px 24px 80px;
  background: linear-gradient(160deg, #0a0a12 0%, #12121e 40%, #1a0a2e 100%);
  text-align: center;
  overflow: hidden;
}

.pr-hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pr-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

.pr-hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 8px 20px;
  border-radius: 40px;
  background: var(--accent-glow);
  margin-bottom: 28px;
}

.pr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pr-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for browsers without background-clip: text support */
  color: var(--accent);
}

@supports not (background-clip: text) {
  .pr-gradient {
    background: transparent;
    color: var(--accent);
  }
}

@media (max-width: 767px) {
  .pr-gradient {
    background: transparent;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}

.pr-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BILLING TOGGLE ───────────────────────────────────────────────────────── */
.pr-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 24px 0;
  background: var(--bg-surface);
}

.pr-toggle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pr-toggle.active {
  background: var(--accent-glow);
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--accent);
}

.pr-save-badge {
  display: inline-block;
  background: var(--accent-warm);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── PLANS ────────────────────────────────────────────────────────────────── */
.pr-plans {
  background: var(--bg-surface);
  padding: 48px 24px 80px;
}

.pr-plans-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pr-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.pr-card:hover { transform: translateY(-4px); }

.pr-card-featured {
  border-color: rgba(0, 240, 255, 0.3);
  background: linear-gradient(160deg, #1a1a2e, #12122a);
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pr-card-featured:hover { transform: translateY(-12px); }

.pr-featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0a0a12;
  background: var(--gradient-accent);
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pr-card-header { margin-bottom: 24px; }

.pr-plan-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.pr-plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 4px;
}

.pr-plan-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Price block */
.pr-price-block { margin-bottom: 24px; }

.pr-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-price-talk {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #7b2fff, #ff3c7a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pr-price-cycle {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pr-price-trial {
  font-size: 0.78rem;
  color: #22c55e;
  margin-top: 8px;
  font-weight: 500;
}

.pr-annual-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* CTAs */
.pr-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 28px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.pr-cta-primary {
  background: var(--gradient-accent);
  color: #0a0a12;
}
.pr-cta-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.pr-cta-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg-muted);
}
.pr-cta-ghost:hover {
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--accent);
}

.pr-cta-lg { padding: 16px 36px; font-size: 1.05rem; max-width: 300px; margin: 0 auto 24px; }

/* Feature list */
.pr-features-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pr-feature-list { list-style: none; }

.pr-feat {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  line-height: 1.4;
}

.pr-feat:last-child { border-bottom: none; }

.pr-feat::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.85rem;
}

.pr-feat-yes { color: var(--fg); }
.pr-feat-yes::before { content: '✓'; color: #22c55e; }
.pr-feat-no { color: var(--fg-dim); }
.pr-feat-no::before { content: '·'; color: var(--fg-dim); }

/* ── PROOF STRIP ──────────────────────────────────────────────────────────── */
.pr-proof {
  background: var(--bg-deep);
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pr-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.pr-proof-item {
  text-align: center;
  padding: 0 40px;
}

.pr-proof-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.pr-proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pr-proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.pr-faq {
  background: var(--bg-surface);
  padding: 80px 24px;
}

.pr-faq-inner { max-width: 1000px; margin: 0 auto; }

.pr-faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.pr-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pr-faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
}

.pr-faq-item h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.pr-faq-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── CLOSING ──────────────────────────────────────────────────────────────── */
.pr-closing {
  background: var(--bg-deep);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pr-closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123, 47, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pr-closing-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.pr-closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.pr-closing-inner p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.pr-closing-links {
  margin-top: 24px;
}

.pr-closing-links a {
  color: var(--fg-muted);
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.pr-closing-links a:hover { color: var(--accent); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.pr-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 40px 24px;
  text-align: center;
}

.pr-footer-inner { max-width: 900px; margin: 0 auto; }

.pr-footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.pr-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pr-footer-links a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.pr-footer-links a:hover { color: var(--fg-muted); }

.pr-footer-copy { font-size: 0.75rem; color: var(--fg-dim); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pr-plans-inner { grid-template-columns: 1fr; max-width: 500px; }
  .pr-card-featured { transform: none; }
  .pr-card-featured:hover { transform: translateY(-4px); }
  .pr-faq-grid { grid-template-columns: 1fr; }
  .pr-proof-inner { gap: 20px; }
  .pr-proof-divider { display: none; }
}

@media (max-width: 600px) {
  .pr-hero { padding: 110px 20px 60px; }
  .pr-hero-title { font-size: 1.8rem; }
  .pr-nav-links { display: none; }
  .pr-proof-item { padding: 0 20px; }
}

/* ── Tablet (iPad) ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pr-plans-inner { max-width: 440px; }
  .pr-cta { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .pr-cta-lg { max-width: 100%; }
  .pr-hero-actions { flex-direction: column; align-items: center; }
  .pr-section { padding: 60px 20px; }
}

/* ── Small phones (≤480px) ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .pr-hero { padding: 100px 16px 52px; }
  .pr-hero-title { font-size: 1.6rem; }
  .pr-hero-sub { font-size: 0.95rem; }
  .pr-plans-inner { max-width: 100%; padding: 0 4px; }
  .pr-card { padding: 24px 20px; }
  .pr-cta { min-height: 48px; font-size: 1rem; }
  /* Prevent iOS auto-zoom on form inputs */
  input, select, textarea { font-size: 16px !important; }
  .pr-section { padding: 48px 16px; }
  .pr-faq-item { padding: 16px; }
  .pr-footer { padding: 32px 16px; }
  .pr-gift-band { padding: 20px 16px; }
  .pr-gift-band-inner { flex-direction: column; gap: 16px; }
  .pr-gift-btn { align-self: stretch; text-align: center; }
}

/* ── Gift band ────────────────────────────────────────────────────────────── */
.pr-gift-band {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(123, 47, 255, 0.08));
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
  padding: 24px;
}

.pr-gift-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pr-gift-icon { font-size: 1.8rem; flex-shrink: 0; }

.pr-gift-copy {
  flex: 1;
  color: #c8c8d8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pr-gift-copy strong { color: #e8e8f0; }

.pr-gift-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #7b2fff);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.pr-gift-btn:hover { opacity: 0.88; }
