/* Color Palette & Variables */
:root {
    --text-primary: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.8);
    --brand-gold: #f3c645;
    --brand-gold-soft: #ffd86a;
    --brand-orange: #ff7a00;
    --brand-orange-deep: #cf4f00;
    --brand-cream: #fff1d6;
    --brand-shadow: rgba(255, 122, 0, 0.22);
    --btn-primary-bg: var(--brand-orange);
    --btn-primary-hover: #ff922f;
    --font-family: 'Montserrat', sans-serif;
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    color: var(--text-primary);
    overflow: hidden; /* Prevent scrolling */
    background: #000000;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.92;
    pointer-events: none;
    filter: none;
}

/* Main Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    text-align: center;
    padding: 20px;
    background: transparent;
}

.content-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(920px, 92vw);
    height: min(760px, 88vh);
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 38%,
        rgba(0, 0, 0, 0.24) 68%,
        rgba(0, 0, 0, 0) 100%
    );
    filter: blur(26px);
    pointer-events: none;
    z-index: -1;
}

/* Menu Icon */
.menu-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 20;
    font-size: 24px;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.3s;
}

.menu-icon:hover {
    color: var(--text-primary);
}

/* Side Icon */
.side-icon {
    position: absolute;
    bottom: 40px;
    right: 20px;
    z-index: 20;
    background: white;
    color: #e67e22; /* orangeish color */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}

/* Phase-Based Countdown */
.countdown-container {
    margin-bottom: 0;
    transform: translateY(0px);
}

.phase-countdown {
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: min(760px, 92vw);
    margin-top: 2px;
    margin-bottom: 18px;
}

.phase-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--brand-gold) 68%, white 12%);
}

.phase-timeline {
    position: relative;
    width: 100%;
    padding: 0;
    background: transparent;
}

.phase-rail {
    --phase-progress: 0;
    position: absolute;
    top: 6px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(243, 198, 69, 0.16),
        rgba(255, 122, 0, 0.28),
        rgba(243, 198, 69, 0.16)
    );
}

.phase-rail::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(var(--phase-progress) * 100%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-orange));
    box-shadow:
        0 0 14px rgba(243, 198, 69, 0.22),
        0 0 24px rgba(255, 122, 0, 0.18);
}

.phase-rail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(var(--phase-progress) * 100%);
    width: 11px;
    height: 11px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #fff7e6 0%, var(--brand-gold) 42%, var(--brand-orange) 100%);
    box-shadow:
        0 0 16px rgba(243, 198, 69, 0.32),
        0 0 28px rgba(255, 122, 0, 0.22);
}

.phase-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.phase-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-align: center;
}

.phase-node {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(243, 198, 69, 0.2);
    background: rgba(255, 122, 0, 0.08);
    box-shadow: none;
    transition:
        transform 0.45s ease,
        background-color 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        opacity 0.45s ease;
}

.phase-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    line-height: 1.35;
    color: rgba(243, 198, 69, 0.5);
    transition:
        color 0.45s ease,
        opacity 0.45s ease,
        transform 0.45s ease;
}

.phase-step.is-upcoming .phase-node {
    opacity: 0.72;
}

.phase-step.is-complete .phase-node {
    background: rgba(243, 198, 69, 0.92);
    border-color: rgba(255, 233, 179, 0.44);
    box-shadow: 0 0 14px rgba(243, 198, 69, 0.2);
}

.phase-step.is-complete .phase-label {
    color: rgba(255, 216, 106, 0.9);
}

.phase-step.is-active .phase-node {
    background: var(--brand-orange);
    border-color: rgba(255, 233, 179, 0.62);
    box-shadow:
        0 0 16px rgba(243, 198, 69, 0.22),
        0 0 30px rgba(255, 122, 0, 0.22);
    transform: scale(1.26);
    animation: phaseNodePulse 2.8s ease-in-out infinite;
}

.phase-step.is-active .phase-label {
    color: var(--brand-gold-soft);
    transform: translateY(1px);
}

@keyframes phaseNodePulse {
    0%, 100% {
        opacity: 0.78;
    }
    50% {
        opacity: 1;
    }
}

