/* =========================================================
   $100 TO $1 MILLION CHALLENGE
   Coming Soon Page
   ========================================================= */


/* ---------------------------------------------------------
   BASE
   --------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #15120f;
    color: #ffffff;
}


/* ---------------------------------------------------------
   COMING SOON HERO
   --------------------------------------------------------- */

.coming-soon-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(13, 10, 7, 0.90) 0%,
            rgba(13, 10, 7, 0.74) 25%,
            rgba(13, 10, 7, 0.36) 48%,
            rgba(13, 10, 7, 0.08) 68%,
            rgba(13, 10, 7, 0.00) 100%
        ),
        url('https://100to1millionchallenge.com/uploads/images/office-background.webp');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.coming-soon-page::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        0deg,
        rgba(7, 5, 3, 0.50) 0%,
        rgba(7, 5, 3, 0.05) 35%,
        rgba(7, 5, 3, 0.00) 100%
    );

    pointer-events: none;
}


/* ---------------------------------------------------------
   PAGE SHELL
   --------------------------------------------------------- */

.coming-soon-shell {
    position: relative;
    z-index: 2;

    width: min(1500px, calc(100% - 80px));
    min-height: 100vh;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.coming-soon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px 0;
}

.coming-soon-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;
    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   STATUS
   --------------------------------------------------------- */

.coming-soon-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(8px);

    color: rgba(255, 255, 255, 0.86);

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.coming-soon-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #d8a84e;

    box-shadow: 0 0 12px rgba(216, 168, 78, 0.80);
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.coming-soon-hero {
    flex: 1;

    display: flex;
    align-items: center;

    padding: 20px 0 35px;
}

.coming-soon-content {
    width: min(720px, 55vw);
}

.coming-soon-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 26px;

    color: #d8a84e;

    font-size: 0.80rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.coming-soon-eyebrow::before {
    content: "";

    width: 48px;
    height: 2px;

    background: #d8a84e;
}


