/* ==========================================================================
   XspotGo — brand stylesheet
   Tokens: blue #1957DB / green #128807 / black #14161A / white #FFFFFF
   Base surface: #F2F1F0
   Type: Rajdhani (display) + Work Sans (body) + JetBrains Mono (utility)
   Signature: chakra spinner (motion/progress) + tri-tone rule divider
   ========================================================================== */

:root{
  --bg:      #F2F1F0;
  --surface: #FFFFFF;
  --black:   #fa8000;
  --black-soft: #363B44;
  --blue:    #128807;
  --blue-deep: #128807;
  --green:   #128807;
  --green-deep: #0D6B05;
  --gray:    #6B7280;
  --line:    rgba(20,22,26,0.13);
  --line-soft: rgba(20,22,26,0.07);
  --white: #fff;

  --display: "Rajdhani", "Arial Narrow", sans-serif;
  --body:    "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1160px;
  --orange: #FF7A00;
  --orange-deep: #E36600;
  --saffron: #FF9933;
  --india-green: #138808;
  --navy: #000080;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--black);
  font-family:var(--body); font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{
  font-family:var(--display); font-weight:900; line-height:1.05;
  margin:0 0 .5em; letter-spacing:-0.005em;
}
p{ margin:0 0 1em; color:var(--black-soft); }
.wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:3px solid var(--blue); outline-offset:3px; border-radius:4px;
}

/* ---------- tri-tone rule (signature structural device) ---------- */
.flag-rule{ height:4px; width:100%; display:flex; }
.flag-rule span{ flex:1; }
.flag-rule span:nth-child(1){ background:var(--blue); }
.flag-rule span:nth-child(2){ background:var(--black); }
.flag-rule span:nth-child(3){ background:#000; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-family:var(--mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue-deep); margin-bottom:14px;
}
.eyebrow::before{ content:""; width:16px; height:2px; background:var(--green); display:inline-block; flex-shrink:0; }

/* ---------- chakra spinner (signature motion mark) ---------- */
.chakra{ display:inline-block; width:1em; height:1em; animation:spin 6s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ---------- header ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:background:var(--white); backdrop-filter:blur(8px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;  
  padding:16px 24px; max-width:var(--container); margin:0 auto; gap:16px;
}
.logo{
  display:flex; align-items:center; gap:9px;
  font-family:var(--display); font-weight:700; font-size:24px;
  text-decoration:none; color:var(--black); flex-shrink:0;
}
.logo .mark{ color:var(--blue); font-size:20px; }
.navlinks{ display:flex; gap:28px; list-style:none; margin:0; padding:0; flex-wrap:wrap; }
.navlinks a{
  text-decoration:none; font-size:14.5px; font-weight:600; color:var(--gray);
  padding:6px 2px; border-bottom:2px solid transparent; transition:border-color .15s, color .15s;
  white-space:nowrap;
}
.navlinks a:hover, .navlinks a.active{ color:var(--black); border-color:var(--blue); }
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--black); color:#fff; padding:10px 18px; border-radius:999px;
  font-weight:600; font-size:14px; text-decoration:none; white-space:nowrap; flex-shrink:0;
  transition:transform .15s ease, background .15s ease;
}
.nav-cta:hover{ background:var(--blue); transform:translateY(-1px); }

.nav-toggle{
  display:none; background:none; border:1.5px solid var(--line); border-radius:8px;
  padding:8px 10px; cursor:pointer; flex-shrink:0;
}
.nav-toggle span{ display:block; width:20px; height:2px; background:var(--black); margin:4px 0; transition:transform .2s ease, opacity .2s ease; }

@media (max-width:860px){
  .nav-toggle{ display:block; }
  .navlinks{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--surface); border-bottom:1px solid var(--line-soft);
    flex-direction:column; gap:0; padding:8px 24px 16px;
  }
  .navlinks.open{ display:flex; }
  .navlinks a{ padding:12px 0; border-bottom:1px solid var(--line-soft); width:100%; }
  header.site{ position:sticky; }
  .nav{ position:relative; flex-wrap:wrap; }
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:15px; text-decoration:none;
  padding:14px 26px; border-radius:999px; border:0; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease; font-family:var(--body);
}
.btn-primary{ background:var(--blue); color:#fff; }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(25,87,219,.3); }
.btn-ghost{ background:transparent; color:var(--black); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--black); }
.btn-light{ background:var(--surface); color:var(--black); }
.btn-light:hover{ transform:translateY(-2px); }

/* ---------- hero ---------- */
.hero{ padding:56px 0 46px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero{ padding-top:36px; }
  .wheel-wrap{ order:-1; }
}

