/* ============================================================
   PREDICTCLASH HOME
   Clean competitive / editorial / orange-accent styling
   ============================================================ */

.home-hero {
    --pc-black: #181a1d;
    --pc-dark: #25282d;
    --pc-dark-soft: #34383f;

    --pc-orange: #ff0090;
    --pc-orange-dark: #ff0090;
    --pc-orange-soft: #fff0e3;

    --pc-white: #ffffff;
    --pc-paper: #f3f3f1;
    --pc-card: #ffffff;

    --pc-border: #d2d2ce;
    --pc-border-dark: #b6b6b1;

    --pc-text: #33363a;
    --pc-muted: #73767a;

    --pc-green: #2d8b57;

    width: 100%;
    max-width: 1120px;

    margin: 0 auto;

    /* no top padding */
    padding: 0 28px 58px;

    color: var(--pc-black);

    font-family:
            Arial,
            Helvetica,
            sans-serif;
}


/* ============================================================
   HEADING
   ============================================================ */

.home-heading {
    max-width: 920px;

    margin: 0 0 26px;
}


/* ============================================================
   KICKER
   ============================================================ */

.home-kicker {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin: 0 0 13px;

    color: #6d6e70;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.home-kicker-dot {
    width: 18px;
    height: 3px;

    background: #ff0090;

    transform: none;
}


/* ============================================================
   MAIN HEADING
   ============================================================ */

.home-heading h1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px;

    margin: 0;

    color: var(--pc-black);

    font-size: clamp(46px, 6.4vw, 72px);
    font-weight: 900;

    line-height: 0.96;

    letter-spacing: -0.055em;

    text-transform: uppercase;
}


/* ============================================================
   BETA LABEL
   ============================================================ */

.beta-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 9px;

    color: #ff0090;

    background: #ff0090;

    border: 1px solid #ff0090;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.12em;
    line-height: 1;

    text-transform: uppercase;
}


/* ============================================================
   HERO SLOGAN
   ============================================================ */

.home-intro-lead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin: 18px 0 0;

    color: #36383b;

    font-size: clamp(19px, 2.4vw, 24px);
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: -0.02em;
}


.home-intro-lead span {
    display: inline-flex;
    align-items: center;
}


.home-intro-lead span:not(:last-child)::after {
    content: "/";

    margin: 0 11px;

    color: #ff0090;

    font-weight: 900;

    opacity: 0.75;
}


/* ============================================================
   DESCRIPTION
   ============================================================ */

.home-description {
    max-width: 830px;

    margin: 0;

    color: var(--pc-muted);

    font-size: 16px;
    font-weight: 500;

    line-height: 1.72;
}


.home-description-main {
    margin: 0 0 30px;

    padding: 0 0 0 18px;

    color: #55585c;

    background: transparent;

    border: 0;
    border-left: 4px solid #ff0090;

    box-shadow: none;
}


/* ============================================================
   FREE PLAY NOTICE
   ============================================================ */

.free-notice {
    position: relative;

    display: grid;

    grid-template-columns: 56px minmax(0, 1fr);

    align-items: center;

    gap: 18px;

    max-width: 930px;

    margin: 30px 0 44px;

    padding: 22px 24px;

    color: #ffffff;

    background: var(--pc-black);

    border: 1px solid #0f1011;

    border-radius: 0;

    box-shadow:
            8px 8px 0 #d7d7d2;

    overflow: hidden;
}


.free-notice::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 7px;
    height: 100%;

    background: #ff0090;
}




/* ============================================================
   FREE NOTICE ICON
   ============================================================ */

.free-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    color: #ffffff;

    background: var(--pc-green);

    border: 0;

    border-radius: 50%;

    box-shadow: none;

    font-size: 21px;
    font-weight: 900;
}


.free-notice-content {
    min-width: 0;

    padding-right: 75px;
}


.free-notice-title {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 900;

    letter-spacing: -0.01em;

    text-transform: uppercase;
}


.free-notice-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    color: #b8bbbf;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;
}


.free-separator {
    color: #ff0090;

    font-size: 11px;
}


/* ============================================================
   SECTION HEADING
   ============================================================ */

.home-section-heading {
    display: flex;
    align-items: center;

    gap: 12px;

    max-width: 990px;

    margin: 0 0 17px;
}


.home-section-heading > span {
    color: #3b3d40;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    white-space: nowrap;
}


.home-section-line {
    flex: 1;

    height: 1px;

    background: #c7c7c3;
}


.home-section-line::before {
    display: none;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */

.home-how-it-works {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        34px
        minmax(0, 1fr)
        34px
        minmax(0, 1fr);

    align-items: stretch;

    max-width: 1000px;

    margin: 0 0 38px;
}


/* ============================================================
   STEP CARD
   ============================================================ */

.home-step {
    position: relative;

    min-width: 0;

    background: var(--pc-white);

    border: 1px solid var(--pc-border);

    border-radius: 0;

    box-shadow:
            5px 5px 0 #deded9;

    overflow: hidden;

    transition:
            transform 0.15s ease,
            box-shadow 0.15s ease;
}


.home-step:hover {
    transform: translate(-2px, -2px);

    box-shadow:
            8px 8px 0 #cacac4;
}


/* ============================================================
   STEP TOP
   ============================================================ */

.home-step-top {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 15px;

    background: #f0f0ed;

    border-bottom: 1px solid var(--pc-border);
}


.home-step-top::after {
    display: none;
}


/* ============================================================
   STEP NUMBER
   ============================================================ */

.home-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    color: #ffffff;

    background: var(--pc-black);

    border: 0;

    border-radius: 0;

    box-shadow: none;

    font-size: 14px;
    font-weight: 900;
}