@media (min-width: 1025px) {
    .content-wrapper {
        justify-content: center;
        padding: 48px 24px 60px;
    }

    .content-wrapper::before {
        width: min(1240px, 88vw);
        height: min(900px, 92vh);
    }

    .logo {
        margin-top: 0;
        margin-bottom: 54px;
        transform: translateY(-14px);
    }

    .q-logo-img {
        height: 154px;
        margin-bottom: 22px;
    }

    .logo-text-img {
        width: clamp(360px, 34vw, 460px);
        max-width: 64vw;
        height: auto;
    }

    .title {
        font-size: clamp(60px, 4.9vw, 74px);
        margin-bottom: 42px;
        transform: none;
    }

    .title-text {
        letter-spacing: 11px;
    }

    .description {
        font-size: 19px;
        line-height: 1.62;
        max-width: 700px;
        margin-bottom: 54px;
    }

    .phase-countdown {
        gap: 10px;
        width: min(980px, 84vw);
        margin-top: 18px;
        margin-bottom: 52px;
    }

    .phase-eyebrow {
        font-size: 11px;
        letter-spacing: 4.4px;
    }

    .phase-label {
        font-size: 11px;
        letter-spacing: 2.2px;
    }

    .down-arrow {
        display: none;
    }

    .action-buttons {
        margin-top: 58px;
        gap: 72px;
        margin-bottom: 38px;
    }

    .btn {
        min-width: 214px;
        padding: 17px 42px;
        font-size: 14px;
        letter-spacing: 3px;
    }

    .social-icons {
        margin-top: 34px;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        padding: 24px 20px 18px;
    }

    .phase-countdown {
        gap: 10px;
        width: min(88vw, 640px);
        margin-bottom: 16px;
    }

    .logo {
        margin-top: 4px;
        margin-bottom: 24px;
        transform: translateY(-8px);
    }

    .q-logo-img {
        height: 118px;
        margin-bottom: 6px;
    }

    .logo-text-img {
        width: min(360px, 64vw);
        max-width: 64vw;
        height: auto;
    }

    .title {
        font-size: 42px;
        margin-bottom: 14px;
        transform: none;
    }

    .title-text {
        letter-spacing: 7px;
    }

    .description {
        font-size: 16px;
        line-height: 1.6;
        max-width: 520px;
        margin-bottom: 18px;
    }

    .down-arrow {
        margin-bottom: 16px;
    }

    .action-buttons {
        gap: 26px;
        margin-top: 40px;
        margin-bottom: 36px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 12px;
        letter-spacing: 2.6px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 22px 18px 18px;
    }

    .phase-countdown {
        gap: 10px;
        width: min(100%, 560px);
        margin-bottom: 14px;
    }

    .phase-eyebrow {
        font-size: 9px;
        letter-spacing: 2.8px;
    }

    .phase-rail {
        top: 6px;
        left: 8%;
        right: 8%;
    }

    .phase-steps {
        gap: 4px;
    }

    .phase-step {
        gap: 8px;
    }

    .phase-label {
        font-size: 8px;
        letter-spacing: 0.8px;
        line-height: 1.2;
    }

    .logo {
        margin-top: 2px;
        margin-bottom: 20px;
        transform: translateY(-6px);
    }

    .q-logo-img {
        height: 96px;
        margin-bottom: 4px;
    }

    .logo-text-img {
        width: min(300px, 70vw);
        max-width: 70vw;
        height: auto;
    }

    .title {
        font-size: 32px;
        margin-bottom: 12px;
        transform: none;
        row-gap: 0.16em;
    }

    .title-text {
        letter-spacing: 4px;
    }

    .title-ellipsis {
        gap: 0.1em;
        margin-left: 0;
    }

    .description {
        font-size: 15px;
        line-height: 1.55;
        max-width: 360px;
        margin-bottom: 18px;
    }

    .down-arrow {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .action-buttons {
        flex-direction: column;
        width: min(100%, 320px);
        gap: 10px;
        margin-bottom: 28px;
    }

    .btn {
        width: 100%;
        padding: 14px 22px;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 10px 10px 12px;
    }

    .phase-countdown {
        width: 100%;
        gap: 6px;
        margin-bottom: 8px;
    }

    .phase-eyebrow {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .phase-rail {
        left: 4%;
        right: 4%;
    }

    .phase-steps {
        gap: 2px;
    }

    .phase-step {
        gap: 6px;
    }

    .phase-node {
        width: 10px;
        height: 10px;
    }

    .phase-label {
        max-width: 44px;
        font-size: 5.8px;
        letter-spacing: 0.2px;
        line-height: 1.15;
        margin: 0 auto;
    }

    .logo {
        margin-top: 0;
        margin-bottom: 8px;
    }

    .q-logo-img {
        height: 56px;
    }

    .logo-text-img {
        width: min(200px, 74vw);
        max-width: 74vw;
        height: auto;
    }

    .title {
        font-size: 18px;
        margin-bottom: 6px;
        gap: 0.04em;
        row-gap: 0.12em;
    }

    .title-text {
        letter-spacing: 0.4px;
    }

    .title-ellipsis {
        gap: 0.08em;
    }

    .title-dot {
        width: 0.14em;
        height: 0.14em;
    }

    .description {
        font-size: 12px;
        line-height: 1.4;
        max-width: 250px;
        margin-bottom: 10px;
    }

    .down-arrow {
        display: none;
    }

    .action-buttons {
        max-width: 230px;
        gap: 8px;
    }

    .btn {
        padding: 11px 14px;
        font-size: 9px;
        letter-spacing: 1.1px;
    }
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    isolation: isolate;
    margin-top: 8px;
    margin-bottom: 28px;
    z-index: 10;
    transform: translateY(-10px);
}

.logo::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 38%;
    width: min(560px, 62vw);
    height: min(240px, 24vw);
    transform: translate(-50%, -50%) scale(0.72);
    border-radius: 999px;
    background: radial-gradient(
        circle,
        rgba(255, 216, 106, 0.28) 0%,
        rgba(255, 122, 0, 0.18) 34%,
        rgba(255, 122, 0, 0) 72%
    );
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.logo.is-echoing::after {
    animation: logoEchoAura 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.q-logo-img {
    height: 132px;
    width: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 4px 15px rgba(0,0,0,0.42))
        drop-shadow(0 0 22px rgba(255, 122, 0, 0.12));
    margin-bottom: 12px;
}

.logo.is-echoing .q-logo-img {
    animation: logoMarkEcho 1.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text-img {
    display: block;
    width: min(390px, 64vw);
    max-width: 64vw;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 4px 15px rgba(0,0,0,0.28))
        drop-shadow(0 0 18px rgba(255, 122, 0, 0.08));
}

.logo.is-echoing .logo-text-img {
    animation: logoWordmarkEcho 1.9s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes logoEchoAura {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.72);
    }
    18% {
        opacity: 0.92;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.48);
    }
}