/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.coming-soon-title {
    max-width: 700px;
    margin: 0;

    color: #d8a84e;

    font-size: clamp(3rem, 5vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.055em;

    font-weight: 900;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   TAGLINE
   --------------------------------------------------------- */

.coming-soon-tagline {
    max-width: 625px;

    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.94);

    font-size: clamp(1.15rem, 1.6vw, 1.5rem);
    line-height: 1.4;
    font-weight: 600;
}

.coming-soon-tagline strong {
    color: #d8a84e;
    font-weight: 800;
}


/* ---------------------------------------------------------
   DIVIDER
   --------------------------------------------------------- */

.coming-soon-divider {
    width: 95px;
    height: 3px;

    margin: 24px 0;

    background: #d8a84e;
}


/* ---------------------------------------------------------
   INTRO COPY
   --------------------------------------------------------- */

.coming-soon-copy {
    max-width: 580px;
    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.6;
}

.coming-soon-copy strong {
    color: #ffffff;
}


/* ---------------------------------------------------------
   FOLLOW THE CHALLENGE SIGNUP
   --------------------------------------------------------- */

.coming-soon-signup {
    width: min(520px, 100%);
    margin-top: 28px;
    padding: 18px;

    border: 1px solid rgba(216, 168, 78, 0.55);

    background: rgba(216, 168, 78, 0.10);
    backdrop-filter: blur(7px);
}

.coming-soon-signup-title {
    margin-bottom: 13px;

    color: #f0c870;

    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.coming-soon-signup-message {
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
}


.coming-soon-follow-form {
    display: flex;
    width: 100%;
    gap: 10px;
}

.coming-soon-follow-email {
    flex: 1;
    min-width: 0;
    height: 46px;

    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    outline: none;

    background: rgba(0, 0, 0, 0.42);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.coming-soon-follow-email::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.coming-soon-follow-email:focus {
    border-color: #d8a84e;
    background: rgba(0, 0, 0, 0.58);
}

.coming-soon-follow-submit {
    height: 46px;
    padding: 0 22px;

    border: 1px solid #d8a84e;

    background: #d8a84e;

    color: #17110a;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.coming-soon-follow-submit:hover {
    background: #f0c870;
    border-color: #f0c870;
}

@media (max-width: 650px) {

    .coming-soon-signup {
        margin-top: 24px;
        padding: 15px;
    }

    .coming-soon-follow-form {
        gap: 8px;
    }

    .coming-soon-follow-email {
        height: 44px;
        padding: 0 12px;
        font-size: 0.85rem;
    }

    .coming-soon-follow-submit {
        height: 44px;
        padding: 0 16px;
        font-size: 0.70rem;
    }
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.coming-soon-footer {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 0 22px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.76rem;
    line-height: 1.5;
}

.coming-soon-domain {
    color: rgba(255, 255, 255, 0.68);
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 950px) {

    .coming-soon-page {
        background-image:
            linear-gradient(
                90deg,
                rgba(13, 10, 7, 0.90) 0%,
                rgba(13, 10, 7, 0.70) 55%,
                rgba(13, 10, 7, 0.30) 100%
            ),
            url('https://100to1millionchallenge.com/uploads/images/office-background.webp');

        background-position: 62% center;
    }

    .coming-soon-shell {
        width: min(100% - 42px, 1500px);
    }

    .coming-soon-content {
        width: min(680px, 78vw);
    }

    .coming-soon-header {
        padding-top: 24px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

    .coming-soon-page {
        background-image:
            linear-gradient(
                180deg,
                rgba(12, 9, 6, 0.82) 0%,
                rgba(12, 9, 6, 0.80) 45%,
                rgba(12, 9, 6, 0.90) 100%
            ),
            url('https://100to1millionchallenge.com/uploads/images/office-background.webp');

        background-position: 58% center;
    }

    .coming-soon-shell {
        width: calc(100% - 34px);
    }

    .coming-soon-header {
        align-items: flex-start;
        gap: 16px;
    }

    .coming-soon-brand-name {
        font-size: 0.70rem;
    }

    .coming-soon-status {
        padding: 8px 11px;
        font-size: 0.62rem;
    }

    .coming-soon-hero {
        align-items: flex-start;
        padding: 20px 0 30px;
    }

    .coming-soon-content {
        width: 100%;
    }

    .coming-soon-title {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .coming-soon-tagline {
        margin-top: 26px;
        font-size: 1.20rem;
    }

    .coming-soon-copy {
        font-size: 1rem;
    }

    .coming-soon-footer {
        flex-direction: column;
        padding-bottom: 24px;
    }
}



/* =========================================================
   SITE HEADER
   ========================================================= */

.challenge-site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    width: 100%;

    background:
        linear-gradient(
            90deg,
            #080706 0%,
            #15110d 52%,
            #21180e 100%
        );

    border-bottom: 1px solid rgba(216, 168, 78, 0.35);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.challenge-site-header-inner {
    width: min(1360px, calc(100% - 80px));
    min-height: 104px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* ---------------------------------------------------------
   SITE HEADER LOGO
   --------------------------------------------------------- */

.challenge-site-logo {
    display: block;
    flex: 0 0 auto;

    line-height: 0;
    text-decoration: none;
}

.challenge-site-logo img {
    display: block;

    width: 240px;
    height: auto;
}


/* ---------------------------------------------------------
   SITE HEADER NAVIGATION
   --------------------------------------------------------- */

.challenge-site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.challenge-site-nav-link {
    min-height: 46px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8a84e;

    background: transparent;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.challenge-site-nav-link:hover {
    border-color: #efc76e;

    background: #d8a84e;
    color: #17130f;

    transform: translateY(-1px);
}


/* ---------------------------------------------------------
   SITE HEADER LOGOUT FORM
   --------------------------------------------------------- */

.challenge-site-logout-form {
    display: flex;
    margin: 0;
    padding: 0;
}

.challenge-site-nav-button {
    appearance: none;
    -webkit-appearance: none;
}


/* ---------------------------------------------------------
   SITE HEADER - TABLET
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .challenge-site-header-inner {
        width: min(100% - 50px, 1360px);
    }

    .challenge-site-logo img {
        width: 220px;
    }

}


/* ---------------------------------------------------------
   SITE HEADER - MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

    .challenge-site-header-inner {
        width: calc(100% - 34px);
        min-height: 0;
        padding: 14px 0;

        flex-direction: column;
        gap: 13px;
    }

    .challenge-site-logo img {
        width: min(240px, 78vw);
    }

    .challenge-site-nav {
        width: 100%;
        gap: 8px;
    }

    .challenge-site-nav-link {
        min-height: 43px;
        padding: 0 12px;

        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .challenge-site-nav > .challenge-site-nav-link,
    .challenge-site-logout-form {
        flex: 1 1 0;
    }

    .challenge-site-logout-form .challenge-site-nav-link {
        width: 100%;
    }

}



/* =========================================================
   $100 TO $1 MILLION CHALLENGE
   Challenge Sales Page
   ========================================================= */


/* ---------------------------------------------------------
   BASE
   --------------------------------------------------------- */

.challenge-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f3efe7;
    color: #181410;
    font-family: Arial, Helvetica, sans-serif;
}

.challenge-container {
    width: min(1360px, calc(100% - 80px));
    margin: 0 auto;
}

.challenge-narrow {
    max-width: 980px;
}

.challenge-section {
    position: relative;
    padding: 105px 0;
}

.challenge-section-label {
    display: block;
    margin-bottom: 18px;

    color: #b47a1f;

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.challenge-section h2,
.challenge-final h2 {
    margin: 0;

    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;

    font-weight: 900;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   HERO
   DARK / CINEMATIC
   --------------------------------------------------------- */

.challenge-hero {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(216, 168, 78, 0.14),
            transparent 35%
        ),
        linear-gradient(
            115deg,
            #080706 0%,
            #15110d 52%,
            #21180e 100%
        );

    color: #ffffff;

    border-bottom: 1px solid rgba(216, 168, 78, 0.25);
}

.challenge-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.28),
            transparent 45%,
            rgba(216, 168, 78, 0.04)
        );
}

.challenge-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216, 168, 78, 0.65),
            transparent
        );
}

.challenge-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: 70px;

    align-items: center;
}

.challenge-kicker {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 24px;

    color: #d8a84e;

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.challenge-kicker::before {
    content: "";

    display: block;

    width: 34px;
    height: 2px;

    background: #d8a84e;
}

.challenge-title {
    max-width: 760px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.5rem, 5.7vw, 6.6rem);
    line-height: 0.89;
    letter-spacing: -0.055em;

    font-weight: 900;
    text-transform: uppercase;

    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.32);
}

