* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.home-page {
    --primary: #0b63d6;
    --primary-700: #0753b0;
    --primary-soft: #dbeafe;
    --text: #1f2937;
    --text-soft: #5f6f86;
    --surface: #ffffff;
    --surface-alt: #f4f8ff;
    --border: rgba(11, 99, 214, 0.14);
    --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.14);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(100rem 60rem at -12% -18%, rgba(11, 99, 214, 0.16), transparent 60%),
        radial-gradient(95rem 55rem at 112% 115%, rgba(7, 83, 176, 0.13), transparent 60%),
        linear-gradient(165deg, #f2f6fd 0%, #f7f9fd 100%);
}

.home-page a {
    color: inherit;
}

.site-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(247, 250, 255, 0.82);
    border-bottom: 1px solid rgba(11, 99, 214, 0.08);
    animation: slideDown .55s ease both;
}

.header-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(145deg, var(--primary), var(--primary-700));
    box-shadow: 0 10px 22px rgba(11, 99, 214, 0.28);
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 15px;
    letter-spacing: -0.15px;
}

.brand-text small {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: color-mix(in srgb, var(--primary) 30%, var(--text) 70%);
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.home-page .login-btn,
.home-page .btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    cursor: pointer;
}

.home-page .login-btn {
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--border);
    color: var(--primary-700);
    background: var(--surface);
}

.home-page .login-btn:hover {
    background: var(--primary-soft);
    transform: translateY(-1px);
}

.home-page .btn {
    min-height: 46px;
    padding: 11px 20px;
    color: #fff;
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.home-page .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

.home-page .btn.btn-register {
    background: linear-gradient(145deg, #0f72dc, #0a57b8);
    box-shadow: 0 12px 28px rgba(10, 87, 184, 0.28);
}

.home-page .btn.btn-register:hover {
    box-shadow: 0 16px 34px rgba(10, 87, 184, 0.34);
}

.home-page .btn.btn-employer {
    background: linear-gradient(145deg, #1e88ad, #176c8f);
    box-shadow: 0 12px 28px rgba(23, 108, 143, 0.26);
}

.home-page .btn.btn-employer:hover {
    box-shadow: 0 16px 34px rgba(23, 108, 143, 0.33);
}

.home-page .btn.btn-ghost {
    color: #1e4ea7;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: none;
}

.home-page .btn.btn-ghost:hover {
    background: var(--primary-soft);
    box-shadow: none;
}

.hero {
    position: relative;
    padding: clamp(44px, 7vw, 86px) 0 48px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: rgba(11, 99, 214, 0.12);
    top: -140px;
    right: 7%;
}

.hero::after {
    width: 260px;
    height: 260px;
    background: rgba(11, 99, 214, 0.09);
    bottom: -120px;
    left: -80px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 22px;
    align-items: stretch;
}

.hero-copy {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(11, 99, 214, 0.1);
    border-radius: 22px;
    padding: clamp(26px, 3vw, 36px);
    box-shadow: var(--shadow-soft);
}

.hero-copy > * {
    opacity: 0;
    transform: translateY(10px);
    animation: riseIn .55s ease forwards;
}

.hero-kicker { animation-delay: .08s; }
.hero-copy h1 { animation-delay: .16s; }
.hero-subtitle { animation-delay: .24s; }
.hero-actions { animation-delay: .32s; }
.hero-metrics { animation-delay: .4s; }

.hero-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: color-mix(in srgb, var(--primary) 52%, #475569 48%);
}

.hero-copy h1 {
    margin-top: 8px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(32px, 5.2vw, 54px);
    line-height: 1.06;
    letter-spacing: -1.2px;
    color: #0f172a;
}

.hero-subtitle {
    margin-top: 12px;
    max-width: 52ch;
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
}

.hero-actions .btn {
    width: 100%;
}

.hero-actions .hero-text-link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-700);
    text-decoration: none;
    border-bottom: 1px dashed rgba(7, 83, 176, 0.4);
    transition: color .2s ease, border-color .2s ease;
}

.hero-actions .hero-text-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.hero-metrics {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.metric-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
}

.metric-card h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-700);
}

.metric-card p {
    margin-top: 3px;
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.hero-panel {
    border-radius: 22px;
    border: 1px solid rgba(11, 99, 214, 0.18);
    padding: clamp(20px, 2.5vw, 28px);
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-700) 70%, #0656b3 100%);
    color: #edf4ff;
    box-shadow: 0 18px 40px rgba(7, 83, 176, 0.28);
    animation: riseIn .6s ease .2s both;
}

