:root {
    --univermy-blue: #02119f;
    --univermy-yellow: #efff38;
    --ink: #101322;
    --muted: #687086;
    --line: #dfe3ee;
    --surface: #ffffff;
    --soft: #f5f7fc;
    --danger: #a11a2b;
    --success: #176b3a;
    --shadow: 0 22px 70px rgba(2, 17, 159, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(239, 255, 56, 0.28), transparent 26rem),
        linear-gradient(135deg, #f8f9ff 0%, #eef1fb 100%);
}

button, input, select, textarea { font: inherit; }

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
    background: var(--surface);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(2, 17, 159, 0.97), rgba(2, 10, 98, 0.98)),
        var(--univermy-blue);
    overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-panel::before {
    width: 300px;
    height: 300px;
    right: -165px;
    top: 110px;
    border: 58px solid rgba(239, 255, 56, 0.12);
}

.hero-panel::after {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: 50px;
    background: rgba(239, 255, 56, 0.08);
}

.brand,
.hero-copy,
.benefits,
.tagline { position: relative; z-index: 1; }

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--univermy-blue);
    background: var(--univermy-yellow);
    font-weight: 900;
    font-size: 28px;
}

.brand div { display: grid; line-height: 1; }
.brand strong { font-size: 23px; letter-spacing: 0.06em; }
.brand span:last-child { margin-top: 6px; font-size: 11px; letter-spacing: 0.3em; opacity: 0.82; }

.hero-copy { margin: 110px 0 46px; }
.eyebrow,
.step-label {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.19em;
    font-weight: 800;
}
.eyebrow { color: var(--univermy-yellow); }
.hero-copy h1 { margin: 0; max-width: 530px; font-size: clamp(34px, 4vw, 54px); line-height: 1.02; letter-spacing: -0.045em; }
.hero-copy p:last-child { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.65; }

.benefits { display: grid; gap: 16px; margin-top: auto; }
.benefits div { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,0.9); }
.benefits span { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--univermy-blue); background: var(--univermy-yellow); font-weight: 900; }
.tagline { margin: 54px 0 0; color: var(--univermy-yellow); font-weight: 800; font-size: 18px; }

.form-panel { padding: 48px clamp(28px, 5vw, 66px) 54px; background: #fff; }
.form-heading { margin-bottom: 34px; }
.step-label { color: var(--univermy-blue); }
.form-heading h2 { margin: 0; font-size: clamp(29px, 3vw, 40px); letter-spacing: -0.035em; }
.form-heading p:last-child { margin: 12px 0 0; color: var(--muted); }

fieldset { margin: 0 0 30px; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: 800; font-size: 17px; }
.grid { display: grid; gap: 20px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 8px; }
.full-width { margin-top: 20px; }
label { font-size: 14px; font-weight: 750; }
small, .form-note { color: var(--muted); font-size: 12px; line-height: 1.5; }

input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
input, select { min-height: 48px; padding: 0 14px; }
textarea { resize: vertical; min-height: 118px; padding: 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--univermy-blue); box-shadow: 0 0 0 4px rgba(2,17,159,0.09); }
input::placeholder, textarea::placeholder { color: #a0a6b7; }

.check-row { display: flex; align-items: flex-start; gap: 11px; margin: 15px 0; font-weight: 500; line-height: 1.45; }
.check-row input { width: 19px; min-height: 19px; height: 19px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--univermy-blue); }
.check-row a { color: var(--univermy-blue); font-weight: 750; }
.legal { margin-top: 22px; }

.submit-button {
    width: 100%;
    min-height: 56px;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--univermy-blue);
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, opacity .2s;
}
.submit-button:hover { transform: translateY(-1px); box-shadow: 0 13px 30px rgba(2,17,159,0.24); }
.submit-button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-note { margin: 14px 0 0; text-align: center; }

.message { margin: 0 0 26px; padding: 15px 17px; border-radius: 12px; line-height: 1.5; font-weight: 650; }
.message.success { color: var(--success); background: #eaf8ef; border: 1px solid #bde6ca; }
.message.error { color: var(--danger); background: #fff0f2; border: 1px solid #f1c3ca; }

.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 920px) {
    .page-shell { width: min(100% - 20px, 720px); grid-template-columns: 1fr; margin: 10px auto; border-radius: 20px; }
    .hero-panel { min-height: auto; padding: 30px 26px 34px; }
    .hero-copy { margin: 58px 0 34px; }
    .benefits { margin-top: 0; }
    .tagline { margin-top: 36px; }
    .form-panel { padding: 34px 24px 42px; }
}

@media (max-width: 620px) {
    .two-columns { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 38px; }
    .brand strong { font-size: 20px; }
}