.challenge-hero-lead {
    max-width: 650px;
    margin: 30px 0 0;

    color: #ffffff;

    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.42;
    font-weight: 700;
}

.challenge-hero-copy-text {
    max-width: 650px;
    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 1.05rem;
    line-height: 1.7;
}

.challenge-hero-target {
    max-width: 650px;
    margin: 22px 0 32px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.12rem;
    line-height: 1.6;
}

.challenge-hero-target strong {
    color: #d8a84e;
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.challenge-hero-numbers {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(216, 168, 78, 0.42);
    border-top: 4px solid #d8a84e;

    background: #17130f;

    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.025);
}

.challenge-hero-numbers::after {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.16);
}

.challenge-hero-image {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 3 / 2;

    object-fit: cover;
    object-position: center;

    filter:
        contrast(1.01)
        saturate(0.95)
        brightness(0.94);
}


/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.challenge-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    text-decoration: none;

    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.challenge-button-primary {
    border: 1px solid #d8a84e;
    background: #d8a84e;
    color: #17130f;
}

.challenge-button-primary:hover {
    border-color: #efc76e;
    background: #efc76e;
    transform: translateY(-1px);
}

.challenge-button-outline {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #ffffff;
}

.challenge-button-outline:hover {
    border-color: #d8a84e;
    color: #d8a84e;
}


/* ---------------------------------------------------------
   WHAT IS THE CHALLENGE
   WARM LIGHT
   --------------------------------------------------------- */

.challenge-intro {
    background:
        linear-gradient(
            135deg,
            #f6f1e8 0%,
            #eee5d6 100%
        );

    color: #181410;

    border-bottom: 1px solid #ded2bf;
}

