:root {
    --blue: #2e368f;
    --blue-dark: #20266d;
    --yellow: #fedc00;
    --ink: #11172d;
    --muted: #6d7181;
    --line: #dfe2ea;
    --paper: #f5f6fa;
    --danger: #c93c4b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
button, input { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
.site-shell { min-height: 100vh; overflow: hidden; }
.topbar { height: 94px; max-width: 1440px; margin: 0 auto; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; }
.brand img { display: block; width: 192px; height: auto; }
.language-switch { display: flex; gap: 4px; padding: 4px; border: 1px solid #d7d9e2; background: #fff; border-radius: 999px; }
.language-switch a { display: grid; place-items: center; min-width: 52px; height: 34px; padding: 0 12px; border-radius: 999px; color: #666a78; text-decoration: none; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.language-switch a.active { color: white; background: var(--blue); }
.hero { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, 620px); gap: clamp(46px, 7vw, 110px); align-items: center; min-height: calc(100vh - 150px); max-width: 1440px; margin: 0 auto; padding: 72px 5vw 94px; }
.hero::before { content: ""; position: absolute; z-index: -2; width: 500px; height: 500px; left: -310px; bottom: -210px; border: 1px solid rgba(46,54,143,.16); border-radius: 50%; box-shadow: 0 0 0 72px rgba(46,54,143,.03), 0 0 0 144px rgba(46,54,143,.025); }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 2% -28% 2% 58%; background: var(--blue); transform: skewX(-8deg); }
.hero-copy { max-width: 700px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 27px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 3px; background: var(--yellow); }
h1 { margin: 0; max-width: 720px; color: var(--blue-dark); font-size: clamp(39px, 4.2vw, 68px); line-height: 1.02; letter-spacing: -.052em; font-weight: 800; overflow-wrap: anywhere; }
.hero-copy > p { max-width: 580px; margin: 30px 0 26px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.availability { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 13px; }
.availability i { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 5px rgba(254,220,0,.2); }
.availability.is-closed { color: #7a2933; }
.availability.is-closed i { background: #d94b5a; box-shadow: 0 0 0 5px rgba(217,75,90,.14); }
.registration-card { position: relative; width: 100%; min-height: 430px; padding: clamp(30px, 4vw, 54px); background: #fff; box-shadow: 0 28px 90px rgba(13,19,74,.26); }
.registration-card::before { content: ""; position: absolute; top: 0; left: 0; width: 118px; height: 6px; background: var(--yellow); }
.card-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.card-heading > div { display: flex; align-items: baseline; gap: 13px; }
.step { color: #a58d00; font-size: 13px; font-weight: 800; }
h2 { margin: 0; color: var(--blue); font-size: 27px; line-height: 1.25; letter-spacing: -.03em; }
.card-heading p { margin: 0; color: #888b98; font-size: 11px; white-space: nowrap; }
.card-heading p b { color: #e14a55; }
form { padding-top: 28px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 23px 20px; }
label { display: grid; gap: 9px; }
label.wide { grid-column: 1 / -1; }
label span { color: #4a4e5d; font-size: 12px; font-weight: 700; }
input { width: 100%; height: 46px; padding: 0 13px; border: 0; border-bottom: 1px solid #c9ccd7; border-radius: 0; outline: none; color: var(--ink); background: #fafbfc; transition: border-color .2s, box-shadow .2s, background .2s; }
input:focus { border-color: var(--blue); background: #fff; box-shadow: inset 0 -2px var(--blue); }
.has-error input { border-color: var(--danger); background: #fff8f8; }
.has-error small { color: var(--danger); font-size: 11px; line-height: 1.4; }
.submit-button { width: 100%; height: 58px; margin-top: 34px; padding: 0 22px; border: 0; display: flex; align-items: center; justify-content: space-between; color: #161a29; background: var(--yellow); font-weight: 800; transition: transform .2s, box-shadow .2s; }
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(254,220,0,.28); }
.submit-button:focus-visible, .language-switch a:focus-visible, .text-link:focus-visible { outline: 3px solid rgba(254,220,0,.75); outline-offset: 3px; }
.submit-button:disabled { opacity: .65; cursor: wait; transform: none; }
.submit-button span:last-child { font-size: 22px; }
.privacy-note { margin: 16px 0 0; text-align: center; color: #8d909c; font-size: 10px; line-height: 1.5; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { margin: 22px 0 0; padding: 13px 15px; border-left: 4px solid var(--danger); color: #842d37; background: #fff2f3; font-size: 13px; line-height: 1.5; }
.success-state, .closed-state { min-height: 320px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.success-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 28px; border-radius: 50%; color: var(--blue); background: var(--yellow); font-size: 28px; font-weight: 900; }
.success-state h2, .closed-state h2 { max-width: 440px; margin-top: 12px; font-size: clamp(27px, 3vw, 38px); }
.success-state p, .closed-state p { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.text-link { margin-top: 28px; color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: none; }
footer { max-width: 1440px; margin: 0 auto; padding: 21px 5vw 32px; display: flex; justify-content: space-between; color: #8c8f9c; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
footer span:first-child { color: var(--blue); font-weight: 800; }
@media (max-width: 1050px) {
    .hero { grid-template-columns: 1fr; gap: 54px; padding-top: 48px; }
    .hero::after { inset: 45% -40% -4% 28%; transform: skewX(-5deg); }
    .hero-copy { max-width: 820px; }
    .registration-card { max-width: 700px; justify-self: center; }
}
@media (max-width: 620px) {
    .topbar { height: 78px; padding: 0 20px; }
    .brand img { width: 152px; }
    .language-switch a { min-width: 44px; padding: 0 8px; }
    .hero { min-height: 0; padding: 43px 20px 70px; }
    .hero::after { inset: 39% -80% -3% 12%; }
    h1 { font-size: clamp(35px, 11vw, 48px); }
    .hero-copy > p { font-size: 15px; }
    .registration-card { min-height: 0; padding: 30px 22px; }
    .card-heading { display: block; }
    .card-heading p { margin-top: 12px; white-space: normal; }
    .field-grid { grid-template-columns: 1fr; gap: 18px; }
    label.wide { grid-column: auto; }
    footer { padding-inline: 20px; gap: 16px; }
    footer span:last-child { text-align: right; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

