/* NairobiQueen — simple landing page (no frameworks) */
:root{
  --bg: #0b0c10;
  --card: #10131a;
  --text: #e8e9ee;
  --muted: #b7bcc8;
  --accent: #f3a61f;
  --accent2: #ffcc4d;
  --ring: rgba(243,166,31,.35);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 80% 10%, rgba(243,166,31,.18), transparent 55%),
    radial-gradient(800px 500px at 10% 40%, rgba(255,204,77,.12), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 12px;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(243,166,31,.12);
}

.nav{
  display:flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover{ color: var(--text); }

.wrap{
  max-width: 1050px;
  margin: 0 auto;
  padding: 34px 18px 60px;
}

.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,19,26,.65);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.hero__text h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}
.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 55ch;
}

.cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight: 700;
  letter-spacing: .2px;
}
.btn:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.btn.primary{
  border-color: rgba(243,166,31,.55);
  background: rgba(243,166,31,.16);
}
.btn.primary:hover{
  background: rgba(243,166,31,.22);
}

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.chips span{
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.hero__media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.2);
}
.hero__media img{
  width: 100%;
  height: auto;
  display:block;
}

/* Sections */
.section{
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,19,26,.45);
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
}
.section p{ margin: 0; color: var(--muted); }

.contact{ margin-top: 14px; }
.note{ margin-top: 10px; font-size: 13.5px; color: rgba(183,188,200,.9); }

.footer{
  padding: 22px 18px 34px;
  text-align:center;
  color: rgba(183,188,200,.85);
}

/* Mobile */
@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
