/* ═══════════════════════════════════════════════════════
   BULLIFY.IN — ULTRA PREMIUM DARK WEBSITE
   Colors: Navy #0A1628 | Teal #00C9D4 | Gold #F0A500
═══════════════════════════════════════════════════════ */

* { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy:   #0A1628;
  --navy2:  #0D2040;
  --navy3:  #0f2850;
  --teal:   #00C9D4;
  --teal2:  #00E5F0;
  --gold:   #F0A500;
  --gold2:  #FFD700;
  --green:  #00D26A;
  --red:    #FF4757;
  --white:  #FFFFFF;
  --muted:  rgba(255,255,255,0.55);
  --glass:  rgba(255,255,255,0.04);
  --glassborder: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* PARTICLE CANVAS */
#particles {
  position: fixed; top:0; left:0;
  width:100%; height:100%;
  pointer-events:none;
  z-index:0;
  opacity: 0.5;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed; top:0; left:0; width:100%;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glassborder);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px; margin:0 auto;
  padding: 0 2rem;
  display: flex; align-items:center; gap:2rem;
}

.logo-img { height: 48px; width: auto; }

.nav-links {
  display: flex; list-style: none;
  gap: 2rem; margin-left: auto;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  display: flex; align-items:center; gap:0.5rem;
  background: var(--green);
  color: #fff; text-decoration:none;
  padding: 0.6rem 1.2rem; border-radius:50px;
  font-weight:600; font-size:0.85rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #00e87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,210,106,0.4);
}

.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer;
  padding: 4px;
}
.hamburger span { width:24px; height:2px; background:#fff; border-radius:2px; transition:all 0.3s; }

/* ── TICKER BAND ─────────────────────────────────────── */
.ticker-band {
  position: fixed; top: 65px; left:0; width:100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glassborder);
  overflow: hidden; z-index:999;
  padding: 6px 0;
}
.ticker-content {
  display: flex; gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.tick { font-size:0.78rem; font-weight:600; letter-spacing:0.02em; }
.tick.up { color: var(--green); }
.tick.down { color: var(--red); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  max-width: 1200px; margin: 0 auto;
  padding: 130px 2rem 4rem;
  position: relative; z-index:1;
}

.hero-badge {
  display: inline-flex; align-items:center;
  background: var(--glass);
  border: 1px solid var(--glassborder);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-sub {
  color: var(--muted); font-size:1.05rem;
  line-height: 1.7; margin-bottom: 2rem;
}

.hero-ctas {
  display: flex; align-items:center; gap:1rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex; align-items:center; gap:0.5rem;
  background: linear-gradient(135deg, var(--green), #00a856);
  color: #fff; text-decoration:none;
  padding: 0.85rem 1.8rem; border-radius:50px;
  font-weight:700; font-size:1rem;
  transition: all 0.3s;
  border: none; cursor:pointer;
  box-shadow: 0 8px 30px rgba(0,210,106,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,210,106,0.5);
}

.btn-secondary {
  color: var(--muted); text-decoration:none;
  font-weight:600; font-size:0.95rem;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--white); }

.btn-xl { padding:1rem 2.2rem; font-size:1.1rem; }

.hero-stats {
  display: flex; align-items:center; gap:1.5rem;
}
.stat { display:flex; flex-direction:column; }
.stat-num { font-size:1.6rem; font-weight:800; color:var(--gold); }
.stat-label { font-size:0.75rem; color:var(--muted); font-weight:500; }
.stat-div { width:1px; height:40px; background: var(--glassborder); }

/* Hero Visual */
.hero-visual { position:relative; }

.chart-container {
  background: var(--glass);
  border: 1px solid var(--glassborder);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  position:relative;
}

.chart-overlay {
  position:absolute; top:1.5rem; left:1.5rem;
}
.chart-label { font-size:0.75rem; color:var(--muted); font-weight:600; letter-spacing:0.05em; }
.chart-price { font-size:1.8rem; font-weight:800; }
.chart-change.up { color:var(--green); font-weight:700; font-size:0.9rem; }

.floating-cards {
  position:absolute;
}
.float-card {
  position:absolute;
  background: rgba(13,32,64,0.85);
  border: 1px solid var(--glassborder);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display:flex; align-items:center; gap:0.7rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  min-width: 160px;
  animation: floatY 4s ease-in-out infinite;
}
.float-card.fc1 { top:-40px; right:-20px; animation-delay:0s; }
.float-card.fc2 { bottom:40px; right:-30px; animation-delay:1.5s; }
.float-card.fc3 { bottom:-20px; left:20px; animation-delay:0.8s; }

.fc-icon { font-size:1.4rem; }
.fc-text { font-size:0.78rem; line-height:1.4; }
.fc-text strong { font-size:0.82rem; }
.fc-text span { color:var(--muted); }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ── SECTION COMMON ──────────────────────────────────── */
section { position:relative; z-index:1; }

.section-tag {
  display:inline-block;
  color: var(--teal); font-size:0.72rem;
  font-weight:700; letter-spacing:0.12em;
  margin-bottom:1rem;
}

.section-title {
  font-family:'Space Grotesk',sans-serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight:800; line-height:1.1;
  margin-bottom:3rem;
}

/* ── FEATURES ────────────────────────────────────────── */
#features {
  max-width:1200px; margin:0 auto;
  padding: 6rem 2rem;
}

.features-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glassborder);
  border-radius: 20px;
  padding: 1.8rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  opacity:0; transform:translateY(30px);
}
.feature-card.visible {
  opacity:1; transform:translateY(0);
}
.feature-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,201,212,0.1);
}

