.tm-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

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

.tm-hero-card {
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    background: var(--surface-card-bg);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.tm-hero-org {
    border-color: var(--dark-primary-25);
    background: var(--dark-primary-045);
}

.tm-hero-eyebrow {
    font-family: var(--mono);
    font-size: var(--fs-3xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-text-soft);
}

.tm-hero-name {
    font-family: var(--disp);
    font-weight: 700;
    font-size: var(--fs-xl);
    color: var(--dark-text);
    line-height: 1.1;
}

.tm-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tm-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    border: 1px solid var(--dark-border);
    background: var(--surface-elevated-bg);
    font-size: var(--fs-2xs);
    color: var(--dark-text-soft);
}

.tm-chip b { color: var(--dark-text); font-weight: 600; }

.tm-chip-ok {
    border-color: var(--success-primary-30);
    background: var(--success-light, rgba(34, 197, 94, 0.1));
    color: var(--success-primary);
}

.tm-chip-off {
    border-color: var(--dark-border);
    color: var(--dark-text-soft);
}

.tm-meter-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.tm-meter-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--dark-text);
}

.tm-meter-pooled {
    font-family: var(--mono);
    font-size: var(--fs-3xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark-text-soft);
}

.tm-meter-value {
    font-family: var(--mono);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--dark-text);
}

.tm-meter-value .tm-cap { color: var(--dark-text-soft); font-weight: 500; font-size: var(--fs-sm); }

.tm-meter-track {
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--dark-border);
    overflow: hidden;
    margin-top: 4px;
}

.tm-meter-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--brand-gradient-h);
    transition: width 0.4s ease;
}

.tm-meter-sub {
    font-size: var(--fs-xs);
    color: var(--dark-text-soft);
}

.tm-section-head {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin: var(--space-6) 0 var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--surface-hairline);
}

.tm-section-head:first-child { margin-top: 0; }

.tm-section-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-primary-30);
    background: var(--dark-primary-10);
    color: var(--dark-400);
}

.tm-section-ic svg { width: 16px; height: 16px; }

.tm-section-title {
    font-family: var(--disp);
    font-weight: 600;
    font-size: var(--fs-lg);
    color: var(--dark-text);
}

.tm-section-sub {
    font-size: var(--fs-xs);
    color: var(--dark-text-soft);
    margin-top: 1px;
}

.tm-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-4);
}

.tm-feature {
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    background: var(--surface-tile-bg);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.tm-feature:hover {
    border-color: var(--dark-primary-30);
    background: var(--dark-primary-045);
}

.tm-feature-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tm-feature-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    background: var(--surface-elevated-bg);
    color: var(--dark-400);
}

.tm-feature-ic svg { width: 15px; height: 15px; }

.tm-feature-name {
    font-family: var(--disp);
    font-weight: 600;
    font-size: var(--fs-md);
    color: var(--dark-text);
}

.tm-rows { display: flex; flex-direction: column; }

.tm-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-top: 1px solid var(--surface-hairline);
}

.tm-row:first-child { border-top: 0; }

.tm-row-k {
    font-size: var(--fs-xs);
    color: var(--dark-text-soft);
}

.tm-row-k .tm-note {
    display: inline-block;
    margin-left: 6px;
    font-family: var(--mono);
    font-size: var(--fs-3xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-400);
}

.tm-row-v {
    font-family: var(--mono);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--dark-text);
    text-align: right;
    white-space: nowrap;
}

.tm-row-v.tm-yes { color: var(--success-primary); }
.tm-row-v.tm-no { color: var(--dark-text-soft); font-weight: 500; }

.tm-narrowed {
    margin-top: var(--space-4);
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-primary-20);
    background: var(--dark-primary-08);
    font-size: var(--fs-xs);
    color: var(--dark-text-soft);
    line-height: 1.55;
}