.hero-panel h2 {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 1.15;
}

.hero-panel > p {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(237, 244, 255, 0.88);
}

.panel-list {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.panel-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 9px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    line-height: 1.45;
}

.panel-list span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.panel-link {
    display: inline-flex;
    margin-top: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}

.panel-link:hover {
    border-bottom-color: #fff;
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    padding: 18px;
}

.login-modal.is-open {
    display: grid;
    place-items: center;
}

.login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(2px);
}

.login-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    border-radius: 20px;
    border: 1px solid rgba(11, 99, 214, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.24);
    padding: 24px;
}

.login-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #274a7d;
    background: #eaf2ff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.login-modal__close:hover {
    background: #dbeafe;
    color: #1d4ed8;
    transform: scale(1.04);
}

.login-modal__close svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.login-modal__header {
    margin-bottom: 14px;
    padding-right: 56px;
}

.login-modal__header p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-weight: 700;
    color: #5f7ca8;
}

.login-modal__header h2 {
    margin: 4px 0 6px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.16;
    letter-spacing: -0.6px;
    color: #12243f;
}

.login-modal__header span {
    display: block;
    font-size: 14px;
    color: #61728a;
}

.login-modal .login-message {
    display: none;
    margin: 0 0 12px;
    padding: 9px 11px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.login-modal .login-message.is-visible {
    display: block;
}

.login-modal .login-message.success {
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.28);
    background: rgba(16, 185, 129, 0.1);
}

.login-modal .login-message.error {
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.24);
    background: rgba(239, 68, 68, 0.1);
}

.login-modal .form-group {
    margin-bottom: 14px;
}

.login-modal .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    color: #314560;
}

.login-modal .form-group input {
    width: 100%;
    height: 48px;
    padding: 0 13px;
    border: 1.5px solid #d8e4f4;
    border-radius: 12px;
    background: #fbfdff;
    color: #1f2937;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.login-modal .form-group input::placeholder {
    color: #8b9cb5;
}

.login-modal .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 99, 214, 0.14);
    background: #ffffff;
}

.login-modal .form-group input[readonly] {
    background: #f3f7fe;
    color: #61728a;
    cursor: not-allowed;
}

.login-modal .form-group .form-helper {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.4;
    color: #6d7f98;
}

.login-modal .password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-modal .password-wrapper input {
    padding-right: 46px;
}

.login-modal .toggle-password {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #8296b3;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}

.login-modal .toggle-password:hover {
    background: #eef4fd;
    color: var(--primary);
}

.login-modal .toggle-password:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 99, 214, 0.15);
}

.login-modal .eye-icon,
.login-modal .eye-off-icon {
    width: 19px;
    height: 19px;
}

.login-modal .remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 2px 0 14px;
}

.login-modal .checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-modal .checkbox-wrapper input {
    width: 15px;
    height: 15px;
}

.login-modal .checkbox-wrapper label {
    font-size: 13px;
    color: #4d627f;
}

.login-modal .remember-forgot span {
    font-size: 12px;
    color: #6d7f98;
}

.login-modal .dev-auth-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin: 2px 0 12px;
    padding-top: 2px;
}

.login-modal .dev-auth-toggle[hidden] {
    display: none;
}

.login-modal .dev-auth-toggle span {
    font-size: 12px;
    color: #4f6280;
}

.login-modal .dev-auth-toggle__button {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: #0b63d6;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.2px;
    transition: color .2s ease, text-decoration-thickness .2s ease;
}

.login-modal .dev-auth-toggle__button:hover {
    color: #0753b0;
    text-decoration-thickness: 1.8px;
}

.login-modal .dev-auth-toggle__button:active {
    color: #064892;
}

.login-modal .dev-auth-toggle__button:focus,
.login-modal .dev-auth-toggle__button:focus-visible {
    outline: none;
    text-decoration-thickness: 2px;
}

.login-modal__submit {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    background: linear-gradient(145deg, #0f72dc, #0a57b8);
    box-shadow: 0 12px 28px rgba(10, 87, 184, 0.26);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.login-modal__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(10, 87, 184, 0.34);
}

.login-modal__submit:disabled {
    opacity: 0.78;
    cursor: wait;
}

.applicant-modal {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: none;
    padding: 18px;
}

.applicant-modal.is-open {
    display: grid;
    place-items: center;
}

.applicant-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(2px);
}