.feat-icon { font-size:2rem; margin-bottom:1rem; }
.feature-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:0.6rem; }
.feature-card p { color:var(--muted); font-size:0.88rem; line-height:1.6; margin-bottom:1rem; }
.feat-tag {
  font-size:0.75rem; color:var(--teal);
  background: rgba(0,201,212,0.08);
  border:1px solid rgba(0,201,212,0.2);
  border-radius:6px; padding:0.3rem 0.6rem;
  display:inline-block;
}
.feat-tag em { font-style:italic; font-weight:600; }

/* ── HOW IT WORKS ────────────────────────────────────── */
#how-it-works {
  background: var(--navy2);
  padding: 6rem 2rem;
  text-align:center;
}
#how-it-works .section-tag,
#how-it-works .section-title { text-align:center; }

.steps-container {
  display:flex; align-items:center; justify-content:center;
  gap:2rem; max-width:900px; margin:0 auto 3rem;
  flex-wrap:wrap;
}

.step {
  flex:1; min-width:200px;
  background: var(--glass);
  border:1px solid var(--glassborder);
  border-radius:20px;
  padding:2rem 1.5rem;
  text-align:left;
  transition: all 0.3s;
}
.step:hover {
  border-color:var(--gold);
  transform:translateY(-5px);
}

.step-num {
  font-size:3rem; font-weight:900;
  color: rgba(255,255,255,0.06);
  line-height:1; margin-bottom:0.5rem;
}
.step-icon { font-size:2rem; margin-bottom:0.8rem; }
.step h3 { font-size:1rem; font-weight:700; margin-bottom:0.5rem; }
.step p { color:var(--muted); font-size:0.85rem; line-height:1.6; }

.step-arrow { font-size:2rem; color:var(--glassborder); }

.hiw-cta { margin-top:1rem; }

/* ── PREVIEW ─────────────────────────────────────────── */
#preview {
  max-width:1200px; margin:0 auto;
  padding:6rem 2rem;
}

.preview-container {
  display:grid; grid-template-columns:auto 1fr;
  gap:4rem; align-items:center;
}

.phone-frame {
  width:320px;
  background: #1a1a2e;
  border-radius:40px;
  border:2px solid rgba(255,255,255,0.1);
  overflow:hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width:90px; height:24px;
  background:#000; border-radius:0 0 14px 14px;
  margin:0 auto;
}
.chat-header {
  background:#075e54;
  display:flex; align-items:center; gap:0.7rem;
  padding:0.7rem 1rem;
}
.chat-avatar {
  width:36px;height:36px;
  background:#128c7e;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;
}
.chat-name { font-weight:700; font-size:0.85rem; }
.chat-status { font-size:0.68rem; color:rgba(255,255,255,0.7); }

.chat-body {
  background: #0b1c28;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.01'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  height:420px; overflow-y:auto;
  padding: 1rem;
  display:flex; flex-direction:column; gap:0.8rem;
}
.chat-body::-webkit-scrollbar { width:4px; }
.chat-body::-webkit-scrollbar-track { background:transparent; }
.chat-body::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.1); border-radius:2px; }

