/* ── DESIGN TOKENS ── */
:root {
  --bg:         #080B12;
  --surface:    #0F1420;
  --card:       #151B2E;
  --card-hover: #1C2440;
  --border:     #1E2640;
  --border2:    #252E4A;
  --accent:     #4F8EF7;
  --accent2:    #7C5EF7;
  --amber:      #F59E0B;
  --amber-dim:  rgba(245,158,11,0.15);
  --green:      #10B981;
  --red:        #EF4444;
  --purple:     #8B5CF6;
  --text:       #E8EBF4;
  --text2:      #8892AA;
  --text3:      #545E78;
  --mono:       'JetBrains Mono', monospace;
  --sans:       'Inter', sans-serif;
  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       16px;
  --r-xl:       20px;
  --glow:       0 0 40px rgba(79,142,247,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; overflow-x: hidden; }

/* ── GRID BG ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(79,142,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.nav-logo-text { font-size: 18px; font-weight: 800; color: var(--text); }
.nav-logo-text span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 7px 14px; border-radius: var(--r-sm);
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--card); color: var(--text); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-btn {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: var(--r-sm); cursor: pointer; border: none;
  font-family: var(--sans); transition: all 0.15s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-btn.ghost { background: transparent; color: var(--text2); border: 1px solid var(--border2); }
.nav-btn.ghost:hover { background: var(--card); color: var(--text); }
.nav-btn.primary { background: var(--accent); color: #fff; }
.nav-btn.primary:hover { background: #3d7ee8; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text2); padding: 6px; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  text-align: center; padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(79,142,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--accent); border: 1px solid rgba(79,142,247,0.3);
  background: rgba(79,142,247,0.08);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 2rem;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--amber) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 17px; color: var(--text2); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* SEARCH */
.search-wrap {
  display: flex; align-items: center; gap: 10px;
  max-width: 520px; margin: 0 auto 2.5rem;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 6px 6px 6px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,142,247,0.1); }
.search-wrap svg { flex-shrink: 0; opacity: 0.4; }
.search-wrap input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-size: 14px; font-family: var(--sans);
}
.search-wrap input::placeholder { color: var(--text3); }
.search-btn {
  background: var(--accent); color: #fff;
  border: none; font-size: 13px; font-weight: 600;
  padding: 9px 22px; border-radius: 10px; cursor: pointer;
  font-family: var(--sans); white-space: nowrap;
  transition: background 0.15s;
}
.search-btn:hover { background: #3d7ee8; }

/* TRUST BADGES */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--text2);
  background: var(--card); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px;
}
.trust-badge span { color: var(--green); }

/* ── STATS ── */
.stats-section { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem 1rem;
  text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
}
.stat-card:hover { border-color: var(--accent); box-shadow: var(--glow); }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; font-weight: 500; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── FEATURED ── */
.featured-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.featured-banner {
  background: linear-gradient(135deg, #0F1420 0%, #151B2E 60%, #1a1f3a 100%);
  border: 1px solid var(--border2); border-radius: var(--r-xl);
  padding: 2.5rem; display: flex; align-items: center; gap: 2rem;
  position: relative; overflow: hidden;
}
.featured-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,142,247,0.1) 0%, transparent 70%);
}
.feat-icon {
  width: 72px; height: 72px; flex-shrink: 0; border-radius: 18px;
  background: linear-gradient(135deg, var(--amber), #e08f15);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.feat-text { flex: 1; }
.feat-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.feat-text h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.feat-text p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.feat-btn {
  flex-shrink: 0; background: var(--amber); color: #412402;
  border: none; font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: var(--r-sm); cursor: pointer;
  font-family: var(--sans); text-decoration: none;
  transition: background 0.15s;
}
.feat-btn:hover { background: #e08f15; }

/* ── SECTION LABELS ── */
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.section-title { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.section-sub-text { font-size: 14px; color: var(--text2); margin-bottom: 1.5rem; }

/* ── TOOLS SECTIONS ── */
.tools-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.25rem; }
.section-head-left { display: flex; align-items: center; gap: 12px; }
.sec-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--card); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.sec-label { font-size: 18px; font-weight: 700; }
.sec-count { font-size: 12px; color: var(--text3); margin-top: 2px; }
.view-all { font-size: 12px; font-weight: 600; color: var(--accent); text-decoration: none; padding: 6px 14px; border-radius: var(--r-sm); border: 1px solid rgba(79,142,247,0.25); background: rgba(79,142,247,0.05); transition: all 0.15s; }
.view-all:hover { background: rgba(79,142,247,0.12); }

/* ── TOOL CARDS ── */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.tool-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.25rem;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: flex; flex-direction: column;
}
.tool-card:hover { border-color: var(--accent); box-shadow: var(--glow); transform: translateY(-2px); background: var(--card-hover); }
.tc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.875rem; }
.tc-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.tc-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 50px; letter-spacing: 0.3px; }
.tc-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.tc-desc { font-size: 12px; color: var(--text2); line-height: 1.55; flex: 1; }
.tc-arrow { margin-top: 10px; font-size: 12px; color: var(--text3); }

