.lcap-structure-public,
.lcap-structure-account,
.lcap-structures-admin {
    --lcap-structure-accent: #27afa5;
    --lcap-structure-blue: #dff3fb;
    --lcap-structure-mint: #e7f7f4;
    --lcap-structure-sun: #fff4cf;
    --lcap-structure-coral: #ffe5df;
    --lcap-structure-lilac: #eee9ff;
    --lcap-structure-text: #1f2937;
    --lcap-structure-muted: #64748b;
    --lcap-structure-line: #dbe7e6;
    --lcap-structure-deep: #0f766e;
    --lcap-structure-warm: #a15c09;
    --lcap-structure-rose: #b44736;
    color: var(--lcap-structure-text);
}

.lcap-structure-form,
.lcap-structure-panel,
.lcap-structure-hero,
.lcap-structure-public-hero,
.lcap-structure-guidance,
.lcap-structure-admin-brief,
.lcap-structure-detail-hero,
.lcap-structure-summary-card {
    background: #fff;
    border: 1px solid var(--lcap-structure-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(31, 41, 55, .06);
}

.lcap-structure-panel,
.lcap-structure-form {
    margin: 18px 0;
    padding: 22px;
}

.lcap-structure-public-hero,
.lcap-structure-guidance,
.lcap-structure-admin-brief,
.lcap-structure-detail-hero {
    margin: 0 0 18px;
    padding: 24px;
}

.lcap-structure-panel .lcap-structure-form {
    border: 0;
    box-shadow: none;
    margin: 18px 0 0;
    padding: 0;
}

.lcap-structure-panel h2,
.lcap-structure-form h3 {
    color: var(--lcap-structure-text);
    font-size: 20px;
    margin: 0 0 18px;
}

.lcap-structure-kicker,
.lcap-structure-panel-head .lcap-structure-kicker {
    color: var(--lcap-structure-deep);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lcap-structure-panel-head {
    margin: 0 0 18px;
}

.lcap-structure-panel-head h2,
.lcap-structure-section-head h2 {
    font-size: 21px;
    margin: 3px 0 6px;
}

.lcap-structure-panel-head p,
.lcap-structure-section-head p {
    color: var(--lcap-structure-muted);
    margin: 0;
    max-width: 760px;
}

.lcap-structure-public-hero {
    align-items: stretch;
    background: linear-gradient(135deg, #fff 0%, var(--lcap-structure-mint) 50%, var(--lcap-structure-sun) 100%);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.lcap-structure-public-hero h2,
.lcap-structure-admin-brief h2,
.lcap-structure-detail-hero h2 {
    color: var(--lcap-structure-text);
    font-size: 30px;
    line-height: 1.12;
    margin: 6px 0 10px;
}

.lcap-structure-public-hero p,
.lcap-structure-admin-brief p,
.lcap-structure-detail-hero p {
    color: var(--lcap-structure-muted);
    font-size: 15px;
    margin: 0;
    max-width: 760px;
}

.lcap-structure-step-list {
    display: grid;
    gap: 10px;
}

.lcap-structure-step {
    align-items: center;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 118, 110, .16);
    border-radius: 8px;
    display: grid;
    gap: 4px 10px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 11px 12px;
}

.lcap-structure-step strong {
    align-items: center;
    background: var(--lcap-structure-deep);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.lcap-structure-step span {
    color: var(--lcap-structure-text);
    font-weight: 900;
}

.lcap-structure-step small {
    color: var(--lcap-structure-muted);
    grid-column: 2;
}

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

.lcap-structure-span-2 {
    grid-column: 1 / -1;
}

.lcap-structure-field {
    display: grid;
    gap: 7px;
    margin: 0;
}

.lcap-structure-field span,
.lcap-structure-check {
    color: var(--lcap-structure-muted);
    font-size: 13px;
    font-weight: 700;
}

.lcap-structure-field input,
.lcap-structure-field select,
.lcap-structure-field textarea {
    background: #fff;
    border: 1px solid #cfdcda;
    border-radius: 6px;
    color: var(--lcap-structure-text);
    min-height: 42px;
    padding: 9px 11px;
    width: 100%;
}

.lcap-structure-field textarea {
    min-height: 96px;
}

.lcap-structure-check {
    align-items: center;
    display: flex;
    gap: 8px;
    min-height: 42px;
}

.lcap-structure-button,
.lcap-structure-public .button,
.lcap-structure-account .button {
    background: var(--lcap-structure-accent);
    border: 1px solid var(--lcap-structure-accent);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    min-height: 42px;
    padding: 10px 16px;
    text-decoration: none;
}

.lcap-structure-button:hover,
.lcap-structure-link:hover {
    filter: brightness(.96);
}

.lcap-structure-submit-strip {
    align-items: center;
    background: #f8fbfb;
    border: 1px solid var(--lcap-structure-line);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 20px;
    padding: 14px;
}

.lcap-structure-submit-strip strong,
.lcap-structure-submit-strip span {
    display: block;
}

.lcap-structure-submit-strip span {
    color: var(--lcap-structure-muted);
    margin-top: 3px;
}

.lcap-structure-link,
.lcap-structure-text-button {
    background: transparent;
    border: 0;
    color: #098f86;
    cursor: pointer;
    font-weight: 800;
    padding: 0;
    text-decoration: none;
}

.lcap-structure-notice {
    border-radius: 8px;
    font-weight: 700;
    margin: 0 0 18px;
    padding: 14px 16px;
}

.lcap-structure-notice--success {
    background: var(--lcap-structure-mint);
    border: 1px solid #bfe7df;
    color: #0f766e;
}

.lcap-structure-notice--error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
}

.lcap-structure-hero {
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, var(--lcap-structure-mint) 55%, var(--lcap-structure-blue) 100%);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 18px;
    padding: 24px;
}

.lcap-structure-hero span,
.lcap-structure-summary-card span {
    color: #0f766e;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lcap-structure-hero h2 {
    font-size: 28px;
    margin: 4px 0 6px;
}

.lcap-structure-hero p,
.lcap-structure-summary-card small,
.lcap-structure-muted {
    color: var(--lcap-structure-muted);
}

.lcap-structure-hero strong {
    background: #fff;
    border: 1px solid #bfe7df;
    border-radius: 999px;
    color: #0f766e;
    padding: 8px 12px;
    white-space: nowrap;
}

.lcap-structure-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.lcap-structure-hero-chips span {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 118, 110, .16);
    border-radius: 999px;
    color: var(--lcap-structure-deep);
    font-size: 12px;
    padding: 7px 10px;
    text-transform: none;
}

.lcap-structure-guidance {
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f8fbfb 48%, var(--lcap-structure-lilac) 100%);
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.lcap-structure-guidance h3 {
    color: var(--lcap-structure-text);
    font-size: 21px;
    margin: 4px 0 6px;
}

.lcap-structure-guidance p {
    color: var(--lcap-structure-muted);
    margin: 0;
    max-width: 760px;
}

.lcap-structure-summary {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 18px 0;
}

.lcap-structure-account-nav {
    background: #fff;
    border: 1px solid var(--lcap-structure-line);
    border-radius: 8px;
    display: flex;
    gap: 8px;
    margin: 0 0 18px;
    overflow-x: auto;
    padding: 8px;
}

.lcap-structure-account-nav a {
    border-radius: 6px;
    color: var(--lcap-structure-muted);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 900;
    padding: 10px 12px;
    text-decoration: none;
}

.lcap-structure-account-nav a.is-active,
.lcap-structure-account-nav a:hover {
    background: var(--lcap-structure-mint);
    color: #0f766e;
}

.lcap-structure-actions-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px 0;
}

