/* =========================================================
   ECOPORT ASSESSMENT - STATIC UI CSS
   No Tailwind build / no npm required
   Put this file at: public/css/ecoport.css
   ========================================================= */

:root {
    --eco-950: #052e2b;
    --eco-900: #064e3b;
    --eco-800: #065f46;
    --eco-700: #047857;
    --eco-600: #059669;
    --eco-500: #10b981;
    --eco-400: #34d399;
    --eco-300: #6ee7b7;
    --eco-200: #a7f3d0;
    --eco-100: #d1fae5;
    --eco-50: #ecfdf5;

    --cyan-50: #ecfeff;
    --cyan-700: #0e7490;

    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-200: #fde68a;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;

    --danger: #dc2626;
    --white: #ffffff;

    --sidebar-width: 276px;
    --radius-xl: 16px;
    --radius-2xl: 22px;
    --radius-3xl: 28px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --shadow-card: 0 10px 35px rgba(15, 23, 42, .06);
    --shadow-lg: 0 24px 60px rgba(2, 44, 34, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Figtree", Arial, sans-serif;
    color: var(--slate-800);
    background: var(--slate-50);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    display: block;
}

.eco-svg,
.eco-svg svg {
    width: 20px;
    height: 20px;
}

.eco-svg-lg,
.eco-svg-lg svg {
    width: 24px;
    height: 24px;
}

.eco-muted {
    color: var(--slate-500);
}

/* Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--slate-300) transparent;
}
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover {
    background: var(--slate-400);
}

/* =========================================================
   SHARED BUTTONS
   ========================================================= */

.eco-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: .18s ease;
    white-space: nowrap;
}

.eco-btn:hover {
    transform: translateY(-1px);
}

.eco-btn-primary {
    color: white;
    background: var(--eco-700);
    box-shadow: 0 6px 18px rgba(4, 120, 87, .18);
}
.eco-btn-primary:hover {
    background: var(--eco-800);
}

.eco-btn-soft {
    color: var(--eco-800);
    background: var(--eco-50);
    border-color: var(--eco-200);
}
.eco-btn-soft:hover {
    background: var(--eco-100);
}

.eco-btn-light {
    color: var(--slate-700);
    background: white;
    border-color: var(--slate-200);
}
.eco-btn-light:hover {
    background: var(--slate-50);
}

.eco-btn-white {
    color: var(--eco-950);
    background: white;
}
.eco-btn-white:hover {
    background: var(--eco-50);
}

.eco-btn-glass {
    color: white;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.18);
}
.eco-btn-glass:hover {
    background: rgba(255,255,255,.16);
}

.eco-btn-amber {
    color: white;
    background: var(--amber-600);
}
.eco-btn-amber:hover {
    background: var(--amber-700);
}

/* =========================================================
   PUBLIC / WELCOME
   ========================================================= */

.eco-public {
    background: white;
    color: var(--slate-800);
}

.eco-public-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 80;
    background: rgba(5, 46, 43, .94);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.eco-public-nav-inner {
    max-width: 1240px;
    height: 76px;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.eco-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
}

.eco-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--eco-300), var(--eco-500));
    color: var(--eco-950);
    box-shadow: 0 8px 24px rgba(52, 211, 153, .18);
}

.eco-brand-mark svg {
    width: 21px;
    height: 21px;
}

.eco-brand-text {
    color: white;
    letter-spacing: -.01em;
}

.eco-public-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.eco-public-menu > a:not(.eco-btn) {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 650;
    padding: 9px 13px;
    border-radius: 10px;
    transition: .18s ease;
}
.eco-public-menu > a:not(.eco-btn):hover {
    color: white;
    background: rgba(255,255,255,.08);
}

.eco-public-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: white;
    border-radius: 12px;
    cursor: pointer;
}

.eco-mobile-menu {
    display: none;
    padding: 10px 18px 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.eco-mobile-menu.is-open {
    display: grid;
    gap: 4px;
}
.eco-mobile-menu a {
    color: rgba(255,255,255,.86);
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 650;
}
.eco-mobile-menu a:hover {
    background: rgba(255,255,255,.08);
}

.eco-public-hero {
    min-height: 760px;
    padding: 136px 24px 76px;
    background:
        radial-gradient(circle at 8% 20%, rgba(52,211,153,.18), transparent 26%),
        radial-gradient(circle at 94% 76%, rgba(34,211,238,.12), transparent 30%),
        linear-gradient(135deg, #052e2b 0%, #064e3b 48%, #042f2e 100%);
    color: white;
    overflow: hidden;
}

.eco-public-hero-inner {
    max-width: 1240px;
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 68px;
}

.eco-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(167, 243, 208, .18);
    background: rgba(52, 211, 153, .08);
    color: var(--eco-200);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eco-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--eco-300);
    box-shadow: 0 0 0 5px rgba(110,231,183,.08);
}

