/* ============================================================
   COMPONENT — Hero
   Two halves: hero-copy (headline + CTAs) and the signature
   panel — an interactive "build your plan" configurator
   (see js/03-plan-builder.js), not a results dashboard. As a
   new company we don't fabricate performance numbers; this
   showcases the service range instead.
   ============================================================ */
.hero{
  position:relative; overflow:hidden;
  background:radial-gradient(120% 140% at 85% -10%, #163A63 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  color:var(--paper);
  padding:88px 0 96px;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(247,245,241,0.07) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(to bottom, black, transparent 78%);
  pointer-events:none;
}
.hero-grid{
  position:relative; display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}

/* copy side */
.hero-copy .eyebrow{color:var(--orange-300);}
.hero-copy .eyebrow::before{background:var(--orange-300);}
.hero-copy h1{font-size:clamp(36px,4.6vw,58px); line-height:1.06; margin-top:16px; letter-spacing:-0.02em;}
.hero-copy h1 em{
  font-style:normal; color:var(--orange-300);
  background:linear-gradient(180deg, transparent 62%, rgba(255,141,9,0.32) 62%);
}
.hero-copy p.lede{margin-top:20px; font-size:17.5px; color:rgba(247,245,241,0.72); max-width:490px; line-height:1.65;}

/* .hero-actions is shared with the CTA banner component */
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:32px;}

.hero-meta{display:flex; gap:28px; margin-top:44px; flex-wrap:wrap;}
.hero-meta div{display:flex; flex-direction:column; gap:4px;}
.hero-meta .num{font-family:var(--ff-mono); font-weight:600; font-size:22px; color:var(--paper);}
.hero-meta .lbl{font-size:12.5px; color:rgba(247,245,241,0.5); letter-spacing:0.02em;}

/* signature panel shell — shared by the plan builder */
.panel-wrap{position:relative;}
.panel{
  position:relative; background:rgba(18,42,73,0.6);
  border:1px solid rgba(247,245,241,0.14);
  border-radius:20px; padding:26px 26px 24px;
  backdrop-filter:blur(6px);
  box-shadow:var(--shadow-lg);
}
.panel-top{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px;}
.panel-top .dot-row{display:flex; gap:6px;}
.panel-top .dot-row span{width:8px; height:8px; border-radius:50%; background:rgba(247,245,241,0.25);}
.panel-title{font-family:var(--ff-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(247,245,241,0.55);}

.panel-badge{
  position:absolute; right:-14px; top:-18px; background:var(--orange-600); color:#fff;
  font-family:var(--ff-mono); font-size:12px; font-weight:600; padding:9px 14px; border-radius:100px;
  box-shadow:0 10px 20px -8px rgba(240,120,0,0.6);
  display:flex; align-items:center; gap:7px;
}
.panel-badge svg{width:14px; height:14px;}
.panel-glow{
  position:absolute; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,141,9,0.28), transparent 70%);
  filter:blur(10px); top:-60px; right:-60px; z-index:-1;
}

/* plan builder */
.builder-group{margin-bottom:18px;}
.builder-label{font-size:12px; color:rgba(247,245,241,0.5); letter-spacing:0.02em; margin-bottom:10px;}
.chip-row{display:flex; flex-wrap:wrap; gap:8px;}
.chip{
  padding:8px 14px; border-radius:100px; font-size:13px; font-weight:600;
  background:rgba(8,21,39,0.4); border:1px solid rgba(247,245,241,0.16); color:rgba(247,245,241,0.72);
  transition:background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.chip:hover{border-color:rgba(247,245,241,0.35); transform:translateY(-1px);}
.chip.active{background:var(--orange-600); border-color:var(--orange-600); color:#fff; animation:popIn .4s cubic-bezier(.34,1.56,.64,1);}

/* marketplace icon tiles */
.market-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:10px;}
.market-tile{
  position:relative; display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:14px 4px 10px; border-radius:14px;
  background:rgba(8,21,39,0.4); border:1px solid rgba(247,245,241,0.12);
  transition:transform .18s cubic-bezier(.34,1.56,.64,1), border-color .18s ease, background .18s ease;
}
.market-tile:hover{transform:translateY(-3px) scale(1.04); border-color:rgba(247,245,241,0.3);}
.market-tile .tile-icon{
  width:40px; height:40px; border-radius:11px; color:#fff; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  transition:transform .18s cubic-bezier(.34,1.56,.64,1);
}
.market-tile .tile-icon img{width:100%; height:100%; object-fit:cover; padding:2px; box-sizing:border-box;}
.market-tile .tile-icon svg{width:19px; height:19px;}
.market-tile .tile-label{font-size:11.5px; font-weight:600; color:rgba(247,245,241,0.68); transition:color .15s ease;}
.market-tile .tile-check{
  position:absolute; top:-6px; right:14px; width:20px; height:20px; border-radius:50%;
  background:var(--green); display:flex; align-items:center; justify-content:center;
  transform:scale(0); transition:transform .3s cubic-bezier(.34,1.56,.64,1);
}
.market-tile .tile-check svg{width:11px; height:11px; color:#fff;}
.market-tile.active{border-color:var(--orange-500); background:rgba(255,141,9,0.1); animation:popIn .4s cubic-bezier(.34,1.56,.64,1);}
.market-tile.active .tile-icon{transform:scale(1.08);}
.market-tile.active .tile-check{transform:scale(1);}
.market-tile.active .tile-label{color:#fff;}

.tile-amazon{background:#131A22;}
.tile-flipkart{background:#2874F0;}
.tile-myntra{background:linear-gradient(135deg,#FF3F6C,#FF9A44);}
.tile-meesho{background:#9F1D96;}

@keyframes popIn{
  0%{transform:scale(1);}
  45%{transform:scale(1.1);}
  100%{transform:scale(1);}
}

@media (prefers-reduced-motion: reduce){
  .chip, .market-tile, .market-tile .tile-icon, .market-tile .tile-check{animation:none !important; transition:none !important;}
}

.builder-summary{
  background:rgba(8,21,39,0.4); border:1px solid rgba(247,245,241,0.1); border-radius:12px;
  padding:14px 16px; margin:20px 0 16px; min-height:44px;
  font-size:13.5px; line-height:1.55; color:rgba(247,245,241,0.85);
}
.builder-summary .placeholder{color:rgba(247,245,241,0.45);}
.builder-summary b{color:var(--orange-300); font-weight:700;}

/* ---- responsive ---- */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr; gap:52px;}
  .panel-wrap{max-width:460px;}
}
@media (max-width:720px){
  .hero{padding:64px 0 72px;}
}