:root{
  --bg:#0b1117;
  --panel:#0f1720;
  --panel2:#0c141c;
  --text:#e6edf3;
  --muted:#a9b4bf;
  --link:#c7d2fe;
  --border:rgba(255,255,255,.08);
  --btn:#ffffff;
  --btnText:#0b1117;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --accent:#f5c542;
  --blue:#2563eb;
  --blue2:#3b82f6;
  --green:#22c55e;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 600px at 20% 10%, #0f1b2a 0%, var(--bg) 55%) fixed;
  color:var(--text);
  line-height:1.55;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:0 22px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(8,12,16,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:24px;
}

.header-brand-link{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  text-decoration:none;
}

.header-brand-image{
  display:block;
  width:350px;
  max-width:100%;
  height:auto;
}

.nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-left:auto;
  align-items:center;
  justify-content:flex-end;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;
  transition:all .18s ease;
}

.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.24);
}

.nav a.active{
  color:#071019;
  background:#ffffff;
  border-color:#ffffff;
}

.hero{
  padding:56px 0 40px;
}

.page{
  padding:64px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
  margin-bottom:34px;
}

.hero-copy{
  min-width:0;
}

.kicker{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
}

h1{
  font-size:48px;
  line-height:1.08;
  margin:0 0 18px;
  letter-spacing:-.02em;
}

h2{
  font-size:30px;
  line-height:1.15;
  margin:0 0 16px;
  letter-spacing:-.02em;
}

.lead{
  color:var(--muted);
  font-size:18px;
  max-width:720px;
  margin:0 0 24px;
}

.hero-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:0 0 24px;
}

.point{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 16px;
  font-size:15px;
  color:var(--text);
  box-shadow:var(--shadow);
}

.store-placeholder{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(37,99,235,.18), rgba(37,99,235,.10));
  box-shadow:var(--shadow);
}

.store-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  background:linear-gradient(180deg, var(--blue2), var(--blue));
}

.store-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}

.store-status{
  font-size:18px;
  font-weight:700;
  color:var(--text);
}

.hero-image-wrap{
  min-width:0;
}

.hero-image{
  width:100%;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  object-fit:cover;
}

.card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  margin:28px 0;
  box-shadow:var(--shadow);
}

.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  border-top-left-radius:22px;
  border-top-right-radius:22px;
}

.card p{
  margin:0 0 16px;
}

.card p:last-child{
  margin-bottom:0;
}

.feature-img{
  width:100%;
  border-radius:18px;
  border:1px solid var(--border);
  margin:18px 0 18px;
  box-shadow:var(--shadow);
}

.app-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:10px;
}

.app-shot{
  margin:0;
  background:rgba(255,255,255,.02);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

.app-shot img{
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
  background:#fff;
}

.app-shot figcaption{
  padding:12px 12px 14px;
  font-size:14px;
  color:var(--muted);
  text-align:center;
}

.system-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:center;
  margin:36px 0;
}

.system-img{
  width:100%;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.list{
  margin:0;
  padding-left:18px;
  color:var(--text);
}

.list li{
  margin:10px 0;
}

.list a{
  color:var(--link);
}

.muted{
  color:var(--muted);
  font-size:14px;
}

.site-footer{
  border-top:1px solid var(--border);
  margin-top:56px;
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.footer-inner p{
  margin:0;
}

.site-footer a{
  color:var(--link);
}

@media (max-width: 980px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .app-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 900px){
  .system-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .header-brand-image{
    width:210px;
  }

  .nav{
    width:100%;
    gap:10px;
    margin-left:0;
    justify-content:flex-start;
  }

  .nav a{
    font-size:13px;
    padding:9px 14px;
  }

  .hero{
    padding:38px 0 24px;
  }

  .page{
    padding:48px 0 32px;
  }

  h1{
    font-size:36px;
  }

  h2{
    font-size:26px;
  }

  .lead{
    font-size:17px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .store-placeholder{
    width:100%;
    justify-content:flex-start;
  }

  .card{
    padding:20px;
    border-radius:18px;
  }

  .feature-img{
    border-radius:14px;
  }

  .app-grid{
    grid-template-columns:1fr;
  }

  .app-shot img{
    aspect-ratio:auto;
    object-fit:contain;
  }
}

@media (max-width: 480px){
  .container{
    padding:0 16px;
  }

  .hero{
    padding:28px 0 18px;
  }

  .page{
    padding:38px 0 24px;
  }

  h1{
    font-size:32px;
  }

  h2{
    font-size:24px;
  }

  .lead{
    font-size:16px;
  }

  .point{
    font-size:14px;
    padding:12px 14px;
  }

  .store-icon{
    width:42px;
    height:42px;
    font-size:22px;
  }

  .store-status{
    font-size:17px;
  }

  .nav a{
    font-size:12px;
    padding:8px 12px;
  }

  .header-brand-image{
    width:180px;
  }
}