@charset "utf-8";

:root {
    --bg-navy: #071426;
    --panel-bg: rgba(7, 20, 38, 0.70);
    --panel-border: rgba(255, 255, 255, 0.14);
    --text-main: #f4f7fb;
    --text-soft: rgba(244, 247, 251, 0.78);
    --accent-orange: #ff7a1a;
    --accent-blue: #2b63ff;
    --shadow-strong: 0 30px 70px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: 'Ubuntu', 'Trebuchet MS', Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-navy);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(7, 20, 38, 0.88) 0%, rgba(7, 20, 38, 0.54) 42%, rgba(7, 20, 38, 0.76) 100%),
        url("main.jpg") center center / cover no-repeat;
    transform: scale(1.03);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 26, 0.26), transparent 28%),
        radial-gradient(circle at bottom left, rgba(43, 99, 255, 0.24), transparent 32%);
    z-index: -1;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
}

.hero-card {
    width: min(1180px, 100%);
    padding: 42px;
    border-radius: 30px;
    border: 1px solid var(--panel-border);
    background: var(--panel-bg);
    box-shadow: var(--shadow-strong);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: hidden;
    position: relative;
    animation: riseIn 700ms ease-out both;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.28), transparent 68%);
    pointer-events: none;
}

.hero-copy {
    max-width: 720px;
    margin-bottom: 34px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d7e4ff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.lead {
    max-width: 680px;
    margin: 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    color: var(--text-main);
}

.sub-copy {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-soft);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 1;
}

.action-card {
    min-height: 220px;
    padding: 26px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.10);
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
}

.action-card__tag {
    display: inline-block;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.action-card strong {
    display: block;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.action-card__text {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.84);
}

.action-card--supplier {
    background: linear-gradient(180deg, rgba(43, 99, 255, 0.20), rgba(255, 255, 255, 0.08));
}

.action-card--supplier .action-card__tag {
    background: rgba(43, 99, 255, 0.22);
    color: #dce7ff;
}

.action-card--company {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.action-card--company .action-card__tag {
    background: rgba(255, 255, 255, 0.16);
    color: #eff5ff;
}

.action-card--candidate {
    background: linear-gradient(180deg, rgba(255, 122, 26, 0.26), rgba(255, 255, 255, 0.08));
}

.action-card--candidate .action-card__tag {
    background: rgba(255, 122, 26, 0.20);
    color: #ffe2cc;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .hero-card {
        padding: 30px 22px;
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .action-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding: 18px;
    }

    .hero-card {
        border-radius: 24px;
        padding: 22px 18px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .lead {
        font-size: 17px;
    }

    .sub-copy {
        font-size: 14px;
    }

    .action-card {
        padding: 20px 18px;
    }
}