.home-step-label {
    color: #686a6d;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* ============================================================
   STEP CONTENT
   ============================================================ */

.home-step-content {
    min-height: 135px;

    padding: 20px 18px 22px;
}


.home-step-content::before {
    display: none;
}


.home-step-content strong {
    display: block;

    margin: 0 0 8px;

    color: #222427;

    font-size: 18px;
    font-weight: 900;

    line-height: 1.25;

    letter-spacing: -0.02em;
}


.home-step-content span {
    display: block;

    color: #707276;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.58;
}


/* orange accent under title */

.home-step-content strong::after {
    content: "";

    display: block;

    width: 28px;
    height: 3px;

    margin-top: 9px;

    background: #ff0090;
}


/* ============================================================
   STEP ARROWS
   ============================================================ */

.home-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;

    color: #ff0090;

    font-size: 22px;
    font-weight: 900;
}


.home-step-arrow::before {
    display: none;
}


/* ============================================================
   BETA NOTICE
   ============================================================ */

.beta-notice {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    max-width: 900px;

    margin: 0;

    padding: 14px 16px;

    color: #64666a;

    background: #eeeeeb;

    border: 1px solid #d0d0cc;

    border-left: 4px solid var(--pc-black);

    border-radius: 0;

    box-shadow: none;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.6;
}


.beta-notice strong {
    color: #2d2f32;

    font-weight: 800;
}


.beta-notice-badge {
    flex: 0 0 auto;

    margin-top: 1px;

    padding: 5px 7px;

    color: #ffffff;

    background: #ff0090;

    border: 0;

    border-radius: 0;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.1em;
    line-height: 1;
}


/* ============================================================
   LOGO
   ============================================================ */

.welcome-logo {
    display: block;

    width: min(570px, 100%);
    height: auto;

    max-height: 160px;

    margin: 0 0 24px;

    object-fit: contain;
    object-position: left center;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 760px) {

    .home-hero {
        padding:
                0
                18px
                44px;
    }


    .home-heading h1 {
        font-size: clamp(40px, 11vw, 58px);
    }


    .home-intro-lead {
        font-size: 18px;
    }


    .home-how-it-works {
        display: flex;
        flex-direction: column;

        max-width: 620px;
    }


    .home-step-content {
        min-height: 0;
    }


    .home-step-arrow {
        width: 100%;
        height: 28px;

        transform: rotate(90deg);
    }


    .free-notice-content {
        padding-right: 0;
    }


    .free-notice::after {
        display: none;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .home-hero {
        padding:
                0
                13px
                36px;
    }


    .home-heading {
        margin-bottom: 21px;
    }


    .home-kicker {
        margin-bottom: 10px;

        font-size: 9px;
    }


    .home-kicker-dot {
        width: 14px;
    }


    .home-heading h1 {
        gap: 8px;

        font-size: 37px;

        line-height: 0.98;

        letter-spacing: -0.045em;
    }


    .beta-label {
        padding: 5px 7px;

        font-size: 8px;
    }


    .home-intro-lead {
        display: block;

        margin-top: 15px;

        font-size: 17px;

        line-height: 1.5;
    }


    .home-intro-lead span {
        display: block;
    }


    .home-intro-lead span:not(:last-child)::after {
        display: none;
    }


    .home-description {
        font-size: 14px;

        line-height: 1.7;
    }


    .home-description-main {
        margin-bottom: 24px;

        padding-left: 14px;
    }


    .free-notice {
        display: block;

        margin: 26px 0 36px;

        padding: 21px 17px;

        box-shadow:
                5px 5px 0 #d7d7d2;
    }


    .free-notice-icon {
        width: 43px;
        height: 43px;

        margin-bottom: 13px;

        font-size: 18px;
    }


    .free-notice-title {
        font-size: 15px;
    }


    .free-notice-text {
        display: block;

        font-size: 12px;
    }


    .free-notice-text span {
        display: block;

        margin: 2px 0;
    }


    .free-separator {
        display: none;
    }


    .home-section-heading > span {
        font-size: 9px;
    }


    .home-step-top {
        padding: 12px 13px;
    }


    .home-step-number {
        width: 34px;
        height: 34px;
    }


    .home-step-content {
        padding: 17px 15px 19px;
    }


    .home-step-content strong {
        font-size: 16px;
    }


    .home-step-content span {
        font-size: 12px;
    }


    .beta-notice {
        padding: 12px;

        font-size: 12px;
    }


    .welcome-logo {
        width: 100%;

        max-height: 120px;

        margin-bottom: 20px;
    }
}


/* ============================================================
   LEARN MORE
   ============================================================ */

.home-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 22px;
    padding: 10px 16px;

    color: #ffffff;
    background: var(--pc-black);
    border-left: 4px solid var(--pc-orange);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;

    transition: background-color 0.18s ease, transform 0.18s ease;
}

.home-learn-more:hover {
    background: var(--pc-dark-soft);
    transform: translateX(2px);
}

.home-learn-more:focus-visible {
    outline: 3px solid rgba(255, 0, 144, 0.3);
    outline-offset: 3px;
}

.home-learn-more span {
    color: var(--pc-orange);
    font-size: 18px;
    line-height: 1;
}