.applicant-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    height: min(92vh, 900px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(11, 99, 214, 0.24);
    background: #f4f8ff;
    box-shadow: 0 30px 78px rgba(15, 23, 42, 0.28);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.applicant-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(11, 99, 214, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.applicant-modal__head h2 {
    margin: 0;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #13305a;
}

.applicant-modal__close {
    border: 0;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    padding: 0;
    color: #234a83;
    background: #eaf2ff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.applicant-modal__close:hover {
    background: #dbeafe;
    color: #1d4ed8;
    transform: scale(1.04);
}

.applicant-modal__close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.applicant-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: #f3f7fe;
}

.section {
    padding: clamp(44px, 8vw, 88px) 0;
}

.section-head {
    text-align: center;
    margin-bottom: 26px;
}

.section-head > p,
.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: color-mix(in srgb, var(--primary) 52%, #475569 48%);
}

.section-head h2,
.about-copy h2,
.cta h2 {
    margin-top: 8px;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.8px;
    color: #0f172a;
}

.features {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    border: 1px solid rgba(11, 99, 214, 0.12);
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease;
    opacity: 0;
    transform: translateY(12px);
    animation: riseIn .55s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: .05s; }
.feature-card:nth-child(2) { animation-delay: .11s; }
.feature-card:nth-child(3) { animation-delay: .17s; }
.feature-card:nth-child(4) { animation-delay: .23s; }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    color: var(--primary-700);
    background: var(--primary-soft);
    border: 1px solid rgba(11, 99, 214, 0.18);
}

.feature-card h3 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: #0f172a;
}

.feature-card p {
    margin-top: 7px;
    font-size: 14px;
    color: var(--text-soft);
}

.about {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 18px;
    align-items: stretch;
}

.about-copy {
    border-radius: 20px;
    border: 1px solid rgba(11, 99, 214, 0.11);
    background: #fff;
    padding: clamp(22px, 2.8vw, 30px);
    box-shadow: var(--shadow-soft);
}

.about-copy p {
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.72;
}

.about-pills {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-pills span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-700);
    border: 1px solid rgba(11, 99, 214, 0.16);
    background: var(--primary-soft);
}

.about-card {
    border-radius: 20px;
    padding: clamp(20px, 2.6vw, 28px);
    border: 1px solid rgba(11, 99, 214, 0.18);
    color: #eaf2ff;
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-700) 100%);
    box-shadow: 0 16px 34px rgba(7, 83, 176, 0.26);
}

.about-card h3 {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.about-card ul {
    margin-top: 14px;
    padding-left: 18px;
    display: grid;
    gap: 7px;
}

.about-card li {
    font-size: 14px;
    color: rgba(234, 242, 255, 0.94);
}

.cta {
    padding-top: 34px;
}

.cta-shell {
    border: 1px solid rgba(11, 99, 214, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 247, 255, 0.9) 100%);
    border-radius: 22px;
    padding: clamp(24px, 3.2vw, 34px);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
}

.cta-shell p {
    margin-top: 8px;
    font-size: 15px;
    color: var(--text-soft);
    max-width: 56ch;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer {
    margin-top: 44px;
    border-top: 1px solid rgba(11, 99, 214, 0.09);
    background: rgba(255, 255, 255, 0.74);
}

.site-footer .site-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer p {
    font-size: 13px;
    color: #61728a;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1060px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .cta-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(1160px, calc(100% - 24px));
    }

    .header-shell {
        min-height: 82px;
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .site-nav {
        width: 100%;
        order: 3;
        justify-content: space-around;
        gap: 10px;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-copy h1 {
        letter-spacing: -0.8px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .home-page .btn,
    .home-page .btn.btn-ghost {
        width: 100%;
    }

    .login-modal {
        padding: 12px;
    }

    .applicant-modal {
        padding: 10px;
    }

    .login-modal__dialog {
        border-radius: 16px;
        padding: 20px 16px 16px;
    }

    .applicant-modal__dialog {
        width: min(1220px, calc(100vw - 20px));
        height: min(94vh, 900px);
        border-radius: 14px;
    }

    .applicant-modal__head {
        padding: 10px 12px;
    }

    .applicant-modal__head h2 {
        font-size: 16px;
    }

    .login-modal__close {
        top: 10px;
        right: 10px;
    }

    .login-modal .remember-forgot {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
    }
}
