/* ============================================================
 * DailyTalent — Jobs 2026 premium UI
 * Scoped under .dt-2026 to avoid collision with the rest of the site.
 * Light surface, soft shadows, rounded everything, sophisticated palette.
 * ============================================================ */

.dt-2026 {
    --bg:           #FAFAF7;
    --surface:      #FFFFFF;
    --surface-2:    #F5F4EF;
    --ink:          #0B1220;
    --ink-2:        #3A4759;
    --ink-3:        #6B7787;
    --ink-4:        #9AA3B2;
    --accent:       #0F766E;
    --accent-hover: #0D9488;
    --accent-deep:  #064E47;
    --accent-soft:  #CCFBF1;
    --salary-ink:   #92400E;
    --salary-bg:    #FEF3C7;
    --success-ink:  #166534;
    --success-bg:   #DCFCE7;
    --match-ink:    #5B21B6;
    --match-bg:     #EDE9FE;
    --warn-ink:     #B91C1C;
    --warn-bg:      #FEE2E2;
    --border:       #E7EAEE;
    --border-2:     #CFD5DD;
    --shadow-sm:    0 1px 2px rgba(11,18,32,.04), 0 4px 12px -4px rgba(11,18,32,.06);
    --shadow-md:    0 4px 8px -2px rgba(11,18,32,.06), 0 16px 32px -8px rgba(11,18,32,.10);
    --shadow-lg:    0 12px 24px -8px rgba(11,18,32,.10), 0 24px 56px -12px rgba(11,18,32,.16);
    --r-card:       20px;
    --r-input:      12px;
    --r-button:     12px;
    --r-pill:       999px;

    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'ss01', 'cv11';
    padding-top: 96px;
    padding-bottom: 96px;
    line-height: 1.55;
    font-size: 16px;
    min-height: 70vh;
}

@media (max-width: 768px) {
    .dt-2026 { padding-top: 64px; padding-bottom: 64px; }
}

.dt-2026 *, .dt-2026 *::before, .dt-2026 *::after { box-sizing: border-box; }

.dt-2026 a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
.dt-2026 a:hover { color: var(--accent-hover); }

.dt-2026 .dt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .dt-2026 .dt-container { padding: 0 16px; }
}

/* ============================================================
 * Page header / aspirational copy + stat bar
 * ============================================================ */

.dt-2026 .dt-hero {
    margin-bottom: 48px;
}

.dt-2026 .dt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: var(--r-pill);
    margin-bottom: 20px;
}

.dt-2026 .dt-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(15,118,110,.18);
    animation: dt-pulse 2.4s ease-in-out infinite;
}

@keyframes dt-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(15,118,110,.18); }
    50%       { box-shadow: 0 0 0 8px rgba(15,118,110,.08); }
}

.dt-2026 h1.dt-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -.025em;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 16px;
}

.dt-2026 .dt-hero-sub {
    font-size: 18px;
    color: var(--ink-3);
    max-width: 560px;
    margin: 0 0 28px;
}

.dt-2026 .dt-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 18px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-sm);
}

.dt-2026 .dt-stat {
    display: flex;
    flex-direction: column;
}

.dt-2026 .dt-stat strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    line-height: 1.1;
}

.dt-2026 .dt-stat span {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: .02em;
}

/* ============================================================
 * Filter bar
 * ============================================================ */

.dt-2026 .dt-filter-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.dt-2026 .dt-filter-form {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 10px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .dt-2026 .dt-filter-form { grid-template-columns: 1fr; }
}

.dt-2026 .dt-input,
.dt-2026 .dt-select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: var(--surface-2);
    border: 1px solid transparent;
    border-radius: var(--r-input);
    color: var(--ink);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    appearance: none;
}

.dt-2026 .dt-input::placeholder { color: var(--ink-4); }

.dt-2026 .dt-input:focus,
.dt-2026 .dt-select:focus {
    background: var(--surface);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(15,118,110,.10);
    outline: none;
}

.dt-2026 .dt-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.dt-2026 .dt-input-wrap .dt-input-icon {
    position: absolute;
    left: 16px;
    color: var(--ink-4);
    pointer-events: none;
    font-size: 15px;
}

.dt-2026 .dt-input-wrap .dt-input { padding-left: 44px; }

