/* =========================================================
   HostLagbe — Production additions
   Loaded after styles.css. Only new/changed rules live here
   so the base design system file stays untouched.
   ========================================================= */

/* ---------------------------------------------------------
   Loading overlay
   Shows the rocket-H mark with a spinning orbit ring while
   the page paints, then fades out. Purely cosmetic — never
   blocks content if JS fails (see production.js: a 700ms
   hard-timeout removes it regardless).
--------------------------------------------------------- */
.loading-overlay{
  position:fixed;
  inset:0;
  z-index:999;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .5s var(--ease), visibility .5s var(--ease);
}
.loading-overlay.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.loading-mark{
  position:relative;
  width:64px; height:64px;
  display:flex; align-items:center; justify-content:center;
}
.loading-mark svg{ position:relative; z-index:1; }
.loading-ring{
  position:absolute;
  inset:-14px;
  border:2px solid var(--line);
  border-top-color:var(--orange);
  border-radius:50%;
  animation:loading-spin .9s linear infinite;
}
@keyframes loading-spin{
  to{ transform:rotate(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .loading-ring{ animation:none; border-top-color:var(--line); }
}

/* ---------------------------------------------------------
   Header: login link + actions group
--------------------------------------------------------- */
.header-actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.header-login{
  display:none;
  font-size:.9rem;
  font-weight:500;
  color:var(--ink-soft);
  transition:color .2s ease;
}
.header-login:hover{ color:var(--ink); }
@media(min-width:600px){
  .header-login{ display:inline-flex; }
}

/* ---------------------------------------------------------
   Pricing teaser strip (replaces the countdown panel)
   Reuses the glass-panel + mono-digit language from the
   countdown so the hero keeps its "mission console" feel.
--------------------------------------------------------- */
.pricing-teaser{
  width:100%;
  max-width:720px;
  background:rgba(255,255,255,.6);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px 24px 26px;
  backdrop-filter:blur(18px) saturate(1.3);
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  box-shadow:0 24px 60px -30px rgba(11,14,20,.25);
}
.pricing-teaser-label{
  font-family:var(--font-mono);
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:18px;
}
.pricing-teaser-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
@media(min-width:560px){
  .pricing-teaser-grid{ grid-template-columns:repeat(4,1fr); }
}
.price-card{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:16px 8px;
  transition:transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover{
  transform:translateY(-3px);
  border-color:transparent;
  box-shadow:0 20px 40px -24px rgba(11,14,20,.3);
}
.price-num{
  font-family:var(--font-mono);
  font-size:1.4rem;
  font-weight:600;
  font-variant-numeric:tabular-nums;
  color:var(--ink);
  line-height:1;
}
.price-currency{
  font-size:.85rem;
  color:var(--orange);
  margin-right:1px;
}
.price-unit{
  font-size:.72rem;
  color:var(--muted);
  text-align:center;
  line-height:1.3;
}

/* ---------------------------------------------------------
   Product cards as links: add a "from ৳X" affordance and
   an arrow micro-interaction on hover
--------------------------------------------------------- */
a.product-card{
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
}
.product-link{
  margin-top:16px;
  font-size:.85rem;
  font-weight:600;
  color:var(--blue);
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.product-link span{
  transition:transform .3s var(--ease);
  display:inline-block;
}
a.product-card:hover .product-link span{
  transform:translateX(4px);
}

/* ---------------------------------------------------------
   Full production footer
--------------------------------------------------------- */
.site-footer{
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  padding-bottom:48px;
}
@media(min-width:700px){
  .footer-grid{ grid-template-columns:1.4fr repeat(4, 1fr); }
}

.footer-brand .logo-footer{ margin-bottom:16px; }
.footer-brand .footer-tag{
  font-size:.9rem;
  color:var(--ink-soft);
  line-height:1.5;
  margin-bottom:8px;
}
.footer-tag-bn{
  font-size:.85rem;
  color:var(--muted);
  margin-bottom:20px;
}
.footer-status{
  display:flex; align-items:center; gap:8px;
  font-size:.82rem;
  color:var(--ink-soft);
}
.footer-status a{ color:var(--ink); font-weight:600; }
.footer-status a:hover{ color:var(--blue); }
.status-dot{
  width:7px; height:7px; border-radius:50%;
  background:#1E8A5F;
  box-shadow:0 0 0 3px rgba(30,138,95,.15);
  flex-shrink:0;
  animation:pulse 2.4s ease-in-out infinite;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-col h3{
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
  margin-bottom:4px;
}
.footer-col a{
  font-size:.9rem;
  color:var(--ink-soft);
  transition:color .2s ease;
  width:fit-content;
}
.footer-col a:hover{ color:var(--blue); }

.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
  padding:28px 24px;
  border-top:1px solid var(--line);
  text-align:center;
}
@media(min-width:700px){
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    text-align:left;
  }
}
.footer-copy{ font-size:.8rem; color:var(--muted); margin:0; }
.footer-social{
  display:flex; gap:14px;
}
.footer-social a{
  color:var(--muted);
  transition:color .2s ease, transform .2s ease;
}
.footer-social a:hover{
  color:var(--ink);
  transform:translateY(-2px);
}
.footer-payments{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer-payments span{
  font-size:.7rem;
  font-weight:600;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:6px;
  padding:4px 9px;
}

/* ---------------------------------------------------------
   Extra light-touch animations
--------------------------------------------------------- */
.btn-primary, .price-card, a.product-card, .contact-card{
  will-change:transform;
}

/* Subtle hero entrance parallax on the orbit field for
   pointer-capable devices only — skipped on touch/reduced
   motion so it never costs anything on mobile. */
@media (hover:hover) and (pointer:fine){
  .orbit-field{ transition:transform .4s ease-out; }
}
