@import url(
    "https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap"
);


/* ---------------------------------------------------------
   Design tokens
--------------------------------------------------------- */

:root {
    --blue: #0c5d9e;
    --blue-light: #2a78b5;
    --blue-deep: #073f6e;
    --blue-dark: #052f53;

    --gold: #ee9a2b;
    --gold-light: #f7bd61;
    --gold-deep: #a5681b;

    --ink: #17212b;
    --muted: #66717d;
    --muted-light: #87919b;

    --paper: #ffffff;
    --wash: #f4f8fc;
    --wash-warm: #fffaf3;

    --line: rgba(12, 93, 158, 0.13);
    --line-strong: rgba(12, 93, 158, 0.22);

    --shadow-soft:
        0 18px 50px rgba(17, 45, 70, 0.08);

    --shadow-medium:
        0 25px 65px rgba(17, 45, 70, 0.13);

    --shadow-blue:
        0 16px 36px rgba(12, 93, 158, 0.24);

    --page-width: 1180px;
}


/* ---------------------------------------------------------
   Reset and base styles
--------------------------------------------------------- */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    min-height: 100vh;

    color: var(--ink);

    background:
        radial-gradient(
            circle at 92% 7%,
            rgba(238, 154, 43, 0.13),
            transparent 28rem
        ),
        radial-gradient(
            circle at 7% 75%,
            rgba(12, 93, 158, 0.09),
            transparent 33rem
        ),
        var(--wash);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


button,
a {
    font: inherit;
}


a {
    color: inherit;
}


.page-shell {
    width:
        min(
            var(--page-width),
            calc(100% - 40px)
        );

    margin: 0 auto;
}


/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */

.site-header {
    min-height: 96px;

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

    gap: 34px;
}


.brand {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    color: var(--blue-deep);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 0.95rem;
    font-weight: 700;

    letter-spacing: 0.035em;

    text-decoration: none;
}


.brand img {
    width: 55px;
    height: 43px;

    object-fit: contain;
}


.main-navigation {
    display: flex;
    align-items: center;

    gap: clamp(20px, 2.2vw, 34px);
}


.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 44px;

    color: var(--blue-deep);

    font-size: 0.88rem;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--gold);

    transform: translateX(-50%);

    transition:
        width 0.2s ease;
}


.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}


.future-link {
    color: var(--muted);

    cursor: default;

    opacity: 0.75;
}


.future-link::after {
    display: none;
}