.eco-public-hero h1 {
    max-width: 700px;
    margin: 24px 0 0;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 850;
}

.eco-public-hero h1 span {
    color: var(--eco-300);
}

.eco-public-hero-copy {
    max-width: 630px;
    margin: 24px 0 0;
    color: var(--slate-300);
    font-size: 18px;
    line-height: 1.75;
}

.eco-public-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eco-public-metrics {
    max-width: 600px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.eco-public-metric strong {
    display: block;
    font-size: 24px;
    color: white;
}
.eco-public-metric span {
    display: block;
    margin-top: 4px;
    color: var(--slate-400);
    font-size: 13px;
    line-height: 1.45;
}

.eco-hero-image-wrap {
    position: relative;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    padding: 10px;
    background: rgba(255,255,255,.05);
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.eco-hero-image {
    width: 100%;
    height: 465px;
    object-fit: cover;
    border-radius: 23px;
}
.eco-hero-overlay-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 17px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.93);
    color: var(--slate-900);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}
.eco-hero-overlay-card small {
    display: block;
    color: var(--eco-700);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eco-hero-overlay-card strong {
    display: block;
    margin-top: 5px;
    font-size: 15px;
}

.eco-section {
    padding: 92px 24px;
}
.eco-section-alt {
    background: var(--slate-50);
}
.eco-container {
    max-width: 1240px;
    margin: 0 auto;
}
.eco-section-heading {
    max-width: 700px;
    margin-bottom: 42px;
}
.eco-kicker {
    color: var(--eco-700);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.eco-section-heading h2 {
    margin: 10px 0 0;
    color: var(--slate-900);
    font-size: clamp(30px, 3.5vw, 44px);
    letter-spacing: -.035em;
    line-height: 1.08;
}
.eco-section-heading p {
    margin: 16px 0 0;
    color: var(--slate-500);
    font-size: 16px;
    line-height: 1.75;
}

.eco-about-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 64px;
}
.eco-about-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-card);
}
.eco-about-copy h2 {
    margin: 10px 0 0;
    font-size: 40px;
    color: var(--slate-900);
    letter-spacing: -.035em;
}
.eco-about-copy p {
    color: var(--slate-500);
    line-height: 1.8;
    font-size: 16px;
}

.eco-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.eco-feature-card {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: .18s ease;
}
.eco-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.eco-feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--eco-700);
    background: var(--eco-50);
}
.eco-feature-icon svg {
    width: 23px;
    height: 23px;
}
.eco-feature-card h3 {
    margin: 20px 0 8px;
    color: var(--slate-900);
    font-size: 18px;
}
.eco-feature-card p {
    margin: 0;
    color: var(--slate-500);
    line-height: 1.65;
    font-size: 14px;
}

.eco-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.eco-process-card {
    padding: 26px;
    border-radius: 22px;
    background: var(--eco-950);
    color: white;
}
.eco-process-number {
    font-size: 12px;
    font-weight: 850;
    color: var(--eco-300);
    letter-spacing: .16em;
}
.eco-process-card h3 {
    margin: 18px 0 8px;
    font-size: 20px;
}
.eco-process-card p {
    margin: 0;
    color: var(--slate-300);
    line-height: 1.65;
    font-size: 14px;
}

.eco-public-cta {
    padding: 0 24px 90px;
}
.eco-public-cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 42px 46px;
    border-radius: 28px;
    color: white;
    background:
        radial-gradient(circle at 85% 20%, rgba(52,211,153,.22), transparent 32%),
        linear-gradient(135deg, var(--eco-950), var(--eco-800));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.eco-public-cta-inner h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -.03em;
}
.eco-public-cta-inner p {
    margin: 8px 0 0;
    color: var(--eco-100);
}

.eco-public-footer {
    padding: 30px 24px;
    background: #031f1d;
    color: var(--slate-300);
}
.eco-public-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.eco-public-footer small {
    color: var(--slate-400);
}

