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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #ffffff;
    color: #111111;

    min-height: 100vh;

    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}


/* HEADER */

.header {
    width: 100%;

    padding: 24px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 27px;
    font-weight: 800;

    letter-spacing: 0.2px;
}

.logo b {
    font-size: 19px;
    font-weight: 700;

    transform: translateY(-1px);
}

.status {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #777777;
    font-size: 14px;
}

.status span {
    width: 7px;
    height: 7px;

    background: #20c968;

    border-radius: 50%;
}


/* MAIN */

main {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 100px 24px 110px;
}


/* HERO */

.hero {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

h1 {
    font-size: clamp(52px, 8vw, 88px);

    line-height: 1.02;

    letter-spacing: -4px;

    font-weight: 850;
}

.hero h1 span {
    color: #999999;
}

.subtitle {
    max-width: 560px;

    margin: 30px auto 0;

    color: #707070;

    font-size: 18px;

    line-height: 1.7;
}


/* CREATE BOX */

.create-box {
    width: 100%;
    max-width: 680px;

    margin: 42px auto 0;

    padding: 8px;

    display: flex;

    gap: 8px;

    border: 1px solid #e5e5e5;

    border-radius: 18px;

    background: #fafafa;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.06);
}

input {
    flex: 1;

    min-width: 0;

    border: none;
    outline: none;

    background: transparent;

    padding: 16px;

    font-size: 15px;

    color: #111111;
}

input::placeholder {
    color: #aaaaaa;
}

button {
    border: none;

    background: #111111;
    color: #ffffff;

    padding: 0 24px;

    border-radius: 13px;

    font-size: 14px;
    font-weight: 650;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease;
}

button:hover {
    background: #292929;

    transform: translateY(-1px);
}

button:active {
    transform: scale(.98);
}


/* FEATURES */

.features {
    width: 100%;

    margin-top: 105px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.card {
    padding: 28px;

    border: 1px solid #ededed;

    border-radius: 20px;

    background: #ffffff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f3f3;

    border-radius: 13px;

    margin-bottom: 22px;

    font-size: 18px;
}

.card h3 {
    margin-bottom: 10px;

    font-size: 17px;

    line-height: 1.4;
}

.card p {
    color: #777777;

    font-size: 14px;

    line-height: 1.7;
}


/* FOOTER */

footer {
    width: 100%;

    border-top: 1px solid #eeeeee;

    padding: 40px 24px;

    text-align: center;
}

.footer-logo {
    margin-bottom: 18px;

    font-size: 18px;
    font-weight: 800;
}

.footer-logo span {
    margin-left: 5px;

    font-size: 14px;
}

.footer-links {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;

    flex-wrap: wrap;

    margin-bottom: 18px;
}

.footer-links a {
    color: #666666;

    font-size: 13px;

    transition: color .2s ease;
}

.footer-links a:hover {
    color: #111111;
}

.copyright {
    color: #aaaaaa;

    font-size: 12px;

    line-height: 1.6;
}


/* LEGAL PAGES */

.legal-page {
    padding-top: 65px;
}

.legal-content {
    max-width: 760px;

    margin: 0 auto;

    text-align: left;
}

.back {
    display: inline-block;

    margin-bottom: 42px;

    color: #777777;

    font-size: 14px;

    transition: color .2s ease;
}

.back:hover {
    color: #111111;
}

.legal-content h1 {
    font-size: clamp(42px, 7vw, 64px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.legal-date {
    margin-top: 18px;

    color: #999999;

    font-size: 13px;
}

.legal-section {
    margin-top: 52px;
}

.legal-section h2 {
    margin-bottom: 18px;

    font-size: 21px;

    line-height: 1.35;
}

.legal-section p {
    margin-bottom: 16px;

    color: #666666;

    font-size: 15px;

    line-height: 1.8;
}

.legal-section p:last-child {
    margin-bottom: 0;
}


/* MOBILE */

@media (max-width: 700px) {

    .header {
        padding: 20px;
    }

    main {
        padding:
            65px
            20px
            80px;
    }

    h1 {
        letter-spacing: -3px;

        font-size:
            clamp(
                48px,
                15vw,
                70px
            );
    }

    .subtitle {
        margin-top: 24px;

        font-size: 16px;

        line-height: 1.65;
    }

    .create-box {
        flex-direction: column;

        margin-top: 34px;
    }

    input {
        width: 100%;

        padding: 16px 14px;
    }

    button {
        width: 100%;

        min-height: 52px;
    }

    .features {
        grid-template-columns: 1fr;

        margin-top: 70px;

        gap: 14px;
    }

    .card {
        padding: 24px;
    }

    .legal-page {
        padding-top: 45px;
    }

    .legal-content h1 {
        letter-spacing: -2px;
    }

    .legal-section {
        margin-top: 42px;
    }

    .legal-section h2 {
        font-size: 19px;
    }

    .legal-section p {
        font-size: 14px;

        line-height: 1.75;
    }

    footer {
        padding:
            35px
            20px;
    }

    .footer-links {
        gap: 12px 20px;
    }
}