/* Voyager Player — Static site styles (simple modern single page) */

:root{
  --bg:#0b0f14;
  --card:#0f1720;
  --muted:#9aa6b2;
  --accent:#f7c948;
  --glass: rgba(255,255,255,0.04);
  --text: #e6eef6;
  --max-width:1100px;
  --radius:12px;
  --gap:20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: linear-gradient(180deg, rgba(11,15,20,1) 0%, rgba(6,9,13,1) 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding: 28px;
}

.site-header{
  position:sticky;
  top:0;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(11,15,20,0.6), rgba(11,15,20,0.3));
  border-bottom:1px solid rgba(255,255,255,0.03);
  z-index:50;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}
.logo{
  width:64px;height:64px;
}
.brand-text .title{font-weight:700;font-size:18px}
.brand-text .subtitle{font-size:12px;color:var(--muted)}

.nav a{
  color:var(--muted);
  margin-left:18px;
  text-decoration:none;
  font-size:14px;
}
.nav a:hover{color:var(--text)}

.hero{
  padding:48px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:40px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 12px 0;
  font-size:42px;
  letter-spacing:-0.02em;
}
.lead{color:var(--muted);font-size:18px;max-width:680px}
.cta-row{margin:18px 0;display:flex;gap:12px}
.btn{
  display:inline-block;padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:600;
  border:1px solid rgba(255,255,255,0.04);
}
.btn.primary{
  background: linear-gradient(90deg, #ffd97a, #f7c948);
  color:#081019;
  box-shadow: 0 6px 18px rgba(247,201,72,0.12);
}
.btn.ghost{background:transparent;color:var(--text);border:1px solid rgba(255,255,255,0.06)}

.bullets{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);list-style:none;padding:0}
.bullets li{background:var(--glass);padding:6px 10px;border-radius:8px;font-size:13px}

.device-mock{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:18px;padding:22px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,0.03);
}
.device-mock img{width:100%;max-width:360px;border-radius:12px;box-shadow:0 10px 40px rgba(2,6,23,0.6)}

.section{padding:56px 0}
.section.alt{background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00))}

.section-title{font-size:26px;margin-bottom:18px}

.features-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px;
}
.feature{background:var(--card);padding:18px;border-radius:12px;border:1px solid rgba(255,255,255,0.02)}

.shots-grid{display:flex;gap:12px;flex-wrap:wrap}
.shot img{width:320px;max-width:100%;border-radius:10px;border:1px solid rgba(255,255,255,0.03)}

.download-cards{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.card{background:var(--card);padding:18px;border-radius:12px;border:1px solid rgba(255,255,255,0.02);flex:1;min-width:220px}

.site-footer{border-top:1px solid rgba(255,255,255,0.03);padding:20px 0;margin-top:28px}
.footer-grid{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer-links a{color:var(--muted);margin-left:12px;text-decoration:none;font-size:13px}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; padding-bottom:18px}
  .nav{display:none}
  .logo{width:54px;height:54px}
  .brand-text .title{font-size:16px}
  .hero-copy h1{font-size:30px}
  .features-grid{grid-template-columns:1fr}
}