.church-site-link {
    min-height: 46px;

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

    padding: 0 20px;

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

    border-radius: 999px;

    color: var(--blue-deep);

    background:
        rgba(255, 255, 255, 0.76);

    font-size: 0.88rem;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.church-site-link:hover {
    transform: translateY(-2px);

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(17, 45, 70, 0.09);
}


/* ---------------------------------------------------------
   Hero section
--------------------------------------------------------- */

.hero {
    min-height: 670px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(370px, 0.95fr);

    align-items: center;

    gap: clamp(54px, 8vw, 112px);

    padding: 72px 0 92px;
}


.hero-copy {
    position: relative;
    z-index: 2;
}


.eyebrow,
.section-eyebrow {
    margin: 0 0 18px;

    color: var(--gold-deep);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.hero h1 {
    max-width: 720px;

    margin: 0;

    color: var(--blue-deep);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(3.1rem, 5.8vw, 5.45rem);

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -0.035em;

    text-wrap: balance;
}


.platform-name {
    margin: 26px 0 0;

    color: var(--gold-deep);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.hero-text {
    max-width: 680px;

    margin: 18px 0 0;

    color: var(--muted);

    font-size:
        clamp(1rem, 1.45vw, 1.12rem);

    line-height: 1.82;
}


/* ---------------------------------------------------------
   Hero actions
--------------------------------------------------------- */

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 14px;

    margin-top: 34px;
}


.primary-action,
.secondary-action {
    min-height: 52px;

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

    gap: 12px;

    padding: 0 23px;

    border-radius: 9px;

    font-weight: 700;
}


/* Primary action */

.primary-action {
    border: 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            var(--blue-deep)
        );

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

    cursor: pointer;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.primary-action:hover {
    transform:
        translateY(-2px)
        scale(1.03);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    box-shadow:
        0 0 0 5px rgba(12, 93, 158, 0.12),
        0 18px 40px rgba(12, 93, 158, 0.30);
}


.primary-action:active {
    transform: scale(0.98);
}


.primary-action span {
    font-size: 1.2rem;

    transition:
        transform 0.25s ease;
}


.primary-action:hover span {
    transform: translateX(6px);
}


/* Secondary action */

.secondary-action {
    border:
        1px solid var(--line-strong);

    color: var(--blue-deep);

    background:
        rgba(255, 255, 255, 0.70);

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.secondary-action:hover {
    transform: translateY(-2px);

    background: #ffffff;

    box-shadow:
        0 0 0 5px rgba(12, 93, 158, 0.08),
        0 14px 32px rgba(17, 45, 70, 0.10);
}


/* ---------------------------------------------------------
   Development status
--------------------------------------------------------- */

.development-status {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 20px;
}


.development-status p {
    margin: 0;

    color: var(--muted);

    font-size: 0.82rem;
}


.status-indicator {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #2ea56d;

    box-shadow:
        0 0 0 5px rgba(46, 165, 109, 0.12);
}


/* ---------------------------------------------------------
   Logo presentation
--------------------------------------------------------- */

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-stage {
    position: relative;

    width:
        min(100%, 470px);

    aspect-ratio: 1;

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

    isolation: isolate;
}


.logo-glow {
    position: absolute;
    z-index: -3;

    width: 94%;
    height: 94%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.78) 43%,
            rgba(238, 154, 43, 0.10) 66%,
            transparent 72%
        );

    filter: blur(2px);
}


.outer-ring {
    position: absolute;
    z-index: -2;

    width: 82%;
    height: 82%;

    border:
        1px solid rgba(238, 154, 43, 0.28);

    border-radius: 50%;
}


.outer-ring::before {
    content: "";

    position: absolute;

    inset: 18px;

    border:
        1px solid rgba(12, 93, 158, 0.10);

    border-radius: 50%;
}


.hero-logo {
    width: 80%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 22px 28px rgba(17, 45, 70, 0.12)
        );

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}


.logo-stage:hover .hero-logo {
    transform: scale(1.03);

    filter:
        drop-shadow(
            0 28px 40px rgba(17, 45, 70, 0.18)
        );
}


.logo-stage-caption {
    margin: 22px 0 0;

    color: var(--blue-deep);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.13em;

    text-align: center;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Welcome section
--------------------------------------------------------- */

.welcome-section {
    padding: 94px 0 72px;

    border-top:
        1px solid var(--line);
}


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

    margin: 0 auto 48px;

    text-align: center;
}


.section-heading h2,
.closing-copy h2 {
    margin: 0;

    color: var(--blue-deep);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(2rem, 4vw, 3.2rem);

    line-height: 1.18;

    letter-spacing: -0.02em;

    text-wrap: balance;
}


.section-heading > p:last-child,
.closing-copy > p:last-child {
    margin: 20px 0 0;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   Module grid
--------------------------------------------------------- */

.module-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.module-card {
    position: relative;

    min-height: 350px;

    display: flex;
    flex-direction: column;

    padding: 31px 28px 29px;

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

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.78);

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

    overflow: hidden;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}


.module-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-deep)
        );

    transform: scaleX(0.35);
    transform-origin: left;

    transition:
        transform 0.22s ease;
}


.module-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(238, 154, 43, 0.32);

    background: #ffffff;

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


.module-card:hover::before {
    transform: scaleX(1);
}


.card-number {
    position: absolute;

    top: 24px;
    right: 25px;

    color:
        rgba(12, 93, 158, 0.24);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.module-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--blue);

    background:
        rgba(12, 93, 158, 0.08);
}


.module-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.module-card h3 {
    margin: 25px 0 13px;

    color: var(--blue-deep);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 1.15rem;

    line-height: 1.35;
}


.module-card p {
    margin: 0;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.7;
}


