:root {
    --red: #d70000;
    --red-dark: #9e0000;
    --dark: #08080b;
    --graphite: #15151d;
    --soft-dark: #20202a;
    --white: #ffffff;
    --muted: #c9c9d3;
    --gold: #e4b657;
    --gold-soft: rgba(228, 182, 87, .18);
    --border: rgba(255,255,255,.12);
    --shadow: 0 24px 70px rgba(0,0,0,.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 12%, rgba(215,0,0,.24), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(228,182,87,.14), transparent 28%),
        linear-gradient(135deg, #07070a 0%, #111119 48%, #08080b 100%);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.035) 46%, transparent 78%);
    opacity: .55;
    z-index: -2;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.page-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: .32;
    pointer-events: none;
    z-index: -1;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

.page-glow-one {
    left: -80px;
    top: 18%;
    background: var(--red);
}

.page-glow-two {
    right: -90px;
    bottom: 14%;
    background: var(--gold);
    animation-delay: 1.6s;
}

.site-header {
    width: min(1180px, calc(100% - 36px));
    margin: 20px auto 0;
    min-height: 74px;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(12,12,17,.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 45px rgba(0,0,0,.28);
    position: sticky;
    top: 14px;
    z-index: 20;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.4px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 12px 28px rgba(215,0,0,.28);
    font-size: 24px;
}

.brand-text {
    font-size: clamp(19px, 3vw, 28px);
    color: var(--white);
    line-height: 1;
}

.brand-text b {
    color: var(--red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions a {
    padding: 12px 15px;
    border-radius: 999px;
    color: #f4f4f7;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid transparent;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.header-actions a:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
}

.header-actions .back-main {
    background: var(--white);
    color: #111116;
}

.hero-section {
    width: min(1180px, calc(100% - 36px));
    min-height: calc(100vh - 116px);
    margin: 0 auto;
    padding: 74px 0 50px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
    align-items: center;
    gap: 42px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffe1e1;
    background: rgba(215,0,0,.18);
    border: 1px solid rgba(215,0,0,.28);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.hero-content h1 {
    margin: 0;
    max-width: 740px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -2.5px;
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--red);
    text-shadow: 0 12px 36px rgba(215,0,0,.26);
}

.hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.72;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 15px 34px rgba(215,0,0,.27);
}

.btn-soft {
    color: var(--white);
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.07);
}

.blessing-line {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 32px;
    max-width: 620px;
    color: #f3deb0;
}

.blessing-line span {
    width: 44px;
    height: 2px;
    margin-top: 11px;
    background: var(--gold);
}

.blessing-line p {
    margin: 0;
    line-height: 1.6;
}

.hero-card {
    position: relative;
    border-radius: 32px;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 4%, rgba(215,0,0,.32), transparent 42%),
        radial-gradient(circle at 90% 20%, rgba(228,182,87,.19), transparent 36%);
    opacity: .88;
    pointer-events: none;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.card-top span,
.card-top small {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.13);
}

.card-top span {
    background: var(--white);
    color: #101015;
}

.card-top small {
    color: #ffe0e0;
    background: rgba(215,0,0,.17);
}

.hero-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -1px;
}

.card-subtitle {
    margin: 8px 0 24px;
    color: var(--muted);
    font-weight: 600;
}

.data-list {
    display: grid;
    gap: 10px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(0,0,0,.26);
    border: 1px solid rgba(255,255,255,.09);
}

.data-row span {
    color: #b9b9c4;
    font-weight: 700;
}

.data-row strong {
    color: var(--white);
    text-align: right;
}

.copy-button {
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    border: 0;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 14px 32px rgba(215,0,0,.25);
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease;
}

.copy-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.copy-icon {
    margin-right: 8px;
}

.copy-message {
    margin: 12px 0 0;
    min-height: 22px;
    color: #dfffe8;
    font-weight: 800;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}

.copy-message.show {
    opacity: 1;
    transform: translateY(0);
}

.purpose-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
    padding: 20px 0 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.purpose-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 44px rgba(0,0,0,.18);
}

.purpose-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, rgba(215,0,0,.92), rgba(158,0,0,.88));
    box-shadow: 0 12px 28px rgba(215,0,0,.22);
}

.purpose-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.purpose-card h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 20px;
}

.purpose-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.final-call {
    width: min(980px, calc(100% - 36px));
    margin: 24px auto 58px;
    padding: 38px;
    border-radius: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(215,0,0,.2), rgba(255,255,255,.075));
    border: 1px solid rgba(255,255,255,.13);
}

.final-call span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-size: 13px;
}

.final-call h2 {
    margin: 10px 0 0;
    font-size: clamp(28px, 5vw, 46px);
    letter-spacing: -1.4px;
}

.final-call p {
    margin: 13px auto 22px;
    max-width: 680px;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 22px 0 34px;
    color: #a9a9b6;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
}

.floating-message {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(330px, calc(100vw - 36px));
    padding: 20px;
    border-radius: 24px;
    background: rgba(12,12,17,.92);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 22px 60px rgba(0,0,0,.36);
    backdrop-filter: blur(16px);
    z-index: 30;
    transform: translateY(18px);
    opacity: 0;
    animation: floatingIn .7s ease .9s forwards;
}

.floating-message.hide {
    display: none;
}

.floating-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,.1);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.floating-pill {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: #ffdb86;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.floating-message strong {
    display: block;
    padding-right: 28px;
    font-size: 18px;
}

.floating-message p {
    margin: 8px 0 14px;
    color: var(--muted);
    line-height: 1.55;
}

.floating-message a {
    display: inline-flex;
    color: var(--white);
    font-weight: 900;
    border-bottom: 2px solid var(--red);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-one {
    transition-delay: .12s;
}

.delay-two {
    transition-delay: .22s;
}

@keyframes floatGlow {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

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

@media (max-width: 991px) {
    .site-header {
        width: min(100% - 24px, 760px);
        margin-top: 12px;
        border-radius: 20px;
    }

    .header-actions a:not(.back-main) {
        display: none;
    }

    .header-actions .back-main {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero-section {
        width: min(100% - 24px, 760px);
        min-height: auto;
        padding-top: 50px;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-content h1 {
        letter-spacing: -1.5px;
    }

    .purpose-section {
        width: min(100% - 24px, 760px);
        grid-template-columns: 1fr;
    }

    .final-call {
        width: min(100% - 24px, 760px);
    }

    .site-footer {
        width: min(100% - 24px, 760px);
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .site-header {
        padding: 10px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .brand-text {
        font-size: 20px;
    }

    .header-actions .back-main {
        font-size: 0;
        min-width: 42px;
        min-height: 42px;
        padding: 0;
        position: relative;
    }

    .header-actions .back-main::before {
        content: '↩';
        font-size: 20px;
        color: #111116;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-card,
    .final-call {
        padding: 24px;
        border-radius: 24px;
    }

    .card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .data-row {
        flex-direction: column;
        gap: 4px;
    }

    .data-row strong {
        text-align: left;
        word-break: break-word;
    }

    .floating-message {
        right: 12px;
        bottom: 12px;
        padding: 17px;
    }
}
