:root{
  --bg-0:#070A12;
  --bg-1:#0B1220;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.88);
  --muted-2:rgba(234,240,255,.72);
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --accent:#5B6CFF;
  --accent-2:#22D3EE;
  --radius:18px;
  --radius-sm:14px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(91,108,255,.30), transparent 60%),
              radial-gradient(1000px 500px at 80% 20%, rgba(34,211,238,.16), transparent 60%),
              linear-gradient(180deg, var(--bg-0), var(--bg-1));
  color: var(--text);
}

.skip-link{
  position:absolute; left:-9999px; top:0;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px; z-index:9999;
}
.skip-link:focus{ left:12px; top:12px; }

.page-header{
  border-bottom:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 65%);
}
.navbar{ padding-top:18px; padding-bottom:18px; }
.navbar-dark .navbar-nav .nav-link{ color: rgba(234,240,255,.80); }
.navbar-dark .navbar-nav .nav-link:hover{ color: #fff; }

.brand-mark{
  width:38px; height:38px; border-radius:12px; object-fit:contain;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border:0;
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-outline-light{
  border-color: rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}

.app-hero{ padding: 36px 0 28px; }
.app-badge{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.86);
}
.app-badge i{
  width:26px; height:26px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
}

.app-icon-lg{
  width:72px; height:72px; border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  flex-shrink:0;
}
.app-icon-lg i{ font-size:34px; color:#fff; }
.app-icon-img-lg{
  width:72px; height:72px; border-radius:20px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  flex-shrink:0;
}
.app-badge-icon{
  width:26px; height:26px; border-radius:8px;
  object-fit:cover;
}

.meta-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.meta-pill{
  font-size:.85rem; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.86);
}

.section{ padding: 56px 0; }
.section-title{ font-size:1.6rem; font-weight:750; margin-bottom:20px; }

.feature-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media (min-width:768px){
  .feature-grid{ grid-template-columns: 1fr 1fr; }
}
.feature-card{
  display:flex; gap:12px; padding:16px;
  border-radius: var(--radius-sm);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.feature-card i{
  width:42px; height:42px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(91,108,255,.14);
  border:1px solid rgba(91,108,255,.28);
  flex-shrink:0;
}
.feature-card-title{ font-weight:700; }
.feature-card-desc{ color:var(--muted-2); font-size:.95rem; }

.text-muted{ color: var(--muted) !important; }
.lead{ color: var(--muted); }

.screenshots{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (min-width:768px){
  .screenshots{ grid-template-columns: repeat(4, 1fr); }
}
.screenshot{
  aspect-ratio:9/16;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:8px; overflow:hidden;
  position:relative;
  background:#0a1020;
}
.screenshot-label{
  font-size:.75rem; color:var(--muted-2);
  padding:0 8px; text-align:center;
}
.screenshot i{ font-size:2rem; opacity:.6; }
.screenshot--image{ padding:0; }
.screenshot--image img{
  width:100%; height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

/* Hero banner: landscape, sits beside description */
#heroScreenshots.screenshots,
#heroScreenshots.screenshots--hero{
  display:block;
  width:100%;
  max-width: 100%;
}
#heroScreenshots .screenshot.screenshot--hero{
  aspect-ratio:16/9;
  width:100%;
  border-radius:18px;
  background:#0a1020;
}
#heroScreenshots .screenshot.screenshot--hero img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

.cta-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(91,108,255,.18), rgba(34,211,238,.10));
  padding:28px;
  text-align:center;
}

.page-footer{
  padding:38px 0 48px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-title{ font-weight:700; margin-bottom:10px; }
.footer-links{
  margin:0; padding:0; list-style:none; display:grid; gap:8px;
}
.footer-links a{ color:rgba(234,240,255,.78); text-decoration:none; }
.footer-links a:hover{ color:#fff; }
.footer-mini{ font-size:.92rem; }