/* =========================================================
   LOGIN
   ========================================================= */

.eco-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    background: white;
}

.eco-login-visual {
    position: relative;
    min-height: 100vh;
    padding: 44px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 25%, rgba(52,211,153,.22), transparent 28%),
        radial-gradient(circle at 85% 82%, rgba(34,211,238,.12), transparent 30%),
        linear-gradient(145deg, #052e2b, #064e3b 62%, #043d36);
}
.eco-login-visual::after {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.09);
    box-shadow:
        0 0 0 48px rgba(255,255,255,.025),
        0 0 0 96px rgba(255,255,255,.018);
}
.eco-login-brand {
    position: relative;
    z-index: 2;
}
.eco-login-visual-content {
    position: relative;
    z-index: 2;
    max-width: 630px;
    padding: 80px 0;
}
.eco-login-visual-content h1 {
    margin: 18px 0 0;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.045em;
}
.eco-login-visual-content p {
    max-width: 570px;
    margin: 22px 0 0;
    color: var(--slate-300);
    font-size: 17px;
    line-height: 1.75;
}
.eco-login-benefits {
    margin-top: 30px;
    display: grid;
    gap: 13px;
}
.eco-login-benefit {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--eco-100);
    font-size: 14px;
}
.eco-login-benefit span:first-child {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.09);
    color: var(--eco-300);
}

.eco-login-panel {
    min-height: 100vh;
    padding: 36px;
    display: grid;
    place-items: center;
    background: var(--slate-50);
}
.eco-login-box {
    width: min(100%, 465px);
    padding: 36px;
    border: 1px solid var(--slate-200);
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-card);
}
.eco-login-box h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: 30px;
    letter-spacing: -.03em;
}
.eco-login-box > p {
    margin: 9px 0 28px;
    color: var(--slate-500);
    line-height: 1.6;
}
.eco-form-group {
    margin-bottom: 18px;
}
.eco-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--slate-700);
    font-size: 13px;
    font-weight: 750;
}
.eco-input-wrap {
    position: relative;
}
.eco-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    width: 19px;
    height: 19px;
    transform: translateY(-50%);
    color: var(--slate-400);
}
.eco-input {
    width: 100%;
    height: 48px;
    padding: 0 44px 0 42px;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    outline: none;
    background: white;
    color: var(--slate-900);
    transition: .18s ease;
}
.eco-input:focus {
    border-color: var(--eco-500);
    box-shadow: 0 0 0 4px rgba(16,185,129,.10);
}
.eco-password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 9px;
    color: var(--slate-500);
    background: transparent;
    cursor: pointer;
}
.eco-password-toggle:hover {
    background: var(--slate-100);
}
.eco-login-row {
    margin: 2px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.eco-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-600);
    font-size: 13px;
}
.eco-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--eco-700);
}
.eco-login-link {
    color: var(--eco-700);
    font-size: 13px;
    font-weight: 700;
}
.eco-login-submit {
    width: 100%;
}
.eco-login-back {
    margin-top: 20px;
    text-align: center;
    color: var(--slate-500);
    font-size: 13px;
}
.eco-login-back a {
    color: var(--eco-700);
    font-weight: 700;
}
.eco-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--eco-50);
    border: 1px solid var(--eco-200);
    color: var(--eco-800);
    font-size: 13px;
}
.eco-error {
    margin-top: 6px;
    color: var(--danger);
    font-size: 12px;
}

/* =========================================================
   APP LAYOUT
   ========================================================= */

.eco-app-body {
    overflow: hidden;
    background: var(--slate-50);
}

.eco-app-shell {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: var(--slate-50);
}

.eco-main-area {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.eco-page-header {
    position: relative;
    z-index: 20;
    flex: 0 0 auto;
    padding: 20px 28px;
    border-bottom: 1px solid var(--slate-200);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}

.eco-page-header-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.eco-page-main {
    min-height: 0;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--slate-50);
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.eco-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--slate-300);
    background: #172231;
    border-right: 1px solid rgba(255,255,255,.04);
    z-index: 60;
}

.eco-sidebar-brand {
    min-height: 76px;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: #101a28;
}

.eco-sidebar-brand .eco-brand-mark {
    width: 36px;
    height: 36px;
}
.eco-sidebar-brand .eco-brand-text {
    font-size: 17px;
}

