/* VELOX AI — Shared Styles v2 */
:root{
  --black:#050505;--white:#F5F2ED;--gold:#C8A96E;--gold-light:#E8D4A8;
  --electric:#00E5C3;--electric-dim:rgba(0,229,195,.10);
  --mid:#141414;--mid2:#1E1E1E;--border:rgba(200,169,110,.18);
  --muted:rgba(245,242,237,.45);
  --ff-display:'Bebas Neue',sans-serif;--ff-head:'Syne',sans-serif;--ff-body:'DM Sans',sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--black);color:var(--white);font-family:var(--ff-body);
  font-weight:300;overflow-x:hidden;cursor:none;
  display:flex;flex-direction:column;min-height:100vh;
}
/* main wrapper gets all remaining space, pushing footer to bottom */
main{flex: 1; /* Yeh line footer ko hamesha bottom par rakhay gi */
  width: 100%;}
#cur{width:10px;height:10px;background:var(--gold);border-radius:50%;position:fixed;pointer-events:none;z-index:9999;transform:translate(-50%,-50%)}
#cur-ring{width:36px;height:36px;border:1px solid rgba(200,169,110,.5);border-radius:50%;position:fixed;pointer-events:none;z-index:9998;transform:translate(-50%,-50%);transition:all .3s}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;padding:1.4rem 5rem;background:rgba(5,5,5,.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);flex-shrink:0}
.logo{font-family:var(--ff-head);font-size:1.45rem;font-weight:800;color:var(--white);text-decoration:none;letter-spacing:-.02em}
.logo span{color:var(--gold)}
.nav-links{display:flex;gap:2.2rem;list-style:none}
.nav-links a{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);text-decoration:none;transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}
.nav-cta{background:var(--gold);color:var(--black);padding:.55rem 1.4rem;font-family:var(--ff-head);font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;transition:all .2s}
.nav-cta:hover{background:var(--gold-light)}

/* HAMBURGER */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.3rem;background:none;border:none}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--white);transition:all .3s}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.mobile-menu{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(5,5,5,.98);backdrop-filter:blur(20px);z-index:150;flex-direction:column;align-items:center;justify-content:center;gap:2rem}
.mobile-menu.open{display:flex}
.mobile-menu a{font-family:var(--ff-display);font-size:2.2rem;letter-spacing:.06em;color:var(--white);text-decoration:none;transition:color .2s}
.mobile-menu a:hover{color:var(--gold)}
.mobile-menu .m-cta{background:var(--gold);color:var(--black);padding:.8rem 2rem;font-family:var(--ff-head);font-weight:700;font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;margin-top:.5rem}

/* PAGE STRUCTURE */
.page-hero{padding:10rem 5rem 5rem;border-bottom:1px solid var(--border)}
.page-label{font-size:.63rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;display:flex;align-items:center;gap:.7rem}
.page-label::before{content:'';display:block;width:28px;height:1px;background:var(--gold);flex-shrink:0}
.page-h1{font-family:var(--ff-display);font-size:clamp(4rem,9vw,8rem);line-height:.93;margin-bottom:1.5rem;letter-spacing:.01em}
.page-h1 em{color:var(--gold);font-style:normal}
.page-sub{font-size:clamp(.92rem,1.5vw,1.1rem);color:var(--muted);max-width:580px;line-height:1.8}
.section{padding:5.5rem 5rem}
.wrap{max-width:1200px;margin:0 auto}
.section-label{font-size:.63rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem;display:flex;align-items:center;gap:.7rem}
.section-label::before{content:'';display:block;width:28px;height:1px;background:var(--gold);flex-shrink:0}
.section-h2{font-family:var(--ff-head);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:800;letter-spacing:-.025em;line-height:1.1;margin-bottom:1rem}
.section-h2 em{font-style:normal;color:var(--gold)}
.divider{height:1px;background:var(--border);margin:3rem 0}
.prose p{color:var(--muted);line-height:1.85;font-size:.93rem;margin-bottom:1.2rem}
.prose strong{color:var(--white)}
.prose h3{font-family:var(--ff-head);font-size:1.15rem;font-weight:700;color:var(--white);margin:2rem 0 .6rem}
.prose ul{list-style:none;margin:.8rem 0 1.2rem}
.prose ul li{color:var(--muted);font-size:.9rem;line-height:1.7;padding:.3rem 0;padding-left:1.4rem;position:relative}
.prose ul li::before{content:'→';color:var(--gold);position:absolute;left:0;font-size:.8rem}
.btn-gold{background:var(--gold);color:var(--black);padding:.9rem 2.2rem;font-family:var(--ff-head);font-weight:700;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;display:inline-block;transition:all .25s}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-2px)}
.btn-outline{border:1px solid var(--border);color:var(--white);padding:.9rem 2.2rem;font-family:var(--ff-head);font-weight:600;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;display:inline-block;transition:all .25s}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}

/* FOOTER — always at bottom */
footer{background:#020202;border-top:1px solid var(--border);padding:5rem 5rem 2rem;flex-shrink:0;margin-top:auto}
.foot-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:4rem;max-width:1200px;margin:0 auto;padding-bottom:4rem;border-bottom:1px solid var(--border)}
.foot-brand .logo{display:block;margin-bottom:1rem}
.foot-brand p{color:var(--muted);font-size:.84rem;line-height:1.75;max-width:260px}
.foot-col h4{font-family:var(--ff-head);font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1.4rem}
.foot-col ul{list-style:none}
.foot-col ul li{margin-bottom:.6rem}
.foot-col ul a{color:var(--muted);font-size:.84rem;text-decoration:none;transition:color .2s}
.foot-col ul a:hover{color:var(--gold)}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;max-width:1200px;margin:0 auto;font-size:.75rem;color:var(--muted)}
.foot-legal{display:flex;gap:1.5rem}
.foot-legal a{color:var(--muted);text-decoration:none}
.foot-legal a:hover{color:var(--gold)}

::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-track{background:var(--black)}
::-webkit-scrollbar-thumb{background:var(--gold)}

@media(max-width:900px){
  nav{padding:1.2rem 1.5rem}
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .section{padding:4rem 1.5rem}
  .page-hero{padding:7rem 1.5rem 3rem}
  .foot-top{grid-template-columns:1fr 1fr;gap:2rem}
  footer{padding:3.5rem 1.5rem 2rem}
  body{cursor:auto}
  #cur,#cur-ring{display:none}
}
@media(max-width:500px){
  .foot-top{grid-template-columns:1fr}
}
