/* ── HERO ──────────────────────────────────────────── */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 100px 40px 60px;

    position: relative;

    overflow: hidden;

}

/* RADIAL GLOW */

.hero::before {

    content: '';

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 900px;
    height: 600px;

    background:
        radial-gradient(
            ellipse at center,
            rgba(249,115,22,0.1) 0%,
            rgba(249,115,22,0.04) 40%,
            transparent 70%
        );

    pointer-events: none;

}

/* GRID */

.hero::after {

    content: '';

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(249,115,22,0.03) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(249,115,22,0.03) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 20%,
            transparent 75%
        );

    pointer-events: none;

}

.hero-inner {

    max-width: 1140px;

    margin: 0 auto;

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    position: relative;

    z-index: 1;

}

/* BADGE */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 16px;

    background: var(--glow);

    border:
        1px solid rgba(249,115,22,0.25);

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

    color: var(--accent2);

    margin-bottom: 24px;

    animation:
        fadeUp 0.6s ease both;

}

.badge-dot {

    width: 6px;
    height: 6px;

    background: var(--accent);

    border-radius: 50%;

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0%, 100% {

        opacity: 1;
        transform: scale(1);

    }

    50% {

        opacity: 0.5;
        transform: scale(1.4);

    }

}

/* TITLE */

.hero-title {

    font-family: 'Syne', sans-serif;

    font-size: clamp(36px, 5vw, 60px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.02em;

    margin-bottom: 22px;

    animation:
        fadeUp 0.6s 0.1s ease both;

}

.hero-title .line2 {

    color: var(--accent);

    display: block;

}

.hero-title .line3 {

    display: block;

    background:
        linear-gradient(
            135deg,
            var(--text),
            var(--muted2)
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

/* DESC */

.hero-desc {

    font-size: 16px;

    color: var(--text2);

    line-height: 1.75;

    max-width: 480px;

    margin-bottom: 36px;

    animation:
        fadeUp 0.6s 0.2s ease both;

}

/* BUTTONS */

.hero-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    animation:
        fadeUp 0.6s 0.3s ease both;

}

.btn-hero-primary {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 30px;

    background: var(--accent);

    color: #fff;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s;

    box-shadow:
        0 8px 28px rgba(249,115,22,0.35);

}

.btn-hero-primary:hover {

    background: var(--accent2);

    transform: translateY(-2px);

    box-shadow:
        0 12px 36px rgba(249,115,22,0.45);

}

.btn-hero-secondary {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 28px;

    background: transparent;

    color: var(--text2);

    border:
        1px solid var(--border2);

    border-radius: 12px;

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

    transition: all 0.25s;

}

.btn-hero-secondary:hover {

    background: var(--bg3);

    border-color: var(--accent);

    color: var(--text);

}

/* ── HERO TRUST ───────────────────────────────────── */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 36px;

    padding-top: 28px;

    border-top:
        1px solid var(--border);

    animation:
        fadeUp 0.6s 0.4s ease both;

}

.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

}

.trust-val {

    font-family: 'Syne', sans-serif;

    font-size: 20px;

    font-weight: 800;

    color: var(--accent);

}

.trust-lbl {

    font-size: 12px;

    color: var(--muted2);

    line-height: 1.3;

}

.trust-sep {

    width: 1px;

    height: 36px;

    background: var(--border);

}

/* ── HERO RIGHT ───────────────────────────────────── */

.hero-visual {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    animation:
        fadeUp 0.6s 0.25s ease both;

}

/* ── ROLE CARD ────────────────────────────────────── */

.role-card {

    background: var(--bg2);

    border:
        1px solid var(--border);

    border-radius: 16px;

    padding: 20px 18px;

    cursor: pointer;

    transition: all 0.25s;

    text-decoration: none;

    color: inherit;

    position: relative;

    overflow: hidden;

}

.role-card::before {

    content: '';

    position: absolute;

    inset: 0;

    background: var(--glow2);

    opacity: 0;

    transition: opacity 0.25s;

}

.role-card:hover {

    border-color: var(--accent);

    transform: translateY(-4px);

    box-shadow:
        0 12px 36px rgba(249,115,22,0.12);

}

.role-card:hover::before {

    opacity: 1;

}

.role-card.featured {

    border-color:
        rgba(249,115,22,0.3);

    background:
        linear-gradient(
            145deg,
            var(--bg3),
            var(--bg2)
        );

}

/* ── ROLE CONTENT ─────────────────────────────────── */

.role-card-icon {

    font-size: 28px;

    margin-bottom: 12px;

    display: block;

}

.role-card-title {

    font-family: 'Syne', sans-serif;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 5px;

    color: var(--text);

}

.role-card-desc {

    font-size: 11px;

    color: var(--muted2);

    line-height: 1.5;

}

.role-card-count {

    display: inline-block;

    margin-top: 10px;

    font-size: 11px;

    font-weight: 600;

    color: var(--accent);

    background: var(--glow);

    padding: 3px 9px;

    border-radius: 20px;

}