.eco-sidebar-nav {
    flex: 1;
    padding: 22px 14px;
    overflow-y: auto;
}

.eco-nav-label {
    padding: 0 12px;
    margin: 4px 0 10px;
    color: #728198;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.eco-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.eco-nav-link {
    min-height: 48px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 620;
    transition: .18s ease;
}
.eco-nav-link:hover {
    color: white;
    background: rgba(255,255,255,.055);
}
.eco-nav-link.is-active {
    color: white;
    background: linear-gradient(90deg, rgba(16,185,129,.18), rgba(16,185,129,.07));
    box-shadow: inset 3px 0 0 var(--eco-400);
}
.eco-nav-icon {
    width: 22px;
    min-width: 22px;
    height: 22px;
    color: #9ba9bc;
}
.eco-nav-link.is-active .eco-nav-icon,
.eco-nav-link:hover .eco-nav-icon {
    color: var(--eco-300);
}

.eco-sidebar-user {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.eco-user-box {
    display: flex;
    align-items: center;
    gap: 11px;
}
.eco-user-avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(145deg, #64748b, #94a3b8);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
}
.eco-user-meta {
    min-width: 0;
    flex: 1;
}
.eco-user-name {
    overflow: hidden;
    color: white;
    font-size: 13px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.eco-logout-button {
    margin-top: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8fa0b4;
    font-size: 12px;
    cursor: pointer;
}
.eco-logout-button:hover {
    color: white;
}

.eco-mobile-topbar {
    display: none;
}
.eco-sidebar-backdrop {
    display: none;
}

/* =========================================================
   DASHBOARD
   ========================================================= */

.eco-dashboard {
    padding: 28px;
}
.eco-dashboard-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.eco-header-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--eco-700);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eco-header-kicker span {
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--eco-500);
}
.eco-header-title {
    margin: 4px 0 0;
    color: var(--slate-900);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.025em;
}
.eco-header-copy {
    margin: 5px 0 0;
    color: var(--slate-500);
    font-size: 13px;
}

.eco-dashboard-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 32px;
    margin-bottom: 28px;
    border-radius: var(--radius-3xl);
    color: white;
    background:
        radial-gradient(circle at 90% 10%, rgba(16,185,129,.25), transparent 34%),
        radial-gradient(circle at 42% 120%, rgba(45,212,191,.10), transparent 30%),
        linear-gradient(135deg, #052e2b 0%, #064e3b 100%);
    box-shadow: var(--shadow-card);
}
.eco-dashboard-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.eco-dashboard-hero-copy {
    max-width: 690px;
}
.eco-dashboard-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--eco-100);
    font-size: 11px;
    font-weight: 750;
}
.eco-dashboard-hero h1 {
    margin: 12px 0 0;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -.03em;
}
.eco-dashboard-hero p {
    max-width: 650px;
    margin: 10px 0 0;
    color: rgba(209,250,229,.78);
    line-height: 1.65;
    font-size: 14px;
}
.eco-dashboard-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eco-section-top {
    margin: 0 0 14px;
}
.eco-section-top .eco-kicker {
    font-size: 10px;
}
.eco-section-top h3 {
    margin: 4px 0 0;
    color: var(--slate-900);
    font-size: 19px;
    letter-spacing: -.018em;
}

.eco-stats-grid {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.eco-stat-card {
    padding: 21px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: .18s ease;
}
.eco-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.eco-stat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.eco-stat-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--eco-50);
    color: var(--eco-700);
    border: 1px solid var(--eco-100);
}
.eco-stat-icon.teal {
    background: #f0fdfa;
    color: #0f766e;
    border-color: #ccfbf1;
}
.eco-stat-icon.cyan {
    background: var(--cyan-50);
    color: var(--cyan-700);
    border-color: #cffafe;
}
.eco-stat-icon svg {
    width: 23px;
    height: 23px;
}
.eco-stat-badge {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 750;
}
.eco-stat-label {
    margin-top: 18px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 600;
}
.eco-stat-value {
    margin-top: 2px;
    color: var(--slate-900);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.04em;
}
.eco-stat-foot {
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--eco-700);
    font-size: 11px;
    font-weight: 650;
}
.eco-stat-foot svg {
    width: 15px;
    height: 15px;
}

