:root {
    --orange: #f47c04;
    --navy: #021733;
    --muted: #6b7280;
    --light: #f7f7f7;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

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

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.brand-mark {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 12px;
}

h1 {
    margin: 0;
    font-size: 32px;
    color: var(--navy);
}

.muted {
    color: var(--muted);
    margin-top: 8px;
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy);
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: var(--orange);
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

button:hover {
    opacity: 0.92;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
}

.auth-footer a {
    color: var(--orange);
    font-weight: 800;
    text-decoration: none;
}

.flash {
    background: #fff3e8;
    border-left: 4px solid var(--orange);
    padding: 12px;
    margin: 16px 0;
    border-radius: 8px;
    color: var(--navy);
}
.app-shell {
    min-height: 100vh;
    display: flex;
    background: #f4f6f8;
}

.sidebar {
    width: 260px;
    background: var(--navy);
    color: white;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 36px;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar a {
    color: white;
    text-decoration: none;
    padding: 13px 14px;
    border-radius: 10px;
    font-weight: 700;
}

.sidebar a.active,
.sidebar a:hover {
    background: rgba(244,124,4,0.18);
    color: var(--orange);
}

.logout-link {
    margin-top: auto;
}

.dashboard-main {
    flex: 1;
    max-width: 1180px;
    margin:5px 5px 5px 5px;
    padding:20px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.eyebrow {
    color: var(--orange);
    font-weight: 900;
    margin: 0 0 6px;
    text-transform: uppercase;
    font-size: 13px;
}

.dashboard-header h1 {
    margin: 0;
    font-size: 38px;
}

.primary-action {
    background: var(--orange);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.stat-card,
.panel {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(2,23,51,0.08);
}

.stat-card span {
    color: var(--muted);
    font-weight: 800;
}

.stat-card strong {
    display: block;
    font-size: 38px;
    color: var(--navy);
    margin: 10px 0;
}

.stat-card p,
.panel p {
    margin: 0;
    color: var(--muted);
}

.panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-actions {
    display: flex;
    gap: 12px;
}

.quick-actions a {
    color: var(--orange);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 800px) {
    .app-shell {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

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

    .dashboard-header,
    .panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}
.form-panel {
    align-items: stretch;
    display: block;
}

.hundito-form {
    width: 100%;
    max-width: 680px;
}

textarea,
select {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

textarea:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
}

.jobs-list {
    display: grid;
    gap: 18px;
}

.job-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(2,23,51,0.08);
}

.job-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.job-card h2 {
    margin: 0 0 8px;
    color: var(--navy);
}

.job-amount {
    font-size: 27px;
    font-weight: 900;
    color: var(--orange);
    white-space: nowrap;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    align-items: center;
}

.status-pill {
    background: rgba(244,124,4,0.12);
    color: var(--orange);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}
.browse-header .muted {
    margin-bottom: 0;
}

.browse-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.toolbar-pill {
    background: white;
    color: var(--navy);
    border: 1px solid rgba(2,23,51,0.08);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(2,23,51,0.05);
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.browse-card {
    background: white;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(2,23,51,0.09);
    border: 1px solid rgba(2,23,51,0.05);
}

.browse-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.category-badge {
    display: inline-block;
    background: rgba(244,124,4,0.12);
    color: var(--orange);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.browse-card h2 {
    margin: 0;
    font-size: 24px;
    color: var(--navy);
    line-height: 1.15;
}

.browse-amount {
    color: var(--orange);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.job-description {
    color: #334155;
    line-height: 1.55;
    margin: 18px 0 22px;
}

.job-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.job-meta-grid div {
    background: #f8fafc;
    padding: 14px;
    border-radius: 14px;
}

.job-meta-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.job-meta-grid strong {
    color: var(--navy);
    font-size: 15px;
}

.browse-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.view-job-btn {
    background: var(--navy);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
}

.view-job-btn:hover {
    background: var(--orange);
}

.empty-state {
    grid-column: 1 / -1;
    background: white;
    border-radius: 24px;
    padding: 54px 28px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(2,23,51,0.08);
}

.empty-icon {
    font-size: 54px;
    margin-bottom: 12px;
}

.empty-state h2 {
    margin: 0 0 10px;
    color: var(--navy);
}

.empty-state p {
    color: var(--muted);
    margin-bottom: 22px;
}

.empty-state a {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
}

@media (max-width: 1000px) {
    .browse-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .browse-card-top,
    .browse-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .browse-amount {
        font-size: 36px;
    }

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

.hero-amount {
    color: var(--orange);
    font-size: 54px;
    font-weight: 900;
    white-space: nowrap;
}

.view-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.view-main-card,
.poster-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(2,23,51,0.08);
    border: 1px solid rgba(2,23,51,0.05);
}

.view-main-card h2 {
    color: var(--navy);
    margin: 18px 0 10px;
    font-size: 28px;
}

.view-description {
    color: #334155;
    line-height: 1.65;
    font-size: 17px;
    margin-bottom: 24px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.detail-grid div {
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px;
}

.detail-grid span,
.poster-stats span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.detail-grid strong,
.poster-stats strong {
    color: var(--navy);
    font-size: 17px;
}

.big-apply-btn {
    display: block;
    text-align: center;
    background: var(--orange);
    color: white;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
}

.big-apply-btn:hover {
    opacity: 0.92;
}

.owner-box {
    background: rgba(244,124,4,0.1);
    border-left: 5px solid var(--orange);
    padding: 16px;
    border-radius: 14px;
}

.owner-box p {
    margin: 6px 0 0;
    color: var(--muted);
}

.poster-card {
    text-align: center;
    height: fit-content;
}

.poster-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    margin: 0 auto 16px;
}

.poster-card h3 {
    margin: 0;
    font-size: 24px;
    color: var(--navy);
}

.poster-stats {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.poster-stats div {
    background: #f8fafc;
    padding: 14px;
    border-radius: 14px;
}

@media (max-width: 950px) {
    .view-layout {
        grid-template-columns: 1fr;
    }

    .hero-amount {
        font-size: 42px;
    }
}

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

.applied-box {
    background: rgba(2,23,51,0.06);
    border-left: 5px solid var(--navy);
    padding: 16px;
    border-radius: 14px;
}

.applied-box p {
    margin: 6px 0 0;
    color: var(--muted);
}

.job-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.manage-btn {
    background: var(--navy);
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
}

.manage-btn:hover {
    background: var(--orange);
}

.job-top-right {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.manage-btn {
    background: var(--navy);
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
}

.manage-btn:hover {
    background: var(--orange);
}

.applicant-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.applicant-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
}

.applicant-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.applicant-top strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
}

.applicant-top span {
    color: var(--muted);
    font-size: 13px;
}

.small-avatar {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin: 0;
}

.applicant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.applicant-stats div {
    background: white;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.applicant-stats span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.applicant-stats strong {
    color: var(--navy);
    font-size: 15px;
}

.accept-btn {
    display: block;
    text-align: center;
    background: var(--orange);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
}

.empty-mini {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 22px;
}

.empty-mini div {
    font-size: 34px;
    margin-bottom: 8px;
}

.empty-mini strong {
    color: var(--navy);
}

.empty-mini p {
    color: var(--muted);
    margin-bottom: 0;
}
.manage-layout {
    display: grid;
    gap: 24px;
}

.manage-job-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.manage-job-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    white-space: nowrap;
}

.applicants-section {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(2,23,51,0.08);
}

.section-head {
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0;
    color: var(--navy);
}

.wide-applicant-list {
    display: grid;
    gap: 14px;
}

.wide-applicant-card {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr auto;
    gap: 18px;
    align-items: center;
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
}

.applicant-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.applicant-person strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
}

.applicant-person span {
    color: var(--muted);
    font-size: 13px;
}

.wide-applicant-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wide-applicant-stats div {
    background: white;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.wide-applicant-stats span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.wide-applicant-stats strong {
    color: var(--navy);
}

.accept-btn.compact {
    padding: 12px 20px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .wide-applicant-card {
        grid-template-columns: 1fr;
    }

    .wide-applicant-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .manage-job-header {
        flex-direction: column;
    }
}

.danger-zone {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.danger-zone h3 {
    color: #dc2626;
    margin-bottom: 8px;
}

.danger-zone p {
    color: var(--muted);
    margin-bottom: 16px;
}

.delete-job-btn {
    display: inline-block;
    background: #dc2626;
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
}

.delete-job-btn:hover {
    opacity: 0.9;
}

.dashboard-main {
    flex: 1;
    background: #f4f6f8;
}

.dashboard-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.dash-hero {
    background: var(--navy);
    color: white;
    border-radius: 28px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: 0 18px 45px rgba(2,23,51,0.18);
}

.dash-hero h1 {
    color: white;
    font-size: 42px;
    margin: 0;
}

.dash-hero .muted {
    color: rgba(255,255,255,0.72);
    margin: 8px 0 0;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dash-stat-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 32px rgba(2,23,51,0.08);
}

.dash-stat-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dash-stat-card strong {
    display: block;
    color: var(--navy);
    font-size: 38px;
    margin: 8px 0;
}

.dash-stat-card p {
    margin: 0;
    color: var(--muted);
}

.dash-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.dash-actions a {
    background: white;
    border-radius: 20px;
    padding: 22px;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(2,23,51,0.08);
    border: 1px solid rgba(2,23,51,0.05);
}

.dash-actions strong {
    display: block;
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 6px;
}

.dash-actions span {
    color: var(--muted);
}

.dash-section {
    background: white;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(2,23,51,0.08);
}

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

.dash-section-head h2 {
    color: var(--navy);
    font-size: 30px;
    margin: 0;
}

.dash-section-head a {
    color: var(--orange);
    font-weight: 900;
    text-decoration: none;
}

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

.dash-job-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 22px;
    background: #f8fafc;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(2,23,51,0.06);
}

.dash-job-main h3 {
    color: var(--navy);
    font-size: 24px;
    margin: 10px 0;
}

.dash-job-main p {
    color: #334155;
    line-height: 1.55;
    margin: 0 0 16px;
}

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

.dash-job-meta span {
    background: white;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.dash-job-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.dash-job-amount {
    color: var(--orange);
    font-size: 34px;
    font-weight: 900;
}

.dash-empty {
    background: #f8fafc;
    border-radius: 22px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dash-empty-icon {
    font-size: 42px;
}

.dash-empty h3 {
    color: var(--navy);
    margin: 0 0 6px;
}

.dash-empty p {
    color: var(--muted);
    margin: 0;
}

.dash-empty .primary-action {
    margin-left: auto;
}

@media (max-width: 1000px) {
    .dash-stats,
    .dash-actions {
        grid-template-columns: 1fr;
    }

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

    .dash-job-side {
        align-items: flex-start;
    }

    .dash-hero,
    .dash-section-head,
    .dash-empty {
        flex-direction: column;
        align-items: flex-start;
    }

    .dash-empty .primary-action {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .dashboard-wrap {
        padding: 0px;
    }

    .dash-hero {
        padding: 26px;
    }

    .dash-hero h1 {
        font-size: 34px;
    }
}

.home-page {
    min-height: 100vh;
    background: #f4f6f8;
}

.home-nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-brand {
    color: var(--navy);
    font-size: 24px;
    font-weight: 900;
}

.home-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.home-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 900;
}

.nav-register {
    background: var(--orange);
    color: white !important;
    padding: 11px 16px;
    border-radius: 12px;
}

.home-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 34px 60px;
}

.hero-section {
    background: var(--navy);
    border-radius: 34px;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 44px;
    align-items: center;
    box-shadow: 0 22px 55px rgba(2,23,51,0.18);
}

.hero-copy h1 {
    color: white;
    font-size: 58px;
    line-height: 1.02;
    margin: 0;
    letter-spacing: -2px;
}

.hero-copy h1 span {
    display: block;
    color: var(--orange);
}

.hero-text {
    color: rgba(255,255,255,0.76);
    font-size: 19px;
    line-height: 1.6;
    margin: 22px 0 28px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-action.big {
    padding: 16px 24px;
    font-size: 17px;
}

.secondary-action {
    background: white;
    color: var(--navy);
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
}

.hero-logo-card {
    background: white;
    border-radius: 28px;
    padding: 26px;
}

.hero-logo-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.reasons-section {
    margin-top: 34px;
    background: white;
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 12px 35px rgba(2,23,51,0.08);
}

.section-center {
    text-align: center;
    margin-bottom: 26px;
}

.section-center h2 {
    color: var(--navy);
    font-size: 36px;
    margin: 0;
}

.reason-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    justify-content: center;
}

.reason-cloud span {
    background: #f8fafc;
    color: var(--navy);
    border: 1px solid rgba(2,23,51,0.08);
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 900;
}

.reason-cloud span:nth-child(odd) {
    background: rgba(244,124,4,0.12);
    color: var(--orange);
}

.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 34px;
}

.split-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(2,23,51,0.08);
}

.split-card h3 {
    color: var(--navy);
    font-size: 32px;
    margin: 0 0 10px;
}

.split-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.split-card a {
    color: var(--orange);
    font-weight: 900;
    text-decoration: none;
}

.orange-card {
    background: var(--orange);
}

.orange-card h3,
.orange-card p,
.orange-card a {
    color: white;
}

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

    .hero-copy h1 {
        font-size: 46px;
    }

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

@media (max-width: 600px) {
    .home-nav {
        padding: 20px;
    }

    .home-main {
        padding: 10px 20px 40px;
    }

    .hero-section {
        padding: 30px;
        border-radius: 26px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .reasons-section {
        padding: 28px;
    }
}

.assigned-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.message-btn,
.complete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    padding: 14px 22px;
    border-radius: 14px;
    transition: 0.2s ease;
    font-size: 15px;
    cursor: pointer;
}

.message-btn {
    background: #021733;
    color: white;
    border: 2px solid #021733;
}

.message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(2,23,51,0.18);
}

.complete-btn {
    background: #f47c04;
    color: white;
    border: 2px solid #f47c04;
}

.complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(244,124,4,0.25);
}

.thread-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.thread-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(2,23,51,0.08);
}

.message-list {
    padding: 24px;
    max-height: 600px;
    overflow-y: auto;
    background: #f8fafc;
}

.message-bubble {
    background: white;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    max-width: 70%;
    box-shadow: 0 6px 18px rgba(2,23,51,0.05);
}

.my-message {
    margin-left: auto;
    background: rgba(244,124,4,0.12);
}

.message-user {
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.message-text {
    line-height: 1.55;
    color: #334155;
}

.message-time {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
}

.message-form {
    border-top: 1px solid #e5e7eb;
    padding: 20px;
}

.message-form textarea {
    width: 100%;
    min-height: 110px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 14px;
    resize: vertical;
    margin-bottom: 14px;
}

.message-form button {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 900;
    cursor: pointer;
}

.thread-list-header {
    margin-bottom: 28px;
}

.thread-list-header h1 {
    color: var(--navy);
    font-size: 42px;
    margin: 0;
}

.thread-list {
    display: grid;
    gap: 14px;
}

.thread-row {
    background: white;
    border-radius: 20px;
    padding: 20px 24px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(2,23,51,0.08);
    transition: 0.2s ease;
}

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

.thread-row-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.thread-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(244,124,4,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.thread-row-left h3 {
    color: var(--navy);
    margin: 0 0 4px;
}

.thread-row-left p {
    margin: 0;
    color: var(--muted);
}

.thread-row-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.thread-arrow {
    color: var(--orange);
    font-size: 26px;
    font-weight: 900;
}

.messages-empty {
    background: white;
    border-radius: 28px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(2,23,51,0.08);
}

.messages-empty img {
    width: 170px;
    height: auto;
    margin-bottom: 20px;
}

.messages-empty h2 {
    color: var(--navy);
    margin-bottom: 10px;
}

.messages-empty p {
    color: var(--muted);
}

.messages-empty ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.messages-empty li {
    margin: 10px 0;
    color: var(--navy);
    font-weight: 700;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.settings-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 32px rgba(2,23,51,0.08);
}

.settings-card h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 24px;
}

.settings-card p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 18px;
}

.settings-list {
    margin: 0;
    padding-left: 20px;
    color: #334155;
    line-height: 1.8;
}

.settings-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f8fafc;
    padding: 14px;
    border-radius: 14px;
    font-weight: 900;
    color: var(--navy);
}

.settings-toggle input {
    width: auto;
    margin: 0;
}

.settings-btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    text-decoration: none;
    padding: 13px 17px;
    border-radius: 12px;
    font-weight: 900;
}

.settings-btn.secondary {
    background: var(--navy);
}

.alert-card {
    border-left: 5px solid var(--orange);
}

.danger-settings {
    border-left: 5px solid #dc2626;
}

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