/* =========================
   GLOBAL
   ========================= */

:root {
    --ink: #111111;
    --warm-white: #F7F6F2;
    --soft-grey: #EAEAE6;
    --green: #6F7967;
}

body {
    font-family: "Manrope", sans-serif;
    margin: 0;
    background-color: var(--warm-white);
    color: var(--ink);
}


/* =========================
   HERO
   ========================= */

.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 32px;
    max-width: 700px;
}
.hero h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
}

.hero button {
    margin-top: 20px;
    padding: 16px 28px;
    font-size: 16px;
    cursor: pointer;
}


/* =========================
   THE IDEA
   ========================= */

.beginner {
    padding: 100px 30px;
    text-align: center;
    background: var(--warm-white);
}

.beginner .section-label {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.beginner h2 {
    margin: 0 0 40px;
    font-size: 56px;
    line-height: 1.05;
}

.beginner-text {
    font-size: 20px;
    line-height: 1.6;
}

.beginner-text p {
    margin: 5px 0;
}

.beginner-rule {
    margin: 45px 0 0;
    font-size: 24px;
    font-weight: 700;
}
.beginner-rule {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}


/* =========================
   CATEGORIES
   ========================= */

.categories {
    padding: 110px 30px;
    background: var(--soft-grey);
    text-align: center;
}

.categories .section-label {
    margin: 0 0 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.categories > h2 {
    margin: 0 0 60px;
    font-size: 42px;
}

.category-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    text-align: left;
}

.category-card {
    min-height: 240px;
    padding: 30px;
    box-sizing: border-box;
    background: var(--warm-white);
    color: #111111;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-move {
    grid-column: span 7;
}

.category-learn {
    grid-column: span 5;
}

.category-create {
    grid-column: span 4;
}

.category-explore {
    grid-column: span 8;
}

.category-dare {
    grid-column: 3 / span 8;
}

.category-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.45;
    color: var(--green);
}

.category-card h3 {
    margin: auto 0 12px;
    font-size: 38px;
}

.category-card p {
    margin: 0 0 25px;
    max-width: 420px;
    font-size: 17px;
    line-height: 1.5;
}

.category-action,
.category-status {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.category-status {
    opacity: 0.4;
}

.surprise-button {
    margin-top: 55px;
    padding: 16px 30px;
    font-size: 16px;
    cursor: pointer;
}


/* =========================
   TRY PAGE
   ========================= */

.try-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.back-link {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.try-number {
    margin-top: 80px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.try-page h1 {
    font-size: 72px;
    margin: 10px 0 20px;
}

.try-intro {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 100px;
}

.try-section {
    max-width: 650px;
    margin-bottom: 100px;
}

.try-section h2 {
    font-size: 30px;
    margin-bottom: 35px;
}

.try-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.try-highlight {
    font-size: 26px !important;
    font-weight: bold;
    line-height: 1.4 !important;
    margin-top: 50px;
    padding-left: 25px;
    border-left: 4px solid #111111;
}


/* =========================
   PRACTICAL TRY CONTENT
   ========================= */

.section-label {
    font-size: 13px !important;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px !important;
    color: var(--green);
}

.practical {
    max-width: 800px;
}

.need-grid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.need-box {
    flex: 1;
    padding: 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.need-box h3 {
    margin-top: 0;
    font-size: 20px;
}

.need-box p {
    font-size: 16px;
    margin-bottom: 12px;
}

.try-note {
    padding: 25px;
    background-color: #f7f7f7;
}


/* =========================
   FIRST TRY STEPS
   ========================= */

.step {
    display: flex;
    gap: 25px;
    margin: 40px 0;
}

.step > span {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    padding-top: 4px;
}

.step h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.step p {
    margin: 0;
}


/* =========================
   VERDICT
   ========================= */

.verdict-grid {
    display: flex;
    gap: 15px;
    margin: 40px 0 50px;
}

.verdict-card {
    flex: 1;
    padding: 25px 20px;
    background-color: #f7f7f7;
    text-align: center;
    box-sizing: border-box;
}

.verdict-card span {
    font-size: 32px;
}

.verdict-card h3 {
    font-size: 16px;
    margin: 15px 0 8px;
}

.verdict-card p {
    font-size: 15px;
    margin: 0;
}


/* =========================
   SUGGEST A TRY
   ========================= */

.suggest {
    padding: 100px 30px;
    text-align: center;
}

.suggest h2 {
    font-size: 42px;
    margin: 10px 0 20px;
}

.suggest-intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

#try-form {
    display: flex;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

#try-input {
    flex: 1;
    padding: 18px;
    font-size: 17px;
    border: 1px solid #111111;
    box-sizing: border-box;
}

#try-form button {
    padding: 18px 28px;
    font-size: 15px;
    font-weight: bold;
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    cursor: pointer;
}

.suggest-note {
    margin-top: 18px;
    font-size: 14px;
}

.privacy-note {
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.55;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    /* HERO */

    .hero {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 18px;
    }


    /* THE IDEA */

    .beginner {
        padding: 80px 20px;
    }

    .beginner h2 {
        font-size: 38px;
    }

    .beginner-text {
        font-size: 18px;
    }

    .beginner-rule {
        margin-top: 35px;
        font-size: 21px;
    }


    /* CATEGORIES */

    .categories {
        padding: 80px 20px;
    }

    .categories > h2 {
        margin-bottom: 40px;
        font-size: 32px;
    }

    .category-grid {
        display: block;
    }

    .category-card {
        min-height: 210px;
        margin-bottom: 16px;
        padding: 25px;
    }

    .category-card h3 {
        font-size: 32px;
    }

    .category-card p {
        font-size: 16px;
    }

    .categories .surprise-button {
        margin-top: 30px;
    }


    /* TRY PAGE */

    .try-page {
        padding: 30px 20px 70px;
    }

    .try-number {
        margin-top: 60px;
    }

    .try-page h1 {
        font-size: 48px;
    }

    .try-intro {
        font-size: 22px;
        margin-bottom: 70px;
    }

    .try-section h2 {
        font-size: 26px;
    }

    .try-section p {
        font-size: 17px;
    }

    .try-highlight {
        font-size: 22px !important;
    }


    /* PRACTICAL CONTENT */

    .need-grid {
        flex-direction: column;
    }

    .step {
        gap: 18px;
    }


    /* VERDICT */

    .verdict-grid {
        flex-direction: column;
    }

    .verdict-card {
        width: 100%;
    }


    /* SUGGEST A TRY */

    .suggest {
        padding: 70px 20px;
    }

    .suggest h2 {
        font-size: 32px;
    }

    .suggest-intro {
        font-size: 18px;
    }

    #try-form {
        flex-direction: column;
        gap: 10px;
    }

    #try-form button {
        width: 100%;
    }
}
