:root{
  --bg:#f7f7f8;
  --panel:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --accent:#30534F;
  --accent-soft:#c0cbca;
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

.page{
  max-width:1160px;
  margin:0 auto;
  padding:24px 24px 56px;
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0 18px;
}

.brand{
  font-size:28px;
  font-weight:800;
  letter-spacing:-0.03em;
  color:var(--accent);
}

.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.nav a{
  font-size:14px;
  color:var(--muted);
}

.nav a:hover{
  color:var(--text);
}

.hero{
  padding:44px 0 26px;
}

.eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  font-weight:800;
  margin-bottom:12px;
}

.hero h1{
  margin:0 0 14px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-0.04em;
  max-width:900px;
}

.hero-copy{
  margin:0;
  max-width:760px;
  font-size:19px;
  line-height:1.6;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:800;
  font-size:14px;
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.button:hover{
  transform:translateY(-1px);
}

.button.primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 8px 20px rgba(109,40,217,.18);
}

.button.secondary{
  background:#fff;
  color:var(--text);
}

.apps-section{
  margin-top:28px;
}

.section-heading{
  margin-bottom:18px;
}

.section-heading h2{
  margin:0 0 6px;
  font-size:28px;
  letter-spacing:-0.02em;
}

.section-heading p{
  margin:0;
  color:var(--muted);
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:18px;
}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  box-shadow:0 1px 2px rgba(0,0,0,.03);
  transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.card.live:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-color:#d1d5db;
}

.card.muted{
  opacity:.82;
}

.card-kicker{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 10px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.card h3{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-0.02em;
}

.card p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
}

.card-link{
  display:inline-block;
  margin-top:16px;
  font-size:14px;
  font-weight:800;
  color:var(--accent);
}

.site-footer{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

.footer-links{
  display:flex;
  gap:14px;
}

.footer-links a:hover{
  color:var(--text);
}

@media (max-width: 720px){
  .page{
    padding:18px 18px 40px;
  }

  .site-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .hero{
    padding:28px 0 18px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-copy{
    font-size:17px;
  }
}