.badge-79{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--black); color:#fff; font-family:var(--mono); font-size:12px;
  padding:7px 14px; border-radius:999px; margin-bottom:18px; flex-wrap:wrap;
}
.hero h1{ font-size:clamp(34px,5.6vw,60px); color:var(--black); word-break:break-word; }
.hero h1 em{ font-style:normal; color:var(--blue); }
.hero .lead{ font-size:17px; max-width:46ch; }
.hero-actions{ display:flex; gap:14px; margin-top:24px; flex-wrap:wrap; }
.store-badges{ display:flex; gap:12px; margin-top:20px; flex-wrap:wrap; }
.store-badge{
  display:flex; align-items:center; gap:8px; border:1.5px solid var(--line); border-radius:12px;
  padding:9px 16px; font-size:13px; font-weight:600; text-decoration:none; color:var(--black); background:var(--surface);
}
.store-badge small{ display:block; font-weight:400; font-size:10.5px; color:var(--gray); }

 
/* wheel visual — signature Ashoka Chakra motif
   Chakra rendered in accurate flag colors (navy on white); rest of theme untouched */
.wheel-wrap{ position:relative; display:flex; justify-content:center; align-items:center; width:100%; }
.wheel-card{
  width:min(320px,80vw); aspect-ratio:1; border-radius:50%;
  background:#fff; position:relative; display:flex; align-items:center; justify-content:center;
  box-shadow:0 30px 60px -30px rgba(20,22,26,.35); flex-shrink:0;
}
.wheel-card svg{ width:78%; height:78%; animation:spin 14s linear infinite; }
.wheel-card .spoke{ stroke:var(--navy); stroke-width:2.2; }
.wheel-card .rim{ fill:none; stroke:var(--navy); stroke-width:4; }
.wheel-card .hub{ fill:var(--navy); }
.wheel-label{
  position:absolute; bottom:-8px; left:50%; transform:translateX(-50%);
  background:var(--green); color:#fff; font-family:var(--mono); font-size:11.5px; font-weight:700;
  padding:8px 16px; border-radius:999px; white-space:nowrap;
  box-shadow:0 10px 20px rgba(18,136,7,.28);
  max-width:90vw; overflow:hidden; text-overflow:ellipsis;
}

/* ---------- stat bar ---------- */
.statbar{ background:var(--black); color:var(--bg); padding:20px 0; overflow-x:auto; }
.statbar .wrap{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:18px; }
.statbar .item{ display:flex; flex-direction:column; min-width:110px; }
.statbar .item .n{ font-family:var(--mono); font-size:21px; color:var(--blue); font-weight:700; }
.statbar .item .l{ font-size:12px; color:rgba(242,241,240,.68); }

/* ---------- sections ---------- */
section{ padding:60px 0; }
.section-head{ max-width:640px; margin-bottom:36px; }
.section-head h2{ font-size:clamp(26px,3.6vw,38px); color:var(--black); }
.grid-3{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
@media (max-width:900px){ .grid-3,.grid-4{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .grid-3,.grid-4{ grid-template-columns:1fr; } .wrap{ padding:0 18px; } section{ padding:44px 0; } }

.card{
  background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius); padding:24px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; min-width:0;
}
.card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -24px rgba(20,22,26,.2); border-color:var(--line); }
.card .icon{
  width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:var(--bg); font-size:21px; margin-bottom:14px;
}
.card h3{ font-size:18px; margin-bottom:6px; color:var(--black); }
.card p{ font-size:14.5px; margin-bottom:0; }
.tag{
  display:inline-block; font-family:var(--mono); font-size:11px; letter-spacing:.08em;
  padding:4px 10px; border-radius:999px; background:var(--bg); color:var(--black);
  text-transform:uppercase; margin-bottom:10px;
}

.band-tricolor{ background:var(--black); color:var(--bg); }
.band-tricolor h2, .band-tricolor h3{ color:#fff; }
.band-tricolor p{ color:rgba(242,241,240,.72); }
.band-tricolor .card{ background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.1); }
.band-tricolor .card:hover{ border-color:rgba(255,255,255,.22); }