.eco-card {
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    background: white;
    box-shadow: var(--shadow-sm);
}
.eco-card + .eco-card {
    margin-top: 20px;
}

.eco-quick-card {
    margin-bottom: 28px;
    padding: 21px 22px;
}
.eco-quick-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.eco-quick-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eco-quick-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--eco-700);
    background: var(--eco-50);
}
.eco-quick-icon svg {
    width: 20px;
    height: 20px;
}
.eco-quick-info h3 {
    margin: 0;
    color: var(--slate-900);
    font-size: 15px;
}
.eco-quick-info p {
    margin: 3px 0 0;
    color: var(--slate-500);
    font-size: 12px;
}
.eco-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.eco-pending {
    margin-bottom: 28px;
    overflow: hidden;
    border: 1px solid var(--amber-200);
    border-radius: var(--radius-2xl);
    background: rgba(255,251,235,.78);
}
.eco-pending-head {
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(253,230,138,.85);
}
.eco-pending-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--amber-100);
    color: var(--amber-700);
}
.eco-pending-icon svg {
    width: 20px;
    height: 20px;
}
.eco-pending-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.eco-pending-title-row h3 {
    margin: 0;
    color: var(--slate-900);
    font-size: 15px;
}
.eco-pending-count {
    padding: 4px 8px;
    border-radius: 999px;
    color: #92400e;
    background: #fde68a;
    font-size: 10px;
    font-weight: 800;
}
.eco-pending-copy {
    margin: 4px 0 0;
    color: var(--slate-600);
    font-size: 12px;
}
.eco-pending-item {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(253,230,138,.65);
}
.eco-pending-item:first-child {
    border-top: 0;
}
.eco-port-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eco-port-mini-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: white;
    color: var(--eco-700);
    box-shadow: var(--shadow-sm);
}
.eco-port-mini-icon svg {
    width: 18px;
    height: 18px;
}
.eco-port-mini small {
    display: block;
    color: var(--slate-500);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.eco-port-mini strong {
    display: block;
    margin-top: 1px;
    color: var(--slate-900);
    font-size: 13px;
}

.eco-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.eco-card-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.eco-card-head .eco-kicker {
    font-size: 9px;
}
.eco-card-head h3 {
    margin: 4px 0 0;
    color: var(--slate-900);
    font-size: 17px;
}
.eco-card-head-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--slate-50);
    color: var(--slate-500);
}
.eco-card-head-icon.orange {
    color: #ea580c;
    background: #fff7ed;
}
.eco-card-head-icon svg {
    width: 19px;
    height: 19px;
}

.eco-table-wrap {
    overflow-x: auto;
}
.eco-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}
.eco-table thead {
    background: #fbfcfd;
}
.eco-table th {
    padding: 11px 18px;
    color: var(--slate-500);
    font-size: 10px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 800;
}
.eco-table td {
    padding: 14px 18px;
    border-top: 1px solid var(--slate-100);
    color: var(--slate-700);
    font-size: 13px;
}
.eco-table tr:hover td {
    background: rgba(236,253,245,.36);
}
.eco-table-port {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--slate-800);
}
.eco-table-port-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--eco-50);
    color: var(--eco-700);
}
.eco-table-port-icon svg {
    width: 16px;
    height: 16px;
}
.eco-chip {
    display: inline-flex;
    max-width: 230px;
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--slate-100);
    color: var(--slate-700);
    font-size: 11px;
    font-weight: 700;
}
.eco-table-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--eco-700);
    font-weight: 750;
}
.eco-table-link:hover {
    color: var(--eco-900);
}
.eco-table-link svg {
    width: 14px;
    height: 14px;
}

.eco-empty {
    padding: 44px 20px;
    text-align: center;
}
.eco-empty-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--slate-100);
    color: var(--slate-400);
}
.eco-empty-icon.success {
    color: var(--eco-700);
    background: var(--eco-50);
}
.eco-empty-icon svg {
    width: 23px;
    height: 23px;
}
.eco-empty strong {
    display: block;
    margin-top: 11px;
    color: var(--slate-700);
    font-size: 13px;
}
.eco-empty p {
    max-width: 330px;
    margin: 5px auto 0;
    color: var(--slate-500);
    font-size: 11px;
    line-height: 1.55;
}

