* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px
}

:root {
    --bg: #020817;
    --panel: #071225;
    --panel2: #0b1425;
    --white: #f7f9ff;
    --muted: #a9b4c8;
    --green: #58f21c;
    --cyan: #00d9e9;
    --blue: #1168ff
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6
}

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

.navbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    padding: 0 max(5vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(1, 8, 22, .88);
    border-bottom: 1px solid rgba(45, 119, 255, .18);
    backdrop-filter: blur(16px)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    font-weight: 900;
    font-size: 31px;
    letter-spacing: -10px;
    width: 68px;
    display: inline-block;
    transform: skew(-8deg)
}

.brand-mark span {
    color: #176cff
}

.brand-mark b {
    color: #55e71d;
    margin-left: -1px
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.brand-text strong {
    font-size: 15px;
    letter-spacing: .5px
}

.brand-text small {
    font-size: 10px;
    color: #c8d0df;
    margin-top: 5px
}

.nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
    margin-left: auto;
    margin-right: 32px
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #e8edf7;
    position: relative;
    padding: 29px 0
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green)
}

.nav-links a.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green)
}

.nav-cta {
    border: 1px solid var(--cyan);
    border-radius: 10px;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 25px
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("assets/hero-background.webp");
    background-size: 75% auto;
    background-repeat: no-repeat;
    background-position: center right
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 7, 19, .95) 0%, rgba(1, 7, 19, .62) 34%, rgba(1, 7, 19, .08) 72%), linear-gradient(0deg, rgba(1, 7, 19, .28), transparent 45%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 10%;
    max-width: 610px;
    padding-top: 80px
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    margin: 0 0 13px
}

.hero h1 {
    font-size: clamp(50px, 6.5vw, 96px);
    line-height: .92;
    margin: 0;
    font-weight: 800;
    letter-spacing: -4px
}

.hero h1 span {
    color: var(--green)
}

.accent-line {
    width: 105px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    margin: 24px 0
}

.hero-subtitle {
    font-size: 25px;
    line-height: 1.3;
    margin: 0 0 18px;
    font-weight: 500
}

.hero-subtitle em {
    font-style: normal;
    color: var(--green)
}

.hero-note {
    max-width: 510px;
    color: #d1d9e8;
    font-size: 15px
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 18px;
    background: linear-gradient(90deg, #16a7ff, #1467ff);
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 10px 35px rgba(0, 103, 255, .25)
}

.primary-btn span {
    font-size: 19px
}

.hero-location {
    position: absolute;
    right: 8%;
    top: 42%;
    z-index: 2;
    display: flex;
    gap: 12px;
    align-items: center
}

.hero-location strong {
    display: block;
    color: var(--green);
    font-size: 16px
}

.hero-location small {
    display: block;
    color: #d4e2f5
}

.pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 9px rgba(88, 242, 28, .12), 0 0 30px var(--green)
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 10%;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8f9bb0
}

.scroll-cue span {
    color: var(--green);
    font-size: 18px;
    margin-left: 8px
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #030c1d;
    border-top: 1px solid #102746;
    border-bottom: 1px solid #102746;
    padding: 26px 9%;
    gap: 30px
}

.trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-right: 1px solid #19304c;
    padding-right: 20px
}

.trust-item:last-child {
    border: 0
}

.trust-item .icon {
    font-size: 30px;
    color: var(--cyan)
}

.trust-item strong {
    display: block;
    font-size: 14px
}

.trust-item small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
    margin-top: 4px
}

.section {
    padding: 105px 10%;
    display: grid;
    gap: 60px;
    align-items: center
}

.about {
    grid-template-columns: .9fr 1.1fr;
    background: linear-gradient(180deg, #061022, #081429)
}

.section-image {
    min-height: 390px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 221, 232, .12), rgba(85, 242, 28, .04)), url("assets/brand-source.webp") center/cover;
    overflow: hidden;
    position: relative;
    border: 1px solid #163455
}

.kenya-card {
    position: absolute;
    left: 30px;
    bottom: 28px;
    padding: 22px 26px;
    background: rgba(2, 10, 25, .82);
    border-left: 3px solid var(--green);
    backdrop-filter: blur(8px)
}

.kenya-card span {
    color: var(--green);
    font-size: 10px;
    letter-spacing: 2px
}

.kenya-card strong {
    display: block;
    font-size: 23px;
    line-height: 1.2;
    margin: 7px 0
}

.kenya-card small {
    color: #a9b7cc
}

.section h2 {
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -2px
}

.section h2 span,
.product h2 {
    color: var(--green)
}

.section-copy>p:not(.eyebrow) {
    color: #b8c3d5;
    max-width: 680px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px
}

.feature-grid article {
    border: 1px solid #19304e;
    border-radius: 10px;
    padding: 18px;
    background: rgba(8, 20, 39, .5)
}

.feature-grid span {
    color: var(--cyan);
    font-size: 25px
}

.feature-grid h3 {
    font-size: 14px;
    margin: 10px 0 6px
}

.feature-grid p {
    font-size: 11px;
    color: #8998ae;
    margin: 0
}

.product {
    grid-template-columns: 1.1fr .8fr .75fr;
    background: #0a0f17
}

.product-copy p {
    color: #b7c2d2
}

.product h2 {
    font-size: 55px;
    margin: 0 0 15px
}

.checks {
    padding: 0;
    margin: 25px 0 0;
    list-style: none
}

.checks li {
    margin: 12px 0;
    color: #d9e1ee;
    font-size: 13px
}

.checks li:before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-right: 10px
}

.product-name {
    margin-left: -10px;
}

.product-name img {
    width: min(200px, 100%);
    filter: drop-shadow(0 15px 40px rgba(0, 136, 255, .22))
}