.challenge-intro::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;

    width: 28%;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(
            145deg,
            transparent 20%,
            rgba(216, 168, 78, 0.08)
        );
}

.challenge-intro .challenge-container {
    position: relative;
    z-index: 2;
}

.challenge-intro h2 {
    max-width: 900px;
    margin-bottom: 35px;

    color: #17130f;
}

.challenge-intro p {
    max-width: 860px;
    margin: 0 0 22px;

    color: #62594e;

    font-size: 1.08rem;
    line-height: 1.75;
}

.challenge-intro .challenge-large-copy {
    color: #2e2923;

    font-size: 1.35rem;
    line-height: 1.6;
}

.challenge-intro strong {
    color: #a86d13;
}


/* ---------------------------------------------------------
   CHALLENGE RULES
   DARK
   --------------------------------------------------------- */

.challenge-rules-section {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216, 168, 78, 0.09),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #15110d 0%,
            #0d0b09 100%
        );

    color: #ffffff;

    border-bottom: 1px solid rgba(216, 168, 78, 0.20);
}

.challenge-rules-section h2 {
    color: #ffffff;
}

.challenge-rules-section .challenge-section-label {
    color: #d8a84e;
}

.challenge-section-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

.challenge-section-heading p {
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 1.08rem;
    line-height: 1.7;
}

.challenge-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.challenge-rule {
    min-height: 250px;
    padding: 30px;

    border: 1px solid rgba(216, 168, 78, 0.23);
    border-top: 3px solid #d8a84e;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.challenge-rule-number {
    margin-bottom: 32px;

    color: #d8a84e;

    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.challenge-rule h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 1.25rem;
}

.challenge-rule p {
    margin: 0;

    color: rgba(255, 255, 255, 0.61);

    font-size: 0.97rem;
    line-height: 1.65;
}

/* ---------------------------------------------------------
   FEATURED CHALLENGER IMAGE
   --------------------------------------------------------- */

.challenge-featured-image {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;

    margin-top: 34px;

    border: 1px solid rgba(184, 128, 28, 0.30);

    box-shadow:
        0 18px 45px rgba(35, 25, 12, 0.14);
}


/* ---------------------------------------------------------
   FEATURED CHALLENGER IMAGE - TABLET
   --------------------------------------------------------- */

@media (max-width: 950px) {

    .challenge-featured-image {
        max-width: 360px;
        margin-top: 28px;
    }
}


/* ---------------------------------------------------------
   FEATURED CHALLENGER IMAGE - MOBILE
   --------------------------------------------------------- */

@media (max-width: 650px) {

    .challenge-featured-image {
        width: 100%;
        max-width: none;
        margin-top: 24px;
    }
}
/* ---------------------------------------------------------
   PARTICIPANT INVITATION
   GOLD FEATURE BAND
   --------------------------------------------------------- */

.challenge-invitation {
    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #c88e30 0%,
            #d8a84e 50%,
            #e1b85f 100%
        );

    color: #17130f;
}

.challenge-invitation::before {
    content: "";
    position: absolute;
    left: -8%;
    top: -120%;

    width: 38%;
    height: 340%;

    transform: rotate(15deg);

    background: rgba(255, 255, 255, 0.07);

    pointer-events: none;
}

.challenge-invitation .challenge-container {
    position: relative;
    z-index: 2;
}

.challenge-invitation .challenge-section-label {
    color: #60400f;
}

.challenge-invitation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 70px;

    align-items: start;
}

.challenge-invitation .challenge-button-primary {
    border-color: #17130f;
    background: #17130f;
    color: #ffffff;
}

.challenge-invitation .challenge-button-primary:hover {
    border-color: #2b241d;
    background: #2b241d;
    color: #ffffff;
}

.challenge-invitation h2 {
    color: #17130f;
}

.challenge-invitation-copy p {
    margin: 0 0 20px;

    color: rgba(23, 19, 15, 0.76);

    font-size: 1.12rem;
    line-height: 1.65;
}

