.tmit-form,
.tmit-dashboard,
.tmit-login {
    --tmit-ink: #111827;
    --tmit-heading: #0f172a;
    --tmit-muted: #64748b;
    --tmit-line: #cbd5e1;
    --tmit-line-strong: #94a3b8;
    --tmit-soft: #f8fafc;
    --tmit-white: #ffffff;
    --tmit-brand: #0f766e;
    --tmit-brand-dark: #115e59;
    --tmit-blue: #1d4ed8;
    --tmit-gold: #b7791f;
    --tmit-danger: #b91c1c;
    max-width: 1120px;
    margin: 28px auto;
    color: var(--tmit-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.tmit-form *,
.tmit-dashboard *,
.tmit-login * {
    box-sizing: border-box;
}

.tmit-application,
.tmit-login,
.tmit-panel,
.tmit-profile,
.tmit-metrics > div,
.tmit-entry-card {
    border: 1px solid var(--tmit-line);
    border-radius: 8px;
    background: var(--tmit-white);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
}

.tmit-entry-choice {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    max-width: 1120px;
    margin: 28px auto;
}

[data-tmit-panel][hidden] {
    display: none !important;
}

[data-tmit-dashboard-section][hidden] {
    display: none !important;
}

.tmit-panel-switch {
    max-width: 720px;
    margin: 28px auto;
    border: 1px solid var(--tmit-line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
}

.tmit-panel-switch-head {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.tmit-panel-switch-head h2 {
    margin: 0;
    color: var(--tmit-heading);
    font-size: 24px;
}

.tmit-panel-switch-head button {
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    padding: 9px 12px;
    color: var(--tmit-heading);
    background: #f8fafc;
    font-weight: 800;
    cursor: pointer;
}

.tmit-entry-card {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 24px;
    overflow: hidden;
}

.tmit-entry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f766e, #1d4ed8, #b7791f);
}

.tmit-entry-card h2 {
    margin: 4px 0 0;
    color: var(--tmit-heading);
    font-size: 26px;
    line-height: 1.12;
}

.tmit-entry-card p {
    margin: 0;
    color: var(--tmit-muted);
    font-weight: 650;
}

.tmit-entry-login,
.tmit-lost-password form {
    display: grid;
    gap: 13px;
}

.tmit-entry-link {
    display: inline-flex !important;
    width: fit-content;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    border-radius: 7px !important;
    padding: 0 18px !important;
    color: #fff !important;
    background: var(--tmit-brand) !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    line-height: 46px !important;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    opacity: 1 !important;
}

.tmit-entry-card .tmit-entry-link {
    margin-top: 6px;
}

.tmit-entry-link:hover {
    color: #fff !important;
    background: var(--tmit-brand-dark) !important;
}

.tmit-entry-choice .tmit-entry-card button.tmit-entry-link,
.tmit-entry-choice .tmit-entry-card .tmit-entry-button,
button.tmit-entry-button[data-tmit-panel-open] {
    display: inline-flex !important;
    width: auto !important;
    min-width: 172px !important;
    min-height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 0 22px !important;
    color: #ffffff !important;
    background-color: #0f766e !important;
    background-image: none !important;
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.28) !important;
    text-decoration: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer !important;
}

.tmit-entry-choice .tmit-entry-card button.tmit-entry-link span,
.tmit-entry-choice .tmit-entry-card .tmit-entry-button span,
button.tmit-entry-button[data-tmit-panel-open] span {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tmit-entry-choice .tmit-entry-card button.tmit-entry-link:hover,
.tmit-entry-choice .tmit-entry-card .tmit-entry-button:hover,
button.tmit-entry-button[data-tmit-panel-open]:hover {
    color: #ffffff !important;
    background-color: #115e59 !important;
    transform: translateY(-1px);
}

.tmit-toast {
    position: fixed;
    z-index: 999999;
    right: 22px;
    bottom: 22px;
    max-width: 360px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 16px;
    color: #0f172a;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
    font-weight: 800;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.tmit-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tmit-toast-success {
    border-color: #99f6e4;
    background: #f0fdfa;
    color: #064e3b;
}

.tmit-toast-error {
    border-color: #fecaca;
    background: #fff1f2;
    color: #991b1b;
}

.tmit-lost-password {
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

.tmit-lost-password summary {
    cursor: pointer;
    color: var(--tmit-blue);
    font-weight: 900;
}

.tmit-lost-password form {
    margin-top: 12px;
}

.tmit-application {
    display: grid;
    gap: 22px;
    overflow: hidden;
}

.tmit-form-header,
.tmit-login-hero,
.tmit-profile {
    position: relative;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #0f766e, #1d4ed8, #b7791f) border-box;
}

.tmit-form-header,
.tmit-login-hero {
    padding: 30px 30px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.tmit-form-header::before,
.tmit-login-hero::before,
.tmit-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f766e, #1d4ed8, #b7791f);
}

.tmit-form-header h2,
.tmit-login-hero h2,
.tmit-profile h2 {
    margin: 6px 0 8px;
    color: var(--tmit-heading);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: 0;
}

.tmit-form-header p,
.tmit-login-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--tmit-muted);
    font-size: 16px;
}

.tmit-eyebrow {
    display: inline-flex;
    width: fit-content;
    border: 1px solid #ccfbf1;
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--tmit-brand-dark);
    background: #f0fdfa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tmit-job-card,
.tmit-form fieldset,
.tmit-terms {
    margin: 0 24px;
    border: 1px solid var(--tmit-line);
    border-radius: 8px;
    background: #fff;
}

.tmit-job-card {
    padding: 20px;
    box-shadow: inset 5px 0 0 var(--tmit-brand), 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tmit-job-card h3 {
    margin: 0 0 10px;
    color: var(--tmit-heading);
    font-size: 19px;
}

.tmit-job-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
    color: #334155;
}

.tmit-form fieldset {
    display: grid;
    gap: 18px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.tmit-form legend {
    padding: 0 10px;
    color: var(--tmit-heading);
    font-size: 16px;
    font-weight: 900;
}

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

.tmit-grid-full {
    grid-column: 1 / -1;
}

.tmit-form label,
.tmit-profile-form label,
.tmit-login label,
.tmit-referral-box label {
    display: grid;
    gap: 9px;
    min-width: 0;
    color: var(--tmit-heading);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.01em;
}

.tmit-form fieldset > label,
.tmit-form .tmit-grid > label,
.tmit-profile-form > label,
.tmit-profile-form .tmit-grid > label,
.tmit-login > label,
.tmit-entry-login > label,
.tmit-lost-password label {
    border: 1px solid #d7dee8;
    border-radius: 8px;
    padding: 13px;
    background: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tmit-form fieldset > label:focus-within,
.tmit-form .tmit-grid > label:focus-within,
.tmit-profile-form > label:focus-within,
.tmit-profile-form .tmit-grid > label:focus-within,
.tmit-login > label:focus-within,
.tmit-entry-login > label:focus-within,
.tmit-lost-password label:focus-within {
    border-color: var(--tmit-brand);
    background: #f0fdfa;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.tmit-form input:not([type="checkbox"]),
.tmit-form select,
.tmit-form textarea,
.tmit-profile-form input:not([type="checkbox"]),
.tmit-profile-form select,
.tmit-profile-form textarea,
.tmit-login input:not([type="checkbox"]),
.tmit-entry-login input:not([type="checkbox"]),
.tmit-lost-password input,
.tmit-panel input,
.tmit-referral-box input {
    display: block !important;
    width: 100% !important;
    min-height: 50px;
    border: 2px solid var(--tmit-line-strong) !important;
    border-radius: 7px !important;
    padding: 12px 14px !important;
    color: var(--tmit-ink) !important;
    background: #fff !important;
    font: inherit !important;
    font-weight: 600;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.07) !important;
}

.tmit-password-field,
.tmit-code-row,
.tmit-phone-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.tmit-phone-row {
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
}

.tmit-password-field button,
.tmit-code-row button {
    min-height: 50px;
    border: 1px solid #0f766e;
    border-radius: 7px;
    padding: 0 14px;
    color: #0f766e;
    background: #f0fdfa;
    font-weight: 900;
    cursor: pointer;
}

.tmit-email-check {
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff, #eff6ff);
    box-shadow: inset 5px 0 0 var(--tmit-blue), 0 10px 24px rgba(29, 78, 216, 0.08);
}

.tmit-email-check-head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bfdbfe;
}

.tmit-email-check-head span {
    color: var(--tmit-heading);
    font-size: 16px;
    font-weight: 900;
}

.tmit-email-check-head strong {
    border-radius: 999px;
    padding: 4px 9px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 12px;
    font-weight: 900;
}

.tmit-form textarea,
.tmit-profile-form textarea {
    min-height: 112px;
    resize: vertical;
}

.tmit-form select {
    appearance: auto;
}

.tmit-form input:not([type="checkbox"]):focus,
.tmit-form select:focus,
.tmit-form textarea:focus,
.tmit-profile-form input:not([type="checkbox"]):focus,
.tmit-profile-form textarea:focus,
.tmit-login input:not([type="checkbox"]):focus,
.tmit-entry-login input:not([type="checkbox"]):focus,
.tmit-lost-password input:focus,
.tmit-referral-box input:focus {
    border-color: var(--tmit-brand) !important;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.16), inset 0 1px 2px rgba(15, 23, 42, 0.04) !important;
}

.tmit-form input::placeholder,
.tmit-form textarea::placeholder,
.tmit-login input::placeholder,
.tmit-entry-login input::placeholder,
.tmit-profile-form input::placeholder,
.tmit-profile-form textarea::placeholder {
    color: #94a3b8;
}

.tmit-help {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.tmit-help[data-tone="success"] {
    color: #047857;
    font-size: 13px;
}

.tmit-help[data-tone="error"] {
    color: #b91c1c;
    font-size: 13px;
}

.tmit-help[data-tone="working"],
.tmit-help[data-tone="warning"] {
    color: #92400e;
    font-size: 13px;
}

.tmit-terms {
    display: grid;
    gap: 12px;
    padding: 18px;
    box-shadow: inset 5px 0 0 var(--tmit-gold), 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tmit-consent {
    margin: 0;
    color: var(--tmit-muted);
    font-weight: 700;
}

.tmit-terms label,
.tmit-inline-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
    font-weight: 700;
}

.tmit-terms input,
.tmit-inline-check input {
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px;
    accent-color: var(--tmit-brand);
}

.tmit-form-footer {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 26px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.tmit-form button,
.tmit-copy-row button,
.tmit-profile-form button,
.tmit-login button,
.tmit-entry-login button,
.tmit-lost-password button {
    min-height: 48px;
    border: 0;
    border-radius: 7px;
    padding: 0 20px;
    color: #fff;
    background: var(--tmit-brand);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
}

.tmit-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tmit-form button:hover,
.tmit-copy-row button:hover,
.tmit-profile-form button:hover,
.tmit-login button:hover,
.tmit-entry-login button:hover,
.tmit-lost-password button:hover {
    background: var(--tmit-brand-dark);
}

.tmit-form button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    box-shadow: none;
}

.tmit-login {
    display: grid;
    gap: 18px;
    max-width: 560px;
    padding: 0 24px 24px;
    overflow: hidden;
}

.tmit-login-hero {
    margin: 0 -24px;
}

.tmit-dashboard {
    display: grid;
    gap: 18px;
}

.tmit-profile {
    display: grid;
    grid-template-columns: auto minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    overflow: hidden;
}

.tmit-avatar-wrap {
    width: 116px;
    height: 116px;
    border: 1px solid #dbe3ed;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.tmit-avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.tmit-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tmit-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 5px 11px;
    color: var(--tmit-heading);
    background: #f8fafc;
    font-weight: 900;
}

.tmit-status-active {
    color: #065f46;
    background: #d1fae5;
}

.tmit-status-pending {
    color: #92400e;
    background: #fef3c7;
}

.tmit-status-inactive,
.tmit-status-rejected {
    color: #991b1b;
    background: #fee2e2;
}

.tmit-referral-box {
    display: grid;
    gap: 9px;
    border: 1px solid #d7dee8;
    border-radius: 8px;
    padding: 16px;
    background: #f8fafc;
}

.tmit-referral-box small {
    color: var(--tmit-muted);
    font-weight: 700;
}

.tmit-copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

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

.tmit-metrics > div {
    display: grid;
    gap: 9px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.tmit-metrics span,
.tmit-ref-tool span {
    color: var(--tmit-muted);
    font-weight: 800;
}

.tmit-metrics strong {
    display: block;
    color: var(--tmit-heading);
    font-size: 28px;
    line-height: 1.15;
}

.tmit-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 18px;
}

.tmit-dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid var(--tmit-line);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.tmit-dashboard-tabs button {
    min-height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    padding: 0 14px;
    color: var(--tmit-heading);
    background: #f8fafc;
    font-weight: 900;
    cursor: pointer;
}

.tmit-dashboard-tabs button.is-active {
    border-color: var(--tmit-brand);
    color: #fff;
    background: var(--tmit-brand);
}

.tmit-dashboard-section {
    display: block;
}

.tmit-panel {
    padding: 20px;
    overflow: hidden;
}

.tmit-profile-form {
    display: grid;
    gap: 18px;
}

.tmit-ref-tool {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
}

.tmit-ref-tool:first-of-type {
    padding-top: 0;
}

.tmit-ref-tool:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tmit-ref-tool strong {
    color: var(--tmit-heading);
    font-weight: 900;
}

.tmit-section-title {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.tmit-section-title h3 {
    margin: 0;
    color: var(--tmit-heading);
    font-size: 19px;
}

.tmit-section-title span {
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--tmit-blue);
    background: #eff6ff;
    font-weight: 900;
}

.tmit-dashboard table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.tmit-dashboard th,
.tmit-dashboard td {
    border-bottom: 1px solid #e2e8f0;
    padding: 13px 10px;
    text-align: left;
    vertical-align: top;
}

.tmit-dashboard th {
    color: #475569;
    background: #f8fafc;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tmit-notice {
    margin: 16px auto;
    max-width: 1120px;
    padding: 14px 16px;
    border: 1px solid #99f6e4;
    border-left: 5px solid var(--tmit-brand);
    border-radius: 7px;
    background: #f0fdfa;
    color: #064e3b;
    font-weight: 800;
}

@media (max-width: 900px) {
    .tmit-grid,
    .tmit-entry-choice,
    .tmit-profile,
    .tmit-metrics,
    .tmit-copy-row,
    .tmit-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .tmit-form-footer {
        display: grid;
    }
}

.tmit-form,
.tmit-dashboard,
.tmit-login {
    font-size: 14px;
}

.tmit-form-header h2,
.tmit-login-hero h2,
.tmit-profile h2,
.tmit-entry-card h2 {
    font-size: clamp(23px, 2.5vw, 32px);
    font-weight: 700;
}

.tmit-form-header p,
.tmit-login-hero p,
.tmit-entry-card p,
.tmit-job-card ul,
.tmit-consent,
.tmit-help {
    font-weight: 500;
}

.tmit-eyebrow,
.tmit-form legend,
.tmit-form label,
.tmit-profile-form label,
.tmit-login label,
.tmit-referral-box label,
.tmit-chip,
.tmit-metrics span,
.tmit-ref-tool span,
.tmit-dashboard-tabs button,
.tmit-section-title span {
    font-weight: 650;
}

.tmit-form button,
.tmit-copy-row button,
.tmit-profile-form button,
.tmit-login button,
.tmit-entry-link,
.tmit-entry-button span {
    font-weight: 700 !important;
}

.tmit-metrics strong {
    font-size: 23px;
    font-weight: 700;
}

.tmit-section-title h3 {
    font-size: 17px;
    font-weight: 700;
}

.tmit-level-progress {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    border: 1px solid #d7dee8;
    border-radius: 8px;
    padding: 14px;
    background: #f8fafc;
}

.tmit-level-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tmit-level-head span,
.tmit-level-head strong {
    color: var(--tmit-heading);
    font-weight: 700;
}

.tmit-progress-track {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.tmit-progress-track div {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0f766e, #1d4ed8);
}

.tmit-level-progress p {
    margin: 0;
    color: var(--tmit-muted);
    font-size: 13px;
    font-weight: 500;
}

.tmit-form,
.tmit-dashboard,
.tmit-login,
.tmit-entry-choice,
.tmit-entry-card,
.tmit-form input,
.tmit-form select,
.tmit-form textarea,
.tmit-login input,
.tmit-login select,
.tmit-profile-form input,
.tmit-profile-form select,
.tmit-profile-form textarea {
    font-size: 13.5px !important;
    font-weight: 400 !important;
}

.tmit-form-header h2,
.tmit-login-hero h2,
.tmit-profile h2,
.tmit-entry-card h2 {
    font-size: clamp(21px, 2.2vw, 29px) !important;
    font-weight: 600 !important;
}

.tmit-section-title h3,
.tmit-job-card h3,
.tmit-profile h3,
.tmit-dashboard h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.tmit-eyebrow,
.tmit-form legend,
.tmit-form label,
.tmit-profile-form label,
.tmit-login label,
.tmit-referral-box label,
.tmit-chip,
.tmit-metrics span,
.tmit-ref-tool span,
.tmit-dashboard-tabs button,
.tmit-section-title span,
.tmit-notice,
.tmit-email-check-head span,
.tmit-email-check-head strong {
    font-weight: 550 !important;
}

.tmit-form button,
.tmit-copy-row button,
.tmit-profile-form button,
.tmit-login button,
.tmit-entry-link,
.tmit-entry-button span,
.tmit-password-field button,
.tmit-code-row button {
    font-size: 13px !important;
    font-weight: 600 !important;
}

.tmit-form-header p,
.tmit-login-hero p,
.tmit-entry-card p,
.tmit-job-card li,
.tmit-consent,
.tmit-help,
.tmit-level-progress p {
    font-weight: 400 !important;
}

.tmit-metrics strong,
.tmit-level-head span,
.tmit-level-head strong {
    font-weight: 600 !important;
}

.tmit-form select,
.tmit-profile-form select,
.tmit-login select {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;
    border: 1.5px solid #b8c4d4 !important;
    border-radius: 8px !important;
    padding: 10px 42px 10px 13px !important;
    color: #172033 !important;
    background-color: #ffffff !important;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05) !important;
    appearance: auto !important;
}

.tmit-login {
    max-width: 680px !important;
    gap: 14px !important;
    padding: 26px !important;
    border: 1px solid #d9e2ee !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
}

.tmit-login-hero {
    margin: -26px -26px 4px !important;
    padding: 24px 26px 20px !important;
    border-bottom: 1px solid #e5edf6 !important;
    background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
}

.tmit-login-hero::before {
    display: none !important;
}

.tmit-login > label,
.tmit-entry-login > label,
.tmit-lost-password label {
    border: 1px solid #dbe3ef !important;
    border-radius: 9px !important;
    padding: 12px !important;
    background: #fbfdff !important;
    box-shadow: none !important;
}

.tmit-login input:not([type="checkbox"]),
.tmit-entry-login input:not([type="checkbox"]),
.tmit-lost-password input {
    min-height: 48px !important;
    border: 1.5px solid #b8c4d4 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #172033 !important;
}

.tmit-login > button[type="submit"],
.tmit-entry-login > button[type="submit"],
.tmit-lost-password button[type="submit"],
.tmit-form-footer button[type="submit"] {
    display: inline-flex !important;
    min-height: 48px !important;
    width: fit-content !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 0 22px !important;
    color: #ffffff !important;
    background: #0f766e !important;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22) !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tmit-login > button[type="submit"]:hover,
.tmit-entry-login > button[type="submit"]:hover,
.tmit-lost-password button[type="submit"]:hover,
.tmit-form-footer button[type="submit"]:hover {
    color: #ffffff !important;
    background: #115e59 !important;
}

.tmit-password-field button {
    min-width: 82px !important;
    color: #0f766e !important;
    background: #ecfdf5 !important;
    border: 1px solid #99f6e4 !important;
    box-shadow: none !important;
}

.tmit-lost-password {
    max-width: 680px;
    margin: -12px auto 28px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    padding: 13px 16px;
    background: #ffffff;
}

.tmit-lost-password summary {
    color: #0f172a !important;
    font-weight: 550 !important;
}

.tmit-reward-popup {
    position: fixed;
    z-index: 999998;
    right: 22px;
    top: 22px;
    display: grid;
    gap: 6px;
    max-width: 380px;
    border: 1px solid #99f6e4;
    border-radius: 12px;
    padding: 18px 46px 18px 18px;
    color: #064e3b;
    background: #ecfdf5;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.tmit-reward-popup button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    padding: 0 !important;
    color: #065f46 !important;
    background: #d1fae5 !important;
    box-shadow: none !important;
}

.tmit-face-week {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
}

.tmit-face-copy,
.tmit-reward-box {
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    padding: 18px;
    background: #ffffff;
}

.tmit-face-copy h3,
.tmit-reward-box h3 {
    margin: 4px 0 8px;
    color: #0f172a;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.tmit-flyer {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 14px;
    min-height: 590px;
    overflow: hidden;
    border-radius: 18px;
    padding: 22px;
    color: #0f172a;
    background:
        radial-gradient(circle at 18% 8%, rgba(16, 185, 129, 0.12), transparent 26%),
        linear-gradient(160deg, #ffffff 0%, #f7faf9 54%, #edf8f3 100%);
    border: 1px solid #dbe5df;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.13);
}

.tmit-flyer::before {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 14px;
    pointer-events: none;
}

.tmit-flyer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
    background: linear-gradient(90deg, #0f766e, #0f766e 52%, #b7791f);
}

.tmit-flyer-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.tmit-flyer-logo {
    display: block;
    width: min(168px, 52%);
    max-height: 66px;
    object-fit: contain;
}

.tmit-flyer-badge {
    border: 1px solid #fde68a;
    border-radius: 999px;
    padding: 8px 12px;
    color: #78350f;
    background: #fef3c7;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.tmit-flyer-photo-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 250px);
    aspect-ratio: 1 / 1;
    justify-self: center;
    border: 1px solid #cfe0d7;
    border-radius: 30px;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.15);
}

.tmit-flyer-photo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.tmit-flyer-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    align-content: end;
    gap: 9px;
    text-align: center;
}

.tmit-flyer-kicker {
    display: block;
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .9;
}

.tmit-flyer strong {
    display: block;
    max-width: 100%;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
    font-weight: 700;
}

.tmit-flyer small {
    display: block;
    max-width: 330px;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.tmit-flyer-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 7px;
}

.tmit-flyer-meta span {
    display: grid;
    gap: 2px;
    min-height: 58px;
    align-content: center;
    border: 1px solid #d9e7df;
    border-radius: 12px;
    padding: 8px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    text-transform: none;
    letter-spacing: 0;
    opacity: 1;
}

.tmit-flyer-meta b {
    color: #0f766e;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tmit-flyer-meta small {
    max-width: none;
    color: #1f2937;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.tmit-flyer em {
    display: inline-flex;
    margin-top: 7px;
    border-radius: 999px;
    padding: 9px 15px;
    color: #78350f;
    background: #fef3c7;
    border: 1px solid #fde68a;
    font-style: normal;
    font-weight: 700;
}

.tmit-flyer-footer {
    margin-top: 1px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tmit-flyer-actions {
    display: flex;
    justify-content: flex-end;
    grid-column: 2;
    align-self: start;
}

.tmit-download-flyer {
    display: inline-flex !important;
    width: fit-content;
    min-height: 42px !important;
    max-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    padding: 0 16px !important;
    color: #ffffff !important;
    background: #0f766e !important;
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.18) !important;
}

.tmit-balance-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 16px;
    margin-bottom: 18px;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.tmit-balance-card > div:first-child {
    display: grid;
    align-content: center;
    border-right: 1px solid #e2e8f0;
    padding-right: 16px;
}

.tmit-balance-card span,
.tmit-balance-card dt {
    color: #64748b;
    font-size: 12px;
    font-weight: 550;
    text-transform: uppercase;
}

.tmit-balance-card strong {
    margin-top: 6px;
    color: #0f766e;
    font-size: 30px;
    font-weight: 650;
}

.tmit-balance-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.tmit-balance-card dl div {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    background: #ffffff;
}

.tmit-balance-card dd {
    margin: 4px 0 0;
    color: #0f172a;
    font-weight: 600;
}

.tmit-photo-request {
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 12px;
    color: #78350f;
    background: #fffbeb;
}

.tmit-contenders {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tmit-contenders h4 {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}

.tmit-contender-row {
    display: grid;
    gap: 6px;
}

.tmit-contender-row strong,
.tmit-contender-row span {
    display: block;
}

.tmit-contender-row span {
    color: #64748b;
    font-size: 12px;
}

.tmit-contender-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

.tmit-contender-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0f766e, #1d4ed8, #b7791f);
}

.tmit-withdrawal-form {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

@media (max-width: 900px) {
    .tmit-face-week,
    .tmit-withdrawal-form,
    .tmit-balance-card,
    .tmit-balance-card dl {
        grid-template-columns: 1fr;
    }

    .tmit-flyer-actions {
        grid-column: 1;
    }

    .tmit-balance-card > div:first-child {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
        padding-right: 0;
        padding-bottom: 14px;
    }

    .tmit-reward-popup {
        left: 14px;
        right: 14px;
        top: 14px;
        max-width: none;
    }
}
