/* =====================================================
   BIBLEFOLLOW
   Premium Website Design System
   ===================================================== */

:root {
    --green-950: #07150f;
    --green-900: #0d2519;
    --green-800: #143724;
    --green-700: #1c5035;
    --green-600: #286c49;
    --green-500: #3a8a60;

    --sage-100: #e6efe8;
    --sage-50: #f2f6f2;

    --cream: #fbfaf5;
    --cream-dark: #f2efe5;

    --gold: #c7a75d;
    --gold-light: #e2cc94;

    --text: #132119;
    --text-light: #5f6d64;

    --white: #ffffff;

    --border: rgba(20, 55, 36, 0.12);

    --shadow:
        0 20px 60px rgba(12, 37, 25, 0.10);

    --radius: 24px;
}


/* RESET */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--cream);
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


img {
    max-width: 100%;
}


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


button {
    font: inherit;
}


.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(251, 250, 245, 0.82);

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

    border-bottom:
        1px solid rgba(20, 55, 36, 0.07);
}


.navbar {
    height: 76px;

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


.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-size: 20px;
    font-weight: 750;
}


.brand-mark,
.small-brand-mark {
    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--green-600),
            var(--green-900)
        );

    box-shadow:
        0 8px 20px rgba(20, 55, 36, 0.18);
}


.brand-mark {
    width: 38px;
    height: 38px;

    border-radius: 11px;

    font-family: Georgia, serif;
    font-size: 21px;
}


.navigation {
    display: flex;
    align-items: center;
    gap: 34px;

    font-size: 14px;
    font-weight: 600;
}


.navigation > a:not(.nav-download) {
    color: #45534a;
    transition: 0.25s;
}


.navigation > a:not(.nav-download):hover {
    color: var(--green-600);
}


.nav-download {
    padding: 11px 19px;

    background: var(--green-900);
    color: white;

    border-radius: 100px;
}


.mobile-menu-button {
    display: none;

    background: none;
    border: 0;

    cursor: pointer;
}


.mobile-menu-button span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--green-900);

    margin: 5px;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 850px;

    padding:
        170px 0 100px;

    display: flex;
    align-items: center;
}


.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        1.05fr 0.95fr;

    gap: 80px;
    align-items: center;
}


.hero-glow {
    position: absolute;

    border-radius: 50%;
    filter: blur(20px);

    pointer-events: none;
}


.hero-glow-one {
    width: 650px;
    height: 650px;

    right: -250px;
    top: 40px;

    background:
        rgba(111, 163, 125, 0.13);
}


.hero-glow-two {
    width: 400px;
    height: 400px;

    left: -200px;
    bottom: -100px;

    background:
        rgba(199, 167, 93, 0.09);
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border:
        1px solid var(--border);

    border-radius: 100px;

    color: var(--green-700);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.04em;

    margin-bottom: 26px;

    background:
        rgba(255,255,255,0.48);
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green-500);

    box-shadow:
        0 0 0 4px rgba(58,138,96,.12);
}


.hero h1 {
    max-width: 700px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(58px, 6.3vw, 88px);

    font-weight: 500;

    line-height: 0.99;

    letter-spacing: -0.055em;

    color: var(--green-950);
}


.accent-text {
    color: var(--green-600);
}


.hero-tagline {
    margin-top: 28px;

    color: var(--green-700);

    font-family:
        Georgia,
        serif;

    font-size: 25px;
    font-style: italic;
}


.hero-description {
    max-width: 600px;

    margin-top: 15px;

    font-size: 18px;
    line-height: 1.75;

    color: var(--text-light);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}


.app-store-button {
    min-height: 60px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 22px;

    border-radius: 14px;

    background: var(--green-950);
    color: white;

    box-shadow:
        0 14px 35px rgba(7,21,15,.20);

    transition:
        transform .25s,
        box-shadow .25s;
}


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

    box-shadow:
        0 20px 45px rgba(7,21,15,.25);
}


.apple-symbol {
    font-size: 25px;
}


.store-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.08;
}


.store-copy small {
    font-size: 10px;
}


.store-copy strong {
    margin-top: 3px;
    font-size: 19px;
}


.secondary-button {
    display: inline-flex;
    align-items: center;

    min-height: 60px;

    padding: 0 23px;

    border: 1px solid var(--border);

    border-radius: 14px;

    font-weight: 650;

    background:
        rgba(255,255,255,.5);
}


.hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 27px;

    color: #657169;

    font-size: 12px;
}


/* HERO PHONE */

.hero-product {
    position: relative;

    min-height: 580px;

    display: grid;
    place-items: center;
}


.decorative-circle {
    position: absolute;

    width: 490px;
    height: 490px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #e0eadf 0%,
            #edf2e9 45%,
            transparent 70%
        );
}


.phone {
    position: relative;

    width: 275px;
    height: 560px;

    padding: 10px;

    border-radius: 45px;

    background: #111714;

    box-shadow:
        0 35px 80px rgba(7,21,15,.25);

    z-index: 2;
}


.phone-notch {
    position: absolute;

    width: 92px;
    height: 25px;

    left: 50%;
    top: 17px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: #101411;

    z-index: 10;
}


