:root {
    --jt-primary: #1d4ed8;
    --jt-secondary: #0f172a;
    --jt-bg: #eef3fb;
    --jt-text: #1f2937;
    --jt-muted: #64748b;
    --jt-card: #ffffff;
    --jt-border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

body.jt-body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--jt-bg);
    color: var(--jt-text);
}

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

.jt-header {
    background: var(--jt-card);
    border-bottom: 1px solid var(--jt-border);
}

.jt-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.jt-logo {
    color: var(--jt-secondary);
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
}

.jt-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.jt-nav a {
    color: var(--jt-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.jt-nav a:hover {
    color: var(--jt-primary);
}

.jt-main {
    min-height: 70vh;
}

.jt-footer {
    margin-top: 60px;
    padding: 28px 0;
    background: var(--jt-secondary);
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 768px) {
    .jt-header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .jt-nav {
        gap: 12px;
    }
}

.jt-hero {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(29, 78, 216, 0.18), transparent 34%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
}

.jt-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jt-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.jt-hero p {
    max-width: 660px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.7;
}

.jt-actions {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.jt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}

.jt-btn-primary {
    background: #ffffff;
    color: #1d4ed8;
}

.jt-btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.jt-logo-img {
    display: block;
    max-width: 300px;
    max-height: 90px;
    width: auto;
    height: auto;
}

.jt-business-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 56px;
}

.jt-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jt-business-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
}

.jt-card-header {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.jt-card-header span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
}

.jt-card-body {
    padding: 26px;
    display: grid;
    gap: 18px;
}

.jt-metric {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.jt-metric strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 4px;
}

.jt-metric span {
    color: #dbeafe;
    font-size: 14px;
}

@media (max-width: 900px) {
    .jt-business-grid {
        grid-template-columns: 1fr;
    }
}

.jb-home-search {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 0.8fr auto;
    gap: 10px;
    max-width: 820px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.jb-home-search input {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    color: #0f172a;
}

.jb-home-search button {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 0 22px;
    background: #ffffff;
    color: #1d4ed8;
    font-weight: 900;
    cursor: pointer;
}

.jb-section {
    padding: 72px 0;
    background: #ffffff;
}

.jb-section-soft {
    background: #f3f6fb;
}

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

.jb-section-head h2,
.jb-info-card h2,
.jb-final-cta h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.jb-section-head a {
    color: #1d4ed8;
    font-weight: 800;
    text-decoration: none;
}

.jb-section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #1d4ed8;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.jb-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.jb-category-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #0f172a;
    transition: all .2s ease;
}

.jb-category-card:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.jb-category-card span {
    font-size: 26px;
}

.jb-category-card strong {
    font-size: 16px;
}

.jb-category-card small {
    color: #64748b;
    font-weight: 700;
}

.jb-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.jb-job-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.jb-company {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
}

.jb-job-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.jb-job-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.jb-job-card p {
    margin: 10px 0 0;
    color: #64748b;
}

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

.jb-job-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.jb-job-link {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
}

.jb-empty-card {
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #64748b;
}

.jb-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.jb-info-card {
    padding: 38px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.jb-info-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.jb-info-card-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
}

.jb-info-card-dark h2,
.jb-info-card-dark p {
    color: #ffffff;
}

.jb-outline-btn,
.jb-white-btn {
    display: inline-flex;
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
}

.jb-outline-btn {
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    background: #ffffff;
}

.jb-white-btn {
    color: #1d4ed8;
    background: #ffffff;
}

.jb-employer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.jb-employer-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.jb-employer-card img {
    max-width: 120px;
    max-height: 70px;
    object-fit: contain;
}

.jb-employer-card span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 900;
    font-size: 24px;
}

.jb-employer-card strong {
    color: #0f172a;
    font-size: 14px;
}

