body {
    margin: 0;
    background: #000;
    color: white;
    font-family: Inter;
}


/* NAVBAR */

.nav {
    display: flex;
    justify-content: space-between;
    padding: 25px 60px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}


.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: #00ff88;
    font-weight: 600;
    font-size: 20px;
}

.logo-sub {
    color: #00ff88;
    opacity: 0.5;
    font-size: 11px;
    letter-spacing: 1px;
}


nav a {
    margin-left: 30px;
    color: #aaa;
    text-decoration: none;
}


/* IDENTITY SECTION */

.identity {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.06), transparent 60%);
}

.identity-inner {
    max-width: 800px;
}

.identity-title {
    font-size: 32px;
    font-weight: 300;
    color: #9FFFD3;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.identity-text {
    font-size: 18px;
    color: #bbb;
    line-height: 1.8;
}


/* COMPARISON SECTION */

.comparison {
    padding: 120px 60px;
    text-align: center;
}

.comparison-sub {
    color: #bbb;
    margin-top: 15px;
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.comparison-card {
    width: 350px;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
}

.comparison-card ul {
    margin-top: 20px;
    color: #bbb;
    line-height: 1.8;
}

.comparison-card li {
    margin-bottom: 10px;
}


/* OLD */
.old {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* NEW */
.new {
    border: 1px solid rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}


/* HERO */

.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    padding: 0 60px;
}


.hero-left {
    max-width: 600px;
}

.hero-left h1 {
    font-size: 70px;
    font-weight: 200;
}

.hero-left span {
    color: #00ff88;
    text-shadow: 0 0 20px #00ff88;
}

.hero-sub {
    color: #bbb;
    margin-top: 20px;
    line-height: 1.6;
}


.hero-buttons {
    margin-top: 30px;
}

.primary-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 40px;
    background: #39ff14;
    box-shadow: 0 0 40px #39ff14;
    cursor: pointer;
    font-weight: 600;
}

.secondary-btn {
    margin-left: 15px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: white;
    border-radius: 40px;
    cursor: pointer;
}



/* MIC */

.mic-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

.mic {
    width: 120px;
    height: 120px;
    background: #39ff14;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    position: absolute;
    top: 40px;
    left: 40px;
    box-shadow: 0 0 40px #39ff14;
}

.ripple {
    position: absolute;
    border: 2px solid #39ff14;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: ripple 3s infinite;
}

.delay1 {
    animation-delay: 1s;
}

.delay2 {
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



/* TRUST BAR */

.trust {
    padding: 25px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    text-align: center;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    color: #9FFFD3;
}



/* SECTIONS */
/* HOW SECTION */

.how {
    padding: 140px 60px;
    text-align: center;
}

.how-title {
    font-size: 34px;
    font-weight: 300;
    color: #9FFFD3;
    margin-bottom: 10px;
}

.how-sub {
    color: #aaa;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}


.step {
    width: 200px;
}

/* FINAL CTA */

.final-cta {
    position: relative;

    padding: 160px 20px;

    text-align: center;

    overflow: hidden;
}


/* subtle spiritual glow */

.cta-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 500px;
    height: 500px;

    background: radial-gradient(circle, rgba(0, 255, 136, 0.12), transparent 70%);

    filter: blur(40px);

    z-index: 0;
}


.cta-title {
    font-size: 42px;

    font-weight: 300;

    margin-bottom: 20px;

    position: relative;
    z-index: 1;
}


.cta-text {
    color: #bbb;

    max-width: 700px;

    margin: auto;

    line-height: 1.7;

    position: relative;
    z-index: 1;
}


.cta-sub {
    margin-top: 18px;

    color: #9FFFD3;

    font-size: 18px;

    position: relative;
    z-index: 1;
}


.cta-button {
    margin-top: 35px;

    font-size: 18px;

    padding: 20px 50px;

    box-shadow:
        0 0 40px rgba(57, 255, 20, 0.6),
        0 0 80px rgba(57, 255, 20, 0.3);

    position: relative;
    z-index: 1;
}


.cta-button:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 60px rgba(57, 255, 20, 0.9),
        0 0 120px rgba(57, 255, 20, 0.4);
}


.cta-note {
    margin-top: 20px;

    font-size: 13px;

    color: #666;

    position: relative;
    z-index: 1;
}


/* PURPOSE SECTION */

.purpose {
    position: relative;

    padding: 180px 20px;

    text-align: center;

    overflow: hidden;
}


/* subtle glow */

.purpose-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 600px;
    height: 600px;

    background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 70%);

    filter: blur(60px);

    z-index: 0;
}


.purpose-title {
    font-size: 42px;

    font-weight: 300;

    margin-bottom: 30px;

    position: relative;
    z-index: 1;
}


.purpose-text {
    color: #bbb;

    max-width: 700px;

    margin: auto;

    margin-top: 15px;

    line-height: 1.8;

    font-size: 17px;

    position: relative;
    z-index: 1;
}


.purpose-highlight {
    margin-top: 30px;

    font-size: 22px;

    color: #9FFFD3;

    letter-spacing: 0.5px;

    position: relative;
    z-index: 1;
}
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.4);

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

    margin: auto;
    margin-bottom: 15px;

    color: #00ff88;
    font-weight: 600;
    font-size: 18px;

    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}


.step h3 {
    margin-bottom: 8px;
}


.step p {
    color: #aaa;
    font-size: 14px;
}

.problem,
.how,
.mosque,
.final-cta {
    padding: 100px 60px;
    text-align: center;
}

.problem p,
.mosque p,
.final-cta p {
    color: #bbb;
    max-width: 700px;
    margin: auto;
    margin-top: 20px;
}



/* STEPS */

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.step {
    max-width: 200px;
}


.comparison-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}


.comparison-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    opacity: 0.7;
}


.old-label {
    color: #888;
}


.new-label {
    color: #00ff88;
}


.new {
    border: 1px solid rgba(0, 255, 136, 0.4);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.08), rgba(0, 255, 136, 0.02));
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}
/* PHONE */

.phone-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px;
    gap: 100px;
}

.phone {
    width: 200px;
    height: 400px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 30px;
    padding: 10px;
}

.screen {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ff88;
}


/* LIVE DOT */

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 10px;

    display: inline-block;

    animation: liveBlink 1.4s infinite;

    box-shadow: 0 0 10px #00ff88;
}


/* blinking animation */

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

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }

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

.highlight {
    color: #9FFFD3;
}



/* FEATURES */

.features {
    padding: 120px;
    text-align: center;
}

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

.card {
    padding: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    background: rgba(0, 255, 136, 0.05);
}



/* FOOTER */

footer {
    padding: 40px;
    text-align: center;
}

.footer-brand {
    color: #00ff88;
    font-weight: 600;
}

.footer-tag {
    margin-top: 5px;
    color: #aaa;
}

.footer-domain {
    margin-top: 10px;
    color: #666;
    font-size: 13px;
}