/*
Theme Name: Bundlee Lovable
Theme URI: https://example.com/bundlee-lovable
Author: Bundlee
Author URI: https://example.com
Description: Dark-navy + orange landing page theme for the Bundlee Lovable extension. Includes hero, features, demo, pricing, reseller, FAQ and contact sections powered by the WordPress Customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bundlee-lovable
Tags: one-page, landing, dark, orange, business
*/

:root {
  --bg: #0b1230;
  --bg-2: #141c40;
  --card: #1a2450;
  --card-2: #202b5c;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --fg: #f7f5ef;
  --muted: #a9b0c9;
  --primary: #e97d3f;
  --primary-glow: #f39a55;
  --primary-fg: #0b1230;
  --gradient-primary: linear-gradient(135deg, #e97d3f, #f39a55);
  --gradient-hero:
    radial-gradient(ellipse at top right, rgba(233,125,63,0.28), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(20,28,64,0.9), transparent 60%);
  --shadow-glow: 0 20px 60px -20px rgba(233,125,63,0.55);
  --shadow-elegant: 0 10px 40px -10px rgba(0,0,0,0.6);
  --radius: 14px;
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--muted); }
.text-primary { color: var(--primary); }

.section {
  padding: 80px 0;
}
.section-lg {
  padding: 100px 0;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  color: var(--fg);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); }
.btn-ghost-primary {
  background: transparent;
  border-color: rgba(233,125,63,0.4);
  color: var(--primary);
}
.btn-ghost-primary:hover { background: rgba(233,125,63,0.1); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 48, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gradient-primary);
  color: var(--primary-fg);
  font-weight: 900; font-size: 18px;
}
.brand-name { font-weight: 700; font-size: 16px; }
.brand-name .accent { color: var(--primary); }
.brand-tag { font-size: 11px; color: var(--muted); }

.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--primary); }

.nav-cta { display: none; }
.nav-toggle {
  background: none; border: 0; color: var(--fg); cursor: pointer;
  padding: 8px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: rgba(11,18,48,0.95);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); font-size: 14px; }
.mobile-menu a:hover { color: var(--primary); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero {
  background-image: var(--gradient-hero);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 20px;
}
.hero-title .grad {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-social {
  margin-top: 36px;
  display: flex; align-items: center; gap: 14px;
}
.avatars { display: flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
  border: 2px solid var(--bg);
  margin-left: -8px;
  color: var(--primary-fg);
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--primary); font-size: 14px; }
.stars-sub { color: var(--muted); font-size: 12px; }

/* Video card */
.video-card {
  border: 1px solid var(--border);
  background: rgba(26,36,80,0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-elegant);
}
.video-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px 10px;
  font-size: 12px;
  color: var(--muted);
}
.video-card-head .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); margin-right: 6px; vertical-align: middle;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-image: var(--gradient-hero);
  display: grid; place-items: center;
  cursor: pointer;
}
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  transition: transform .2s ease;
  border: 0;
}
.video-frame:hover .play-btn { transform: scale(1.08); }
.play-btn::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-left: 18px solid var(--primary-fg);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video-headline {
  margin-top: 20px; font-size: clamp(20px, 2.4vw, 28px); font-weight: 900; text-align: center;
  line-height: 1.2;
}
.video-headline .em { color: var(--primary); }
.video-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.video-quick div {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 12px;
}
.video-quick strong { display: block; font-size: 12px; }
.video-quick small { color: var(--muted); font-size: 10px; }

/* Features */
.feature-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(26,36,80,0.5);
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.feature-card:hover { border-color: rgba(233,125,63,0.45); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  color: var(--primary-fg); font-weight: 900;
  margin-bottom: 14px;
}
.feature-card h3 { margin: 0 0 6px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Pricing */
.pricing-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(26,36,80,0.5);
  transition: border-color .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.plan:hover { border-color: rgba(233,125,63,0.4); transform: translateY(-2px); }
.plan.popular {
  border-color: var(--primary);
  background: var(--card);
  box-shadow: var(--shadow-glow);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: var(--primary-fg);
  padding: 4px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
}
.plan-tag { color: var(--primary); font-size: 12px; font-weight: 700; }
.plan h3 { margin: 6px 0 0; font-size: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 6px; }
.plan-price strong { font-size: 36px; font-weight: 900; }
.plan-desc { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 20px; }
.plan-features li {
  display: flex; gap: 8px; font-size: 14px; margin-bottom: 8px;
}
.plan-features li::before {
  content: "✓"; color: var(--primary); font-weight: 900;
}
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Reseller */
.reseller {
  background-image: var(--gradient-hero);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.reseller-grid {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .reseller-grid { grid-template-columns: 1fr 1fr; } }
.reseller h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin: 16px 0; line-height: 1.1; }
.reseller-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0 28px;
}
.reseller-stats div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.reseller-stats strong { color: var(--primary); font-size: 14px; display: block; }
.reseller-stats small { color: var(--muted); font-size: 11px; }
.reseller-panel {
  border: 1px solid var(--border);
  background: rgba(26,36,80,0.7);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-elegant);
}
.reseller-panel-head {
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px;
}
.reseller-panel-head .brand-logo { width: 32px; height: 32px; font-size: 14px; border-radius: 10px; }
.reseller-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(11,18,48,0.6);
  border: 1px solid var(--border);
  margin-top: 10px;
  font-size: 14px;
}
.reseller-row .k { color: var(--muted); }
.reseller-row .v { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; }
.reseller-panel .btn { width: 100%; margin-top: 16px; justify-content: center; }

/* CTA strip */
.cta-strip {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 720px) { .cta-strip { grid-template-columns: 1fr 1fr; } }
.cta-strip a {
  padding: 24px; border-radius: 18px; text-align: center;
  font-weight: 800; font-size: 18px;
}

/* FAQ */
.faq-wrap { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  background: rgba(26,36,80,0.5);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.faq-item:hover { border-color: rgba(233,125,63,0.4); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; gap: 16px;
}
.faq-q::after {
  content: "▾"; color: var(--primary); transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  display: none;
  margin-top: 12px; color: var(--muted); font-size: 14px;
}
.faq-item.open .faq-a { display: block; }

/* Contact block */
.contact-cta {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 24px;
  text-align: center;
  background-image: var(--gradient-hero);
}
.contact-cta h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 900; margin: 0 0 12px; }
.contact-cta p { color: var(--muted); max-width: 520px; margin: 0 auto 24px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-wrap {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--primary); }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-logo { width: 32px; height: 32px; font-size: 14px; border-radius: 10px; }