.chat-msg { display:flex; flex-direction:column; }
.chat-msg.bot { align-items:flex-start; }
.chat-msg.user { align-items:flex-end; }

.msg-bubble {
  max-width:85%;
  padding:0.6rem 0.9rem;
  border-radius:12px;
  font-size:0.72rem; line-height:1.5;
}
.chat-msg.bot .msg-bubble {
  background:#1f2c34; color:#e9edef;
  border-bottom-left-radius:4px;
}
.chat-msg.user .msg-bubble {
  background:#005c4b; color:#e9edef;
  border-bottom-right-radius:4px;
}
.msg-time { font-size:0.6rem; color:rgba(255,255,255,0.3); margin-top:2px; }

.chat-input-bar {
  display:flex; align-items:center; gap:0.5rem;
  background:#1f2c34; padding:0.6rem 1rem;
}
.chat-input {
  flex:1; background:transparent; border:none;
  color:#fff; font-size:0.82rem;
  outline:none;
}
.chat-input::placeholder { color:rgba(255,255,255,0.3); }
.chat-send {
  background:var(--green); border:none;
  color:#fff; border-radius:50%;
  width:32px; height:32px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer; font-size:0.85rem;
  transition:all 0.2s;
}
.chat-send:hover { background:#00e87a; }

.preview-features h3 {
  font-size:1.4rem; font-weight:700;
  margin-bottom:1.2rem;
}
.preview-pills {
  display:flex; flex-wrap:wrap; gap:0.7rem;
}
.pill {
  background:var(--glass);
  border:1px solid var(--glassborder);
  border-radius:50px;
  padding:0.5rem 1rem;
  font-size:0.82rem; color:var(--muted);
  cursor:pointer; transition:all 0.3s;
}
.pill:hover {
  border-color:var(--teal); color:var(--teal);
  background:rgba(0,201,212,0.08);
  transform:translateY(-2px);
}

/* ── PRICING ─────────────────────────────────────────── */
#pricing {
  background: var(--navy2);
  padding: 6rem 2rem;
  text-align:center;
}

.pricing-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:1.5rem;
  max-width:1000px; margin:0 auto 2rem;
}

.price-card {
  background: var(--glass);
  border:1px solid var(--glassborder);
  border-radius:24px;
  padding:2rem 1.8rem;
  text-align:left;
  transition:all 0.4s;
  position:relative;
}
.price-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}
.price-card.featured {
  border-color:var(--gold);
  background: linear-gradient(135deg, rgba(240,165,0,0.08) 0%, var(--glass) 100%);
  box-shadow:0 0 40px rgba(240,165,0,0.15);
}

.price-popular {
  position:absolute; top:-1px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--gold),#ff9500);
  color:#000; font-size:0.72rem; font-weight:800;
  padding:0.3rem 1rem; border-radius:0 0 10px 10px;
  letter-spacing:0.05em;
}

.price-badge {
  font-size:0.75rem; font-weight:700; letter-spacing:0.1em;
  color:var(--muted); margin-bottom:0.5rem;
  margin-top:1rem;
}
.price-card.featured .price-badge { color:var(--gold); }

.price-amount {
  font-size:1rem; font-weight:400; color:var(--muted);
}
.price-amount span {
  font-family:'Space Grotesk',sans-serif;
  font-size:3rem; font-weight:800; color:var(--white);
}
.price-card.featured .price-amount span { color:var(--gold); }

.price-period { font-size:0.82rem; color:var(--muted); margin-bottom:1.5rem; }

.price-features {
  list-style:none; margin-bottom:1.5rem;
  display:flex; flex-direction:column; gap:0.6rem;
}
.price-features li { font-size:0.84rem; color:var(--muted); }
.price-features li:not(.muted) { color:var(--white); }

