:root {
    --bg: #fff;
    --text: #141414;
    --muted: #6b6b6b;
    --yellow: #f4b000;
    --yellow-hover: #dfa300;
    --border: #e8e2d6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(244, 176, 0, 0.08), transparent 28%),
        var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content {
    width: 100%;
    max-width: 1040px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.content > * {
    flex: 0 0 auto;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 0;
    min-width: 0;
    max-width: 680px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    align-self: flex-start;
}

.brand img {
    width: 84px;
    height: auto;
    display: block;
    margin-left: -10px;
    margin-right: -6px;
}

.brand-name {
    font-size: clamp(30px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

h1 {
    margin: 0;
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.subtitle {
    margin: 0 0 14px 0;
    max-width: 500px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
}

.coming {
    font-size: 14px;
    color: var(--muted);
}

.card {
    flex: 0 0 380px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h2 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.card p {
    margin: 0 0 22px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

form.is-submitting button {
    opacity: 0.7;
    cursor: wait;
}

input {
    width: 100%;
    padding: 16px 17px;
    border: 1px solid #ddd4c2;
    border-radius: 12px;
    font: inherit;
    background: #fcfbf8;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(244, 176, 0, 0.12);
    background: #ffffff;
}

button {
    border: none;
    border-radius: 12px;
    padding: 16px 18px;
    background: var(--yellow);
    color: #111111;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(244, 176, 0, 0.22);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

button:hover {
    background: #efae08;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(223, 163, 0, 0.2);
}

.fineprint {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
}

.card-message {
    margin-top: 6px;
    padding: 16px 17px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.card-message.is-success {
    background: #f7f5ef;
    border: 1px solid var(--border);
    color: var(--text);
}

.card-message.is-error {
    background: #fff5f2;
    border: 1px solid #f0d1c7;
    color: #8a3b25;
}

@media (max-width: 1100px) {
    .container {
        padding: 32px;
    }

    .content {
        gap: 32px;
    }

    .left {
        max-width: 560px;
    }

    .card {
        flex-basis: 350px;
        padding: 22px;
    }
}

@media (max-width: 960px) {
    .content {
        flex-direction: column;
        align-items: center;
        gap: 44px;
    }

    .left {
        max-width: 720px;
        align-items: center;
        text-align: center;
    }

    .brand {
        align-self: center;
    }

    h1 {
        max-width: 100%;
        font-size: 44px;
    }

    .card {
        flex-basis: auto;
        width: min(460px, 100%);
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px;
    }

    .content {
        gap: 24px;
    }

    .brand-name {
        font-size: 30px;
    }

    .brand img {
        width: 72px;
    }

    h1 {
        font-size: 38px;
    }

    .card {
        padding: 20px;
    }
}
