```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #f8f5ec;
    background:
        radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.12), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(80, 110, 180, 0.18), transparent 35%),
        linear-gradient(135deg, #050914, #0a1428 55%, #03050b);
    min-height: 100vh;
    line-height: 1.6;
}

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

/* HEADER */

header {
    position: sticky;
    top: 16px;
    z-index: 100;
    padding: 0 20px;
}

nav {
    max-width: 1180px;
    margin: auto;
    padding: 16px 22px;

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

    background: rgba(8, 15, 30, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo:first-letter {
    color: #d7b85a;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #c8ceda;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* HERO */

.hero {
    min-height: 780px;
    max-width: 1100px;
    margin: auto;

    padding: 150px 25px 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eyebrow {
    color: #d7b85a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(58px, 9vw, 110px);
    line-height: 0.98;
    letter-spacing: -5px;
    margin-bottom: 30px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #f7f0d8 45%,
        #d7b85a
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 650px;
    color: #aeb7c8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    background: #d7b85a;
    color: #10131a;
    box-shadow: 0 10px 30px rgba(215, 184, 90, 0.18);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* SECTIONS */

.section {
    max-width: 1180px;
    margin: auto;
    padding: 110px 25px;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 50px;
}

.section-heading h2,
.about h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-heading > p:last-child,
.about > p:last-child {
    color: #9da8bb;
    font-size: 17px;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    padding: 32px;

    min-height: 260px;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;

    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(215, 184, 90, 0.25);
}

.card-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 25px;
}

.card h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.card p {
    color: #9da8bb;
    margin-bottom: 24px;
}

.card a {
    color: #d7b85a;
    font-weight: 700;
}

/* VERSE */

.verse-section {
    max-width: 1000px;
    margin: auto;
    padding: 120px 25px;
    text-align: center;
}

.verse-card {
    position: relative;
    padding: 70px 50px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(215, 184, 90, 0.10),
            transparent 65%
        ),
        rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(215, 184, 90, 0.16);
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 35px;

    font-family: Georgia, serif;
    font-size: 90px;
    color: rgba(215, 184, 90, 0.25);
}

.verse {
    max-width: 750px;
    margin: auto;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 4vw, 42px);
    line-height: 1.45;
}

.reference {
    margin-top: 25px;
    color: #d7b85a;
    font-weight: 700;
}

/* PRAYER */

.prayer-card {
    max-width: 750px;
    padding: 45px;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.prayer-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.prayer-card p {
    color: #aeb7c8;
    font-size: 17px;
    margin-bottom: 25px;
}

.prayer-card button {
    border: none;
    padding: 13px 22px;

    border-radius: 13px;

    background: #d7b85a;
    color: #10131a;

    font-weight: 800;
    cursor: pointer;

    transition: 0.25s ease;
}

.prayer-card button:hover {
    transform: translateY(-3px);
}

/* ABOUT */

.about {
    max-width: 900px;
    margin: auto;
    padding: 120px 25px;
    text-align: center;
}

.about h2 {
    margin-bottom: 25px;
}

.about > p:last-child {
    max-width: 650px;
    margin: auto;
}

/* FOOTER */

footer {
    max-width: 1180px;
    margin: auto;
    padding: 60px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #7f899b;
}

footer .logo {
    color: #ffffff;
}

footer p {
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 800px) {

    header {
        top: 8px;
        padding: 0 10px;
    }

    nav {
        padding: 14px 16px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 700px;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 80px);
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .verse-card {
        padding: 55px 25px;
    }

    .prayer-card {
        padding: 30px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
```