/* sale banner */
.sale-band{
  background:linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius:26px; padding:clamp(28px,6vw,50px); text-align:center; color:#fff;
  display:flex; flex-direction:column; align-items:center; gap:16px; position:relative; overflow:hidden;
}
.sale-band h2{ color:#fff; font-size:clamp(24px,4vw,40px); max-width:22ch; }
.sale-band .flag-rule{ width:120px; border-radius:4px; overflow:hidden; }

footer.site{ background:var(--black); color:rgba(242,241,240,.72); padding:48px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:28px; margin-bottom:32px; }
.footer-grid h4{ color:#000; font-family:var(--body); font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ text-decoration:none; color:#000; font-size:14px; }
.footer-grid a:hover{ color:var(--blue); }
.footer-bottom{
  border-top:1px solid rgba(242,241,240,.14); padding-top:20px;color:#fff;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px;
}
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }



/* ==========================
   HEADER ANIMATION
========================== */

.site{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    animation:headerSlide .8s ease;
    transition:all .35s ease;
}

.site.scrolled{
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    background:rgba(255,255,255,.98);
}

/* Header Load */
@keyframes headerSlide{
    from{
        transform:translateY(-70px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* Logo */
.logo img{
    transition:.35s ease;
}

.logo:hover img{
    transform:scale(1.08) rotate(-3deg);
}

/* Navigation */

.navlinks a{
    position:relative;
    transition:.3s;
}

.navlinks a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#ff7a00;
    border-radius:50px;
    transition:.35s;
}

.navlinks a:hover,
.navlinks a.active{
    color:#ff7a00;
}

.navlinks a:hover::after,
.navlinks a.active::after{
    width:100%;
}

/* CTA */

.nav-cta{
    transition:.35s ease;
}

.nav-cta:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(255,122,0,.35);
}

/* Mobile Menu */

.navlinks{
    transition:.4s ease;
}

.navlinks.open{
    animation:menuFade .35s ease;
}

@keyframes menuFade{
    from{
        opacity:0;
        transform:translateY(-15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tricolor Shine */

.flag-rule{
    position:relative;
    overflow:hidden;
}

.flag-rule::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );
    animation:shine 3s linear infinite;
}

@keyframes shine{
    100%{
        left:120%;
    }
}

/* Desktop */
.navlinks{
    display:flex;
    list-style:none;
}

.nav-toggle{
    display:none;
}

/* Mobile */
@media (max-width:768px){

.nav-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    border:none;
    background:#fff;
    cursor:pointer;
}

.nav-toggle span{
    width:24px;
    height:3px;
    background:#ff7a00;
    margin:3px 0;
}

.navlinks{
    position:absolute;
    top:100%;
    left:0;
    right:0;

    display:none;

    flex-direction:column;
    background:#fff;

    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.navlinks.open{
    display:flex;
}

.navlinks li{
    margin:12px 0;
}

.navlinks a{
    font-size:15px;
    color:#555;
    text-decoration:none;
    font-weight:600;
}

}

/* ==========================================================================
   BALLOON RUN — festive floating balloons, site-wide
   Balloons are injected by balloons.js; this file only styles them,
   so include balloons.js on every page to activate it there too.
   ========================================================================== */
.balloon-layer{
  position:fixed; inset:0; pointer-events:none; z-index:2000; overflow:hidden;
}
.balloon{
  position:absolute; bottom:-120px; width:46px; height:58px; border-radius:50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity:.92; animation-name:balloonRise; animation-timing-function:linear; animation-fill-mode:forwards;
}
.balloon::before{
  content:""; position:absolute; left:50%; top:100%; width:1px; height:34px;
  background:rgba(20,22,26,.35); transform:translateX(-50%);
}
.balloon::after{
  content:""; position:absolute; left:50%; top:-10px; width:10px; height:12px;
  background:inherit; clip-path:polygon(50% 0, 0 100%, 100% 100%); transform:translateX(-50%);
}
.balloon.c-orange{ background:var(--orange); }
.balloon.c-white{ background:var(--white); box-shadow:inset 0 0 0 1.5px rgba(20,22,26,.12); }
.balloon.c-green{ background:var(--green); }
 
@keyframes balloonRise{
  0%{ transform:translateX(0) translateY(0) rotate(0deg); }
  25%{ transform:translateX(18px) translateY(-27vh) rotate(4deg); }
  50%{ transform:translateX(-16px) translateY(-54vh) rotate(-4deg); }
  75%{ transform:translateX(14px) translateY(-81vh) rotate(3deg); }
  100%{ transform:translateX(-10px) translateY(-118vh) rotate(-2deg); opacity:0; }
}
 
@media (prefers-reduced-motion: reduce){
  .balloon-layer{ display:none; }
}
 
/* ==========================================================================
   CONFETTI + SPARKLE — extra festive layer, spawned by balloons.js
   ========================================================================== */
.confetti{
  position:absolute; top:-20px; width:8px; height:14px;
  animation-name:confettiFall; animation-timing-function:linear; animation-fill-mode:forwards;
}
.confetti.c-orange{ background:var(--orange); }
.confetti.c-white{ background:var(--white); box-shadow:inset 0 0 0 1px rgba(20,22,26,.12); }
.confetti.c-green{ background:var(--green); }
 
@keyframes confettiFall{
  0%{ transform:translateY(0) rotate(0deg); opacity:1; }
  100%{ transform:translateY(112vh) rotate(540deg); opacity:0; }
}
 
.sparkle{
  position:absolute; width:6px; height:6px; border-radius:50%;
  background:var(--orange); animation-name:sparkleTwinkle; animation-timing-function:ease-in-out;
  animation-iteration-count:infinite;
}
.sparkle.c-white{ background:var(--white); box-shadow:0 0 4px rgba(255,255,255,.9); }
.sparkle.c-green{ background:var(--green); }
 
@keyframes sparkleTwinkle{
  0%, 100%{ opacity:0; transform:scale(.4); }
  50%{ opacity:1; transform:scale(1); }
}
 
@media (prefers-reduced-motion: reduce){
  .confetti, .sparkle{ display:none; }
}
 