@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0c0c0c;
  --bg-card: #161618;
  --bg-card-hover: #1c1c20;
  --accent: #3b82f6;
  --accent-dark: #2563eb;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59,130,246,0.25);
  --text: #f0f0f0;
  --text-sec: #a0a0a8;
  --text-muted: #666;
  --border: rgba(59,130,246,0.15);
  --border-accent: rgba(59,130,246,0.4);
  --radius: 12px;
  --radius-lg: 16px;
  --trans: all .3s ease;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Onest',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden}
a{text-decoration:none;color:inherit;transition:var(--trans)}
button{cursor:pointer;border:none;outline:none;font-family:inherit;transition:var(--trans)}
img{max-width:100%;display:block}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-thumb{background:var(--accent);border-radius:10px}

/* === ICON PATTERN BG === */
.pattern-bg{
  position:fixed;inset:0;z-index:0;pointer-events:none;opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='%233b82f6'%3E%3Cpath d='M7 5h2V3H7v2m0 8h2v-2H7v2m0 4h2v-2H7v2m4-12h2V3h-2v2m0 8h2v-2h-2v2m0 4h2v-2h-2v2m4-12h2V3h-2v2m0 8h2v-2h-2v2m0 4h2v-2h-2v2'/%3E%3C/svg%3E");
  background-size:80px 80px;
}

/* === HEADER === */
.header{
  position:sticky;top:0;z-index:100;
  display:flex;align-items:center;justify-content:center;
  padding:1rem 2rem;
  background:rgba(12,12,12,.85);backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;max-width:1100px;
}
.header__logo{display:flex;align-items:center;gap:.5rem;font-size:1.3rem;font-weight:700}
.header__logo span{color:var(--accent)}
.header__nav{display:flex;align-items:center;gap:1.5rem}
.header__nav a{font-size:.9rem;color:var(--text-sec)}
.header__nav a:hover{color:var(--text)}
.header__cta{
  padding:.45rem 1.1rem;border:1px solid var(--border-accent);
  border-radius:var(--radius);font-size:.85rem;color:var(--text);
  background:transparent;
}
.header__cta:hover{background:var(--accent);border-color:var(--accent);color:#fff}
.header__toggle{display:none;flex-direction:column;gap:5px;background:none;padding:4px}
.header__toggle span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:var(--trans)}

/* === HERO === */
.hero{
  position:relative;z-index:1;
  text-align:center;
  padding:5rem 2rem 3rem;
  background:radial-gradient(ellipse at 50% 0%,rgba(59,130,246,.08) 0%,transparent 60%);
}
.hero h1{font-size:clamp(2rem,5vw,3.2rem);font-weight:700;margin-bottom:1rem}
.hero p{color:var(--text-sec);font-size:1.05rem;max-width:560px;margin:0 auto 2rem;font-weight:300}
.hero__btns{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap}
.btn-outline{
  padding:.7rem 1.6rem;border:1px solid var(--border-accent);
  border-radius:var(--radius);font-size:.95rem;color:var(--text);background:transparent;
}
.btn-outline:hover{background:rgba(59,130,246,.08);border-color:var(--accent)}
.btn-fill{
  padding:.7rem 1.6rem;background:var(--accent);
  border-radius:var(--radius);font-size:.95rem;color:#fff;border:none;
}
.btn-fill:hover{background:var(--accent-dark)}

/* === SHOWCASE === */
.showcase{
  position:relative;z-index:1;
  display:flex;justify-content:center;align-items:flex-end;
  gap:-2rem;padding:2rem 2rem 0;max-width:1100px;margin:0 auto;
  perspective:1200px;
}
.showcase__left{
  width:55%;border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  border:1px solid rgba(255,255,255,.08);border-bottom:none;
  box-shadow:0 -20px 60px rgba(0,0,0,.4);
  background:var(--bg-card);overflow:hidden;
}
.showcase__right{
  display:flex;flex-direction:column;gap:1rem;
  width:35%;margin-left:-3%;margin-bottom:2rem;
}
.showcase__right img,.showcase__right .mock-card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 40px rgba(0,0,0,.3);
  background:var(--bg-card);overflow:hidden;
}

/* Mock cards for showcase */
.mock-dash,.mock-profile{
  padding:1.5rem;min-height:180px;
  display:flex;flex-direction:column;justify-content:center;
}
.mock-dash{min-height:280px}
.mock-dash__top{display:flex;gap:1rem;margin-bottom:1.2rem}
.mock-stat{
  flex:1;background:rgba(59,130,246,.06);border-radius:8px;
  padding:.8rem;text-align:center;
}
.mock-stat small{color:var(--text-muted);font-size:.7rem}
.mock-stat div{color:var(--text);font-weight:600;font-size:.9rem;margin-top:.2rem}
.mock-chart{
  flex:1;background:rgba(255,255,255,.02);border-radius:8px;
  height:80px;position:relative;overflow:hidden;
}
.mock-chart::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:60%;
  background:linear-gradient(180deg,transparent,rgba(59,130,246,.1));
  clip-path:polygon(0 80%,15% 60%,30% 70%,50% 30%,70% 50%,85% 20%,100% 40%,100% 100%,0 100%);
}
.mock-profile{align-items:center;gap:.8rem;text-align:center}
.mock-avatar{
  width:48px;height:48px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#818cf8);
}
.mock-profile span{font-size:.85rem;font-weight:500}
.mock-profile small{color:var(--text-muted);font-size:.75rem}
.mock-socials{display:flex;gap:.5rem;margin-top:.3rem}
.mock-socials i{
  width:28px;height:28px;border-radius:50%;
  background:rgba(59,130,246,.1);
}