.dt-2026 .dt-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7787' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ============================================================
 * Primary CTA button (Search / Apply)
 * ============================================================ */

.dt-2026 .dt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--r-button);
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: -.005em;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
    text-decoration: none;
}

.dt-2026 .dt-btn:hover { transform: translateY(-1px); }
.dt-2026 .dt-btn:active { transform: translateY(0); }

.dt-2026 .dt-btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 1px 2px rgba(11,18,32,.18), 0 6px 14px -4px rgba(11,18,32,.32);
}

.dt-2026 .dt-btn-primary:hover {
    background: var(--accent-deep);
    color: #fff;
    box-shadow: 0 2px 4px rgba(15,118,110,.20), 0 10px 24px -6px rgba(15,118,110,.40);
}

.dt-2026 .dt-btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 1px 2px rgba(15,118,110,.20), 0 8px 16px -4px rgba(15,118,110,.36);
}

.dt-2026 .dt-btn-accent:hover {
    background: var(--accent-hover);
    color: #fff;
    box-shadow: 0 2px 6px rgba(15,118,110,.24), 0 12px 28px -6px rgba(15,118,110,.44);
}

.dt-2026 .dt-btn-applied {
    background: var(--success-bg);
    color: var(--success-ink);
    cursor: default;
}

.dt-2026 .dt-btn-applied:hover { transform: none; }

.dt-2026 .dt-btn-ghost {
    background: transparent;
    color: var(--ink-2);
    border: 1px solid var(--border-2);
}

.dt-2026 .dt-btn-ghost:hover {
    color: var(--ink);
    border-color: var(--ink-2);
    background: var(--surface);
}

.dt-2026 .dt-btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.dt-2026 .dt-btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }
.dt-2026 .dt-btn-block { width: 100%; }

.dt-2026 .dt-link-reset {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--ink-3);
}

/* ============================================================
 * Sort / Result count bar
 * ============================================================ */

.dt-2026 .dt-result-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--ink-3);
}

.dt-2026 .dt-result-bar strong { color: var(--ink); }

.dt-2026 .dt-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dt-2026 .dt-sort select {
    height: 40px;
    padding: 0 36px 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-input);
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7787' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color .15s ease;
}

.dt-2026 .dt-sort select:hover { border-color: var(--border-2); }

/* ============================================================
 * Job card (listing)
 * ============================================================ */

.dt-2026 .dt-job-list {
    display: grid;
    gap: 12px;
}

.dt-2026 .dt-job {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}

.dt-2026 .dt-job::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.dt-2026 .dt-job:hover {
    border-color: var(--border-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dt-2026 .dt-job:hover::before { transform: scaleY(1); }

@media (max-width: 768px) {
    .dt-2026 .dt-job {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 18px 16px;
    }
    .dt-2026 .dt-job .dt-job-cta { grid-column: 1 / -1; }
}

.dt-2026 .dt-job-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.dt-2026 .dt-job-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dt-2026 .dt-job-logo-placeholder {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-deep);
    background: linear-gradient(135deg, var(--accent-soft), var(--surface-2));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .dt-2026 .dt-job-logo { width: 48px; height: 48px; border-radius: 12px; }
    .dt-2026 .dt-job-logo-placeholder { font-size: 18px; }
}

.dt-2026 .dt-job-main { min-width: 0; }

.dt-2026 .dt-job-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 6px;
    letter-spacing: -.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dt-2026 .dt-job-title a { color: var(--ink); }
.dt-2026 .dt-job-title a:hover { color: var(--accent); }

.dt-2026 .dt-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.dt-2026 .dt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-2);
    background: var(--surface-2);
    border-radius: var(--r-pill);
    line-height: 1;
    white-space: nowrap;
}

.dt-2026 .dt-chip i { font-size: 12px; color: var(--ink-3); }

.dt-2026 .dt-chip-salary {
    background: var(--salary-bg);
    color: var(--salary-ink);
    font-weight: 600;
}

.dt-2026 .dt-chip-salary i { color: var(--salary-ink); }

.dt-2026 .dt-chip-match {
    background: var(--match-bg);
    color: var(--match-ink);
    font-weight: 700;
    letter-spacing: -.01em;
}

.dt-2026 .dt-chip-fresh {
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-weight: 600;
}