.price-btn {
  display:block; text-align:center;
  background:var(--glass);
  border:1px solid var(--glassborder);
  color:var(--white); text-decoration:none;
  padding:0.8rem; border-radius:12px;
  font-weight:600; font-size:0.9rem;
  transition:all 0.3s;
}
.price-btn:hover {
  background:var(--teal); border-color:var(--teal);
  color:#000; transform:translateY(-2px);
}
.price-card.featured .price-btn {
  background:linear-gradient(135deg,var(--gold),#ff9500);
  border-color:transparent; color:#000;
}
.price-card.featured .price-btn:hover {
  box-shadow:0 8px 25px rgba(240,165,0,0.5);
}

.pricing-note {
  color:var(--muted); font-size:0.85rem; margin-top:1rem;
}

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
  max-width:800px; margin:0 auto;
  padding:6rem 2rem;
}

.faq-list { display:flex; flex-direction:column; gap:1rem; }

.faq-item {
  background:var(--glass);
  border:1px solid var(--glassborder);
  border-radius:14px;
  overflow:hidden;
  transition:border-color 0.3s;
}
.faq-item.open { border-color:var(--teal); }

.faq-q {
  padding:1.2rem 1.5rem;
  font-weight:600; font-size:0.95rem;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  transition:color 0.3s;
  user-select:none;
}
.faq-q:hover { color:var(--teal); }
.faq-q span {
  font-size:1.3rem; color:var(--teal);
  transition:transform 0.3s;
}
.faq-item.open .faq-q span { transform:rotate(45deg); }

.faq-a {
  padding:0 1.5rem;
  max-height:0; overflow:hidden;
  color:var(--muted); font-size:0.88rem; line-height:1.7;
  transition:all 0.4s ease;
}
.faq-item.open .faq-a {
  max-height:200px;
  padding:0 1.5rem 1.2rem;
}

/* ── FINAL CTA ───────────────────────────────────────── */
#final-cta {
  padding:8rem 2rem;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta-glow {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(0,201,212,0.12) 0%, transparent 70%);
  pointer-events:none;
}

.cta-content { position:relative; z-index:1; }
.cta-logo { font-size:4rem; margin-bottom:1rem; }
#final-cta h2 {
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:800; margin-bottom:1rem;
}
#final-cta p { color:var(--muted); font-size:1.1rem; margin-bottom:2.5rem; }
.cta-note { color:var(--muted); font-size:0.82rem; margin-top:1rem; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background:rgba(0,0,0,0.4);
  border-top:1px solid var(--glassborder);
  padding:4rem 2rem 2rem;
}

.footer-container {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.5fr 1fr;
  gap:4rem; margin-bottom:3rem;
}

.footer-logo { height:50px; margin-bottom:1rem; }
.footer-brand p { color:var(--muted); font-size:0.88rem; line-height:1.6; max-width:280px; margin-bottom:1.5rem; }

.social-links { display:flex; gap:1rem; }
.social-links a {
  color:var(--muted); text-decoration:none; font-size:0.82rem;
  transition:color 0.3s;
}
.social-links a:hover { color:var(--teal); }

.footer-links { display:flex; gap:4rem; }
.footer-col { display:flex; flex-direction:column; gap:0.7rem; }
.footer-col h4 { font-weight:700; font-size:0.85rem; margin-bottom:0.3rem; }
.footer-col a {
  color:var(--muted); text-decoration:none; font-size:0.82rem;
  transition:color 0.3s;
}
.footer-col a:hover { color:var(--white); }

.footer-bottom {
  max-width:1200px; margin:0 auto;
  padding-top:2rem;
  border-top:1px solid var(--glassborder);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem;
  color:var(--muted); font-size:0.78rem;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity:0; transform:translateY(40px);
  transition:all 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── MOBILE ──────────────────────────────────────────── */
@media(max-width:768px) {
  #hero {
    grid-template-columns:1fr;
    padding:120px 1.5rem 4rem;
    gap:2rem;
  }
  .hero-visual { order:-1; }
  .chart-container canvas { max-height:180px; }
  .float-card { display:none; }
  .hero-stats { flex-wrap:wrap; gap:1rem; }
  .stat-div { display:none; }

  #navbar .nav-links { display:none; }
  .hamburger { display:flex; margin-left:auto; }

  .steps-container { flex-direction:column; }
  .step-arrow { transform:rotate(90deg); }

  .preview-container { grid-template-columns:1fr; }
  .phone-mockup { display:flex; justify-content:center; }
  .phone-frame { width:280px; }

  .footer-container { grid-template-columns:1fr; gap:2rem; }
  .footer-links { flex-wrap:wrap; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }

  .nav-cta { display:none; }
}
