/* =========================================================
   OGEinform safe premium scroll reveal
   ========================================================= */

.oge-reveal-section {
    position: relative;
}

.oge-reveal-section::before {
    content: "";

    position: absolute;
    left: 50%;
    top: -26px;
    z-index: 8;

    width: 0;
    height: 1px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(56, 189, 248, 0.92),
            rgba(250, 204, 21, 0.72),
            rgba(125, 211, 252, 0.84),
            transparent
        );

    box-shadow:
        0 0 16px rgba(56, 189, 248, 0.52),
        0 0 34px rgba(125, 211, 252, 0.22);

    transform: translateX(-50%);
    opacity: 0;

    pointer-events: none;
}

.oge-reveal-section::after {
    content: "";

    position: absolute;
    left: 50%;
    top: -90px;
    z-index: -1;

    width: min(760px, 70vw);
    height: 180px;

    border-radius: 999px;

    background:
        radial-gradient(circle, rgba(56, 189, 248, 0.10), transparent 68%);

    filter: blur(24px);
    opacity: 0;

    transform: translateX(-50%) scale(0.82);

    pointer-events: none;
}

.oge-reveal-ready .oge-reveal-item {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    filter: blur(8px);

    transition:
        opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.78s ease;

    transition-delay: var(--oge-reveal-delay, 0ms);

    will-change: opacity, transform, filter;
}

.oge-reveal-ready .oge-reveal-visible::before {
    animation: ogeRevealLine 0.88s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.oge-reveal-ready .oge-reveal-visible::after {
    animation: ogeRevealGlow 1.2s ease both;
}

.oge-reveal-ready .oge-reveal-visible .oge-reveal-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* Cards get a slightly more expensive depth on entry */
.oge-reveal-ready .oge-reveal-visible .premium-start-card.oge-reveal-item,
.oge-reveal-ready .oge-reveal-visible .premium-platform-card.oge-reveal-item,
.oge-reveal-ready .oge-reveal-visible .premium-pro-card.oge-reveal-item,
.oge-reveal-ready .oge-reveal-visible .premium-exam-set-card.oge-reveal-item,
.oge-reveal-ready .oge-reveal-visible .premium-number-card.oge-reveal-item,
.oge-reveal-ready .oge-reveal-visible .premium-seo-text.oge-reveal-item {
    animation: ogeRevealCardSettle 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--oge-reveal-delay, 0ms);
}

/* Number grid enters by waves */
.oge-reveal-ready .premium-number-card.oge-reveal-item:nth-child(4n + 1) {
    --oge-reveal-delay: 90ms;
}

.oge-reveal-ready .premium-number-card.oge-reveal-item:nth-child(4n + 2) {
    --oge-reveal-delay: 150ms;
}

.oge-reveal-ready .premium-number-card.oge-reveal-item:nth-child(4n + 3) {
    --oge-reveal-delay: 210ms;
}

.oge-reveal-ready .premium-number-card.oge-reveal-item:nth-child(4n + 4) {
    --oge-reveal-delay: 270ms;
}