.challenge-invitation-copy .challenge-invitation-emphasis {
    margin-top: 35px;
    padding-top: 28px;

    border-top: 2px solid rgba(23, 19, 15, 0.28);

    color: #17130f;

    font-size: 1.45rem;
    font-weight: 700;
}


/* ---------------------------------------------------------
   FEATURED CHALLENGE
   WARM LIGHT
   --------------------------------------------------------- */

.challenge-featured {
    background:
        linear-gradient(
            135deg,
            #f4efe6 0%,
            #ebe2d3 100%
        );

    color: #181410;

    border-bottom: 1px solid #d8cbb8;
}

.challenge-featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;

    align-items: start;
}

.challenge-featured-intro {
    position: sticky;
    top: 30px;
}

.challenge-featured-intro h2 {
    color: #17130f;
}

.challenge-featured-lead {
    margin: 26px 0 0;

    color: #5f5549;

    font-size: 1.3rem;
    line-height: 1.6;
}

.challenge-featured-lead strong {
    color: #a86d13;
}

.challenge-featured-copy {
    padding: 38px;

    border: 1px solid #d8c9b4;
    border-left: 5px solid #d8a84e;

    background: rgba(255, 255, 255, 0.58);

    box-shadow: 0 18px 40px rgba(61, 45, 24, 0.10);
}

.challenge-featured-copy p {
    margin: 0 0 22px;

    color: #655b50;

    font-size: 1.08rem;
    line-height: 1.75;
}

.challenge-featured-copy p:last-child {
    margin-bottom: 0;
}

.challenge-featured-copy strong {
    color: #211c17;
}


/* ---------------------------------------------------------
   WATCH / LEARN / BUILD
   DARK
   --------------------------------------------------------- */

.challenge-follow {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(216, 168, 78, 0.08),
            transparent 30%
        ),
        #100e0c;

    color: #ffffff;

    border-bottom: 1px solid rgba(216, 168, 78, 0.18);
}

.challenge-follow .challenge-section-label {
    color: #d8a84e;
}

.challenge-follow-heading {
    max-width: 900px;
    margin-bottom: 55px;
}

.challenge-follow-heading h2 {
    color: #ffffff;
}

.challenge-follow-heading p {
    max-width: 760px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 1.08rem;
    line-height: 1.7;
}

.challenge-follow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.challenge-follow-card {
    min-height: 235px;
    padding: 27px;

    border: 1px solid rgba(216, 168, 78, 0.18);
    border-top: 4px solid #d8a84e;

    background:
        linear-gradient(
            145deg,
            #201a14,
            #17130f
        );

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.challenge-follow-card > span {
    display: block;
    margin-bottom: 28px;

    color: #d8a84e;

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.challenge-follow-card h3 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 1.2rem;
}

.challenge-follow-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 0.96rem;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   REACH THE TARGET
   WARM LIGHT
   --------------------------------------------------------- */

.challenge-learn {
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #f7f2e9 0%,
            #eee5d6 70%,
            #e5d5bc 100%
        );

    color: #181410;

    border-bottom: 1px solid #d8cbb8;
}

.challenge-learn::after {
    content: "";
    position: absolute;
    right: -8%;
    top: -30%;

    width: 34%;
    height: 170%;

    transform: rotate(12deg);

    background: rgba(216, 168, 78, 0.10);

    pointer-events: none;
}

.challenge-learn .challenge-container {
    position: relative;
    z-index: 2;
}

.challenge-learn-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;

    align-items: start;
}

.challenge-learn h2 {
    color: #17130f;
}

.challenge-learn-copy {
    padding-left: 38px;

    border-left: 3px solid #c28b32;
}

.challenge-learn-copy p {
    margin: 0 0 22px;

    color: #62584c;

    font-size: 1.08rem;
    line-height: 1.7;
}

.challenge-learn-copy strong {
    color: #211c17;
}

.challenge-learn-copy .challenge-learn-final {
    margin-top: 34px;
    padding-top: 28px;

    border-top: 1px solid rgba(168, 109, 19, 0.32);

    color: #28221c;

    font-size: 1.3rem;
}