@keyframes logoMarkEcho {
    0% {
        transform: translateY(0) scale(1);
    }
    18% {
        transform: translateY(-7px) scale(1.12);
    }
    46% {
        transform: translateY(-1px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes logoWordmarkEcho {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    16% {
        transform: translateY(-5px) scale(1.1);
        opacity: 1;
    }
    48% {
        transform: translateY(0) scale(1.018);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Titles */
.subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    transform: translateY(-10px);
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.08em;
    row-gap: 0.12em;
    text-align: center;
}

.title-text {
    display: inline-block;
    background: linear-gradient(
        90deg,
        #d9d9d9,
        var(--brand-gold),
        var(--brand-orange),
        var(--brand-gold),
        #d9d9d9
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
    animation: shimmer 4s linear infinite;
    text-shadow: none;
    filter: none;
}

.title-text {
    letter-spacing: 10px;
}

.title-ellipsis {
    display: inline-flex;
    align-items: center;
    gap: 0.12em;
    white-space: nowrap;
    margin-left: -0.02em;
}

.title-dot {
    display: block;
    flex: 0 0 auto;
    width: 0.18em;
    height: 0.18em;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(0.08em) scale(0.75);
    background: linear-gradient(
        90deg,
        #d9d9d9,
        var(--brand-gold),
        var(--brand-orange),
        var(--brand-gold),
        #d9d9d9
    );
    background-size: 200% auto;
    background-position: 0% center;
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.24);
}

.title-dot-1 {
    animation: shimmer 4s linear infinite, titleDotOne 1.9s ease-in-out infinite;
}

.title-dot-2 {
    animation: shimmer 4s linear infinite, titleDotTwo 1.9s ease-in-out infinite;
}

.title-dot-3 {
    animation: shimmer 4s linear infinite, titleDotThree 1.9s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes titleDotOne {
    0%, 10% {
        opacity: 0;
        transform: translateY(0.08em) scale(0.75);
    }
    14%, 64% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    70%, 100% {
        opacity: 0;
        transform: translateY(0.08em) scale(0.75);
    }
}

@keyframes titleDotTwo {
    0%, 30% {
        opacity: 0;
        transform: translateY(0.08em) scale(0.75);
    }
    36%, 64% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    70%, 100% {
        opacity: 0;
        transform: translateY(0.08em) scale(0.75);
    }
}

@keyframes titleDotThree {
    0%, 50% {
        opacity: 0;
        transform: translateY(0.08em) scale(0.75);
    }
    58%, 64% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    70%, 100% {
        opacity: 0;
        transform: translateY(0.08em) scale(0.75);
    }
}

.description {
    font-size: 17px;
    font-weight: 500; /* slightly bolder for sharpness */
    color: var(--text-primary);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 24px;
    text-shadow: none;
}

/* Down Arrow */
.down-arrow {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 22px;
    animation: pointDown 2s infinite ease-in-out;
}

@keyframes pointDown {
    0%, 100% {transform: translateY(0);}
    50% {transform: translateY(10px);}
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 42px;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: var(--font-family);
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease, opacity 0.35s ease;
    border-radius: 30px; /* Pill shape for distinction from social icons */
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.btn::before,
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}

/* Primary Button: Warm graphite and amber */
.primary-btn {
    background: linear-gradient(135deg, rgba(207, 79, 0, 0.98), rgba(255, 122, 0, 0.96) 52%, rgba(243, 198, 69, 0.94));
    border-color: rgba(255, 222, 138, 0.72);
    color: var(--brand-cream);
    box-shadow:
        inset 0 1px 0 rgba(255, 246, 223, 0.18),
        0 14px 30px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 122, 0, 0.14);
}

.primary-btn::before {
    inset: 1px;
    background: linear-gradient(180deg, rgba(255, 241, 214, 0.14), rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.08));
    opacity: 1;
}

.primary-btn::after {
    inset: -24%;
    background: radial-gradient(circle, rgba(255, 231, 153, 0.26) 0%, rgba(255, 122, 0, 0.18) 34%, rgba(255, 122, 0, 0) 70%);
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.primary-btn:hover {
    color: #fffaf0;
    border-color: rgba(255, 236, 180, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 234, 0.2),
        0 16px 36px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(255, 122, 0, 0.34);
}

.primary-btn:hover::after {
    opacity: 1;
    transform: scale(1.05);
}

/* Secondary Button: Dark glass with warm hover */
.secondary-btn {
    background: linear-gradient(135deg, rgba(86, 33, 2, 0.84), rgba(207, 79, 0, 0.8) 48%, rgba(243, 198, 69, 0.5));
    border-color: rgba(255, 197, 92, 0.46);
    color: rgba(255, 241, 214, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 248, 232, 0.08),
        0 10px 26px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(255, 122, 0, 0.1);
}

.secondary-btn::before {
    inset: 1px;
    background: linear-gradient(180deg, rgba(255, 245, 220, 0.08), rgba(255, 255, 255, 0.015) 42%, rgba(0, 0, 0, 0.1));
}

.secondary-btn::after {
    inset: -28%;
    background: radial-gradient(circle, rgba(255, 216, 106, 0.2) 0%, rgba(255, 122, 0, 0.1) 36%, rgba(255, 122, 0, 0) 72%);
    opacity: 0;
    transform: scale(0.84);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, rgba(95, 38, 4, 0.92), rgba(255, 122, 0, 0.9) 50%, rgba(243, 198, 69, 0.62));
    border-color: rgba(255, 230, 163, 0.72);
    color: #fff7eb;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 32px rgba(0, 0, 0, 0.36),
        0 0 26px rgba(255, 122, 0, 0.26);
}

.secondary-btn:hover::after {
    opacity: 1;
    transform: scale(1.04);
}

/* Premium Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons .button {
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, rgba(86, 33, 2, 0.78), rgba(207, 79, 0, 0.72) 52%, rgba(243, 198, 69, 0.42));
  border: 1px solid rgba(255, 215, 122, 0.5);
  border-radius: 12px; /* Smooth rounded rectangles */
  padding: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.social-icons .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 214, 0.2), transparent);
  transition: all 0.4s;
}