/* === STATS === */
.stats-section{
  position:relative;z-index:1;
  padding:5rem 2rem;text-align:center;
}
.stats-section h2{font-size:clamp(1.5rem,3.5vw,2rem);font-weight:600;margin-bottom:.6rem}
.stats-section h2 span{color:var(--accent)}
.stats-section>p{color:var(--text-sec);font-size:.95rem;max-width:600px;margin:0 auto 2.5rem;font-weight:300}
.stats-row{
  display:flex;gap:1rem;max-width:900px;margin:0 auto 3rem;
  flex-wrap:wrap;justify-content:center;
}
.stat-card{
  flex:1;min-width:180px;
  background:var(--bg-card);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);padding:1.5rem 1.2rem;
  display:flex;align-items:center;justify-content:space-between;
}
.stat-card__info h3{font-size:1.5rem;font-weight:700}
.stat-card__info small{color:var(--text-muted);font-size:.8rem}
.stat-card__icon{
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  color:var(--accent);opacity:.5;font-size:1.2rem;
}
.stat-card__icon svg{width:22px;height:22px}

/* === CLAIM === */
.claim-section{position:relative;z-index:1;text-align:center;padding:0 2rem 4rem}
.claim-section h3{font-size:1.1rem;font-weight:500;margin-bottom:1.2rem}
.claim-form{
  display:flex;align-items:stretch;
  max-width:420px;margin:0 auto;
  background:var(--bg-card);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);overflow:hidden;
}
.claim-form__prefix{
  display:flex;align-items:center;padding:0 0 0 1rem;
  font-weight:600;color:var(--accent);white-space:nowrap;font-size:.95rem;
}
.claim-form input{
  flex:1;padding:.85rem .5rem;background:transparent;border:none;
  outline:none;color:var(--text);font-family:inherit;font-size:.95rem;
}
.claim-form input::placeholder{color:var(--text-muted)}
.claim-form button{
  padding:.85rem 1.2rem;background:var(--bg);
  border:none;border-left:1px solid rgba(255,255,255,.08);
  color:var(--text);font-size:.85rem;font-weight:500;white-space:nowrap;
}
.claim-form button:hover{background:var(--accent);color:#fff}

/* === PRICING === */
.pricing-section{position:relative;z-index:1;padding:5rem 2rem;text-align:center}
.pricing-section h2{font-size:clamp(1.5rem,3.5vw,2rem);font-weight:600;margin-bottom:3rem}
.pricing-section h2 span{color:var(--accent)}
.pricing-grid{
  display:flex;gap:1.5rem;max-width:800px;margin:0 auto;
  align-items:flex-start;flex-wrap:wrap;justify-content:center;
}
.price-card{
  flex:1;min-width:300px;max-width:380px;
  background:var(--bg-card);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius-lg);padding:2.2rem;text-align:left;
  transition:var(--trans);position:relative;
}
.price-card--pop{
  border-color:var(--border-accent);
  margin-top:-1.5rem;
  box-shadow:0 0 40px rgba(59,130,246,.08);
}
.price-card__badge{
  position:absolute;top:1.5rem;right:1.5rem;
  padding:.25rem .8rem;background:rgba(59,130,246,.15);
  border:1px solid var(--border-accent);border-radius:6px;
  font-size:.7rem;font-weight:500;color:var(--accent-light);
}
.price-card h3{font-size:1.2rem;font-weight:600;margin-bottom:.8rem;display:flex;align-items:center;gap:.4rem}
.price-card h3 svg{width:18px;height:18px;color:var(--accent)}
.price-card__price{font-size:2rem;font-weight:700;margin-bottom:.2rem}
.price-card__price span{font-size:.85rem;font-weight:400;color:var(--text-muted)}
.price-card__sub{font-size:.8rem;color:var(--accent);margin-bottom:.8rem;font-style:italic}
.price-card__desc{font-size:.88rem;color:var(--text-sec);margin-bottom:1.5rem;font-weight:300}
.price-card__list{list-style:none;display:flex;flex-direction:column;gap:.5rem;margin-bottom:2rem}
.price-card__list li{display:flex;align-items:center;gap:.5rem;font-size:.88rem;color:var(--text-sec)}
.price-card__list li svg{width:16px;height:16px;color:var(--accent);flex-shrink:0}
.price-card__btn{
  display:block;width:100%;padding:.8rem;text-align:center;
  border-radius:var(--radius);font-size:.9rem;font-weight:500;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  color:#fff;border:none;
}
.price-card__btn:hover{box-shadow:0 0 30px var(--accent-glow)}
.price-card--free .price-card__btn{
  background:transparent;border:1px solid rgba(255,255,255,.1);color:var(--text);
}
.price-card--free .price-card__btn:hover{border-color:var(--accent);background:rgba(59,130,246,.05)}

