:root { --black: #050810; --deep: #080d1a; --surface: #0d1526; --surface2: #111d35; --blue: #1a6ef5; --blue-bright: #3d8fff; --blue-glow: rgba(26,110,245,0.18); --silver: #9ba8c0; --silver-light: #d0d8ea; --white: #f0f4ff; --text: #c8d4ed; --muted: #8291ac; --border: rgba(255,255,255,0.07); --border-blue: rgba(26,110,245,0.3); --font-display: 'Syne', sans-serif; --font-body: 'DM Sans', sans-serif; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--black); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; } /* NAV */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 4rem; height: 72px; background: rgba(5,8,16,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: background 0.3s; } .nav-logo { display: flex; align-items: center; text-decoration: none; } .nav-logo img { height: 34px; width: auto; display: block; } .nav-links { display: flex; gap: 2.5rem; align-items: center; } .nav-links a { color: var(--silver-light); font-size: 0.875rem; font-weight: 400; text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; } .nav-links a:hover { color: var(--white); } .nav-cta { background: var(--blue) !important; color: #fff !important; padding: 0.5rem 1.25rem; border-radius: 4px; font-size: 0.8rem !important; letter-spacing: 0.06em !important; transition: background 0.2s !important; } .nav-cta:hover { background: var(--blue-bright) !important; } /* HERO */ .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 6rem 4rem 4rem; overflow: hidden; } /* HERO V2 — split executive layout */
.hero-v2 { position: relative; padding: 9rem 4rem 5rem; overflow: hidden; }
.hero-v2::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(26,110,245,0.10) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 10% 90%, rgba(26,110,245,0.06) 0%, transparent 60%); pointer-events:none; }
.hero-v2-grid { position: relative; z-index: 2; display: block; max-width: 1440px; margin: 0 auto; }
@media (max-width: 980px) {
  .hero-v2 { padding: 7rem 1.5rem 3rem; }
  .hero-v2-content { max-width: 100%; }
}
.hero-v2-content { max-width: 560px; }
.dot-pulse { display:inline-block; width:6px; height:6px; border-radius:50%; background: var(--blue-bright); animation: pulse 2s infinite; margin-right: 2px; }
.hero-v2 h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 3.6vw, 3.6rem); font-weight: 800; line-height: 1.08; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero-v2 h1 em { font-style: normal; color: var(--blue-bright); }
.hero-v2 .hero-sub { font-size: 1.08rem; font-weight: 400; color: var(--silver-light); line-height: 1.75; margin-bottom: 1rem; }
.hero-tagline { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 2.5rem; }
.hero-v2-bg { position: absolute; inset: -20px; z-index: 0; background-image: linear-gradient(100deg, rgba(5,8,16,0.95) 0%, rgba(5,8,16,0.82) 34%, rgba(5,8,16,0.4) 66%, rgba(5,8,16,0.6) 100%), url('assets/images/img-08.jpg'); background-size: cover; background-position: center 40%; }
@media (max-width: 980px) {
  .hero-v2-bg { background-image: linear-gradient(180deg, rgba(5,8,16,0.15) 0%, rgba(5,8,16,0.45) 45%, rgba(5,8,16,0.88) 82%, rgba(5,8,16,0.98) 100%), url('assets/images/img-08.jpg'); background-position: center 30%; height: 420px; inset: -20px -20px auto -20px; }
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 2rem; border: 1px solid var(--border-blue); padding: 0.35rem 1rem; border-radius: 2px; } .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } } .hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; color: var(--white); letter-spacing: -0.03em; margin-bottom: 1.5rem; } .hero h1 em { font-style: normal; color: var(--blue-bright); } .hero-sub { font-size: 1.15rem; font-weight: 300; color: var(--silver-light); line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem; } .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; } .btn-primary { background: var(--blue); color: #fff; padding: 0.85rem 2rem; border: none; border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s, transform 0.15s; text-decoration: none; display: inline-block; } .btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); } .btn-ghost { background: transparent; color: var(--silver-light); padding: 0.85rem 2rem; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; cursor: pointer; transition: border-color 0.2s, color 0.2s; text-decoration: none; display: inline-block; } .btn-ghost:hover { border-color: var(--blue-bright); color: var(--white); } .hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); } .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; } .stat-num span { color: var(--blue-bright); } .stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.25rem; } /* SECTIONS */ section { padding: 6rem 4rem; } .trust { padding: 5rem 4rem; border-bottom: 1px solid var(--border); } .trust-grid { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.5rem; } .trust-item { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.03em; color: var(--silver-light); border: 1px solid var(--border); padding: 0.7rem 1.3rem; border-radius: 3px; background: rgba(255,255,255,0.015); transition: border-color 0.25s ease, color 0.25s ease; } .trust-item:hover { border-color: var(--border-blue); color: var(--white); } .vision { position: relative; text-align: center; padding: 7rem 4rem 8rem; background-image: linear-gradient(rgba(5,8,16,0.88), rgba(5,8,16,0.95)), url('assets/images/img-03.jpg'); background-size: cover; background-position: center 35%; }
.founder-note { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 1.75rem; max-width: 680px; margin: 3.5rem auto 0; padding-top: 3rem; border-top: 1px solid var(--border); text-align: left; } .founder-note img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center 25%; border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; } .founder-note p { font-size: 0.95rem; font-style: italic; color: var(--silver-light); line-height: 1.6; margin: 0; } .founder-role { display: block; margin-top: 0.5rem; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-bright); font-style: normal; } @media (max-width: 640px) { .founder-note { flex-direction: column; text-align: center; gap: 1rem; } } .vision-stmt { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.4; max-width: 900px; margin: 0 auto; color: var(--silver-light); letter-spacing: -0.01em; } .vision-stmt strong { color: var(--white); font-weight: 800; } .vision-stmt .accent { color: var(--blue-bright); } .africa { position: relative; padding: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 640px; } .africa-copy { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; } .africa-visual { position: relative; background-image: linear-gradient(rgba(8,13,26,0.55), rgba(8,13,26,0.75)), url('assets/images/img-04.jpg'); background-size: cover; background-position: center; } .africa-visual canvas { width: 100% !important; height: 100% !important; display: block; } @media (max-width: 900px) { .africa { grid-template-columns: 1fr; } .africa-visual { min-height: 380px; } .africa-copy { padding: 4rem 1.5rem 2rem; } } .section-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 1rem; font-weight: 500; } h2.section-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.25rem; } .section-sub { font-size: 1.05rem; font-weight: 400; color: var(--silver-light); max-width: 560px; line-height: 1.75; } /* SERVICES GRID */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1px; background: var(--border); margin-top: 4rem; border: 1px solid var(--border); } .service-card { background: var(--deep); display: flex; flex-direction: column; } .service-card-img { height: 220px; background-size: cover; background-position: center; filter: saturate(0.9) brightness(0.75); transition: filter 0.4s ease, transform 0.6s ease; transform: scale(1.02); } .service-card:hover .service-card-img { filter: saturate(1.05) brightness(0.9); transform: scale(1.08); } .service-card-body { padding: 1.75rem 2rem 2.25rem; flex: 1; } .service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.01em; } .cao dt { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-bright); margin-top: 0.9rem; } .cao dt:first-child { margin-top: 0; } .cao dd { font-size: 0.85rem; color: var(--silver-light); line-height: 1.6; margin: 0.2rem 0 0; } .service-card-wide .cao { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; } .service-card-wide .cao dt { margin-top: 0; } @media (max-width: 700px) { .service-card-wide .cao { grid-template-columns: 1fr; } } .service-card-wide { grid-column: 1/-1; flex-direction: row; align-items: stretch; } .service-card-wide .service-card-img { width: 40%; height: auto; min-height: 260px; } .service-card-wide .service-card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 2.5rem 3rem; } @media (max-width: 700px) { .service-card-wide { flex-direction: column; } .service-card-wide .service-card-img { width: 100%; height: 200px; } } /* INTRO BAND */ .intro-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 4rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .intro-item { padding-left: 1.5rem; border-left: 2px solid var(--blue); } .intro-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; } .intro-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; } .command-center { position: relative; min-height: 70vh; display: flex; align-items: center; background-image: linear-gradient(100deg, rgba(5,8,16,0.95) 10%, rgba(5,8,16,0.55) 55%, rgba(5,8,16,0.85) 100%), url('assets/images/img-05.jpg'); background-size: cover; background-position: center; padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .cc-overlay { max-width: 560px; margin: 3rem; padding: 3rem 3.5rem; background: rgba(5,8,16,0.62); backdrop-filter: blur(22px) saturate(1.1); -webkit-backdrop-filter: blur(22px) saturate(1.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6); } .cc-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; } @media (max-width: 900px) { .cc-overlay { margin: 1.5rem; padding: 2.5rem 1.75rem; } } .future-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; } .future-card { padding: 2.5rem 2rem; border: 1px solid var(--border); background: var(--deep); position: relative; overflow: hidden; border-radius: 2px; transition: border-color 0.3s; } .future-card:hover { border-color: var(--border-blue); } .future-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); } .future-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; } .future-card p { font-size: 0.88rem; color: var(--silver-light); line-height: 1.7; } .future-badge { display: inline-block; margin-bottom: 1rem; padding: 0.2rem 0.6rem; background: rgba(26,110,245,0.1); border: 1px solid var(--border-blue); border-radius: 2px; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-bright); } .intel { position: relative; background-image: linear-gradient(rgba(13,21,38,0.88), rgba(13,21,38,0.94)), url('assets/images/img-06.jpg'); background-size: cover; background-position: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .intel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; } .intel-card { padding: 1.75rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(5,8,16,0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 4px; transition: border-color 0.3s; } .intel-card:hover { border-color: var(--border-blue); } .intel-tag { display: inline-block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-bright); border: 1px solid var(--border-blue); padding: 0.25rem 0.6rem; border-radius: 2px; margin-bottom: 1rem; } .intel-card h4 { font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; } .intel-card p { font-size: 0.85rem; color: var(--silver-light); line-height: 1.65; }
/* FOOTER */ footer { position: relative; border-top: 1px solid var(--border); padding: 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; overflow: hidden; } .footer-watermark { position: relative; padding: 4rem 4rem 0; opacity: 0.85; max-width: 340px; } .footer-watermark img { width: 100%; height: auto; display: block; } .footer-brand h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; } .footer-brand h3 span { color: var(--blue-bright); } .footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin-top: 0.5rem; } .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-light); margin-bottom: 1.25rem; font-weight: 500; } .footer-col a { display: block; font-size: 0.85rem; color: var(--muted); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; } .footer-col a:hover { color: var(--silver-light); } .footer-bottom { padding: 1.5rem 4rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; } .footer-bottom p { font-size: 0.8rem; color: var(--muted); } /* RESPONSIVE */ @media (max-width: 900px) { nav { padding: 0 1.5rem; } body { line-height: 1.8; } .hero-sub, .section-sub, .vision-stmt, .cao dd, .intel-card p { line-height: 1.85; } .nav-links { display: none; } .hero, section, .intro-band, footer, .footer-bottom { padding-left: 1.5rem; padding-right: 1.5rem; } .intro-band { grid-template-columns: 1fr 1fr; } .future-grid { grid-template-columns: 1fr; } footer { grid-template-columns: 1fr 1fr; } .hero-stats { gap: 1.5rem; flex-wrap: wrap; } }
/* --- Refinement pass: scroll reveal + nav solidify (deliberate, no bounce) --- */
.reveal-el { opacity: 0; transform: translateY(22px); transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1); }
.reveal-el.reveal-in { opacity: 1; transform: translateY(0); }
nav.nav-solid { background: rgba(5,8,16,0.95); }
@media (prefers-reduced-motion: reduce) {
  .reveal-el { opacity: 1 !important; transform: none !important; transition: none !important; }
}