/* ---------------------------------------------------------
   FINAL CTA
   STRONG DARK FINISH
   --------------------------------------------------------- */

.challenge-final {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216, 168, 78, 0.16),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #15110d 0%,
            #070605 100%
        );

    color: #ffffff;

    text-align: center;
}

.challenge-final::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(700px, 70%);
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #d8a84e,
            transparent
        );
}

.challenge-final-inner {
    position: relative;
    z-index: 2;

    max-width: 940px;
}

.challenge-final-label {
    display: block;
    margin-bottom: 20px;

    color: #d8a84e;

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.challenge-final h2 {
    color: #ffffff;

    font-size: clamp(3rem, 6vw, 6rem);
}

.challenge-final p {
    max-width: 720px;
    margin: 30px auto 38px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 1.15rem;
    line-height: 1.75;

    white-space: pre-line;
}

.challenge-final p strong {
    color: #d8a84e;
}

.challenge-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.challenge-footer {
    border-top: 1px solid rgba(216, 168, 78, 0.13);

    background: #050403;

    color: rgba(255, 255, 255, 0.43);
}

.challenge-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    padding-top: 24px;
    padding-bottom: 24px;

    font-size: 0.76rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .challenge-container {
        width: min(100% - 50px, 1360px);
    }

    .challenge-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .challenge-hero-numbers {
        width: 100%;
        max-width: 850px;
    }

    .challenge-hero-image {
        aspect-ratio: 16 / 9;
    }

    .challenge-rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .challenge-invitation-grid,
    .challenge-featured-grid,
    .challenge-learn-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .challenge-featured-intro {
        position: static;
    }

    .challenge-follow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .challenge-learn-copy {
        padding-left: 0;
        padding-top: 30px;

        border-left: 0;
        border-top: 3px solid #c28b32;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .challenge-container {
        width: calc(100% - 34px);
    }

    .challenge-section {
        padding: 72px 0;
    }

    .challenge-section h2,
    .challenge-final h2 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
    }


    /* HERO */

    .challenge-hero {
        padding: 62px 0 70px;
    }

    .challenge-hero-grid {
        gap: 40px;
    }

    .challenge-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.15em;
    }

    .challenge-kicker::before {
        width: 25px;
    }

    .challenge-title {
        font-size: clamp(3rem, 15vw, 4.7rem);
        line-height: 0.91;
    }

    .challenge-hero-lead {
        margin-top: 26px;
        font-size: 1.3rem;
    }

    .challenge-hero-copy-text {
        font-size: 1rem;
    }

    .challenge-hero-target {
        font-size: 1.08rem;
    }

    .challenge-hero-image {
        aspect-ratio: 4 / 3;
    }

    .challenge-button {
        width: 100%;
    }


    /* RULES */

    .challenge-rules-grid {
        grid-template-columns: 1fr;
    }

    .challenge-rule {
        min-height: 0;
        padding: 24px 22px;
    }

    .challenge-rule-number {
        margin-bottom: 22px;
    }


    /* INVITATION */

    .challenge-invitation-grid {
        gap: 32px;
    }

    .challenge-invitation-copy .challenge-invitation-emphasis {
        font-size: 1.25rem;
    }


    /* FEATURED */

    .challenge-featured-grid {
        gap: 34px;
    }

    .challenge-featured-copy {
        padding: 26px 22px;
    }

    .challenge-featured-lead {
        font-size: 1.16rem;
    }


    /* FOLLOW */

    .challenge-follow-grid {
        grid-template-columns: 1fr;
    }

    .challenge-follow-card {
        min-height: 0;
        padding: 24px 22px;
    }


    /* LEARN */

    .challenge-learn-grid {
        gap: 35px;
    }

    .challenge-learn-copy {
        padding-top: 25px;
    }

    .challenge-learn-copy .challenge-learn-final {
        font-size: 1.16rem;
    }


    /* FINAL */

    .challenge-final {
        padding: 78px 0;
    }

    .challenge-final-actions {
        flex-direction: column;
    }


    /* FOOTER */

    .challenge-footer-inner {
        flex-direction: column;
        gap: 7px;
    }
}