/* === FAQ === */
.faq-section{position:relative;z-index:1;padding:5rem 2rem;text-align:center}
.faq-section h2{font-size:clamp(1.5rem,3.5vw,1.8rem);font-weight:600;margin-bottom:2.5rem}
.faq-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:.6rem}
.faq-item{
  background:var(--bg-card);border-radius:var(--radius);
  overflow:hidden;border:1px solid rgba(255,255,255,.04);
  transition:var(--trans);text-align:left;
}
.faq-item.active{border-color:var(--border-accent);border-left:3px solid var(--accent)}
.faq-item__q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:1rem 1.3rem;background:transparent;color:var(--text);
  font-size:.92rem;font-weight:400;text-align:left;
}
.faq-item__q svg{width:18px;height:18px;color:var(--text-muted);transition:var(--trans);flex-shrink:0}
.faq-item.active .faq-item__q svg{transform:rotate(180deg);color:var(--accent)}
.faq-item__a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.active .faq-item__a{max-height:200px}
.faq-item__a p{padding:0 1.3rem 1rem;font-size:.88rem;color:var(--text-sec);line-height:1.7;font-weight:300}

/* === FOOTER CTA === */
.footer-cta{position:relative;z-index:1;padding:4rem 2rem}
.footer-cta__box{
  max-width:1000px;margin:0 auto;
  background:var(--bg-card);border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius-lg);padding:3rem;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:2rem;
}
.footer-cta__box h2{font-size:1.6rem;font-weight:700;max-width:400px}
.footer-cta__box p{color:var(--text-sec);font-size:.9rem;font-weight:300;max-width:400px;margin-top:.5rem}

/* === FOOTER === */
.footer{
  position:relative;z-index:1;
  padding:4rem 2rem 2rem;border-top:1px solid rgba(255,255,255,.04);
}
.footer__inner{max-width:1100px;margin:0 auto}
.footer__top{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;
  gap:2rem;margin-bottom:3rem;
}
.footer__brand{display:flex;flex-direction:column;gap:.8rem}
.footer__logo{font-size:1.2rem;font-weight:700;display:flex;align-items:center;gap:.3rem}
.footer__logo span{color:var(--accent)}
.footer__status{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.78rem;color:var(--text-sec);
  background:rgba(255,255,255,.04);padding:.3rem .7rem;border-radius:20px;
  width:fit-content;
}
.footer__status-dot{width:7px;height:7px;border-radius:50%;background:#22c55e}
.footer__brand p{font-size:.82rem;color:var(--text-muted);max-width:240px;font-weight:300}
.footer__col h4{font-size:.85rem;font-weight:600;margin-bottom:1rem;color:var(--text)}
.footer__col a{display:block;font-size:.82rem;color:var(--text-sec);margin-bottom:.5rem}
.footer__col a:hover{color:var(--accent)}
.footer__lang{
  display:flex;align-items:center;gap:.5rem;
  padding:.4rem .8rem;background:rgba(255,255,255,.04);
  border-radius:8px;font-size:.8rem;color:var(--text-sec);
  width:fit-content;margin-top:.5rem;
}
.footer__bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.04);
  flex-wrap:wrap;gap:1rem;
}
.footer__copy{font-size:.78rem;color:var(--text-muted)}
.footer__socials{display:flex;gap:.8rem}
.footer__socials a{
  width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  color:var(--text-sec);font-size:1rem;
}
.footer__socials a:hover{color:var(--accent)}
.footer__socials svg{width:18px;height:18px}

/* === REVEAL === */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* === MOBILE === */
.mobile-nav{
  display:none;position:fixed;top:60px;left:0;right:0;bottom:0;
  background:rgba(12,12,12,.98);backdrop-filter:blur(20px);
  z-index:99;padding:2rem;flex-direction:column;gap:.5rem;
  opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.mobile-nav.open{opacity:1;pointer-events:all}
.mobile-nav a{display:block;padding:.8rem;font-size:1rem;color:var(--text-sec);border-radius:8px}
.mobile-nav a:hover{background:rgba(59,130,246,.05);color:var(--text)}

@media(max-width:900px){
  .showcase{flex-direction:column;align-items:center}
  .showcase__left,.showcase__right{width:100%;max-width:500px;margin:0}
  .showcase__right{flex-direction:row}
  .pricing-grid{flex-direction:column;align-items:center}
  .price-card--pop{margin-top:0}
  .footer__top{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-cta__box{flex-direction:column;text-align:center}
}
@media(max-width:768px){
  .header__nav{display:none}
  .header__toggle{display:flex}
  .mobile-nav{display:flex}
  .stats-row{flex-direction:column}
  .stat-card{min-width:auto}
  .footer__top{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .claim-form{flex-direction:column}
  .claim-form button{border-left:none;border-top:1px solid rgba(255,255,255,.08)}
  .footer__top{grid-template-columns:1fr}
}
