:root {
    --fwc-navy: #06152b;
    --fwc-navy-2: #0a1f3e;
    --fwc-navy-3: #0d2b52;
    --fwc-yellow: #ffd51f;
    --fwc-yellow-soft: #ffe878;
    --fwc-white: #ffffff;
    --fwc-muted: #a7b6cc;
    --fwc-line: rgba(255,255,255,.11);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--fwc-navy);
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--fwc-white);
    background: var(--fwc-navy);
    overflow-x: hidden;
}

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

.fwc-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 72% 18%, rgba(255,213,31,.08), transparent 28%),
        linear-gradient(135deg, #06152b 0%, #071a34 46%, #051225 100%);
}

.fwc-grid {
    position: absolute;
    inset: 0;
    z-index: -5;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.65) 68%, transparent 100%);
}

.fwc-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    z-index: -4;
    pointer-events: none;
}

.fwc-orb-one {
    width: 520px;
    height: 520px;
    right: -150px;
    top: 70px;
    border: 1px solid rgba(255,213,31,.14);
    box-shadow:
        0 0 0 55px rgba(255,213,31,.025),
        0 0 0 115px rgba(255,255,255,.015);
    animation: fwcFloat 10s ease-in-out infinite;
}

.fwc-orb-two {
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: 70px;
    background: rgba(255,213,31,.04);
    box-shadow: 0 0 120px rgba(255,213,31,.06);
    animation: fwcFloatReverse 12s ease-in-out infinite;
}

.fwc-header,
.fwc-main,
.fwc-footer {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto;
}

.fwc-header {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--fwc-line);
}

.fwc-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.fwc-logo-shell,
.fwc-logo-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 10px 35px rgba(0,0,0,.2);
    overflow: hidden;
}

.fwc-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.fwc-logo-mark {
    background: var(--fwc-yellow);
    color: var(--fwc-navy);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.04em;
}

.fwc-brand-copy {
    display: grid;
    gap: 2px;
}

.fwc-brand-copy strong {
    font-size: .84rem;
    letter-spacing: .12em;
}

.fwc-brand-copy small {
    font-size: .63rem;
    color: var(--fwc-yellow);
    font-weight: 800;
    letter-spacing: .18em;
}

.fwc-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .76rem;
    color: var(--fwc-muted);
    border: 1px solid var(--fwc-line);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255,255,255,.025);
    backdrop-filter: blur(12px);
}

.fwc-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--fwc-yellow);
    box-shadow: 0 0 0 5px rgba(255,213,31,.1);
    animation: fwcPulse 2.2s ease-in-out infinite;
}

.fwc-main {
    padding: 92px 0 74px;
}

.fwc-hero {
    max-width: 860px;
}

.fwc-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .22em;
    color: var(--fwc-yellow);
}

.fwc-kicker span {
    width: 42px;
    height: 2px;
    background: var(--fwc-yellow);
    box-shadow: 0 0 18px rgba(255,213,31,.5);
}

.fwc-hero h1 {
    margin: 24px 0 0;
    max-width: 880px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.2rem, 7.2vw, 7.1rem);
    line-height: .93;
    letter-spacing: -.065em;
    font-weight: 800;
}

.fwc-hero h1 span {
    display: block;
    color: var(--fwc-yellow);
    text-shadow: 0 0 40px rgba(255,213,31,.08);
}

.fwc-lead {
    max-width: 760px;
    margin: 30px 0 0;
    color: #bdc8d8;
    font-size: clamp(1rem, 1.7vw, 1.24rem);
    line-height: 1.75;
}

.fwc-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
}

.fwc-primary-button {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px 0 28px;
    border-radius: 16px;
    color: var(--fwc-navy);
    background: var(--fwc-yellow);
    font-weight: 800;
    box-shadow:
        0 18px 50px rgba(255,213,31,.16),
        inset 0 1px 0 rgba(255,255,255,.55);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.fwc-primary-button svg {
    width: 21px;
    height: 21px;
    transition: transform .22s ease;
}

.fwc-primary-button:hover {
    transform: translateY(-2px);
    background: var(--fwc-yellow-soft);
    box-shadow:
        0 22px 60px rgba(255,213,31,.24),
        inset 0 1px 0 rgba(255,255,255,.6);
}

.fwc-primary-button:hover svg {
    transform: translateX(4px);
}

.fwc-primary-button:focus-visible {
    outline: 3px solid rgba(255,255,255,.9);
    outline-offset: 4px;
}

.fwc-secure-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a6be;
    font-size: .78rem;
}