.eco-assignment-copy {
    padding: 0 20px 13px;
    color: var(--slate-500);
    font-size: 12px;
}
.eco-assignment-list {
    border-top: 1px solid var(--slate-100);
}
.eco-assignment-item {
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--slate-100);
}
.eco-assignment-item:first-child {
    border-top: 0;
}
.eco-assignment-item strong {
    display: block;
    color: var(--slate-800);
    font-size: 13px;
}
.eco-assignment-item small {
    display: block;
    margin-top: 2px;
    color: var(--slate-500);
    font-size: 10px;
}
.eco-assign-link {
    padding: 6px 9px;
    border-radius: 8px;
    color: var(--eco-700);
    background: var(--eco-50);
    font-size: 10px;
    font-weight: 800;
}
.eco-assign-link:hover {
    background: var(--eco-100);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .eco-public-hero-inner,
    .eco-about-grid {
        gap: 40px;
    }
    .eco-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eco-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .eco-public-menu {
        display: none;
    }
    .eco-public-menu-toggle {
        display: grid;
        place-items: center;
    }
    .eco-public-hero-inner,
    .eco-about-grid {
        grid-template-columns: 1fr;
    }
    .eco-public-hero {
        padding-top: 120px;
    }
    .eco-hero-image-wrap {
        max-width: 650px;
    }
    .eco-login-page {
        grid-template-columns: 1fr;
    }
    .eco-login-visual {
        display: none;
    }
    .eco-login-panel {
        padding: 24px;
    }

    .eco-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-102%);
        transition: transform .22s ease;
        box-shadow: 18px 0 50px rgba(15,23,42,.24);
    }
    body.eco-sidebar-open .eco-sidebar {
        transform: translateX(0);
    }
    .eco-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 50;
        background: rgba(2,6,23,.48);
    }
    body.eco-sidebar-open .eco-sidebar-backdrop {
        display: block;
    }
    .eco-mobile-topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 45;
        height: 64px;
        padding: 0 17px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #101a28;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .eco-mobile-topbar .eco-brand-text {
        font-size: 15px;
    }
    .eco-mobile-menu-button {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 11px;
        background: rgba(255,255,255,.05);
        color: white;
    }
    .eco-main-area {
        padding-top: 64px;
    }
    .eco-page-header {
        padding: 16px 18px;
    }
    .eco-dashboard {
        padding: 20px 18px;
    }
    .eco-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eco-stats-grid .eco-stat-card:last-child {
        grid-column: 1 / -1;
    }
    .eco-dashboard-hero-inner,
    .eco-quick-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .eco-public-nav-inner {
        padding: 0 17px;
    }
    .eco-public-hero {
        padding-left: 18px;
        padding-right: 18px;
        min-height: auto;
    }
    .eco-public-hero h1 {
        font-size: 43px;
    }
    .eco-public-hero-copy {
        font-size: 16px;
    }
    .eco-public-metrics {
        gap: 12px;
    }
    .eco-hero-image {
        height: 360px;
    }
    .eco-hero-overlay-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    .eco-section {
        padding: 70px 18px;
    }
    .eco-feature-grid,
    .eco-process-grid {
        grid-template-columns: 1fr;
    }
    .eco-about-image {
        height: 340px;
    }
    .eco-public-cta {
        padding: 0 18px 70px;
    }
    .eco-public-cta-inner {
        padding: 30px 26px;
        align-items: flex-start;
        flex-direction: column;
    }
    .eco-public-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .eco-login-panel {
        padding: 18px;
    }
    .eco-login-box {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .eco-header-title {
        font-size: 22px;
    }
    .eco-dashboard {
        padding: 16px 14px 24px;
    }
    .eco-dashboard-hero {
        padding: 24px 21px;
        border-radius: 22px;
    }
    .eco-dashboard-hero h1 {
        font-size: 24px;
    }
    .eco-dashboard-hero-actions,
    .eco-quick-actions {
        width: 100%;
        flex-direction: column;
    }
    .eco-dashboard-hero-actions .eco-btn,
    .eco-quick-actions .eco-btn {
        width: 100%;
    }
    .eco-stats-grid {
        grid-template-columns: 1fr;
    }
    .eco-stats-grid .eco-stat-card:last-child {
        grid-column: auto;
    }
    .eco-quick-card {
        padding: 18px;
    }
    .eco-pending-item {
        align-items: flex-start;
        flex-direction: column;
    }
    .eco-pending-item .eco-btn {
        width: 100%;
    }
}