.dt-2026 .dt-job-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dt-2026 .dt-save {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink-3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color .15s ease, background .15s ease, border-color .15s ease, transform .12s ease;
}

.dt-2026 .dt-save:hover { color: var(--warn-ink); border-color: var(--warn-ink); background: var(--warn-bg); }
.dt-2026 .dt-save.is-saved { color: var(--warn-ink); border-color: var(--warn-ink); background: var(--warn-bg); }

/* ============================================================
 * Pagination
 * ============================================================ */

.dt-2026 .dt-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.dt-2026 .dt-pagination .pagination {
    display: inline-flex;
    gap: 4px;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    margin: 0;
}

.dt-2026 .dt-pagination .page-item .page-link {
    border: none;
    background: transparent;
    color: var(--ink-2);
    border-radius: var(--r-pill);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s ease, color .15s ease;
}

.dt-2026 .dt-pagination .page-item .page-link:hover {
    background: var(--surface-2);
    color: var(--ink);
}

.dt-2026 .dt-pagination .page-item.active .page-link {
    background: var(--ink);
    color: #fff;
}

.dt-2026 .dt-pagination .page-item.disabled .page-link { color: var(--ink-4); }

/* ============================================================
 * Job DETAIL page
 * ============================================================ */

.dt-2026 .dt-back-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--ink-3);
}

.dt-2026 .dt-back-row a {
    color: var(--ink-3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    transition: background .15s ease, color .15s ease;
}

.dt-2026 .dt-back-row a:hover { background: var(--surface-2); color: var(--ink); }

.dt-2026 .dt-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
}

@media (max-width: 992px) { .dt-2026 .dt-detail-grid { grid-template-columns: 1fr; } }

.dt-2026 .dt-detail-main { min-width: 0; }

.dt-2026 .dt-hero-card {
    border-radius: var(--r-card);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.dt-2026 .dt-hero-banner {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface-2);
    background-image: linear-gradient(135deg, var(--accent-deep), var(--accent));
    position: relative;
}

.dt-2026 .dt-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,18,32,0) 30%, rgba(11,18,32,.55) 100%);
}

.dt-2026 .dt-hero-card-body {
    padding: 22px 28px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dt-2026 .dt-company-logo-lg {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: var(--surface);
    border: 4px solid var(--surface);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -64px;
}

.dt-2026 .dt-company-logo-lg img { width: 100%; height: 100%; object-fit: cover; }
.dt-2026 .dt-company-logo-lg .dt-job-logo-placeholder { font-size: 30px; }

.dt-2026 .dt-hero-text {
    padding-bottom: 6px;
    flex-grow: 1;
}

.dt-2026 .dt-hero-company {
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}

.dt-2026 .dt-hero-company a { color: var(--ink-2); }
.dt-2026 .dt-hero-company a:hover { color: var(--accent); }

.dt-2026 .dt-hero-job-title {
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0;
}

@media (max-width: 768px) {
    .dt-2026 .dt-hero-banner { height: 140px; }
    .dt-2026 .dt-hero-card-body { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px 20px; }
    .dt-2026 .dt-company-logo-lg { width: 72px; height: 72px; border-radius: 16px; margin-top: -48px; }
}

.dt-2026 .dt-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.dt-2026 .dt-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 28px 32px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .dt-2026 .dt-section { padding: 22px 20px; }
}

.dt-2026 .dt-section h2 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.dt-2026 .dt-section p {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.7;
    margin: 0 0 14px;
}

.dt-2026 .dt-section p:last-child { margin-bottom: 0; }

.dt-2026 .dt-section ul,
.dt-2026 .dt-section ol {
    padding-left: 22px;
    color: var(--ink-2);
}

.dt-2026 .dt-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.dt-2026 .dt-skill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.dt-2026 .dt-skill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--surface-2);
    color: var(--ink);
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: border-color .15s ease, color .15s ease, background .15s ease, transform .12s ease;
}

.dt-2026 .dt-skill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ============================================================
 * Sticky sidebar (detail page)
 * ============================================================ */

.dt-2026 .dt-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 992px) { .dt-2026 .dt-sidebar { position: static; } }

.dt-2026 .dt-side-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.dt-2026 .dt-apply-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.dt-2026 .dt-salary-display {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 4px;
    line-height: 1.1;
}

