:root{
  --bg:#0b0f14;
  --card:#0f1722;
  --card2:#0d141e;
  --text:#e7eef7;
  --muted:#9aa8b6;
  --line:#223044;
  --accent:#5cc8ff;
  --ok:#37d67a;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(92,200,255,.14), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(55,214,122,.10), transparent 55%),
    var(--bg);
}

.hero{
  padding:56px 24px 20px;
  max-width:1080px;
  margin:0 auto;
}
.brand{
  letter-spacing:.18em;
  font-size:12px;
  color:var(--muted);
  margin-bottom:10px;
}
h1{
  margin:0 0 10px;
  font-size:46px;
  line-height:1.05;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.container{
  max-width:1080px;
  margin:0 auto;
  padding:0 24px 40px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  margin-top:28px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.card-title{
  font-weight:700;
  margin-bottom:12px;
}

.weather-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.weather-row:last-child{ border-bottom:none; }
.k{ color:var(--muted); }
.v{ color:var(--text); font-weight:600; }

.small{ font-size:12px; margin-top:10px; }
.muted{ color:var(--muted); }

.camera-frame{
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  overflow:hidden;
  aspect-ratio: 16 / 9;
  display:flex;
  align-items:center;
  justify-content:center;
}
.camera-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  padding:14px 6px;
  color:var(--muted);
  font-size:12px;
}

/* Mobile */
@media (max-width: 900px){
  h1{ font-size:36px; }
  .grid{ grid-template-columns:1fr; }
}
