:root{
  --bg:#000000;
  --text:#FFFFFF;
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.62);
  --card: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --radius:18px;
}

*{
  box-sizing:border-box;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  line-height:1.65;
}

a{ color: var(--text); text-decoration:none; }
a:hover{ opacity:.92; }
.container{ width:min(1120px, calc(100% - 32px)); margin:0 auto; }

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  width:92px;
  height:auto;
  display:block;
}
.brand .wordmark{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}
.brand .wordmark .top{
  letter-spacing:.22em;
  font-weight:700;
  font-size:15px;
}
.brand .wordmark .bottom{
  color:var(--muted2);
  letter-spacing:.30em;
  font-size:12px;
  margin-top:2px;
}

.menu{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.menu a{
  color: var(--muted);
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
}
.menu a:hover{
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(255,255,255,.03);
}

.hero{
  padding: 52px 0 18px;
}
.hero-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.hero-logo{
  width:min(360px, 78vw);
  height:auto;
  display:block;
  margin-bottom:6px;
}
.h1{
  margin:0;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: .10em;
  font-weight: 700;
  text-transform: uppercase;
}
.sub{
  margin:0;
  color: var(--muted);
  max-width: 90ch;
}

.section{ padding: 40px 0; }
.section h2{
  margin:0 0 14px;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.card{
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
}
.pad{ padding: 18px; }

.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

/* UPDATED: apps stack 1-per-row to maximize screenshot width */
.grid-apps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; align-items:center; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.03);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
}
.btn.primary{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}
.btn:hover{ background: rgba(255,255,255,.05); }
.btn.primary:hover{ background: rgba(255,255,255,.09); }
.btn.small{ padding: 9px 12px; border-radius: 12px; font-size: 12px; }

.coming{
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: .06em;
  margin-left: -6px;
}

/* UPDATED: screenshots are full-width, stacked, no cropping */
.shots{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
.shot{
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.55);
  border-radius: 14px;
  overflow:hidden;
}
.shot img{
  width:100%;
  height:auto;           /* natural height */
  display:block;
}

/* Optional: subtle caption spacing if you want later */
.disclaimer-text{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-line;
}

.footer{
  padding: 26px 0;
  border-top:1px solid var(--stroke);
  color: var(--muted2);
  font-size: 12px;
}
.footer a{ text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px){
  .grid-2{ grid-template-columns:1fr; }
  .brand img{ width:78px; }
}
