* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: #050505;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background:
        radial-gradient(circle at 70% 45%, rgba(115, 72, 13, .26), transparent 38%),
        radial-gradient(circle at 18% 50%, rgba(75, 43, 8, .16), transparent 34%),
        #050403;
    overflow: hidden;
}

.hero-content {
    width: min(1800px, 100%);
    margin: auto;
    min-height: 100vh;
    padding: clamp(30px, 4vw, 70px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(310px, .78fr) minmax(500px, 1.65fr);
    gap: clamp(15px, 3vw, 60px);
    align-items: center;
}

.coming-panel {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #d7a53e;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .82rem;
    font-weight: 700;
}

.coming-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: .87;
}

.coming-title span,
.coming-title strong {
    display: block;
}

.coming-title span {
    color: #d5a03e;
    font-size: clamp(4rem, 7vw, 8.2rem);
    font-weight: 400;
}

.coming-title strong {
    color: #fff;
    font-size: clamp(5rem, 9vw, 10rem);
    font-weight: 400;
}

.crown-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d6a33c;
    margin: 28px 0 25px;
}

.crown-divider span {
    height: 1px;
    background: #b47e1c;
    flex: 1;
}

.crown-divider b {
    font-size: 1.2rem;
}

.hero-copy {
    color: #ece7df;
    font-size: clamp(1.15rem, 1.65vw, 1.7rem);
    line-height: 1.55;
    max-width: 450px;
    margin: 0 0 30px;
}

.notify-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 72px;
    padding: 0 42px;
    border: 1px solid #f4d478;
    border-radius: 6px;
    background: linear-gradient(90deg, #d59b2c, #ffe28a 50%, #d29a2d);
    color: #171006;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .07em;
    box-shadow: 0 8px 28px rgba(202, 145, 37, .15);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

.notify-button:hover,
.notify-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(230, 173, 61, .28);
}

.brand-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-logo {
    display: block;
    width: min(1080px, 100%);
    max-height: 92vh;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(0,0,0,.7));
}

.form-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px 70px;
    background:
        radial-gradient(circle at 50% 25%, rgba(120, 74, 11, .28), transparent 42%),
        #050403;
}

.form-card {
    width: min(620px, 100%);
    padding: clamp(28px, 5vw, 55px);
    border: 1px solid rgba(215, 165, 62, .42);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(24,18,10,.96), rgba(7,6,4,.98));
    box-shadow: 0 20px 70px rgba(0,0,0,.55);
}

.form-card h1 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    color: #f1d178;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
}

.form-intro,
.result-card p {
    color: #ddd6cc;
    line-height: 1.65;
    font-size: 1.08rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #cfaa54;
    text-decoration: none;
}

.notify-form {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.notify-form label {
    margin-top: 10px;
    color: #eee7db;
    font-weight: 700;
}

.notify-form label span {
    color: #d6a33c;
}

.notify-form input {
    width: 100%;
    min-height: 54px;
    padding: 12px 15px;
    border: 1px solid #554527;
    border-radius: 5px;
    background: #0d0c09;
    color: #fff;
    font: inherit;
    outline: none;
}

.notify-form input:focus {
    border-color: #d6a33c;
    box-shadow: 0 0 0 3px rgba(214,163,60,.12);
}

.submit-button {
    border: 1px solid #f4d478;
    margin-top: 20px;
    width: 100%;
}

.privacy-note {
    margin: 8px 0 0;
    color: #8e887f;
    font-size: .82rem;
    line-height: 1.5;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.result-card {
    text-align: center;
}

.result-card .notify-button {
    margin-top: 18px;
}

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding: 9px 18px;
    text-align: center;
    color: rgba(255,255,255,.45);
    font-size: .75rem;
    pointer-events: none;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 950px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coming-panel {
        max-width: 700px;
        margin: auto;
    }

    .hero-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .brand-panel {
        order: -1;
    }

    .hero-logo {
        max-height: 52vh;
    }

    .coming-title span {
        font-size: clamp(3.2rem, 12vw, 6rem);
    }

    .coming-title strong {
        font-size: clamp(4rem, 15vw, 7rem);
    }
}

@media (max-width: 520px) {
    .hero-content {
        padding: 24px 18px 65px;
    }

    .notify-button {
        min-height: 62px;
        padding: 0 28px;
        font-size: 1rem;
    }

    .hero-copy {
        font-size: 1.05rem;
    }

    .form-card {
        padding: 28px 20px;
    }
}