.jb-final-cta {
    padding: 76px 0;
    background:
        radial-gradient(circle at top right, rgba(29, 78, 216, 0.30), transparent 35%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
}

.jb-final-cta h2 {
    color: #ffffff;
    max-width: 760px;
}

.jb-final-cta p {
    max-width: 680px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .jb-category-grid,
    .jb-jobs-grid,
    .jb-employer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 760px) {
    .jb-category-grid,
    .jb-jobs-grid,
    .jb-employer-grid,
    .jb-split {
        grid-template-columns: 1fr;
    }

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

    .jb-info-card {
        padding: 26px;
    }
}

/* Business Home refinements */
.jt-hero-business {
    padding-top: 95px;
    padding-bottom: 95px;
}

.jb-home-search {
    max-width: 860px;
    margin-top: 34px;
    padding: 12px;
    border-radius: 22px;
}

.jb-home-search input {
    min-height: 54px;
    font-size: 15px;
}

.jb-home-search button {
    min-height: 54px;
    padding-left: 26px;
    padding-right: 26px;
}

.jt-actions {
    margin-top: 28px;
}

.jb-category-card {
    min-height: 138px;
}

.jb-job-card {
    min-height: 245px;
}

.jb-job-card h3 {
    min-height: 52px;
}

.jb-job-link {
    transition: transform .18s ease, box-shadow .18s ease;
}

.jb-job-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(29, 78, 216, 0.22);
}

.jb-info-card {
    min-height: 330px;
}

.jb-final-cta {
    padding-top: 88px;
    padding-bottom: 88px;
}

.jb-plans-hero {
    padding: 86px 0;
    background:
        radial-gradient(circle at top right, rgba(29, 78, 216, 0.22), transparent 35%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
}

.jb-plans-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.jb-plans-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.7;
}

.jb-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.jb-plan-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.jb-plan-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.jb-plan-topline span,
.jb-plan-topline strong {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
}

.jb-plan-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.12;
}

.jb-plan-summary {
    min-height: 52px;
    margin: 14px 0 0;
    color: #64748b;
    line-height: 1.6;
}

.jb-plan-price {
    margin-top: 24px;
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.jb-plan-features {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.jb-plan-features li {
    position: relative;
    padding-left: 26px;
    color: #334155;
    font-size: 14px;
    line-height: 1.5;
}

.jb-plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1d4ed8;
    font-weight: 900;
}

.jb-plan-detail {
    margin-top: 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.jb-plan-actions {
    margin-top: 26px;
    display: grid;
    gap: 10px;
}

.jb-plan-primary,
.jb-plan-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
}

.jb-plan-primary {
    background: #1d4ed8;
    color: #ffffff;
}

.jb-plan-secondary {
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    background: #ffffff;
}

@media (max-width: 1100px) {
    .jb-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .jb-plans-grid {
        grid-template-columns: 1fr;
    }
}

/* Employer plans refinements */
.jb-plan-card {
    min-height: 560px;
}

.jb-plan-summary {
    min-height: 76px;
}

.jb-plan-features {
    min-height: 190px;
}

.jb-plan-actions {
    margin-top: auto;
}

.jb-plan-price {
    word-break: normal;
}

@media (max-width: 760px) {
    .jb-plan-card {
        min-height: auto;
    }

    .jb-plan-summary,
    .jb-plan-features {
        min-height: auto;
    }
}

/* Public product cards: prevent long text overflow */
.jb-plan-summary {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Keep plan price readable */
.jb-plan-price {
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.05;
}

.jb-plan-card {
    overflow-wrap: normal;
}

.jb-plan-price {
    white-space: normal;
}

@media (min-width: 900px) {
    .jb-plan-price {
        font-size: 31px;
    }
}

/* Volume pricing selector on public plans */
.jb-plan-volume-form {
    display: grid;
    gap: 10px;
}

.jb-plan-volume-form label {
    color: #334155;
    font-size: 13px;
    font-weight: 900;
}

.jb-plan-volume-form input {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0 12px;
    color: #0f172a;
    font-weight: 800;
    outline: none;
}

.jb-plan-volume-form input:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.jb-plan-volume-form .jb-plan-primary {
    border: 0;
    cursor: pointer;
}