@keyframes ogeRevealLine {
    0% {
        width: 0;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    100% {
        width: min(520px, 58vw);
        opacity: 0;
    }
}

@keyframes ogeRevealGlow {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.82);
    }

    48% {
        opacity: 1;
    }

    100% {
        opacity: 0.45;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes ogeRevealCardSettle {
    0% {
        opacity: 0;
        transform: translate3d(0, 42px, 0) scale(0.965);
        filter: blur(8px);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, -4px, 0) scale(1.006);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 760px) {
    .oge-reveal-section::before,
    .oge-reveal-section::after {
        display: none;
    }

    .oge-reveal-ready .oge-reveal-item {
        transform: translate3d(0, 22px, 0);
        filter: blur(4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .oge-reveal-section::before,
    .oge-reveal-section::after {
        display: none;
    }

    .oge-reveal-ready .oge-reveal-item,
    .oge-reveal-ready .oge-reveal-visible .oge-reveal-item {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
        animation: none;
    }
}

/* =========================================================
   PRO section interface scene
   ========================================================= */

.premium-pro-section {
    isolation: isolate;
}

.premium-pro-section::after {
    content: "";

    position: absolute;
    inset: 26px;
    z-index: 1;

    border-radius: 32px;

    border: 1px solid rgba(250, 204, 21, 0.00);

    background:
        linear-gradient(90deg, rgba(250, 204, 21, 0.00), rgba(250, 204, 21, 0.00));

    pointer-events: none;
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible::after {
    animation: ogeProFramePulse 1.4s ease both;
    animation-delay: 0.28s;
}

.oge-reveal-ready .premium-pro-section .premium-pro-left {
    transform: translate3d(-28px, 18px, 0);
}

.oge-reveal-ready .premium-pro-section .premium-pro-card {
    transform: translate3d(34px, 30px, 0) scale(0.94);
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-left {
    transform: translate3d(0, 0, 0);
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card {
    transform: translate3d(0, 0, 0) scale(1);
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card:nth-child(1) {
    animation: ogeProCardDock 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.18s;
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card:nth-child(2) {
    animation: ogeProCardDock 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.30s;
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card:nth-child(3) {
    animation: ogeProCardDock 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.42s;
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card:nth-child(4) {
    animation: ogeProCardDock 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.54s;
}

.premium-pro-card::after {
    content: "";

    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(250, 204, 21, 0.70),
            rgba(56, 189, 248, 0.45),
            transparent
        );

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

    pointer-events: none;
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card::after {
    animation: ogeProCardLine 1.15s ease both;
    animation-delay: inherit;
}

.premium-pro-icon {
    position: relative;
}

.premium-pro-icon::after {
    content: "";

    position: absolute;
    inset: -8px;

    border-radius: inherit;
    border: 1px solid rgba(250, 204, 21, 0.0);

    opacity: 0;
    transform: scale(0.72);

    pointer-events: none;
}

.oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-icon::after {
    animation: ogeProIconPing 0.9s ease both;
    animation-delay: 0.56s;
}

@keyframes ogeProFramePulse {
    0% {
        border-color: rgba(250, 204, 21, 0);
        box-shadow: none;
    }

    38% {
        border-color: rgba(250, 204, 21, 0.34);
        box-shadow:
            0 0 0 1px rgba(250, 204, 21, 0.08),
            0 0 54px rgba(250, 204, 21, 0.10),
            inset 0 0 48px rgba(250, 204, 21, 0.045);
    }

    100% {
        border-color: rgba(250, 204, 21, 0.10);
        box-shadow:
            inset 0 0 44px rgba(250, 204, 21, 0.025);
    }
}

@keyframes ogeProCardDock {
    0% {
        opacity: 0;
        transform: translate3d(42px, 34px, 0) scale(0.93);
        filter: blur(10px);
    }

    70% {
        opacity: 1;
        transform: translate3d(-5px, -4px, 0) scale(1.012);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes ogeProCardLine {
    0% {
        opacity: 0;
        transform: scaleX(0.25);
    }

    45% {
        opacity: 1;
    }

    100% {
        opacity: 0.58;
        transform: scaleX(1);
    }
}

@keyframes ogeProIconPing {
    0% {
        opacity: 0;
        transform: scale(0.72);
        border-color: rgba(250, 204, 21, 0);
    }

    35% {
        opacity: 1;
        transform: scale(1.22);
        border-color: rgba(250, 204, 21, 0.32);
    }

    100% {
        opacity: 0;
        transform: scale(1.48);
        border-color: rgba(250, 204, 21, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-pro-section::after,
    .premium-pro-card::after,
    .premium-pro-icon::after,
    .oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-card,
    .oge-reveal-ready .premium-pro-section.oge-reveal-visible .premium-pro-icon::after {
        animation: none !important;
    }
}

/* =========================================================
   Tasks matrix activation scene
   ========================================================= */

.premium-tasks-section {
    isolation: isolate;
}

.premium-tasks-section::after {
    content: "";

    position: absolute;
    inset: 84px -18px -28px;
    z-index: -1;

    border-radius: 42px;

    background:
        linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 211, 252, 0.028) 1px, transparent 1px);

    background-size: 42px 42px;

    opacity: 0;
    transform: scale(0.98);

    pointer-events: none;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible::after {
    animation: ogeTasksMatrixOn 1.25s ease both;
    animation-delay: 0.18s;
}

.premium-tasks-section .premium-section-head {
    position: relative;
}

.premium-tasks-section .premium-section-head::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -16px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #38bdf8,
            rgba(125, 211, 252, 0.72),
            rgba(250, 204, 21, 0.58),
            transparent
        );

    box-shadow:
        0 0 18px rgba(56, 189, 248, 0.42),
        0 0 38px rgba(125, 211, 252, 0.20);

    opacity: 0;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-section-head::after {
    animation: ogeTasksHeadLine 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.18s;
}

.premium-number-card {
    transform-origin: center center;
}

.oge-reveal-ready .premium-tasks-section .premium-number-card {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.94);
    filter: blur(8px);
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card {
    animation: ogeTasksCardLock 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* row 1 */
.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(1) {
    animation-delay: 0.22s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(2) {
    animation-delay: 0.30s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(3) {
    animation-delay: 0.38s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(4) {
    animation-delay: 0.46s;
}

/* row 2 */
.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(5) {
    animation-delay: 0.34s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(6) {
    animation-delay: 0.42s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(7) {
    animation-delay: 0.50s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(8) {
    animation-delay: 0.58s;
}

/* row 3 */
.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(9) {
    animation-delay: 0.46s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(10) {
    animation-delay: 0.54s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(11) {
    animation-delay: 0.62s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(12) {
    animation-delay: 0.70s;
}

/* row 4 */
.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(13) {
    animation-delay: 0.58s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(14) {
    animation-delay: 0.66s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(15) {
    animation-delay: 0.74s;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card:nth-child(16) {
    animation-delay: 0.82s;
}

.premium-number-card .premium-number-badge {
    position: relative;
}

.premium-number-card .premium-number-badge::after {
    content: "";

    position: absolute;
    inset: -7px;

    border-radius: inherit;
    border: 1px solid rgba(56, 189, 248, 0.0);

    opacity: 0;
    transform: scale(0.75);

    pointer-events: none;
}

.oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-badge::after {
    animation: ogeTasksBadgePing 0.72s ease both;
    animation-delay: inherit;
}

@keyframes ogeTasksMatrixOn {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 0.72;
        transform: scale(1);
    }
}

@keyframes ogeTasksHeadLine {
    0% {
        width: 0;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    100% {
        width: min(420px, 58vw);
        opacity: 0.72;
    }
}

@keyframes ogeTasksCardLock {
    0% {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(0.94);
        filter: blur(8px);
    }

    68% {
        opacity: 1;
        transform: translate3d(0, -4px, 0) scale(1.012);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes ogeTasksBadgePing {
    0% {
        opacity: 0;
        transform: scale(0.75);
        border-color: rgba(56, 189, 248, 0);
    }

    38% {
        opacity: 1;
        transform: scale(1.25);
        border-color: rgba(56, 189, 248, 0.34);
    }

    100% {
        opacity: 0;
        transform: scale(1.48);
        border-color: rgba(56, 189, 248, 0);
    }
}

@media (max-width: 760px) {
    .premium-tasks-section::after,
    .premium-tasks-section .premium-section-head::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-tasks-section::after,
    .premium-tasks-section .premium-section-head::after,
    .premium-number-badge::after,
    .oge-reveal-ready .premium-tasks-section.oge-reveal-visible .premium-number-card {
        animation: none !important;
    }

    .oge-reveal-ready .premium-tasks-section .premium-number-card {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* =========================================================
   Final CTA platform launch scene
   ========================================================= */

.premium-final-cta-section {
    isolation: isolate;
}

.premium-final-cta-card {
    position: relative;
    overflow: hidden;
}

.premium-final-cta-card::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    border-radius: inherit;

    background:
        linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.10), transparent),
        radial-gradient(circle at 50% 0%, rgba(250, 204, 21, 0.16), transparent 38%);

    opacity: 0;
    transform: translateX(-18%) scale(0.96);

    pointer-events: none;
}

.premium-final-cta-card::after {
    content: "";

    position: absolute;
    inset: 18px;
    z-index: 2;

    border-radius: 28px;

    border: 1px solid rgba(250, 204, 21, 0);

    box-shadow: none;

    pointer-events: none;
}

.premium-final-cta-card > * {
    position: relative;
    z-index: 4;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card::before {
    animation: ogeFinalEnergySweep 1.35s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.18s;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card::after {
    animation: ogeFinalFrameCharge 1.35s ease both;
    animation-delay: 0.28s;
}

.oge-reveal-ready .premium-final-cta-section .premium-final-cta-card > span,
.oge-reveal-ready .premium-final-cta-section .premium-final-cta-card h2,
.oge-reveal-ready .premium-final-cta-section .premium-final-cta-card p,
.oge-reveal-ready .premium-final-cta-section .premium-final-cta-actions {
    transform: translate3d(0, 28px, 0);
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card > span {
    animation: ogeFinalTextIn 0.76s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.12s;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card h2 {
    animation: ogeFinalTextIn 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.22s;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card p {
    animation: ogeFinalTextIn 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.32s;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-actions {
    animation: ogeFinalActionsIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.46s;
}

.premium-final-cta-btn {
    position: relative;
    overflow: hidden;
}

.premium-final-cta-btn::after {
    content: "";

    position: absolute;
    left: -120%;
    top: 0;

    width: 72%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.38),
            transparent
        );

    transform: skewX(-18deg);

    pointer-events: none;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-btn::after {
    animation: ogeFinalButtonShine 1.1s ease both;
    animation-delay: 0.82s;
}

.oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-btn-primary {
    animation: ogeFinalPrimaryPulse 1.25s ease both;
    animation-delay: 0.74s;
}

@keyframes ogeFinalEnergySweep {
    0% {
        opacity: 0;
        transform: translateX(-22%) scale(0.96);
    }

    38% {
        opacity: 1;
    }

    100% {
        opacity: 0.75;
        transform: translateX(0) scale(1);
    }
}

@keyframes ogeFinalFrameCharge {
    0% {
        border-color: rgba(250, 204, 21, 0);
        box-shadow: none;
    }

    42% {
        border-color: rgba(250, 204, 21, 0.38);
        box-shadow:
            0 0 0 1px rgba(250, 204, 21, 0.08),
            0 0 54px rgba(250, 204, 21, 0.14),
            inset 0 0 46px rgba(56, 189, 248, 0.06);
    }

    100% {
        border-color: rgba(250, 204, 21, 0.13);
        box-shadow:
            inset 0 0 42px rgba(250, 204, 21, 0.035);
    }
}

@keyframes ogeFinalTextIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes ogeFinalActionsIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(0.96);
        filter: blur(8px);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, -4px, 0) scale(1.012);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes ogeFinalButtonShine {
    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

@keyframes ogeFinalPrimaryPulse {
    0% {
        box-shadow:
            0 24px 56px rgba(56, 189, 248, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.46);
    }

    42% {
        box-shadow:
            0 0 0 6px rgba(250, 204, 21, 0.14),
            0 28px 70px rgba(56, 189, 248, 0.30),
            inset 0 1px 0 rgba(255, 255, 255, 0.58);
    }

    100% {
        box-shadow:
            0 24px 56px rgba(56, 189, 248, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.46);
    }
}

@media (max-width: 760px) {
    .premium-final-cta-card::after {
        inset: 10px;
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-final-cta-card::before,
    .premium-final-cta-card::after,
    .premium-final-cta-btn::after,
    .oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card > span,
    .oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card h2,
    .oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-card p,
    .oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-actions,
    .oge-reveal-ready .premium-final-cta-section.oge-reveal-visible .premium-final-cta-btn-primary {
        animation: none !important;
    }
}

/* =========================================================
   Final CTA compact balance fix
   ========================================================= */

.premium-final-cta-section {
    padding-top: 42px !important;
    padding-bottom: 54px !important;
    margin-top: 46px !important;
    margin-bottom: 54px !important;
}

.premium-final-cta-card {
    box-sizing: border-box !important;

    min-height: 0 !important;
    height: auto !important;

    padding: 54px 42px 50px !important;

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

    gap: 0 !important;
}

.premium-final-cta-card::after {
    inset: 10px !important;
    border-radius: 24px !important;
    border-color: rgba(250, 204, 21, 0.08) !important;
}

.premium-final-cta-glow {
    top: -220px !important;
    width: 340px !important;
    height: 340px !important;
    opacity: 0.46 !important;
}

.premium-final-cta-card > span {
    margin-bottom: 14px !important;
}

.premium-final-cta-card h2 {
    max-width: 720px !important;
    margin: 0 auto !important;

    font-size: clamp(34px, 4.4vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.075em !important;
}

.premium-final-cta-card p {
    max-width: 540px !important;
    margin: 18px auto 0 !important;

    font-size: 15px !important;
    line-height: 1.55 !important;
}

.premium-final-cta-actions {
    margin-top: 28px !important;
}

@media (max-width: 760px) {
    .premium-final-cta-section {
        padding-top: 34px !important;
        padding-bottom: 44px !important;
        margin-top: 38px !important;
        margin-bottom: 46px !important;
    }

    .premium-final-cta-card {
        min-height: 0 !important;
        height: auto !important;
        padding: 42px 20px 40px !important;
    }

    .premium-final-cta-card h2 {
        font-size: clamp(30px, 9vw, 42px) !important;
        line-height: 1 !important;
    }
}

/* =========================================================
   Final CTA hard height reset
   ========================================================= */

.premium-final-cta-section .premium-final-cta-card {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;

    padding-top: 52px !important;
    padding-bottom: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.premium-final-cta-section .premium-final-cta-glow {
    display: none !important;
}

.premium-final-cta-section .premium-final-cta-card > span,
.premium-final-cta-section .premium-final-cta-card h2,
.premium-final-cta-section .premium-final-cta-card p,
.premium-final-cta-section .premium-final-cta-actions {
    transform: none !important;
}

.premium-final-cta-section .premium-final-cta-card h2 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.premium-final-cta-section .premium-final-cta-card p {
    margin-top: 16px !important;
}

.premium-final-cta-section .premium-final-cta-actions {
    margin-top: 26px !important;
}