.lcap-structure-action-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--lcap-structure-line);
    border-radius: 8px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-height: 116px;
    padding: 16px;
}

.lcap-structure-action-card--mint {
    border-color: #bfe7df;
    background: linear-gradient(180deg, #fff 0%, var(--lcap-structure-mint) 100%);
}

.lcap-structure-action-card--sun {
    border-color: #f1d38a;
    background: linear-gradient(180deg, #fff 0%, var(--lcap-structure-sun) 100%);
}

.lcap-structure-action-card--blue {
    border-color: #b6e1f2;
    background: linear-gradient(180deg, #fff 0%, var(--lcap-structure-blue) 100%);
}

.lcap-structure-action-card--coral {
    border-color: #f5c3b8;
    background: linear-gradient(180deg, #fff 0%, var(--lcap-structure-coral) 100%);
}

.lcap-structure-action-eyebrow {
    color: var(--lcap-structure-deep);
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.lcap-structure-action-card h3 {
    color: var(--lcap-structure-text);
    font-size: 17px;
    margin: 0 0 6px;
}

.lcap-structure-action-card p {
    color: var(--lcap-structure-muted);
    margin: 0;
}

.lcap-structure-action-card small {
    color: var(--lcap-structure-muted);
    display: block;
    line-height: 1.35;
    margin-top: 8px;
}

.lcap-structure-link-button {
    align-items: center;
    background: var(--lcap-structure-mint);
    border: 1px solid #bfe7df;
    border-radius: 6px;
    color: #0f766e;
    display: inline-flex;
    font-weight: 900;
    min-height: 38px;
    padding: 8px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.lcap-structure-link-button:hover {
    background: #d9f1ed;
    color: #0f766e;
}

.lcap-structure-profile-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.lcap-structure-profile-list div {
    background: #f8fbfb;
    border: 1px solid var(--lcap-structure-line);
    border-radius: 8px;
    padding: 13px;
}

.lcap-structure-profile-list dt {
    color: var(--lcap-structure-muted);
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 5px;
}

.lcap-structure-profile-list dd {
    color: var(--lcap-structure-text);
    font-weight: 800;
    margin: 0;
}

.lcap-structure-summary-card {
    min-height: 112px;
    padding: 16px;
}

.lcap-structure-summary-card strong {
    display: block;
    font-size: 16px;
    margin: 8px 0 4px;
}

.lcap-structure-section-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.lcap-structure-empty-state {
    background: #f8fbfb;
    border: 1px dashed #b7d8d5;
    border-radius: 8px;
    margin: 12px 0 0;
    padding: 16px;
}

.lcap-structure-empty-state strong,
.lcap-structure-empty-state span {
    display: block;
}

.lcap-structure-empty-state strong {
    color: var(--lcap-structure-text);
}

.lcap-structure-empty-state span {
    color: var(--lcap-structure-muted);
    margin-top: 4px;
}

.lcap-structure-table-wrap {
    overflow-x: auto;
}

.lcap-structure-table {
    border-collapse: collapse;
    width: 100%;
}

.lcap-structure-table th,
.lcap-structure-table td {
    border-bottom: 1px solid var(--lcap-structure-line);
    padding: 11px 10px;
    text-align: left;
    vertical-align: top;
}

.lcap-structure-table th {
    background: #f7fbfb;
    color: var(--lcap-structure-muted);
    font-size: 12px;
    font-weight: 900;
}

.lcap-structure-actions,
.lcap-structure-inline-form {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lcap-structure-notes {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.lcap-structure-notes article {
    background: #f8fbfb;
    border: 1px solid var(--lcap-structure-line);
    border-radius: 8px;
    padding: 12px;
}

.lcap-structure-notes span {
    color: var(--lcap-structure-muted);
    display: block;
    font-size: 12px;
    margin-top: 2px;
}

.lcap-structure-photo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lcap-structure-admin-brief {
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, var(--lcap-structure-blue) 54%, var(--lcap-structure-sun) 100%);
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.lcap-structure-admin-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(112px, 1fr));
}

.lcap-structure-admin-stats span {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 118, 110, .14);
    border-radius: 8px;
    color: var(--lcap-structure-muted);
    display: block;
    font-weight: 800;
    padding: 12px;
}

.lcap-structure-admin-stats strong {
    color: var(--lcap-structure-text);
    display: block;
    font-size: 22px;
    margin-bottom: 2px;
}

.lcap-structure-backline {
    margin: 12px 0 16px;
}

.lcap-structure-detail-hero {
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, var(--lcap-structure-mint) 58%, var(--lcap-structure-coral) 100%);
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.lcap-structure-detail-status {
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(15, 118, 110, .16);
    border-radius: 8px;
    min-width: 180px;
    padding: 12px 14px;
}

.lcap-structure-detail-status strong,
.lcap-structure-detail-status span {
    display: block;
}

.lcap-structure-detail-status strong {
    color: var(--lcap-structure-deep);
    font-size: 16px;
}

.lcap-structure-detail-status span {
    color: var(--lcap-structure-muted);
    margin-top: 4px;
}

.lcap-structure-tabs {
    margin: 12px 0 18px;
}

@media (max-width: 1100px) {
    .lcap-structure-summary,
    .lcap-structure-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lcap-structure-public-hero {
        grid-template-columns: 1fr;
    }

    .lcap-structure-admin-brief,
    .lcap-structure-detail-hero {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .lcap-structure-grid,
    .lcap-structure-summary,
    .lcap-structure-actions-grid,
    .lcap-structure-profile-list,
    .lcap-structure-admin-stats {
        grid-template-columns: 1fr;
    }

    .lcap-structure-panel,
    .lcap-structure-form,
    .lcap-structure-hero,
    .lcap-structure-public-hero,
    .lcap-structure-guidance,
    .lcap-structure-admin-brief,
    .lcap-structure-detail-hero {
        padding: 16px;
    }

    .lcap-structure-hero,
    .lcap-structure-guidance,
    .lcap-structure-submit-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .lcap-structure-public-hero h2,
    .lcap-structure-admin-brief h2,
    .lcap-structure-detail-hero h2,
    .lcap-structure-hero h2 {
        font-size: 23px;
    }

    .lcap-structure-action-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .lcap-structure-link-button,
    .lcap-structure-submit-strip .lcap-structure-button {
        justify-content: center;
        width: 100%;
    }
}
