/* =========================================================
   Web3Jobs_3
   Main Stylesheet
   ========================================================= */

:root {
    --bg: #06101d;
    --bg-soft: #09182a;
    --card: #0d1b2e;
    --card-light: #10233a;

    --text: #f5f8ff;
    --muted: #9db0c8;

    --line: #1d3553;
    --line-light: #294563;

    --accent: #6ee7b7;
    --accent-dark: #4fd1a0;

    --blue: #60a5fa;
    --blue-dark: #3b82f6;

    --danger: #fb7185;

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);

    --radius: 18px;

    --container: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(96, 165, 250, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(110, 231, 183, 0.06),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-soft) 50%,
            var(--bg)
        );

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


ul {
    list-style: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(
        var(--container),
        92%
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(6, 16, 29, 0.94);

    border-bottom:
        1px solid var(--line);

    backdrop-filter:
        blur(14px);
}


.header-inner {
    min-height: 74px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 850;

    letter-spacing: -0.4px;

    white-space: nowrap;
}


.brand-logo {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--blue)
        );

    color: #06101d;

    font-size: 14px;

    font-weight: 950;

    box-shadow:
        0 8px 24px
        rgba(96, 165, 250, 0.18);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    gap: 24px;
}


.main-nav a {
    position: relative;

    color: #b9c9dc;

    font-size: 14px;

    font-weight: 650;

    transition:
        color 0.2s ease;
}


.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}


.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -10px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--accent);
}


/* =========================================================
   NAV BUTTON
   ========================================================= */

.nav-button {
    padding:
        10px 16px;

    border-radius: 10px;

    background:
        var(--accent);

    color:
        #06101d !important;

    font-weight: 800 !important;
}


.nav-button:hover {
    background:
        #8af2ca;

    transform:
        translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--line-light);

    border-radius: 10px;

    background: #0d1b2e;

    color: #ffffff;

    font-size: 21px;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
    display: none;

    width: 100%;

    padding:
        12px 4% 18px;

    border-top:
        1px solid rgba(29, 53, 83, 0.6);

    background:
        rgba(6, 16, 29, 0.98);
}


.mobile-menu.show {
    display: grid;
}


.mobile-menu a {
    padding: 13px 8px;

    color: #c0cede;

    border-bottom:
        1px solid rgba(29, 53, 83, 0.55);

    font-size: 14px;

    font-weight: 650;
}


.mobile-menu a:last-child {
    border-bottom: 0;
}


.mobile-menu a:hover {
    color: var(--accent);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 44px;

    padding:
        11px 18px;

    border:
        1px solid transparent;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    white-space: nowrap;
}


.btn:hover {
    transform:
        translateY(-2px);
}


.btn-primary {
    background:
        var(--accent);

    color:
        #06101d;

    box-shadow:
        0 10px 25px
        rgba(110, 231, 183, 0.10);
}


.btn-primary:hover {
    background:
        #8af2ca;
}


.btn-secondary {
    background:
        #12263d;

    border-color:
        var(--line-light);

    color:
        #edf4fb;
}


.btn-secondary:hover {
    background:
        #17314e;

    border-color:
        #3b6084;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    padding:
        92px 0 70px;
}


.hero::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    top: -180px;
    left: -220px;

    border-radius: 50%;

    background:
        rgba(96, 165, 250, 0.05);

    filter:
        blur(70px);

    pointer-events: none;
}


.hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(110, 231, 183, 0.045);

    filter:
        blur(75px);

    pointer-events: none;
}


.hero-content {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    align-items: center;

    gap: 70px;
}


.hero-text {
    max-width: 680px;
}


.hero-badge {
    display: inline-flex;

    align-items: center;

    padding:
        7px 12px;

    margin-bottom: 20px;

    border:
        1px solid
        rgba(110, 231, 183, 0.2);

    border-radius: 999px;

    background:
        rgba(110, 231, 183, 0.06);

    color:
        #9eeecf;

    font-size: 11px;

    font-weight: 750;

    letter-spacing: 0.2px;
}


.hero h1 {
    margin-bottom: 20px;

    font-size:
        clamp(45px, 6vw, 72px);

    line-height: 1.02;

    letter-spacing:
        -3.5px;

    font-weight: 900;
}


.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--accent),
            var(--blue)
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}


.hero-text > p {
    max-width: 610px;

    margin-bottom: 28px;

    color:
        var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 35px;
}


/* =========================================================
   HERO STATS
   ========================================================= */

.hero-stats {
    display: flex;

    align-items: center;

    gap: 40px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;
}


.hero-stats strong {
    font-size: 24px;

    line-height: 1;

    font-weight: 900;
}


.hero-stats span {
    margin-top: 5px;

    color:
        var(--muted);

    font-size: 10px;

    text-transform:
        uppercase;

    letter-spacing:
        0.7px;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    position: relative;

    padding: 22px;

    border:
        1px solid
        var(--line-light);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(16, 35, 58, 0.95),
            rgba(10, 24, 41, 0.96)
        );

    box-shadow:
        var(--shadow);

    overflow: hidden;
}