.social-icons .button:hover::before {
  left: 100%;
}

.social-icons .button:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(108, 44, 4, 0.9), rgba(255, 122, 0, 0.84) 52%, rgba(243, 198, 69, 0.62));
  border-color: rgba(255, 234, 176, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 22px rgba(255, 122, 0, 0.24);
}

/* Warm hover accents for social buttons */
.social-icons .button.fb:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 20px rgba(255, 122, 0, 0.22);
  border-color: rgba(243, 198, 69, 0.52);
}

.social-icons .button.in:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 20px rgba(255, 122, 0, 0.22);
  border-color: rgba(243, 198, 69, 0.52);
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: #fff4de;
  transition: fill 0.3s;
}

.social-icons .button.fb:hover svg {
  fill: var(--brand-gold-soft);
}

.social-icons .button.in:hover svg {
  fill: var(--brand-gold-soft);
}

/* Clean Glassmorphism Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content.glass-effect {
    background: rgba(25, 25, 35, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.modal-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.close-btn:hover {
    color: #ffffff;
}



.modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    border-radius: 4px;
    font-family: var(--font-family);
}

.modal-content input:focus {
    outline: none;
    border-color: var(--btn-primary-bg);
}

.turnstile-shell {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    min-height: 66px;
}

#notify-turnstile {
    display: flex;
    justify-content: center;
    width: 100%;
}

.notify-form-status {
    min-height: 22px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
}

.notify-form-status.is-error {
    color: #ffb8a8;
}

.notify-form-status.is-success {
    color: var(--brand-gold-soft);
}

/* Final desktop override (placed after base button styles) */
@media (min-width: 1025px) {
    .content-wrapper .action-buttons {
        margin-top: 58px;
        gap: 72px;
        margin-bottom: 38px;
    }

    .content-wrapper .action-buttons .btn {
        min-width: 214px;
        padding: 17px 42px;
    }
}