.coming-soon {
    align-self: flex-start;

    margin-top: auto;
    padding-top: 22px;

    color: var(--gold-deep);

    font-size: 0.69rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Closing invitation
--------------------------------------------------------- */

.closing-section {
    margin: 40px 0 84px;

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

    gap: 48px;

    padding:
        clamp(36px, 5vw, 58px);

    border:
        1px solid rgba(238, 154, 43, 0.18);

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.94),
            rgba(255, 250, 243, 0.9)
        );

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


.closing-copy {
    max-width: 730px;
}


.closing-link {
    flex-shrink: 0;

    min-height: 54px;

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

    gap: 12px;

    padding: 0 23px;

    border-radius: 9px;

    color: #ffffff;

    background: var(--blue-deep);

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 14px 30px rgba(7, 63, 110, 0.2);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.closing-link:hover {
    transform: translateY(-2px);

    background: var(--blue);

    box-shadow:
        0 18px 38px rgba(7, 63, 110, 0.25);
}


.closing-link span {
    transition:
        transform 0.2s ease;
}


.closing-link:hover span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.site-footer {
    min-height: 130px;

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

    gap: 30px;

    border-top:
        1px solid var(--line);
}


.footer-brand {
    display: flex;
    align-items: center;

    gap: 13px;
}


.footer-brand img {
    width: 52px;
    height: 41px;

    object-fit: contain;
}


.footer-brand p,
.footer-meta p {
    margin: 0;

    color: var(--blue-deep);

    font-size: 0.82rem;
    font-weight: 700;
}


.footer-brand span,
.footer-meta span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 0.74rem;
}


.footer-meta {
    text-align: right;
}


/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .main-navigation {
        gap: 18px;
    }


    .hero {
        grid-template-columns: 1fr;

        gap: 36px;

        padding-top: 52px;
    }


    .hero-copy {
        max-width: 790px;

        margin: 0 auto;

        text-align: center;
    }


    .hero-text {
        margin-inline: auto;
    }


    .actions,
    .development-status {
        justify-content: center;
    }


    .logo-stage {
        width:
            min(76vw, 470px);
    }


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


    .closing-section {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ---------------------------------------------------------
   Smaller tablet and mobile navigation
--------------------------------------------------------- */

@media (max-width: 760px) {

    .page-shell {
        width:
            min(
                var(--page-width),
                calc(100% - 24px)
            );
    }


    .site-header {
        min-height: 84px;
    }


    .brand span {
        display: none;
    }


    .brand img {
        width: 58px;
    }


    .main-navigation {
        margin-left: auto;

        gap: 12px;
    }


    .nav-link {
        display: none;
    }


    .church-site-link {
        min-height: 42px;

        padding: 0 15px;

        font-size: 0.78rem;
    }


    .hero {
        min-height: auto;

        padding: 44px 0 68px;
    }


    .hero h1 {
        font-size:
            clamp(2.55rem, 12vw, 4rem);
    }


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


    .module-card {
        min-height: 300px;
    }


    .site-footer {
        flex-direction: column;

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

        padding: 30px 0;
    }


    .footer-meta {
        text-align: left;
    }

}


/* ---------------------------------------------------------
   Phones
--------------------------------------------------------- */

@media (max-width: 520px) {

    .hero {
        gap: 28px;
    }


    .platform-name {
        font-size: 0.84rem;
    }


    .actions {
        flex-direction: column;
    }


    .primary-action,
    .secondary-action {
        width: 100%;
    }


    .development-status {
        align-items: flex-start;

        text-align: left;
    }


    .logo-stage {
        width:
            min(90vw, 390px);
    }


    .hero-logo {
        width: 84%;
    }


    .welcome-section {
        padding-top: 70px;
    }


    .closing-section {
        margin-bottom: 58px;

        padding: 32px 25px;
    }


    .closing-link {
        width: 100%;
    }

}


/* ---------------------------------------------------------
   Keyboard focus accessibility
--------------------------------------------------------- */

.primary-action:focus-visible,
.secondary-action:focus-visible,
.church-site-link:focus-visible,
.closing-link:focus-visible,
.nav-link:focus-visible,
.brand:focus-visible {
    outline:
        3px solid rgba(238, 154, 43, 0.72);

    outline-offset: 4px;
}


/* ---------------------------------------------------------
   Reduced motion accessibility
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

}