/* Buzzbite — Shared Stylesheet */

:root {
  --purple: #5B26CF;
  --purple-mid: #8D68DD;
  --purple-light: #BDA8EC;
  --purple-pale: #DED4F5;
  --orange: #F4522B;
  --yellow: #F0A830;
  --teal: #0A5E61;
  --green: #BCF3BC;
  --blue: #00CCFF;
  --red: #FF134E;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --max-w: 1280px;
  --px: 48px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91,38,207,0.18);
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--purple) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: #6f35e8 !important; }

footer { padding: 64px 0 36px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px; color: rgba(255,255,255,0.28); }

.section { padding: 100px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-light); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content:''; display:block; width:24px; height:2px; background:var(--purple); border-radius:2px; }
.section-title { font-size: clamp(34px,3.8vw,52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 18px; }
.section-subtitle { font-size: 16px; color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 560px; }

.btn-primary { background: var(--purple); color: var(--white); padding: 15px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(91,38,207,0.48); background: #6f35e8; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--purple); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); padding: 15px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s; }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,94,97,0.5); }
.btn-white { background: var(--white); color: var(--purple); padding: 15px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.page-hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 60% 40%, rgba(91,38,207,0.2) 0%, transparent 65%); }
.page-hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px); background-size: 64px 64px; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); position: relative; z-index: 1; max-width: 800px; padding: 0 var(--px); }
.page-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(91,38,207,0.14); border: 1px solid rgba(91,38,207,0.38); border-radius: 100px; padding: 7px 16px; font-size: 11px; font-weight: 700; color: var(--purple-light); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(42px,5vw,68px); font-weight: 800; line-height: 1.07; letter-spacing: -2px; margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 540px; margin-bottom: 36px; }
.page-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 32px; transition: transform 0.3s, border-color 0.3s; }
.card:hover { transform: translateY(-4px); border-color: rgba(91,38,207,0.35); }

.divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.cta-band { margin: 0 auto 100px; padding: 0 var(--px); max-width: var(--max-w); }
.cta-band-inner { background: var(--purple); border-radius: 20px; padding: 64px 72px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.cta-band-inner::before { content:''; position:absolute; top:-60px; right:-60px; width:260px; height:260px; border-radius:50%; background:rgba(255,255,255,0.06); }
.cta-band-inner h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.cta-band-inner p { font-size: 15px; color: rgba(255,255,255,0.72); }
.cta-band-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; flex-shrink: 0; position: relative; z-index: 1; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.5); }


.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.process-step:last-child { border-bottom: none; }
.step-num { font-size: 40px; font-weight: 900; color: rgba(91,38,207,0.25); line-height: 1; padding-top: 4px; }
.step-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.includes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.card-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.65; }
.pricing-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.price-card { border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 32px; position: relative; }
.price-card.featured-price { border-color: var(--purple); background: rgba(91,38,207,0.07); }
.price-best { position: absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--purple); color:#fff; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:5px 16px; border-radius:100px; white-space:nowrap; }
.price-tier { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.price-amount { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 4px; }
.price-desc { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 13px; color: rgba(255,255,255,0.62); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content:'✓'; color:var(--purple-light); font-weight:700; }
.creator-cost-note { display: flex; align-items: flex-start; gap: 16px; margin-top: 28px; padding: 20px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.ccn-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.creator-cost-note strong { color: rgba(255,255,255,0.85); }


nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91,38,207,0.18);
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--purple) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 6px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: #6f35e8 !important; color: var(--white) !important; }
.nav-dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-links > li.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #13131f;
  border: 1px solid rgba(91,38,207,0.25);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
/* invisible padding bridge so mouse can travel from trigger to menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; 
  width: 10px; height: 10px; background: #13131f;
  border-left: 1px solid rgba(91,38,207,0.25); border-top: 1px solid rgba(91,38,207,0.25);
  transform: translateX(-50%) rotate(45deg);
}
.nav-links > li.open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px !important; font-weight: 500 !important;
  color: rgba(255,255,255,0.65) !important;
  transition: background 0.15s, color 0.15s !important;
}
.nav-dropdown a:hover { background: rgba(91,38,207,0.15); color: var(--white) !important; }
.nav-dropdown a .dd-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 4px; }