.phone-screen {
    height: 100%;

    border-radius: 36px;

    padding: 65px 26px 30px;

    background:
        linear-gradient(
            160deg,
            #f8f5e9,
            #e4eddf
        );

    overflow: hidden;
}


.screen-label {
    color: var(--green-700);

    font-size: 13px;
    font-weight: 700;
}


.screen-verse {
    margin-top: 110px;
}


.screen-verse small {
    color: var(--green-600);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}


.screen-verse h3 {
    margin-top: 15px;

    font-family:
        Georgia,
        serif;

    font-size: 30px;

    line-height: 1.22;

    color: var(--green-900);
}


.screen-verse p {
    margin-top: 16px;

    color: var(--text-light);

    font-size: 13px;
}


.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 195px;

    padding: 14px;

    background:
        rgba(255,255,255,.88);

    backdrop-filter: blur(16px);

    border:
        1px solid rgba(255,255,255,.8);

    border-radius: 16px;

    box-shadow:
        var(--shadow);
}


.floating-card > span {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: var(--sage-100);

    color: var(--green-700);
}


.floating-card div {
    display: flex;
    flex-direction: column;
}


.floating-card strong {
    font-size: 12px;
}


.floating-card small {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 9px;
}


.floating-card-one {
    left: -15px;
    top: 155px;
}


.floating-card-two {
    right: -20px;
    bottom: 125px;
}


/* TRUST */

.trust-strip {
    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    background:
        rgba(255,255,255,.35);
}


.trust-content {
    min-height: 110px;

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

    gap: 30px;
}


.trust-content > p {
    max-width: 330px;

    color: var(--text-light);

    font-size: 13px;
}


.trust-items {
    display: flex;
    gap: 24px;

    color: var(--green-700);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .17em;
}


.trust-dot {
    color: var(--gold);
}


/* SECTIONS */

.section {
    padding: 130px 0;
}


.section-heading {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}


.section-kicker {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--green-600);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .18em;
}


.section-heading h2,
.content-column h2,
.reading-section h2,
.download-section h2 {

    font-family:
        Georgia,
        serif;

    font-weight: 500;

    letter-spacing: -.045em;

    line-height: 1.08;
}


.section-heading h2 {
    font-size:
        clamp(42px, 5vw, 65px);
}


.section-heading > p {
    max-width: 590px;

    margin: 20px auto 0;

    color: var(--text-light);

    font-size: 17px;
}


/* FEATURES */

.features-section {
    background: white;
}


.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.feature-card {
    min-height: 270px;

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--cream);

    transition:
        transform .3s,
        box-shadow .3s,
        border .3s;
}


.feature-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);

    border-color:
        rgba(40,108,73,.25);
}


.featured-card {
    background:
        linear-gradient(
            145deg,
            #f0f5ef,
            #fafaf5
        );
}


.feature-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 32px;

    border-radius: 14px;

    background: var(--sage-100);

    font-size: 21px;
}


.feature-card h3 {
    font-size: 19px;
}


.feature-card p {
    margin-top: 11px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}


/* UNDERSTAND */

.understand-section {
    background: var(--cream);
}


.split-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 110px;

    align-items: center;
}


.visual-column {
    position: relative;

    min-height: 620px;

    display: grid;
    place-items: center;
}


.visual-background {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #dbe8da,
            #eef2e9 55%,
            transparent 70%
        );
}


.secondary-phone {
    transform: rotate(-3deg);
}


.explanation-screen {
    padding-top: 75px;
}


.explanation-screen > small {
    color: var(--green-600);

    font-size: 9px;
    font-weight: 800;
}


.explanation-screen h3 {
    margin-top: 18px;

    color: var(--green-900);

    font-family:
        Georgia,
        serif;

    font-size: 24px;
}


.explanation-screen blockquote {
    margin-top: 25px;

    font-family:
        Georgia,
        serif;

    color: #344b3b;

    font-size: 18px;

    line-height: 1.6;
}


.explanation-box {
    margin-top: 45px;

    padding: 18px;

    display: flex;

    gap: 12px;

    background:
        rgba(255,255,255,.7);

    border-radius: 17px;
}


.explanation-box strong {
    font-size: 11px;
}


.explanation-box p {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 9px;

    line-height: 1.5;
}


.content-column h2 {
    font-size:
        clamp(44px, 5vw, 66px);
}


.large-copy {
    max-width: 520px;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 17px;

    line-height: 1.8;
}


.check-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 30px;
}


.check-list div {
    display: flex;
    gap: 10px;

    color: #3f5145;

    font-size: 13px;
}


.check-list span {
    color: var(--green-500);
}


.text-link {
    display: inline-flex;

    gap: 12px;

    margin-top: 34px;

    color: var(--green-700);

    font-weight: 700;

    font-size: 14px;
}


/* DAILY */

.daily-section {
    background: white;
}


.daily-grid {
    display: flex;
    align-items: center;
}


.daily-card {
    flex: 1;

    text-align: center;
}


.daily-number {
    color: #a7b3aa;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}


.daily-icon {
    width: 65px;
    height: 65px;

    margin: 15px auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--sage-50);

    font-size: 23px;
}


