/* ---------- reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #E6EAF0;
    background-color: #0A0E14;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* ---------- background image layer ---------- */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: #0A0E14;
    background-image: url('../images/bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.full-wrapper-holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
    overflow: auto;
    max-width: 1080px;
    margin: 0 auto;
}

/* ---------- header ---------- */
.site-header {
    width: 100%;
    padding: 22px 32px;
}

.header-status {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #C7CCD4;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C7CCD4;
}

.status-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    display: inline-block;
}

/* ---------- layout ---------- */
.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 32px 80px;
}

/* ---------- hero ---------- */
.hero {
    margin-bottom: 56px;
}

.eyebrow {
    color: #5B9BF8;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.title {
    font-size: clamp(34px, 5.2vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.title .blue_text_holder, 
.blue_text_holder {
    color: #5B9BF8;
}

.lede {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
    margin: 18px 0 0;
    max-width: 560px;
}

/* ---------- cards ---------- */
.portals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: #151B22;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s;
}

.company-card.card::after {
    background: radial-gradient(circle at 85% 0%, rgba(45, 95, 245, 0.22), transparent 60%);
}

.trainee-card.card::after {
    background: radial-gradient(circle at 85% 0%, rgba(9,116,242,0.22), transparent 60%);
}

.student-card.card::after {
    background: radial-gradient(circle at 85% 0%, rgba(108,43,217,0.22), transparent 60%);
}

.card:hover::after {
    opacity: 0.5;
}

.card-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(59, 130, 246, 0.12);
    color: #5B9BF8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.card-icon-box svg {
    width: 26px;
    height: 26px;
}

.company-card .card-icon-box {
    background: rgba(45, 95, 245, 0.16);
}

.trainee-card .card-icon-box {
    background: rgba(9, 116, 242, 0.16);
    color: #3FA0F5;
}

.student-card .card-icon-box {
    background: rgba(108, 43, 217, 0.18);
    color: #A983F0;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.card-kicker {
    font-size: 12px;
    font-weight: 600;
    color: #5B9BF8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.trainee-card .card-kicker {
    color: #3FA0F5;
}

.student-card .card-kicker {
    color: #A983F0;
}

.card-body {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 14px 0 0;
    flex: 1;
}

.card-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 0 16px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #C7CCD4;
}

.card-features li svg {
    width: 15px;
    height: 15px;
    color: #5B9BF8;
}

.trainee-card .card-features li svg {
    color: #3FA0F5;
}

.student-card .card-features li svg {
    color: #A983F0;
}

.card-features li .content {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.18);
    color: #3B82F6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enter-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.enter-link:hover {
    color: #3B82F6;
    gap: 9px;
}

.enter-link svg {
    transition: transform 0.15s ease;
}

.enter-link:hover svg {
    transform: translate(1px, -1px);
}

/* ---------- footer ---------- */
.site-footer {
    width: 100%;
    margin: 0 auto;
    padding: 0 32px 32px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.copyright,
.footer-note {
    font-size: 12.5px;
    color: #6B7280;
}

.footer-note {
    text-align: right;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
    .portals {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page {
        padding: 40px 20px 60px;
    }

    .site-header {
        padding: 18px 20px;
    }

    .site-footer {
        padding: 0 20px 24px;
    }
}

@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-note {
        text-align: left;
    }
}