.fwc-secure-note svg {
    width: 16px;
    height: 16px;
}

.fwc-module-rail {
    margin-top: 92px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--fwc-line);
    border-bottom: 1px solid var(--fwc-line);
}

.fwc-module-card {
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    position: relative;
}

.fwc-module-card + .fwc-module-card {
    border-left: 1px solid var(--fwc-line);
}

.fwc-module-index {
    font-size: .7rem;
    color: var(--fwc-yellow);
    font-weight: 800;
}

.fwc-module-card div {
    display: grid;
    gap: 6px;
}

.fwc-module-card strong {
    font-size: .9rem;
}

.fwc-module-card small {
    font-size: .72rem;
    line-height: 1.5;
    color: #8fa2bb;
}

.fwc-footer {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid var(--fwc-line);
    color: #768aa5;
    font-size: .7rem;
}

.fwc-footer > div:first-child {
    display: grid;
    gap: 4px;
}

.fwc-footer strong {
    color: #a8b6c9;
    letter-spacing: .08em;
    font-size: .68rem;
}

.fwc-footer span {
    color: var(--fwc-yellow);
    font-weight: 700;
    letter-spacing: .08em;
}

.fwc-footer-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.is-ready .reveal {
    animation: fwcReveal .8s cubic-bezier(.2,.8,.2,1) forwards;
}

.is-ready .reveal-delay-1 { animation-delay: .08s; }
.is-ready .reveal-delay-2 { animation-delay: .16s; }
.is-ready .reveal-delay-3 { animation-delay: .24s; }
.is-ready .reveal-delay-4 { animation-delay: .32s; }
.is-ready .reveal-delay-5 { animation-delay: .4s; }

.fwc-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,213,31,.52);
    box-shadow: 0 0 10px rgba(255,213,31,.34);
    animation: fwcParticle linear infinite;
    pointer-events: none;
}

@keyframes fwcReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwcPulse {
    0%, 100% { opacity: .65; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes fwcFloat {
    0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
    50% { transform: translate3d(-18px,22px,0) rotate(4deg); }
}

@keyframes fwcFloatReverse {
    0%, 100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(28px,-18px,0); }
}

@keyframes fwcParticle {
    from {
        transform: translateY(0) scale(.7);
        opacity: 0;
    }
    14% {
        opacity: .7;
    }
    to {
        transform: translateY(-140px) scale(1.1);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .fwc-main {
        padding-top: 76px;
    }

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

    .fwc-module-card:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--fwc-line);
    }

    .fwc-module-card:nth-child(4) {
        border-top: 1px solid var(--fwc-line);
    }
}

@media (max-width: 620px) {
    .fwc-header,
    .fwc-main,
    .fwc-footer {
        width: min(100% - 28px, 1180px);
    }

    .fwc-header {
        min-height: 94px;
    }

    .fwc-status {
        display: none;
    }

    .fwc-logo-shell,
    .fwc-logo-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .fwc-brand-copy strong {
        font-size: .72rem;
    }

    .fwc-brand-copy small {
        font-size: .55rem;
    }

    .fwc-main {
        padding: 64px 0 52px;
    }

    .fwc-hero h1 {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .fwc-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .fwc-primary-button {
        width: 100%;
    }

    .fwc-secure-note {
        justify-content: center;
    }

    .fwc-module-rail {
        margin-top: 62px;
        grid-template-columns: 1fr;
    }

    .fwc-module-card {
        min-height: 104px;
    }

    .fwc-module-card + .fwc-module-card {
        border-left: 0;
        border-top: 1px solid var(--fwc-line);
    }

    .fwc-footer {
        padding: 28px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .fwc-particles {
        display: none;
    }
}