/* ── AD SLOT ── */
.ad-wrap { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.ad-slot {
  background: var(--card); border: 1px dashed var(--border2);
  border-radius: var(--r-md); height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text3);
}

/* ── PRICING / PAYMENT SECTION ── */
.pricing-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem; position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card.popular { border-color: var(--accent); box-shadow: var(--glow); }
.popular-ribbon {
  position: absolute; top: -1px; right: 24px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 0 0 8px 8px; letter-spacing: 0.5px;
}
.plan-name { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.plan-price { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 6px; }
.plan-period { font-size: 13px; color: var(--text3); margin-bottom: 1.25rem; }
.plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 1.5rem; line-height: 1.6; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text2); }
.plan-features li .ck { width: 18px; height: 18px; border-radius: 50%; background: rgba(16,185,129,0.15); color: var(--green); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }
.plan-features li .ck.no { background: rgba(239,68,68,0.1); color: var(--red); }
.plan-btn {
  width: 100%; padding: 13px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 700; cursor: pointer; border: none;
  font-family: var(--sans); transition: all 0.15s;
}
.plan-btn.free-btn { background: var(--surface); color: var(--text); border: 1px solid var(--border2); }
.plan-btn.free-btn:hover { background: var(--card-hover); }
.plan-btn.primary-btn { background: var(--accent); color: #fff; }
.plan-btn.primary-btn:hover { background: #3d7ee8; }
.plan-btn.pro-btn { background: linear-gradient(135deg, var(--accent2), var(--purple)); color: #fff; }
.plan-btn.pro-btn:hover { opacity: 0.9; }

/* Payment methods */
.payment-methods { margin-top: 2rem; text-align: center; }
.payment-methods p { font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pay-icon {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--text2);
  display: flex; align-items: center; gap: 6px;
}

/* ── WHY US ── */
.why-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.footer-brand-name span { color: var(--amber); }
.footer-brand-desc { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 13px; color: var(--text2); text-decoration: none; margin-bottom: 9px; transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text3); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--text3); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--surface); padding: 1.5rem; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-close { background: var(--card); border: 1px solid var(--border); color: var(--text); border-radius: 8px; width: 36px; height: 36px; font-size: 18px; cursor: pointer; }
.mobile-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--card); border: 1px solid var(--border2); color: var(--text); padding: 12px 24px; border-radius: 50px; font-size: 13px; z-index: 999; transition: transform 0.3s; }
.toast.show { transform: translateX(-50%) translateY(0); }

.logo-img{
    height:60px;
    width:auto;
    display:block;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .featured-banner { flex-direction: column; text-align: center; }
  .feat-btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .logo-img{
    height:42px;
}
@media (max-width: 480px) {
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }