/* ── PRODUCT HERO ── */
.product-hero { padding: 100px 0 80px; position: relative; z-index: 1; }
.product-hero-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.product-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lavender); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.product-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--violet); }
.product-hero-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; color: var(--text); margin-bottom: 20px; }
.product-hero-title em { font-style: italic; color: var(--lavender); }
.product-hero-desc { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; }
.product-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary, .btn-primary:visited, .btn-primary:active { display: inline-flex; align-items: center; gap: 8px; background: var(--violet); color: #fff !important; font-family: 'Gabarito', sans-serif; font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 8px; text-decoration: none !important; transition: background 0.15s; }
.btn-primary:hover { background: #6a3d8a; color: #fff !important; }
.btn-secondary-link { font-size: 14px; font-weight: 500; color: var(--text2); text-decoration: none; transition: color 0.15s; }
.btn-secondary-link:hover { color: var(--lavender); }
.download-note { font-size: 12px; color: var(--text3); font-style: italic; margin-top: 6px; }
.btn-coming-soon { display: inline-flex; align-items: center; gap: 8px; background: var(--surface2, #1e2a3a); color: var(--text3) !important; font-family: 'Gabarito', sans-serif; font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 8px; text-decoration: none !important; cursor: default; border: 1px solid var(--border2); pointer-events: none; }
.coming-soon-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--lavender); background: rgba(120,74,157,0.12); border: 1px solid rgba(120,74,157,0.25); border-radius: 20px; padding: 4px 10px; margin-left: 4px; letter-spacing: 0.03em; }
.platform-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--lavender); border: 1px solid var(--border); border-radius: 99px; padding: 5px 14px; margin-top: 24px; }

/* ── APP MOCK ── */
.chrome-bar { background: #111437; border-bottom: 1px solid rgba(120,74,157,0.12); padding: 11px 14px; display: flex; align-items: center; gap: 7px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ef4444; opacity: 0.6; }
.dot.y { background: #f59e0b; opacity: 0.6; }
.dot.g { background: #22c55e; opacity: 0.6; }
.audit-title-label { font-size: 11px; color: #8892a8; margin-left: 6px; letter-spacing: 0.04em; }
.screenshot-wrap { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.audit-win { background: #192135; border-radius: 8px; overflow: hidden; }
.audit-body { padding: 18px; }
.audit-url { display: flex; align-items: center; gap: 8px; background: #101420; border: 1px solid rgba(120,74,157,0.2); border-radius: 6px; padding: 8px 12px; margin-bottom: 14px; }
.audit-url-text { color: #8892a8; font-size: 11px; font-family: monospace; flex: 1; }
.audit-run { background: #784a9d; color: #fff; font-size: 11px; font-weight: 500; border-radius: 4px; padding: 4px 12px; }
.audit-log { background: #101420; border-radius: 5px; padding: 12px; margin-bottom: 10px; font-size: 10px; font-family: monospace; line-height: 1.9; color: #6d7f99; }
.audit-progress { height: 2px; overflow: hidden; background: rgba(255,255,255,0.04); margin-bottom: 14px; border-radius: 2px; }
.audit-progress-bar { width: 200%; height: 100%; background: linear-gradient(90deg,#f43f5e,#fb923c,#facc15,#4ade80,#22d3ee,#818cf8,#e879f9,#f43f5e); animation: apscan 2.2s ease-in-out infinite alternate; }
@keyframes apscan { 0%{transform:translateX(-50%)} 100%{transform:translateX(0%)} }
.log-row { display: flex; gap: 8px; }
.log-t { color: #8892a8; flex-shrink: 0; }
.log-ok { color: #4ade80; }
.log-w { color: #f39e1e; }
.log-url { color: #998ac2; }
.audit-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.stat { background: #101420; border: 1px solid rgba(120,74,157,0.12); border-radius: 5px; padding: 9px; text-align: center; }
.stat-n { font-size: 20px; font-weight: 500; display: block; line-height: 1; margin-bottom: 3px; }
.stat-n.ok { color: #4ade80; }
.stat-n.w { color: #f39e1e; }
.stat-n.def { color: #f0f4ff; }
.stat-l { font-size: 9px; color: #475569; text-transform: uppercase; letter-spacing: 0.1em; }
[data-theme="light"] .pau1 { fill: #5a3498 !important; }
[data-theme="light"] .pau2 { fill: #0d7a6f !important; }

/* ── FEATURE SECTIONS ── */
.feature-section { padding: 80px 0; position: relative; z-index: 1; }
.feature-section-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.feature-section-label { font-size: 13px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--lavender); margin-bottom: 48px; display: flex; align-items: center; gap: 12px; }
.feature-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── TIER GROUPS ── */
.tier-group { margin-bottom: 60px; }
.tier-group:last-child { margin-bottom: 0; }
.tier-group-header { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.tier-badge-free { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 12px; border-radius: 4px; background: rgba(21,128,61,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); flex-shrink: 0; }
.tier-badge-pro { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 12px; border-radius: 4px; background: rgba(120,74,157,0.15); color: var(--lavender); border: 1px solid rgba(120,74,157,0.35); flex-shrink: 0; }
.tier-group-rule { flex: 1; height: 1px; background: var(--border); }
.tier-group-note { font-size: 12px; color: var(--text3); font-style: italic; flex-shrink: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.feature-icon { width: 40px; height: 40px; border-radius: 9px; background: rgba(120,74,157,0.22); border: 1px solid rgba(120,74,157,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--lavender); }
.feature-icon.pro-icon { color: #fdbb25; border-color: rgba(253,187,37,0.3); background: rgba(253,187,37,0.08); }

/* ── OUTPUT / REPORT FORMATS ── */
.output-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.output-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; }
.output-card.free-card { border-color: rgba(74,222,128,0.2); }
.output-card h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.output-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.output-badge-free { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 9px; border-radius: 4px; background: rgba(21,128,61,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.output-badge-pro { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; background: rgba(120,74,157,0.15); color: var(--lavender); border: 1px solid rgba(120,74,157,0.35); }

/* ── PRICING SECTION ── */
.pricing-section { padding: 80px 0; position: relative; z-index: 1; }
.pricing-section-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* ── LIGHT MODE: PRODUCT PAGE SPECIFIC ── */
[data-theme="light"] .tier-badge-free { color: #15803d; background: rgba(21,128,61,0.08); border-color: rgba(21,128,61,0.25); }
[data-theme="light"] .output-badge-free { color: #15803d; background: rgba(21,128,61,0.08); border-color: rgba(21,128,61,0.25); }
[data-theme="light"] .feature-icon.pro-icon { color: #92400e; border-color: rgba(146,64,14,0.25); background: rgba(146,64,14,0.06); }

/* ── CTA BAR ── */
.cta-bar { position: relative; z-index: 1; padding: 80px 0; text-align: center; }
.cta-bar h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; letter-spacing: -0.02em; color: var(--text); margin-bottom: 16px; }
.cta-bar p { font-size: 16px; color: var(--text2); margin-bottom: 32px; }
.two-col-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

@media (max-width: 768px) {
  .product-hero { overflow: hidden; }
  .product-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .product-hero-inner > div:last-child { max-width: 100%; overflow: hidden; width: 100%; }
  .screenshot-wrap { max-width: 100%; width: 100%; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .output-grid { grid-template-columns: 1fr; }
  .feature-section-inner, .pricing-section-inner { padding: 0 20px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .rv-grid { grid-template-columns: 1fr !important; }
  .rv-sidebar { display: none !important; }
  .cta-bar { padding: 64px 20px; }
  .two-col-feature { grid-template-columns: 1fr !important; gap: 40px !important; }
}