.hero-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -80px;
    right: -60px;

    border-radius: 50%;

    background:
        rgba(96, 165, 250, 0.08);

    filter:
        blur(35px);
}


.hero-card-header {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 17px;

    border-bottom:
        1px solid
        rgba(41, 69, 99, 0.7);
}


.mini-logo {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--blue)
        );

    color:
        #06101d;

    font-size: 13px;

    font-weight: 950;
}


.hero-card-header strong {
    display: block;

    font-size: 14px;
}


.hero-card-header span {
    display: block;

    margin-top: 2px;

    color:
        var(--muted);

    font-size: 11px;
}


/* =========================================================
   HERO JOB
   ========================================================= */

.hero-job {
    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        16px 0;

    border-bottom:
        1px solid
        rgba(29, 53, 83, 0.7);
}


.hero-job:last-child {
    border-bottom: 0;

    padding-bottom: 2px;
}


.job-icon {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    background:
        #122a43;

    border:
        1px solid
        #294966;

    font-size: 18px;
}


.job-info {
    flex: 1;

    min-width: 0;
}


.job-info strong {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.job-info span {
    display: block;

    color:
        var(--muted);

    font-size: 10px;
}


.job-tag {
    padding:
        5px 8px;

    border:
        1px solid
        #244866;

    border-radius: 999px;

    background:
        #122a43;

    color:
        #bfd2e5;

    font-size: 9px;

    white-space: nowrap;
}


/* =========================================================
   SEARCH
   ========================================================= */

.search-section {
    position: relative;

    z-index: 5;

    padding:
        10px 0 70px;
}


.search-box {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        auto;

    gap: 10px;

    padding: 10px;

    border:
        1px solid
        var(--line-light);

    border-radius:
        16px;

    background:
        rgba(13, 27, 46, 0.95);

    box-shadow:
        var(--shadow);
}


.search-box > div {
    position: relative;
}


.search-icon {
    position: absolute;

    left: 13px;

    top: 50%;

    transform:
        translateY(-50%);

    pointer-events: none;

    font-size: 14px;
}


.search-box input {
    width: 100%;

    min-height: 48px;

    padding:
        0 14px 0 39px;

    border:
        1px solid
        #284563;

    border-radius:
        10px;

    outline: none;

    background:
        #071423;

    color:
        #ffffff;

    font-size: 13px;
}


.search-box input::placeholder {
    color:
        #71869e;
}


.search-box input:focus {
    border-color:
        var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(96, 165, 250, 0.08);
}


.search-box .btn {
    min-height: 48px;
}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

section {
    position: relative;
}


.section-heading {
    max-width: 700px;

    margin:
        0 auto 42px;

    text-align: center;
}


.section-heading > span {
    display: inline-block;

    margin-bottom: 9px;

    color:
        var(--accent);

    font-size: 10px;

    font-weight: 850;

    letter-spacing:
        1.4px;
}


.section-heading h2 {
    margin-bottom: 10px;

    font-size:
        clamp(29px, 4vw, 42px);

    line-height: 1.15;

    letter-spacing:
        -1.4px;
}


.section-heading p {
    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   JOBS SECTION
   ========================================================= */

.jobs-section {
    padding:
        30px 0 90px;
}


.job-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.job-card {
    padding: 20px;

    border:
        1px solid
        var(--line);

    border-radius:
        17px;

    background:
        var(--card);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.job-card:hover {
    transform:
        translateY(-4px);

    border-color:
        #355979;

    box-shadow:
        0 18px 35px
        rgba(0, 0, 0, 0.18);
}


.job-card-top {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}


.company-logo {
    width: 46px;
    height: 46px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    background:
        #122a43;

    border:
        1px solid
        #294966;

    color:
        var(--accent);

    font-weight: 900;
}


.job-card h3 {
    margin-bottom: 3px;

    font-size: 14px;
}


.job-card-top p {
    color:
        var(--muted);

    font-size: 11px;
}


.job-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 19px;
}


.job-tags span {
    padding:
        5px 8px;

    border:
        1px solid
        #244866;

    border-radius:
        999px;

    background:
        #122a43;

    color:
        #bfd2e5;

    font-size: 9px;
}


.job-card-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 14px;

    border-top:
        1px solid
        #18314c;
}


.job-card-bottom span {
    color:
        #71869e;

    font-size: 10px;
}


.job-card-bottom a {
    color:
        var(--accent);

    font-size: 11px;

    font-weight: 800;
}


.section-button {
    display: flex;

    justify-content: center;

    margin-top: 30px;
}


/* =========================================================
   JOURNEYS
   ========================================================= */

.journeys {
    padding:
        90px 0;

    background:
        rgba(7, 17, 31, 0.55);

    border-top:
        1px solid
        rgba(29, 53, 83, 0.45);

    border-bottom:
        1px solid
        rgba(29, 53, 83, 0.45);
}


.journey-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.journey-card {
    padding: 30px;

    border:
        1px solid
        var(--line);

    border-radius:
        19px;

    background:
        var(--card);

    text-align: center;
}


.journey-icon {
    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    margin:
        0 auto 18px;

    border-radius: 16px;

    background:
        #122a43;

    border:
        1px solid
        #294966;

    font-size: 25px;
}


.journey-card h3 {
    margin-bottom: 9px;

    font-size: 20px;
}


.journey-card p {
    max-width: 450px;

    margin:
        0 auto 22px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    padding:
        95px 0;
}


.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.feature-card {
    padding: 24px 20px;

    border:
        1px solid
        var(--line);

    border-radius:
        17px;

    background:
        var(--card);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.feature-card:hover {
    transform:
        translateY(-3px);

    border-color:
        #355979;
}


.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;

    place-items: center;

    margin-bottom: 17px;

    border-radius: 12px;

    background:
        #122a43;

    border:
        1px solid
        #294966;

    font-size: 20px;
}


.feature-card h3 {
    margin-bottom: 7px;

    font-size: 15px;
}


.feature-card p {
    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   ROADMAP
   ========================================================= */

.roadmap {
    padding:
        90px 0;

    background:
        linear-gradient(
            180deg,
            rgba(13, 27, 46, 0.55),
            rgba(7, 17, 31, 0.4)
        );

    border-top:
        1px solid
        rgba(29, 53, 83, 0.45);
}


.roadmap-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.roadmap-item {
    position: relative;

    padding: 25px;

    border:
        1px solid
        var(--line);

    border-radius:
        17px;

    background:
        rgba(13, 27, 46, 0.78);
}


.roadmap-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 39px;
    height: 30px;

    margin-bottom: 18px;

    border-radius:
        8px;

    background:
        rgba(110, 231, 183, 0.08);

    border:
        1px solid
        rgba(110, 231, 183, 0.18);

    color:
        var(--accent);

    font-size: 10px;

    font-weight: 850;
}


.roadmap-item h3 {
    margin-bottom: 7px;

    font-size: 15px;
}


.roadmap-item p {
    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    padding:
        30px 0 95px;
}


.cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        34px;

    border:
        1px solid
        #294563;

    border-radius:
        20px;

    background:
        linear-gradient(
            135deg,
            #10243a,
            #0b192b
        );

    box-shadow:
        var(--shadow);
}