.daily-card h3 {
    font-size: 17px;
}


.daily-card p {
    max-width: 170px;

    margin: 9px auto 0;

    color: var(--text-light);

    font-size: 12px;
}


.daily-line {
    width: 55px;
    height: 1px;

    background: var(--border);
}


/* READING */

.reading-section {
    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            #27593e,
            transparent 35%
        ),
        var(--green-950);
}


.reading-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}


.light-kicker {
    color: var(--gold-light);
}


.reading-section h2 {
    font-size:
        clamp(48px, 5vw, 68px);
}


.reading-section p {
    max-width: 460px;

    margin-top: 23px;

    color: #b8c8bd;

    font-size: 16px;
}


.reading-features {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}


.reading-features div {
    padding: 24px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 17px;

    background:
        rgba(255,255,255,.045);
}


.reading-features strong {
    font-size: 14px;
}


.reading-features span {
    margin-top: 7px;

    color: #9daf9f;

    font-size: 11px;
}


/* DOWNLOAD */

.download-section {
    position: relative;

    overflow: hidden;

    padding: 145px 0;

    text-align: center;

    background: var(--cream);
}


.download-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(188,211,188,.45),
            transparent 67%
        );
}


.download-content {
    position: relative;
}


.small-brand-mark {
    width: 56px;
    height: 56px;

    margin:
        0 auto 24px;

    border-radius: 17px;

    font-family:
        Georgia,
        serif;

    font-size: 29px;
}


.download-section h2 {
    font-size:
        clamp(50px, 6vw, 75px);
}


.download-section p {
    margin: 20px auto 32px;

    color: var(--text-light);

    font-size: 17px;
}


/* FOOTER */

.footer {
    padding: 75px 0 30px;

    background: #07120d;

    color: white;
}


.footer-top {
    display: flex;
    justify-content: space-between;

    gap: 80px;

    padding-bottom: 60px;
}


.footer-brand > p {
    margin-top: 16px;

    color: #819187;

    font-family:
        Georgia,
        serif;

    font-style: italic;

    font-size: 14px;
}


.footer-navigation {
    display: flex;
    gap: 85px;
}


.footer-navigation > div {
    min-width: 100px;

    display: flex;
    flex-direction: column;

    gap: 11px;
}


.footer-navigation strong {
    margin-bottom: 8px;

    color: #dce5df;

    font-size: 11px;

    letter-spacing: .08em;
}


.footer-navigation a {
    color: #819187;

    font-size: 12px;

    transition: .2s;
}


.footer-navigation a:hover {
    color: white;
}


.footer-bottom {
    padding-top: 25px;

    display: flex;
    justify-content: space-between;

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

    color: #66756b;

    font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .hero-grid,
    .split-grid,
    .reading-grid {
        grid-template-columns: 1fr;
    }


    .hero {
        padding-top: 140px;
    }


    .hero-copy {
        text-align: center;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions,
    .hero-points {
        justify-content: center;
    }


    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .split-grid {
        gap: 40px;
    }


    .content-column {
        text-align: center;
    }


    .large-copy {
        margin-left: auto;
        margin-right: auto;
    }


    .check-list {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }


    .daily-grid {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }


    .daily-line {
        display: none;
    }


    .reading-grid {
        gap: 50px;
    }

}


@media (max-width: 720px) {

    .container {
        width:
            min(100% - 30px, 1160px);
    }


    .navigation {
        position: absolute;

        display: none;
        flex-direction: column;

        top: 76px;
        left: 15px;
        right: 15px;

        padding: 25px;

        background: white;

        border-radius: 18px;

        box-shadow: var(--shadow);
    }


    .navigation.active {
        display: flex;
    }


    .mobile-menu-button {
        display: block;
    }


    .hero {
        min-height: auto;

        padding:
            130px 0 70px;
    }


    .hero h1 {
        font-size: 52px;
    }


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


    .hero-product {
        min-height: 570px;
    }


    .phone {
        width: 245px;
        height: 500px;
    }


    .floating-card {
        min-width: 170px;
    }


    .floating-card-one {
        left: 0;
    }


    .floating-card-two {
        right: 0;
    }


    .trust-content {
        padding: 30px 0;

        flex-direction: column;

        text-align: center;
    }


    .trust-items {
        flex-wrap: wrap;
        justify-content: center;
    }


    .section {
        padding: 90px 0;
    }


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


    .feature-card {
        min-height: auto;
    }


    .visual-column {
        min-height: 540px;
    }


    .visual-background {
        width: 380px;
        height: 380px;
    }


    .check-list {
        grid-template-columns: 1fr;

        text-align: left;
    }


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


    .reading-features {
        grid-template-columns: 1fr;
    }


    .footer-top {
        flex-direction: column;
    }


    .footer-navigation {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}


@media (max-width: 430px) {

    .hero h1 {
        font-size: 45px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .app-store-button,
    .secondary-button {
        justify-content: center;
    }


    .floating-card-one {
        left: -10px;
    }


    .floating-card-two {
        right: -10px;
    }

}
