@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/Manrope-cyrillic-ext.woff2') format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/Manrope-cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/Manrope-vietnamese.woff2') format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/Manrope-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/manrope/Manrope-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    color-scheme: light;
    --color-bg: #f9fafb;
    --color-card: #ffffff;
    --color-panel: #111827;
    --color-panel-deep: #1f2937;
    --color-text: #111827;
    --color-muted: #4b5563;
    --color-soft: #6b7280;
    --color-border: #e5e7eb;
    --color-yellow: #facc15;
    --color-yellow-strong: #eab308;
    --color-yellow-soft: #fef9c3;
    --shadow-card: 0 1px 2px rgba(17, 24, 39, 0.08);
    --focus-ring: 0 0 0 3px rgba(250, 204, 21, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--color-bg);
    font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
}

img,
svg {
    display: block;
}

button,
select {
    font: inherit;
}

.page {
    display: flex;
    min-height: 100vh;
    background: var(--color-bg);
}

.brand-panel {
    position: relative;
    display: none;
    flex: 1 1 0;
    overflow: hidden;
    background: var(--color-panel);
}

.brand-panel::before {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(135deg, #111827 0%, #111827 55%, #1f2937 100%);
    opacity: 0.9;
}

.brand-panel__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    color: #ffffff;
}

.brand-panel__main {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.brand-logo {
    width: 16rem;
    max-width: 100%;
    height: auto;
}

.brand-copy {
    display: grid;
    gap: 1rem;
}

.brand-title {
    max-width: 12ch;
    margin: 0;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.05;
}

.brand-subtitle {
    max-width: 17ch;
    margin: 0;
    color: var(--color-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-list {
    display: grid;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    color: #d1d5db;
    font-size: 1.125rem;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.125rem;
    color: var(--color-yellow);
}

.brand-footer {
    display: grid;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.content-panel {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1rem;
}

.content-inner {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

.mobile-logo {
    width: 12rem;
    height: auto;
    margin: 0 0 2.5rem;
}

.notice-card {
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
}

.notice-header {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.notice-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #fde68a;
    border-radius: 999px;
    background: var(--color-yellow-soft);
    color: #854d0e;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
}

.notice-kicker__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--color-yellow-strong);
}

.notice-title {
    margin: 0;
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
}

.notice-message {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.language-field {
    display: grid;
    gap: 0.5rem;
    margin-top: 2rem;
}

.language-label {
    display: block;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 700;
}

.language-select {
    display: block;
    width: 100%;
    min-height: 2.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #ffffff;
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.625rem 2.5rem 0.625rem 0.75rem;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.language-select:focus {
    border-color: var(--color-yellow-strong);
    box-shadow: var(--focus-ring);
    outline: none;
}

.bot-note,
.noscript-message {
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.bot-note__heading,
.noscript-message__heading {
    margin: 0 0 0.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 800;
}

.bot-note__copy,
.noscript-message__copy {
    margin: 0;
    color: var(--color-soft);
    font-size: 0.875rem;
    line-height: 1.6;
}

.for-bots {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: normal;
}

@media (min-width: 640px) {
    .content-panel {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .notice-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .brand-panel {
        display: block;
    }

    .content-panel {
        flex: 0 0 auto;
        width: 34rem;
        padding-right: 5rem;
        padding-left: 5rem;
    }

    .mobile-logo {
        display: none;
    }
}

@media (min-width: 1280px) {
    .content-panel {
        width: 40rem;
        padding-right: 6rem;
        padding-left: 6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