.product-visual {
    text-align: center
}

.product-visual img {
    width: min(320px, 100%);
    filter: drop-shadow(0 15px 40px rgba(0, 136, 255, .22))
}

.download-card {
    border: 1px solid #203650;
    background: linear-gradient(145deg, #0b1728, #050a13);
    border-radius: 14px;
    padding: 30px
}

.download-card>p {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px
}

.download-card h3 {
    font-size: 26px;
    line-height: 1.2
}

.play-button {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 22px;
    background: #03070d
}

.play-button .play-triangle {
    font-size: 28px;
    color: #42d65f
}

.play-button small {
    display: block;
    font-size: 8px
}

.play-button strong {
    display: block;
    font-size: 19px
}

.download-note {
    display: block;
    color: #728096;
    font-size: 9px;
    margin-top: 14px
}

.contact {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    background: radial-gradient(circle at 75% 40%, rgba(0, 173, 255, .13), transparent 35%), #030b19
}

.contact h2 {
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    margin: 0 0 18px
}

.contact h2 span {
    color: var(--green)
}

.contact p:not(.eyebrow) {
    color: #9eabc0;
    max-width: 580px
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 13px
}

.contact-form input,
.contact-form textarea {
    background: #071325;
    border: 1px solid #1b3553;
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    outline: none
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--cyan)
}

.contact-form .primary-btn {
    align-self: flex-start;
    border: 0;
    color: #fff
}

/* ========================================
   SUCCESS MODAL
======================================== */

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(1, 7, 19, .78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.success-modal-content {
    position: relative;

    width: min(450px, 100%);
    padding: 45px 35px 38px;

    text-align: center;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(0, 217, 233, .10),
            transparent 45%),
        linear-gradient(145deg, #0b1728, #030914);

    border: 1px solid rgba(88, 242, 28, .25);
    border-radius: 18px;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .55),
        0 0 50px rgba(0, 217, 233, .08);

    transform: translateY(30px) scale(.94);

    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.success-modal.active .success-modal-content {
    transform: translateY(0) scale(1);
}

/* Close button */

.success-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .05);
    color: #9eabc0;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.success-modal-close:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: rotate(90deg);
}

/* Success icon */

.success-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(88, 242, 28, .08);
    border: 1px solid rgba(88, 242, 28, .35);

    box-shadow:
        0 0 0 8px rgba(88, 242, 28, .035),
        0 0 35px rgba(88, 242, 28, .15);

    animation: successIconPop .55s cubic-bezier(.2, .8, .2, 1);
}

.success-icon svg {
    width: 43px;
    height: 43px;
}

.success-icon path {
    fill: none;
    stroke: var(--green);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 70;
    stroke-dashoffset: 70;

    animation: successCheck .6s .25s ease forwards;
}

@keyframes successIconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Text */

.success-modal-content h2 {
    margin: 0 0 12px;

    color: var(--white);

    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.7px;
}

.success-modal-content p {
    max-width: 350px;

    margin: 0 auto 27px;

    color: #9eabc0;

    font-size: 13px;
    line-height: 1.7;
}

/* Done button */

.success-ok-btn {
    margin-top: 0;

    border: 0;
    color: #fff;

    cursor: pointer;
}

/* Mobile */

@media(max-width:600px) {
    .success-modal {
        padding: 18px;
    }

    .success-modal-content {
        padding: 40px 25px 30px;
    }

    .success-modal-content h2 {
        font-size: 25px;
    }

    .success-modal-content p {
        font-size: 12px;
    }
}


footer {
    background: #010713;
    border-top: 1px solid #14243a;
    padding: 55px 10% 20px
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 45px
}

.footer-brand p {
    color: #8290a7;
    font-size: 12px;
    max-width: 300px
}

.footer-main h4 {
    font-size: 12px;
    color: var(--green);
    margin: 0 0 14px
}

.footer-main>div:not(.footer-brand) a,
.footer-main p {
    display: block;
    color: #8996aa;
    font-size: 11px;
    margin: 7px 0
}

.socials {
    display: flex;
    gap: 9px
}

.socials a {
    border: 1px solid #28405d !important;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: grid !important;
    place-items: center;
    color: #d8e4f5 !important
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 18px;
    border-top: 1px solid #122239;
    display: flex;
    justify-content: space-between;
    color: #64738a;
    font-size: 10px
}

.footer-bottom a {
    color: #64738a
}

@media(max-width:950px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .navbar {
        height: 70px
    }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #020817;
        flex-direction: column;
        gap: 0;
        padding: 10px 25px;
        border-bottom: 1px solid #17304e
    }

    .nav-links.open a {
        padding: 14px
    }

    .hero {
        min-height: 780px;
        background-position: 62% center
    }

    .hero-content {
        margin-left: 7%;
        margin-right: 7%
    }

    .hero-location {
        right: 7%
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 7%
    }

    .section,
    .contact {
        padding: 75px 7%;
        grid-template-columns: 1fr
    }

    .product {
        grid-template-columns: 1fr
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .brand-text strong {
        font-size: 12px
    }

    .brand-text small {
        font-size: 8px
    }

    .brand-mark {
        font-size: 25px;
        width: 55px
    }

    .hero {
        min-height: 760px;
        background-position: 68% center
    }

    .hero h1 {
        font-size: 50px
    }

    .hero-subtitle {
        font-size: 20px
    }

    .hero-content {
        padding-top: 90px
    }

    .hero-location {
        display: none
    }

    .trust-strip {
        grid-template-columns: 1fr
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid #19304c;
        padding-bottom: 14px
    }

    .section-image {
        min-height: 280px
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px
    }
}