/* ---- Base ---- */
:root{
  --bg0:#07080a;
  --bg1:#0b0b0c;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.10);
  --text:#f4f6f8;
  --muted: rgba(244,246,248,.78);
  --muted2: rgba(244,246,248,.60);
  --link:#9ad1ff;
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #070708;
  overflow-x:hidden;
}

a{ color: var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

.bg{
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(122,162,255,.22), transparent 60%),
    radial-gradient(900px 560px at 90% 18%, rgba(140,80,255,.16), transparent 62%),
    radial-gradient(1000px 620px at 85% 92%, rgba(0,220,180,.12), transparent 60%),
    radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(255,255,255,.05), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #070708);
  background-repeat: no-repeat;
  background-size: cover;
}

.wrap{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---- Top bar ---- */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8,8,10,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 60px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--text);
  font-weight: 650;
}
.brand-logo{
  border-radius: 9px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.nav{
  display:flex;
  gap:18px;
  font-size: 14px;
}
.nav a{
  color: rgba(244,246,248,.85);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  text-decoration:none;
}

/* ---- Hero ---- */
.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  padding: 46px 0 14px;
}

.kicker{
  letter-spacing:.18em;
  font-size: 11px;
  color: rgba(244,246,248,.55);
  font-weight: 700;
}

h1{
  margin: 10px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.sub{
  margin: 0 0 10px;
  max-width: 62ch;
  color: var(--muted);
}

.seo{
  margin: 0 0 18px;
  max-width: 70ch;
  color: rgba(244,246,248,.70);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 12px;
}

.micro{
  margin-top: 10px;
  color: rgba(244,246,248,.65);
  font-size: 13px;
}

.chips{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.chip{
  font-size: 12px;
  color: rgba(244,246,248,.78);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  font-weight: 600;
  text-decoration:none;
}
.btn:hover{ background: rgba(255,255,255,.14); text-decoration:none; }
.btn.ghost{
  background: rgba(255,255,255,.06);
}

/* ---- Store badge ---- */
.store-badge{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
  text-decoration:none;
}
.store-badge:hover{ text-decoration:none; filter: brightness(1.02); }
.store-badge .ms-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #111;
  flex: 0 0 auto;
}
.ms-logo{
  width: 18px;
  height: 18px;
  display:block;
}
.store-badge .store-text{ display:flex; flex-direction:column; line-height: 1.05; }
.store-badge .small{ font-size: 12px; font-weight: 650; opacity: .75; }
.store-badge .big{ font-size: 14px; font-weight: 800; }
.store-badge .arrow{ margin-left: 6px; font-weight: 900; opacity: .7; }
.store-badge.compact .small{ font-size: 11px; }
.store-badge.compact .big{ font-size: 13px; }

/* ---- Product card ---- */
.product-card{
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.product-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.product-icon{
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
}
.product-name{ font-weight: 800; font-size: 16px; }
.product-tagline{ color: rgba(244,246,248,.70); font-size: 13px; }

.bullets{
  margin: 12px 0 14px;
  padding-left: 18px;
  color: rgba(244,246,248,.78);
}
.bullets li{ margin: 7px 0; }
.tiny{ margin-top: 10px; font-size: 12px; color: rgba(244,246,248,.60); }

/* ---- Sections ---- */
.section{
  padding: 28px 0;
}
.section-head{
  margin-bottom: 14px;
}
.section h2{
  margin: 0 0 6px;
  font-size: 22px;
}
.section p{
  margin: 0;
  color: rgba(244,246,248,.70);
}

/* Cards + grid */
.grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.card{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.card h3{ margin: 0 0 6px; font-size: 16px; }
.card p{ margin: 0; color: rgba(244,246,248,.72); }
.card.wide{ padding: 18px; }
.card.wide p{ margin: 0; }

/* Gallery */
.gallery{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.shot figure{
  margin: 0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
}
.shot img{
  display:block;
  width:100%;
  height:auto;
}
.shot figcaption{
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(244,246,248,.72);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.shot:hover{ text-decoration:none; }

/* CTA card */
.cta-card{
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.cta-title{ font-weight: 800; }
.cta-sub{ color: rgba(244,246,248,.70); font-size: 13px; margin-top: 2px; }

/* FAQ */
.faq{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
details{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  list-style:none;
  font-weight: 700;
}
summary::-webkit-details-marker{ display:none; }
details[open]{ background: rgba(255,255,255,.06); }
.answer{
  margin-top: 10px;
  color: rgba(244,246,248,.72);
}

/* Footer */
.footer{
  padding: 26px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 22px;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 20px;
}
.footer-right{
  display:flex;
  gap: 14px;
  font-size: 14px;
}
.footer-right a{
  color: rgba(244,246,248,.80);
}
.footer-right a:hover{ text-decoration:underline; }

/* Responsive */
@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
  .grid, .gallery{ grid-template-columns: 1fr; }
  .nav{ gap: 8px; }
  .nav a{ padding: 8px 8px; }
  .cta-card{ flex-direction: column; align-items: flex-start; }
}

/* Contact form bits (shared) */
.form-label{
  display:block;
  margin: 10px 0 6px;
  font-size: 13px;
  color: rgba(244,246,248,.75);
  font-weight: 650;
}
.form-input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline: none;
}
.form-input:focus{
  border-color: rgba(154,209,255,.40);
  box-shadow: 0 0 0 4px rgba(154,209,255,.08);
}
.form-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}