.cta-label {
    display: block;

    margin-bottom: 7px;

    color:
        var(--accent);

    font-size: 10px;

    font-weight: 850;

    letter-spacing:
        1.3px;
}


.cta-box h2 {
    margin-bottom: 7px;

    font-size:
        clamp(24px, 4vw, 34px);

    line-height: 1.15;

    letter-spacing:
        -1px;
}


.cta-box p {
    color:
        var(--muted);

    font-size: 12px;
}


.cta-actions {
    display: flex;

    gap: 9px;

    flex-shrink: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    border-top:
        1px solid
        var(--line);

    background:
        #050d18;
}


.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        35px 0;
}


.footer-content > div:first-child p {
    margin-top: 9px;

    color:
        var(--muted);

    font-size: 11px;
}


.footer-links {
    display: flex;

    align-items: center;

    gap: 22px;
}


.footer-links a {
    color:
        #8fa3ba;

    font-size: 11px;

    font-weight: 650;

    transition:
        color 0.2s ease;
}


.footer-links a:hover {
    color:
        var(--accent);
}


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        17px 0 22px;

    border-top:
        1px solid
        rgba(29, 53, 83, 0.55);

    color:
        #61758d;

    font-size: 9px;
}


/* =========================================================
   FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline:
        2px solid
        var(--accent);

    outline-offset:
        3px;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background:
        rgba(110, 231, 183, 0.25);

    color:
        #ffffff;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-track {
    background:
        #06101d;
}


::-webkit-scrollbar-thumb {
    background:
        #1d3553;

    border-radius:
        10px;
}


::-webkit-scrollbar-thumb:hover {
    background:
        #294563;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .hero-content {
        gap: 40px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .main-nav {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns:
            1fr;
    }

    .hero-text {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .job-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

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

}


@media (max-width: 760px) {

    .header-inner {
        min-height: 66px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
    }

    .search-box {
        grid-template-columns:
            1fr;
    }

    .search-box .btn {
        width: 100%;
    }

}


@media (max-width: 600px) {

    .container {
        width: 91%;
    }

    .hero {
        padding:
            58px 0 50px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing:
            -2px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-card {
        padding: 18px;
    }

    .jobs-section,
    .features,
    .journeys,
    .roadmap {
        padding:
            65px 0;
    }

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

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

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

    .cta {
        padding-bottom:
            65px;
    }

    .cta-box {
        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            25px 20px;
    }

    .cta-actions {
        width: 100%;

        flex-direction:
            column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .footer-content {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

    .footer-links {
        flex-wrap:
            wrap;
    }

    .footer-bottom {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

}


@media (max-width: 420px) {

    .brand {
        font-size: 18px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stats strong {
        font-size: 21px;
    }

    .hero-job {
        padding:
            13px 0;
    }

    .job-tag {
        display: none;
    }

    .section-heading h2 {
        font-size: 29px;
    }

  }
