/* Nyayo Zetu — navy / orange / olive from brand footprint logo */
:root {
  --navy: #0a0a2e;
  --navy-mid: #12124a;
  --navy-soft: #1a1a5c;
  --orange: #f06000;
  --orange-hot: #ff7a1a;
  --olive: #3a3a10;
  --olive-soft: #5c5c28;
  --text: #f4f0e8;
  --muted: #c4c0d8;
  --panel: #14143a;
  --line: #2a2a6a;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Ubuntu, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nz-body {
  margin: 0;
  color: var(--text);
  background: var(--navy);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--orange-hot); text-decoration: none; font-weight: 600; }
a:hover { color: #ffc27a; text-decoration: underline; }

.nz-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(240, 96, 0, 0.18), transparent 55%),
    radial-gradient(700px 400px at 100% 20%, rgba(90, 90, 30, 0.25), transparent 50%),
    linear-gradient(165deg, #05051a 0%, var(--navy) 45%, #0d0d38 100%);
}
.nz-topnav, .nz-hero, .nz-section, .nz-ecosystem, .nz-footer {
  position: relative; z-index: 1;
}

.nz-topnav {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 1.25rem;
  background: rgba(10, 10, 46, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30;
}
.nz-brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.nz-icon { width: 40px; height: 40px; object-fit: contain; }
.nz-logo { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.nz-topnav nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.nz-topnav nav a { color: var(--muted); font-weight: 700; font-size: .9rem; }
.nz-topnav nav a:hover { color: var(--orange); text-decoration: none; }

.nz-hero {
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
}
.nz-hero-inner { max-width: 820px; }
.nz-hero-icon {
  width: 120px; height: 120px; object-fit: contain;
  margin: 0 auto 1rem; display: block;
  filter: drop-shadow(0 0 24px rgba(240, 96, 0, 0.45));
}
.nz-float { animation: floaty 4.5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.nz-kicker {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 800; color: var(--orange);
}
.nz-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.1; margin: .5rem 0 1rem; font-weight: 900;
}
.nz-hero h1 .grad {
  background: linear-gradient(90deg, var(--orange), #ffb347, #c4c070);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nz-lead {
  font-size: 1.05rem; color: var(--muted);
  max-width: 40rem; margin: 0 auto 1.5rem;
}

.nz-cta-row {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin: 1rem 0;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .75rem 1.25rem; font-weight: 800;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-hot), var(--orange));
  color: #1a0a00 !important;
  box-shadow: 0 8px 24px rgba(240, 96, 0, 0.35);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text) !important;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange) !important; }

.nz-ecosystem {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
  padding: 1rem; background: #050518; text-align: center;
  border-block: 1px solid var(--line);
}
.nz-ecosystem a {
  color: var(--muted); font-weight: 700; padding: .65rem; border-radius: 10px;
}
.nz-ecosystem a:hover {
  background: rgba(240, 96, 0, 0.12); color: var(--orange); text-decoration: none;
}
@media (max-width: 700px) {
  .nz-ecosystem { grid-template-columns: 1fr 1fr; }
  .nz-topnav nav { display: none; }
  .nz-logo { display: none; }
}

.nz-section {
  max-width: 1040px; margin: 0 auto; padding: 3.5rem 1.25rem;
}
.nz-section.nz-alt {
  max-width: none;
  background: linear-gradient(180deg, rgba(20, 20, 58, 0.9), rgba(10, 10, 46, 0.5));
  padding-left: max(1.25rem, calc((100% - 1040px) / 2));
  padding-right: max(1.25rem, calc((100% - 1040px) / 2));
  border-block: 1px solid var(--line);
}
.nz-section h2 {
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 0 0 1rem; color: #fff;
}
.nz-section-lead {
  text-align: center; max-width: 42rem; margin: 0 auto 1.75rem;
  color: var(--muted);
}

.nz-grid-3, .nz-offers, .nz-partners {
  display: grid; gap: 1.1rem;
}
.nz-grid-3 { grid-template-columns: repeat(3, 1fr); }
.nz-offers { grid-template-columns: repeat(3, 1fr); }
.nz-partners { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .nz-grid-3, .nz-offers { grid-template-columns: 1fr; }
  .nz-partners { grid-template-columns: 1fr; }
}

.nz-card, .nz-offer, .nz-partner {
  background: linear-gradient(160deg, var(--panel), #0e0e32);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}
.nz-card { border-top: 4px solid var(--orange); }
.nz-emoji { font-size: 1.5rem; }
.nz-card h3, .nz-offer h3, .nz-partner h3 {
  margin: .4rem 0 .5rem; color: #fff;
}
.nz-card p, .nz-offer p, .nz-partner p { color: var(--muted); margin: 0; }
.nz-offer .btn { margin-top: 1rem; }
.nz-role { color: var(--orange) !important; font-weight: 700 !important; margin-bottom: .35rem !important; }
.nz-note { font-size: .92rem; }
.nz-links { margin-top: .65rem !important; font-size: .92rem; }
.nz-links a { word-break: break-all; }

.nz-contact-cards {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.nz-contact {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .85rem 1.25rem;
  color: var(--text);
  font-weight: 700;
}
.nz-contact:hover {
  border-color: var(--orange); color: var(--orange); text-decoration: none;
}

.nz-reveal { opacity: 0; transform: translateY(18px); transition: .55s ease; }
.nz-reveal.visible { opacity: 1; transform: none; }

.nz-footer {
  text-align: center;
  padding: 3rem 1.25rem;
  background: #050510;
  border-top: 1px solid var(--line);
}
.nz-footer-icon {
  width: 64px; height: 64px; object-fit: contain; margin-bottom: .5rem;
}
.nz-footer h2 {
  margin: .3rem 0; color: var(--orange); letter-spacing: .08em;
}
.nz-footer-tag {
  color: var(--olive-soft); text-transform: uppercase;
  letter-spacing: .12em; font-size: .85rem; font-weight: 700;
}
.nz-copy { opacity: .6; font-size: .9rem; margin-top: 1.5rem; }

header.o_header_standard, .o_main_nav, .o_footer,
#wrapwrap > header, #wrapwrap > footer { display: none !important; }