.dt-2026 .dt-salary-sub {
    font-size: 13px;
    color: var(--ink-3);
    margin-bottom: 18px;
}

.dt-2026 .dt-stat-row {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

.dt-2026 .dt-stat-row:first-of-type { border-top: none; padding-top: 4px; }

.dt-2026 .dt-stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dt-2026 .dt-stat-item strong {
    font-size: 16px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
}

.dt-2026 .dt-stat-item span {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 2px;
}

.dt-2026 .dt-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 14px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.dt-2026 .dt-trust i { color: var(--accent); }

.dt-2026 .dt-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dt-2026 .dt-share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    margin-right: 4px;
}

.dt-2026 .dt-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease, transform .12s ease;
    font-size: 14px;
}

.dt-2026 .dt-share-btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.dt-2026 .dt-side-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.dt-2026 .dt-side-actions .dt-btn {
    height: 42px;
    font-size: 13px;
}

/* ============================================================
 * Empty state
 * ============================================================ */

.dt-2026 .dt-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--surface);
    border: 1px dashed var(--border-2);
    border-radius: var(--r-card);
}

.dt-2026 .dt-empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
}

.dt-2026 .dt-empty p { color: var(--ink-3); margin: 0 0 14px; }

/* ============================================================
 * HOMEPAGE — Categories grid (premium 2026)
 * ============================================================ */

.dt-cats-section {
    background: var(--bg, #FAFAF7);
    padding: 96px 0;
}

@media (max-width: 768px) {
    .dt-cats-section { padding: 64px 0; }
}

.dt-cats-section .dt-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.dt-cats-section .dt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(15, 118, 110, 0.10);
    color: #064E47;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
}

.dt-cats-section .dt-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #0F766E;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.18);
}

.dt-cats-section h2.dt-section-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0B1220;
    margin: 0 0 12px;
    line-height: 1.1;
}

.dt-cats-section .dt-section-sub {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 17px;
    color: #6B7787;
    max-width: 540px;
    margin: 0 auto;
}

.dt-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .dt-cat-grid { padding: 0 16px; gap: 12px; }
}

.dt-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E7EAEE;
    border-radius: 20px;
    padding: 24px;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
    min-height: 156px;
    font-family: 'Inter', system-ui, sans-serif;
}

.dt-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 100% 0%, var(--cat-glow, rgba(15, 118, 110, 0.10)) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .25s ease;
    z-index: -1;
}

.dt-cat-card:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 1px 2px rgba(11,18,32,.04), 0 16px 40px -8px rgba(11,18,32,.16);
}

.dt-cat-card:hover::before { opacity: 1; }

.dt-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--cat-bg, linear-gradient(135deg, #CCFBF1, #5EEAD4));
    color: var(--cat-fg, #064E47);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .25s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 1px 2px rgba(11,18,32,.06), inset 0 1px 0 rgba(255,255,255,.4);
}

.dt-cat-card:hover .dt-cat-icon {
    transform: scale(1.08) rotate(-3deg);
}

.dt-cat-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.75;
}

.dt-cat-name {
    font-size: 17px;
    font-weight: 700;
    color: #0B1220;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}

.dt-cat-count {
    font-size: 13px;
    color: #6B7787;
    font-weight: 500;
}

.dt-cat-count strong { color: #0F766E; font-weight: 600; }

.dt-cat-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #0B1220;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(8px, -8px) scale(.85);
    transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
}

.dt-cat-card:hover .dt-cat-arrow {
    opacity: 1;
    transform: translate(0,0) scale(1);
}

.dt-cat-arrow svg { width: 14px; height: 14px; }

.dt-cat-card.dt-cat-empty {
    opacity: 0.65;
}

.dt-cat-card.dt-cat-empty:hover {
    transform: none;
    box-shadow: none;
    border-color: #E7EAEE;
}

.dt-cat-card.dt-cat-empty:hover .dt-cat-arrow { opacity: 0; }

.dt-cats-foot {
    text-align: center;
    margin-top: 40px;
}

.dt-cats-foot a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border: 1px solid #CFD5DD;
    border-radius: 999px;
    color: #0B1220;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.dt-cats-foot a:hover {
    border-color: #0F766E;
    color: #0F766E;
    background: rgba(15, 118, 110, 0.04);
}
