:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #667085;
    --line: #e7e9ee;
    --soft: #f7f8fa;
    --soft2: #f1f3f5;
    --dark: #101419;
    --radius: 18px;
    --shadow: 0 16px 40px rgba(18, 24, 31, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

img {
    max-width: 100%;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(780px, 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.main-nav {
    display: flex;
    gap: 26px;
    margin-right: auto;
}

.main-nav a,
.nav-actions a {
    font-size: 14px;
    color: #30343a;
}

.main-nav a.active {
    font-weight: 800;
    color: #000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

.dark-button,
.outline-button,
.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
}

.dark-button {
    background: var(--dark);
    color: #fff;
}

.dark-button.small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 13px;
}

.outline-button {
    border-color: #cfd4dc;
    background: #fff;
}

.link-button {
    padding-inline: 8px;
}

.full {
    width: 100%;
}

.hero {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 60% 20%, #f2f4f6 0 18%, transparent 42%),
        linear-gradient(90deg, #fff 0 55%, #f5f6f7 55% 100%);
}

.hero-grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 44px;
}

.hero-copy {
    padding: 70px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #667085;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -3px;
}

h2 {
    font-size: 28px;
    letter-spacing: -1px;
}

.hero p,
.page-hero p,
.lead {
    font-size: 19px;
    color: #4c5562;
}

.job-search {
    display: grid;
    grid-template-columns: 1.25fr 1fr .7fr auto;
    gap: 10px;
    margin-top: 28px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.job-search input,
.job-search select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: #fff;
    color: #111;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
    color: #55606d;
    font-size: 13px;
}

.hero-visual {
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-person {
    width: min(440px, 100%);
    height: 390px;
    margin-bottom: 0;
    border-radius: 220px 220px 40px 40px;
    background:
        radial-gradient(circle at 58% 33%, #f9fafb 0 10%, transparent 11%),
        linear-gradient(145deg, #d9dde1 0 45%, #1c2229 45% 100%);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.person-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #cfd5db;
    position: absolute;
    left: 40px;
    bottom: 42px;
    font-size: 36px;
    font-weight: 900;
}

.hand-note {
    position: absolute;
    right: 8px;
    top: 20px;
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 25px;
    transform: rotate(-4deg);
}

.section {
    padding: 68px 0;
}

.section-tight {
    padding-top: 18px;
}

.section-head {
    margin-bottom: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-head h2 {
    margin-bottom: 0;
}

.section-head a {
    color: #596273;
    font-size: 14px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-card,
.feature-card,
.article-card,
.application-panel,
.filter-card,
.job-side-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.category-card {
    min-height: 135px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: .18s ease;
}

.category-card:hover,
.article-card:hover,
.job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.category-icon {
    font-size: 25px;
    margin-bottom: 10px;
}

.category-card small {
    color: #7b8491;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
}

.job-list {
    display: grid;
    gap: 10px;
}

.job-card {
    min-height: 112px;
    padding: 18px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    transition: .18s ease;
}

.job-logo {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--soft2);
    font-weight: 900;
    font-size: 22px;
}

.job-main {
    display: grid;
    gap: 5px;
}

.job-main > span,
.job-time {
    color: #737c88;
    font-size: 13px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-meta span {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--soft2);
    color: #5c6672;
    font-size: 12px;
}

.job-meta.large {
    margin: 24px 0 34px;
}

.application-panel {
    padding: 30px;
    background: linear-gradient(145deg, #fff, #f6f7f8);
}

.application-panel p {
    color: #5e6874;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.application-steps a {
    min-height: 125px;
    padding: 18px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.application-steps span {
    font-weight: 900;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.article-card {
    min-height: 190px;
    padding: 24px;
    transition: .18s ease;
}

.article-kicker {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #747e8b;
}

.article-card p {
    margin-bottom: 0;
    color: #66717f;
}

.page-hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7f8fa, #fff);
    border-bottom: 1px solid var(--line);
}

.page-hero.compact {
    padding: 70px 0;
}

.page-hero.compact h1,
.auth-card h1 {
    font-size: 50px;
}

.jobs-layout {
    grid-template-columns: 260px 1fr;
}

.filter-card {
    padding: 24px;
    height: max-content;
    position: sticky;
    top: 96px;
}

.filter-card label {
    display: block;
    padding: 10px 0;
    color: #4f5966;
}

.empty-state {
    padding: 34px;
    border: 1px dashed #ccd2da;
    border-radius: 16px;
    background: #fafbfc;
}

.job-detail {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 34px;
    align-items: start;
}

.job-detail-main {
    max-width: 780px;
}

.job-detail-main h1 {
    font-size: 54px;
}

.job-detail-main h2 {
    margin-top: 38px;
}

.job-side-card {
    padding: 24px;
    position: sticky;
    top: 96px;
}

.job-side-card p {
    color: #66717f;
}

.job-side-card .outline-button {
    margin-top: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card {
    min-height: 210px;
    padding: 26px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 900;
    margin-bottom: 26px;
}

.feature-card p {
    color: #66717f;
}

.form-preview {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 40px;
    align-items: start;
}

.form-preview-left {
    display: grid;
    gap: 16px;
}

.form-preview-left label,
.auth-card label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.form-preview-left input,
.form-preview-left textarea,
.auth-card input {
    width: 100%;
    border: 1px solid #dce1e6;
    border-radius: 10px;
    padding: 13px;
    background: #fff;
}

.cv-preview {
    min-height: 590px;
    padding: 40px;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cv-head {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #eceff2;
    margin-bottom: 34px;
}

.cv-line {
    width: 70%;
    height: 14px;
    border-radius: 999px;
    background: #e8ebee;
    margin-bottom: 12px;
}

.cv-line.long {
    width: 90%;
}

.cv-line.short {
    width: 45%;
}

.cv-block {
    height: 110px;
    margin-top: 28px;
    border-top: 2px solid #111;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 18px,
            #edf0f2 18px 24px
        );
}

.auth-section {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(520px, calc(100% - 40px));
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.auth-card form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.auth-note {
    margin-top: 20px;
    color: #66717f;
}

.site-footer {
    padding: 50px 0;
    border-top: 1px solid var(--line);
    background: #fafafa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-grid p {
    color: #66717f;
}

.footer-links {
    display: grid;
    gap: 9px;
    align-content: start;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .main-nav,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .mobile-nav.open {
        display: grid;
        gap: 2px;
        padding: 10px 20px 18px;
        border-top: 1px solid var(--line);
        background: #fff;
    }

    .mobile-nav a {
        padding: 12px;
        border-radius: 8px;
    }

    .hero-grid,
    .content-grid,
    .jobs-layout,
    .job-detail,
    .form-preview {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-grid {
        min-height: auto;
    }

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

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

    .filter-card,
    .job-side-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav-wrap {
        min-height: 64px;
    }

    h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .page-hero.compact h1,
    .auth-card h1,
    .job-detail-main h1 {
        font-size: 40px;
    }

    .hero-copy {
        padding: 50px 0 20px;
    }

    .hero {
        background: #fff;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-person {
        height: 290px;
    }

    .hand-note {
        font-size: 20px;
    }

    .person-circle {
        width: 95px;
        height: 95px;
        font-size: 26px;
    }

    .job-search,
    .category-grid,
    .article-grid,
    .feature-grid,
    .application-steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .job-search {
        padding: 10px;
    }

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

    .job-logo {
        width: 46px;
        height: 46px;
    }

    .job-time {
        grid-column: 2;
    }

    .section {
        padding: 48px 0;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .auth-card {
        padding: 28px;
    }
}


/* SENSOY24 Update 02 */
.nav-actions .dark-button {
    color: #fff;
}

.hero-v2 {
    background: #fff;
}

.hero-grid-v2 {
    min-height: 500px;
    grid-template-columns: 1.18fr .82fr;
    gap: 36px;
}

.hero-v2 .hero-copy {
    padding: 58px 0;
}

.hero-v2 h1 {
    max-width: 760px;
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.01;
}

.hero-v2 .hero-copy > p {
    max-width: 760px;
}

.hero-photo {
    min-height: 500px;
    align-self: stretch;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.15) 18%, rgba(255,255,255,0) 36%),
        url("../img/hero-sensoy24.jpg");
    background-size: cover;
    background-position: 48% center;
    border-radius: 0 0 28px 28px;
}

.job-search-v2 {
    max-width: 820px;
    box-shadow: 0 18px 50px rgba(16, 20, 25, .10);
}

.category-section {
    padding-top: 48px;
}

.category-grid-v2 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.category-card-v2 {
    min-height: 118px;
    padding: 17px 14px;
}

.category-card-v2 strong {
    font-size: 14px;
}

.category-card-v2 small {
    font-size: 12px;
}

.content-grid-v2 {
    grid-template-columns: 1.08fr .92fr;
    align-items: start;
}

.job-card-v2 {
    min-height: 102px;
}

.side-stack {
    display: grid;
    gap: 14px;
}

.application-panel-v2 {
    min-height: 390px;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 18px;
    align-items: center;
}

.application-panel-v2 h2,
.employer-panel h2 {
    margin-bottom: 8px;
}

.check-list {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
    display: grid;
    gap: 9px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: #4f5966;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 900;
}

.document-preview {
    width: 160px;
    min-height: 245px;
    padding: 18px;
    justify-self: end;
    border-radius: 8px;
    border: 1px solid #dce1e6;
    background: #fff;
    box-shadow: 0 18px 35px rgba(20, 26, 33, .12);
    transform: rotate(4deg);
}

.doc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e6e9ed;
    margin-bottom: 14px;
}

.doc-name,
.doc-line,
.doc-title {
    height: 7px;
    border-radius: 999px;
    background: #dfe3e8;
    margin-bottom: 8px;
}

.doc-name {
    width: 65%;
    height: 9px;
    background: #1a1f25;
}

.doc-line {
    width: 72%;
}

.doc-line.wide {
    width: 100%;
}

.doc-line.medium {
    width: 55%;
}

.doc-title {
    width: 42%;
    height: 8px;
    margin-top: 23px;
    background: #8c96a3;
}

.employer-panel {
    min-height: 155px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.employer-panel p {
    margin-bottom: 0;
    color: #66717f;
}

.trust-strip {
    margin-top: 50px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fafbfc;
}

.trust-grid {
    min-height: 112px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 25px 28px;
    display: grid;
    gap: 5px;
    align-content: center;
    border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    font-size: 15px;
}

.trust-grid span {
    color: #737c88;
    font-size: 13px;
}

.article-grid-v2 .article-card {
    background:
        linear-gradient(180deg, #fff, #fafafa);
}

@media (max-width: 1100px) {
    .category-grid-v2 {
        grid-template-columns: repeat(4, 1fr);
    }

    .application-panel-v2 {
        grid-template-columns: 1fr;
    }

    .document-preview {
        display: none;
    }
}

@media (max-width: 980px) {
    .hero-grid-v2 {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        min-height: 360px;
        border-radius: 22px;
        background-position: center;
    }

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

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .hero-v2 h1 {
        font-size: 44px;
    }

    .hero-photo {
        min-height: 290px;
    }

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

    .employer-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .trust-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid > div:last-child {
        border-bottom: 0;
    }
}


/* SENSOY24 Update 03 */
.hero-photo {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.22) 16%, rgba(255,255,255,0) 34%),
        url("../img/hero-sensoy24.jpg");
    background-size: cover;
    background-position: center 16%;
}

.hero-note {
    position: absolute;
    right: 28px;
    top: 35px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.80);
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 25px;
    line-height: 1.35;
    transform: rotate(-3deg);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.hero-badge {
    position: absolute;
    right: 26px;
    bottom: 26px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #111;
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.hero-badge strong {
    font-size: 35px;
    line-height: 1;
}

.hero-badge span {
    max-width: 84px;
    font-size: 10px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.category-card-v2 {
    justify-content: center;
}

.category-card-v2 .category-icon {
    margin-bottom: 7px;
}

.source-note {
    margin-top: 24px;
    padding: 14px;
    border-radius: 12px;
    background: #f4f5f7;
    display: grid;
    gap: 4px;
    color: #616b77;
    font-size: 12px;
}

.source-note strong {
    color: #111;
}

.adzuna-credit,
.job-source,
.adzuna-detail-credit {
    color: #697382;
    font-size: 12px;
}

.adzuna-credit,
.adzuna-detail-credit a {
    text-decoration: underline;
}

.job-source {
    margin-top: 3px;
}

.jobs-result-head > div {
    display: grid;
    gap: 6px;
}

.pagination {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.salary-box {
    margin: 18px 0 30px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fafbfc;
}

.adzuna-detail-credit {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
    .hero-note {
        right: 18px;
        top: 20px;
        font-size: 21px;
    }

    .hero-badge {
        width: 104px;
        height: 104px;
        right: 18px;
        bottom: 18px;
    }

    .hero-badge strong {
        font-size: 29px;
    }
}

@media (max-width: 640px) {
    .hero-photo {
        min-height: 330px;
        background-position: center 12%;
    }

    .hero-note {
        font-size: 18px;
    }

    .hero-badge {
        width: 92px;
        height: 92px;
    }

    .hero-badge span {
        display: none;
    }

    .pagination {
        justify-content: stretch;
        flex-direction: column;
    }

    .pagination a {
        width: 100%;
    }
}
