:root {
    --ap-primary: #081f7a;
    --ap-primary-dark: #061653;
    --ap-primary-2: #173fbf;
    --ap-accent: #59d7e6;
    --ap-mint: #9fe5d0;
    --ap-ink: #16213a;
    --ap-muted: #61708f;
    --ap-line: #dbe5ff;
    --ap-bg: #f4f7ff;
    --ap-surface: #ffffff;
    --ap-success: #198754;
    --ap-radius: 18px;
    --ap-shadow: 0 18px 48px rgba(8, 31, 122, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ap-ink);
    background:
        radial-gradient(circle at 92% 0%, rgba(89, 215, 230, 0.16), transparent 30rem),
        var(--ap-bg);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.topbar {
    height: 72px;
    padding: 0 clamp(24px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(220, 227, 235, 0.85);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ap-ink);
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: white;
    background: var(--ap-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand strong {
    color: var(--ap-primary);
}

.environment,
.module-state {
    padding: 6px 10px;
    border: 1px solid var(--ap-line);
    border-radius: 999px;
    color: var(--ap-muted);
    background: var(--ap-surface);
    font-size: 12px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 9px 12px;
    color: var(--ap-muted);
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--ap-primary);
    background: #f1f3ff;
}

.account {
    display: flex;
    align-items: center;
    gap: 14px;
}

.account > span {
    display: grid;
    text-align: right;
    font-size: 13px;
}

.account small {
    color: var(--ap-muted);
}

main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr;
    gap: 56px;
    align-items: end;
    padding: 24px 0 56px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--ap-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(38px, 4vw, 46px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
}

.hero-copy {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--ap-muted);
    font-size: 16px;
    line-height: 1.55;
}

.status-card {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
    box-shadow: var(--ap-shadow);
}

.status-card div {
    display: grid;
    gap: 4px;
}

.status-card span:last-child {
    color: var(--ap-muted);
    font-size: 13px;
}

.status-dot {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d39b23;
    box-shadow: 0 0 0 7px rgba(211, 155, 35, 0.13);
}

.status-dot.is-ok {
    background: var(--ap-success);
    box-shadow: 0 0 0 7px rgba(25, 135, 84, 0.13);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.module-card {
    min-height: 270px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: rgba(255, 255, 255, 0.82);
    color: inherit;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.channel-notice { display: flex; gap: 12px; align-items: baseline; margin: 0 0 24px; padding: 16px 18px; border: 1px solid #d8e0ff; border-radius: 12px; background: #f5f7ff; color: var(--ap-muted); }
.channel-notice strong { color: var(--ap-primary); }
.channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.channel-card { min-height: 254px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 24px; border: 1px solid var(--ap-line); border-radius: var(--ap-radius); background: var(--ap-surface); box-shadow: var(--ap-shadow); }
.channel-card h2 { margin: 0 0 10px; font-size: 23px; }
.channel-card p:not(.eyebrow) { margin: 0; color: var(--ap-muted); line-height: 1.55; }
.channel-card-header { display: flex; justify-content: space-between; align-items: center; }
.channel-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: var(--ap-primary); color: #fff; font-weight: 900; }
.channel-next-step { padding-top: 16px; border-top: 1px solid var(--ap-line); color: var(--ap-muted); font-size: 13px; line-height: 1.5; }
.channel-next-step strong { color: var(--ap-text); }
.channel-flow { margin-top: 48px; }
@media (max-width: 720px) { .channel-grid { grid-template-columns: 1fr; } .channel-notice { display: grid; gap: 5px; } }

a.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ap-shadow);
}

.module-card.featured {
    color: white;
    border-color: var(--ap-primary);
    background: linear-gradient(145deg, var(--ap-primary), var(--ap-primary-dark));
    box-shadow: var(--ap-shadow);
}

.module-number {
    color: var(--ap-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.module-card h2 {
    margin: 56px 0 12px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.module-card p {
    margin: 0 0 24px;
    color: var(--ap-muted);
    line-height: 1.55;
}

.module-card.featured p,
.module-card.featured .module-number {
    color: rgba(255, 255, 255, 0.72);
}

.module-state {
    align-self: flex-start;
    margin-top: auto;
}

.module-state.active {
    color: var(--ap-primary);
    border-color: white;
}

.flow {
    margin-top: 64px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
}

.flow h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.flow-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ap-primary);
    font-weight: 800;
}

.flow-steps span {
    padding: 12px 14px;
    border-radius: 10px;
    background: #f1f3ff;
}

.flow-steps i {
    color: var(--ap-accent);
    font-style: normal;
}

.button {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ap-line);
    border-radius: 14px;
    background: var(--ap-surface);
    color: var(--ap-ink);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    color: white;
    border-color: var(--ap-primary);
    background: var(--ap-primary);
}

.button.primary:hover {
    background: var(--ap-primary-dark);
}

.button.ghost:hover {
    border-color: var(--ap-accent);
    color: var(--ap-primary);
}

.button.small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
}

.page-heading {
    margin-bottom: 34px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.page-heading.compact {
    align-items: center;
}

.heading-actions {
    display: flex;
    gap: 8px;
}

.page-heading h1 {
    font-size: clamp(34px, 4vw, 46px);
}

.page-heading p:last-child {
    margin: 14px 0 0;
    color: var(--ap-muted);
}

.flash,
.form-error {
    width: min(1180px, calc(100% - 40px));
    margin: 18px auto 0;
    padding: 14px 17px;
    border: 1px solid #a8d5bc;
    border-radius: 10px;
    color: #125d37;
    background: #eefaf3;
}

.form-error {
    margin: 0 0 22px;
    width: 100%;
    color: #9c2635;
    border-color: #edb4bc;
    background: #fff1f3;
}

.empty-state {
    min-height: 390px;
    padding: 60px 24px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    border: 1px dashed #bdc9d7;
    border-radius: var(--ap-radius);
    background: rgba(255, 255, 255, 0.74);
}

.empty-state h1,
.empty-state h2 {
    margin: 16px 0 8px;
}

.empty-state p {
    max-width: 560px;
    margin: 0 0 24px;
    color: var(--ap-muted);
}

.empty-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: var(--ap-primary);
    font-weight: 900;
}

.table-shell {
    overflow: hidden;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
}

.catalog-summary {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.catalog-summary article {
    padding: 18px 20px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--ap-line);
    border-radius: 12px;
    background: var(--ap-surface);
}

.catalog-summary strong {
    color: var(--ap-primary);
    font-size: 26px;
}

.catalog-summary span,
.muted {
    color: var(--ap-muted);
}

.catalog-filters {
    margin-bottom: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 190px auto auto;
    gap: 12px;
    align-items: end;
    border: 1px solid var(--ap-line);
    border-radius: 12px;
    background: var(--ap-surface);
}

.table-link {
    color: var(--ap-primary);
    text-decoration: none;
}

.table-link:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--ap-line);
}

th {
    color: var(--ap-muted);
    background: #f8fafc;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

td strong,
td small {
    display: block;
}

td small {
    margin-top: 3px;
    color: var(--ap-muted);
}

.status-pill {
    padding: 5px 9px;
    border-radius: 999px;
    color: #70520d;
    background: #fff5d8;
    font-size: 12px;
    font-weight: 800;
    text-transform: capitalize;
}

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

.form-section {
    padding: 30px;
    display: grid;
    grid-template-columns: 0.7fr 1.5fr;
    gap: 42px;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
}

.section-intro {
    display: flex;
    gap: 16px;
}

.section-intro > span {
    color: var(--ap-accent);
    font-size: 12px;
    font-weight: 900;
}

.section-intro h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
}

.section-intro p {
    margin: 0;
    color: var(--ap-muted);
    line-height: 1.55;
}

.form-grid,
.form-stack {
    display: grid;
    gap: 18px;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: grid;
    gap: 8px;
    color: var(--ap-ink);
    font-size: 14px;
    font-weight: 800;
}

label small {
    color: var(--ap-muted);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #c8d2de;
    border-radius: 16px;
    color: var(--ap-ink);
    background: white;
    font: inherit;
    font-size: 15px;
    font-weight: 400;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(115, 123, 202, 0.2);
    border-color: var(--ap-primary);
}

textarea {
    min-height: 96px;
    resize: vertical;
    line-height: 1.55;
}

.input-prefix {
    display: flex;
    align-items: center;
    border: 1px solid #c8d2de;
    border-radius: 16px;
    overflow: hidden;
}

.input-prefix:focus-within {
    outline: 3px solid rgba(115, 123, 202, 0.2);
    border-color: var(--ap-primary);
}

.input-prefix span {
    align-self: stretch;
    padding: 0 12px;
    display: flex;
    align-items: center;
    color: var(--ap-muted);
    background: #f4f6f9;
    font-weight: 600;
}

.input-prefix input {
    border: 0;
    border-radius: 0;
}

.input-prefix input:focus {
    outline: 0;
}

.form-actions {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.form-actions p {
    color: var(--ap-muted);
    font-size: 13px;
}

.product-overview {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
}

.detail-card {
    padding: 28px;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
}

.detail-card h2 {
    margin: 0 0 22px;
    font-size: 24px;
}

.detail-card-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

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

.detail-list div,
.seo-preview div {
    display: grid;
    gap: 5px;
}

.detail-list dt,
.seo-preview dt {
    color: var(--ap-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-list dd,
.seo-preview dd {
    margin: 0;
    font-weight: 700;
}

.identifier-list {
    display: grid;
    gap: 10px;
}

.identifier-list div {
    padding: 13px;
    display: grid;
    gap: 4px;
    border-radius: 10px;
    background: #f6f8fb;
}

.identifier-list span,
.identifier-list small {
    color: var(--ap-muted);
    font-size: 12px;
    text-transform: capitalize;
}

.content-card {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 42px;
}

.body-copy {
    color: var(--ap-muted);
    line-height: 1.65;
}

.seo-preview {
    margin: 0;
    padding: 20px;
    display: grid;
    gap: 18px;
    border-radius: 12px;
    background: #f6f8fb;
}

.auth-page {
    min-height: 100vh;
}

.auth-shell {
    min-height: 100vh;
    width: min(1120px, calc(100% - 40px));
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.auth-panel h1 {
    margin-top: 24px;
}

.auth-brand {
    margin-bottom: 80px;
}

.login-card {
    padding: 34px;
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
    box-shadow: var(--ap-shadow);
}

.login-card h2 {
    margin: 0 0 8px;
    color: var(--ap-primary);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.login-card .button.primary {
    min-height: 56px;
    border-radius: 18px;
    font-size: 17px;
}

.login-card > p {
    margin: 0 0 28px;
    color: var(--ap-muted);
}

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

    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        display: none;
    }

    .form-section,
    .auth-shell,
    .product-overview,
    .content-card {
        grid-template-columns: 1fr;
    }

    .catalog-filters {
        grid-template-columns: 1fr 1fr;
    }

    .auth-brand {
        margin-bottom: 42px;
    }
}

@media (max-width: 580px) {
    main {
        width: min(100% - 28px, 1180px);
        padding-top: 40px;
    }

    .environment {
        display: none;
    }

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

    .account > span {
        display: none;
    }

    .page-heading,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .heading-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-grid.two {
        grid-template-columns: 1fr;
    }

    .catalog-summary,
    .catalog-filters,
    .detail-list {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 22px;
        gap: 28px;
    }

    .table-shell {
        overflow-x: auto;
    }

    .flow-steps {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .flow-steps i {
        transform: rotate(90deg);
        align-self: center;
    }
}

.brand-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.5fr);
    gap: 24px;
    align-items: start;
}

.brand-form {
    position: sticky;
    top: 92px;
}

.brand-form .button {
    margin-top: 18px;
}

.brand-catalog {
    min-width: 0;
}

.brand-catalog .catalog-summary {
    margin-bottom: 16px;
}

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

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 180px;
    padding: 20px;
    border: 1px solid var(--ap-line);
    border-radius: 12px;
    background: var(--ap-surface);
}

.brand-card h2 {
    margin: 8px 0 3px;
    color: var(--ap-primary);
    font-size: 12px;
}

.brand-card code {
    color: var(--ap-muted);
    font-size: 8px;
}

.brand-card p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 9px;
}

.brand-card > a {
    margin-top: auto;
    font-weight: 700;
}

.brand-aliases {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.brand-aliases span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #edf5fd;
    color: var(--ap-muted);
    font-size: 8px;
}

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

    .brand-form {
        position: static;
    }
}

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

.inline-action {
    margin: 0;
}

.review-provenance {
    margin-bottom: 10px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #bcd6ef;
    border-radius: 12px;
    background: #edf6fd;
}

.review-provenance > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-provenance strong {
    color: var(--ap-primary);
    font-size: 10px;
}

.review-provenance small,
.review-provenance a {
    color: var(--ap-muted);
    font-size: 8px;
}

.review-provenance a {
    color: var(--ap-primary);
    font-weight: 800;
}

.editorial-review-form {
    display: grid;
    gap: 10px;
}

.review-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
    gap: 10px;
    align-items: start;
}

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

.review-evidence {
    display: grid;
    gap: 10px;
}

.review-evidence > div {
    padding: 14px;
    border: 1px solid var(--ap-line);
    border-radius: 12px;
    background: var(--ap-surface);
}

.review-evidence ul {
    margin: 8px 0 0;
    padding-left: 17px;
    color: var(--ap-muted);
    font-size: 9px;
}

.review-evidence li + li {
    margin-top: 6px;
}

.review-evidence .review-warnings {
    border-color: #efd59a;
    background: #fffbef;
}

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

@media (max-width: 580px) {
    .review-provenance,
    .review-provenance > div {
        align-items: flex-start;
        flex-direction: column;
    }
}

.family-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.5fr);
    gap: 24px;
    align-items: start;
}

.family-form {
    position: sticky;
    top: 92px;
}

.family-form .button {
    margin-top: 18px;
}

.family-catalog {
    min-width: 0;
}

.family-catalog .catalog-summary {
    margin-bottom: 16px;
}

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

.family-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 190px;
    padding: 20px;
    border: 1px solid var(--ap-line);
    border-radius: 12px;
    background: var(--ap-surface);
}

.family-card-heading,
.family-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.family-card-heading small,
.family-card code,
.family-card footer {
    color: var(--ap-muted);
    font-size: 8px;
}

.family-card h2 {
    margin: 2px 0 0;
    color: var(--ap-primary);
    font-size: 12px;
}

.family-card p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 9px;
}

.family-card footer {
    margin-top: auto;
    padding-top: 9px;
    border-top: 1px solid #edf1f6;
}

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

    .family-form {
        position: static;
    }
}

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

/* Storefront público: consume exclusivamente snapshots comerciales publicados. */
.storefront-page {
    --sf-blue: #0756a5;
    --sf-blue-dark: #07366f;
    --sf-orange: #e86f32;
    --sf-green: #1aa17d;
    --sf-ink: #10233f;
    --sf-muted: #5f7088;
    --sf-line: #dce6f0;
    margin: 0;
    color: var(--sf-ink);
    background: #f7f9fc;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.storefront-page * {
    box-sizing: border-box;
}

.storefront-nav {
    width: min(1240px, calc(100% - 48px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.storefront-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sf-ink);
    text-decoration: none;
}

.storefront-brand > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: var(--sf-blue);
    font-size: 12px;
    font-weight: 900;
}

.storefront-brand strong {
    font-size: 15px;
    letter-spacing: -.02em;
}

.storefront-nav nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.storefront-nav nav a,
.storefront-footer a {
    color: var(--sf-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.storefront-nav nav a:hover,
.storefront-footer a:hover {
    color: var(--sf-blue);
}

.storefront-main {
    width: auto;
    margin: 0;
    padding: 0;
}

.storefront-button {
    min-height: 44px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.storefront-button:hover {
    transform: translateY(-2px);
}

.storefront-button.primary {
    color: white;
    background: var(--sf-blue);
    box-shadow: 0 10px 24px rgba(7, 86, 165, .22);
}

.storefront-button.primary:hover {
    background: var(--sf-blue-dark);
}

.storefront-button.secondary {
    min-height: 38px;
    color: var(--sf-blue);
    border-color: #b8cee3;
    background: white;
}

.storefront-button.light {
    color: var(--sf-blue-dark);
    background: white;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
}

.storefront-hero {
    position: relative;
    width: min(1240px, calc(100% - 48px));
    min-height: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 66px;
}

.storefront-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    top: 40px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 127, 206, .13), rgba(31, 127, 206, 0) 68%);
}

.storefront-kicker {
    margin: 0 0 14px;
    color: var(--sf-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.storefront-hero h1 {
    margin: 0;
    color: var(--sf-ink);
    font-size: clamp(58px, 8vw, 104px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.065em;
}

.storefront-lead {
    max-width: 630px;
    margin: 28px 0 0;
    color: var(--sf-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.storefront-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.storefront-text-link {
    color: var(--sf-ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.storefront-text-link span {
    margin-left: 7px;
    color: var(--sf-orange);
}

.storefront-proof {
    margin-top: 48px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    border-top: 1px solid var(--sf-line);
}

.storefront-proof span {
    display: grid;
    color: var(--sf-muted);
    font-size: 10px;
    line-height: 1.35;
}

.storefront-proof strong {
    margin-bottom: 4px;
    color: var(--sf-ink);
    font-size: 13px;
}

.storefront-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.storefront-visual::before {
    content: "";
    position: absolute;
    width: min(430px, 90%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(145deg, #edf5fc, #fff);
    box-shadow: 0 35px 80px rgba(19, 69, 119, .16);
}

.storefront-visual img {
    position: relative;
    z-index: 2;
    width: min(440px, 92%);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(14, 54, 96, .18);
}

.storefront-orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(7, 86, 165, .18);
    border-radius: 50%;
}

.orbit-one {
    width: 480px;
    height: 480px;
}

.orbit-two {
    width: 560px;
    height: 560px;
    border-style: dashed;
}

.storefront-status {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 62px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--sf-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(14, 54, 96, .12);
    font-size: 11px;
    font-weight: 800;
}

.storefront-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sf-green);
    box-shadow: 0 0 0 4px rgba(26, 161, 125, .14);
}

.storefront-intro {
    padding: 104px max(24px, calc((100% - 1180px) / 2));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    color: white;
    background: var(--sf-blue-dark);
}

.storefront-intro .storefront-kicker,
.storefront-cta .storefront-kicker {
    color: #7ed9eb;
}

.storefront-intro h2,
.storefront-integration h2,
.storefront-cta h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.storefront-description {
    padding-top: 24px;
}

.storefront-rich-description h3 {
    margin: 32px 0 10px;
    color: var(--ap-text);
    font-size: 20px;
    line-height: 1.25;
}

.storefront-rich-description h3:first-child { margin-top: 0; }
.storefront-rich-description ul { margin: 0 0 24px; padding-left: 20px; color: var(--ap-muted); line-height: 1.7; }
.storefront-rich-description li + li { margin-top: 5px; }

.storefront-description p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.75;
}

.storefront-capabilities {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.storefront-product-detail {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.storefront-product-detail article { padding: 28px; border: 1px solid #e6edf5; border-radius: 18px; background: #fff; }
.storefront-product-detail h2 { margin: 8px 0 22px; color: var(--sf-blue-dark); }
.storefront-specifications { margin: 0; }
.storefront-specifications div { display: flex; justify-content: space-between; gap: 24px; padding: 12px 0; border-top: 1px solid #edf1f5; }
.storefront-specifications dt { color: var(--sf-muted); }
.storefront-specifications dd { margin: 0; font-weight: 700; text-align: right; }
.storefront-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.storefront-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; background: #f3f6f8; }
.storefront-muted { color: var(--sf-muted); }

.storefront-capabilities article {
    min-height: 280px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sf-line);
    border-radius: 22px;
    background: white;
    box-shadow: 0 18px 50px rgba(16, 35, 63, .06);
}

.storefront-capabilities article > span {
    color: var(--sf-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

.storefront-capabilities h3 {
    margin: auto 0 12px;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.storefront-capabilities p,
.storefront-integration p {
    margin: 0;
    color: var(--sf-muted);
    font-size: 14px;
}

.storefront-integration {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 90px;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    overflow: hidden;
    border-radius: 30px;
    background: #eaf3fb;
}

.storefront-integration p {
    margin: 20px 0 28px;
}

.storefront-integration-graphic {
    min-height: 330px;
    display: grid;
    grid-template-columns: 1fr 70px 1.35fr 70px 1fr;
    align-items: center;
}

.storefront-integration-graphic span,
.storefront-integration-graphic strong {
    min-height: 110px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: white;
    box-shadow: 0 16px 35px rgba(7, 54, 111, .1);
    font-size: 15px;
    text-align: center;
}

.storefront-integration-graphic strong {
    min-height: 150px;
    color: white;
    background: var(--sf-blue);
    font-size: 19px;
}

.storefront-integration-graphic i {
    height: 1px;
    background: #94b9da;
}

.storefront-cta {
    padding: 94px 24px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(125deg, var(--sf-blue), var(--sf-blue-dark));
    text-align: center;
}

.storefront-cta h2 {
    max-width: 900px;
}

.storefront-cta .storefront-button {
    margin-top: 30px;
}

.storefront-footer {
    width: min(1180px, calc(100% - 48px));
    min-height: 118px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.storefront-footer > div {
    display: grid;
}

.storefront-footer span {
    color: var(--sf-muted);
    font-size: 11px;
}

.storefront-whatsapp {
    position: fixed;
    z-index: 20;
    right: 24px;
    bottom: 24px;
    min-height: 52px;
    padding: 7px 18px 7px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    color: white;
    background: #168c64;
    box-shadow: 0 14px 36px rgba(12, 74, 60, .3);
    font-size: 12px;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.storefront-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(12, 74, 60, .38);
}

.storefront-whatsapp span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #168c64;
    background: white;
    font-size: 10px;
    font-weight: 900;
}

.storefront-whatsapp strong {
    font-weight: 850;
}

.storefront-missing {
    min-height: 100vh;
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
}

.storefront-missing > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: var(--sf-blue);
    font-weight: 900;
}

.storefront-missing .storefront-kicker {
    margin: 22px 0 6px;
}

.storefront-missing h1 {
    margin: 0;
    color: var(--sf-ink);
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1;
}

.storefront-missing p:not(.storefront-kicker) {
    color: var(--sf-muted);
}

.assistpro-hero { width: min(1240px, calc(100% - 48px)); min-height: 650px; margin: 0 auto; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.assistpro-hero h1 { margin: 0; color: var(--sf-blue-dark); font-size: clamp(45px, 6vw, 82px); line-height: .94; letter-spacing: -.065em; }.assistpro-hero h1 span { color: var(--sf-blue); }.assistpro-hero > div:first-child > p:not(.storefront-kicker) { max-width: 660px; margin: 28px 0 0; color: var(--sf-muted); font-size: 18px; }
.assistpro-core { position: relative; min-height: 480px; display: grid; place-content: center; overflow: hidden; border-radius: 50%; background: radial-gradient(circle, #0874cb 0 21%, #e8f4ff 22% 34%, transparent 35%), linear-gradient(135deg, #f5faff, #e3f0fb); }.assistpro-core::before { content: ''; position: absolute; inset: 9%; border: 1px dashed #a5c5e1; border-radius: 50%; }.assistpro-core strong { z-index: 1; color: #fff; font-size: clamp(42px, 5vw, 66px); line-height: .8; letter-spacing: -.07em; text-align: center; }.assistpro-core > span { z-index: 1; margin-top: 17px; color: #d8edff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }.assistpro-core i { position: absolute; padding: 9px 13px; border: 1px solid #d5e4f1; border-radius: 999px; color: var(--sf-blue-dark); background: #fff; box-shadow: 0 12px 28px rgba(16,35,63,.1); font-style: normal; font-size: 11px; font-weight: 900; }.assistpro-core i:nth-of-type(1) { top: 16%; left: 12%; }.assistpro-core i:nth-of-type(2) { top: 9%; right: 16%; }.assistpro-core i:nth-of-type(3) { top: 49%; right: 3%; }.assistpro-core i:nth-of-type(4) { bottom: 13%; right: 19%; }.assistpro-core i:nth-of-type(5) { bottom: 15%; left: 8%; }
.assistpro-proof { padding: 28px max(24px, calc((100% - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #fff; background: var(--sf-blue-dark); }.assistpro-proof p { max-width: 440px; margin: 0; font-weight: 800; }.assistpro-proof div { display: flex; flex-wrap: wrap; gap: 10px; }.assistpro-proof span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: #b9dffb; font-size: 11px; font-weight: 800; }
.assistpro-verticals { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }.assistpro-section-heading { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; gap: 50px; }.assistpro-section-heading h2, .assistpro-modules h2 { margin: 0; color: var(--sf-blue-dark); font-size: clamp(36px, 4.5vw, 60px); line-height: 1; letter-spacing: -.055em; }.assistpro-vertical-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }.assistpro-vertical-grid article { min-height: 255px; padding: 26px; border: 1px solid var(--sf-line); border-radius: 20px; background: #fff; }.assistpro-vertical-grid span { color: var(--sf-blue); font-size: 10px; font-weight: 900; }.assistpro-vertical-grid h3 { margin: 62px 0 10px; color: var(--sf-blue-dark); font-size: 25px; letter-spacing: -.045em; }.assistpro-vertical-grid p, .assistpro-modules p { margin: 0; color: var(--sf-muted); font-size: 13px; line-height: 1.6; }
.assistpro-modules { padding: 96px max(24px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; color: #fff; background: #10233f; }.assistpro-modules h2 { color: #fff; }.assistpro-modules > div > p:not(.storefront-kicker) { margin-top: 20px; color: #bdd2e6; font-size: 16px; }.assistpro-modules ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; }.assistpro-modules li { padding: 18px 12px; border-bottom: 1px solid rgba(255,255,255,.14); color: #e9f4fc; font-size: 14px; font-weight: 700; }.assistpro-modules li::before { content: '>'; margin-right: 9px; color: #75d8eb; }.assistpro-cta { padding: 110px max(24px, calc((100% - 1000px) / 2)); text-align: center; color: #fff; background: linear-gradient(120deg, #0565b8, #0a81cd); }.assistpro-cta .storefront-kicker { color: #b5edfa; }.assistpro-cta h2 { max-width: 850px; margin: 0 auto 32px; font-size: clamp(38px, 5vw, 64px); line-height: .98; letter-spacing: -.06em; }
@media (max-width: 850px) { .assistpro-hero, .assistpro-section-heading, .assistpro-modules { grid-template-columns: 1fr; }.assistpro-hero { min-height: auto; padding: 80px 0; gap: 40px; }.assistpro-core { min-height: 410px; }.assistpro-vertical-grid { grid-template-columns: 1fr 1fr; }.assistpro-proof { align-items: flex-start; flex-direction: column; }.assistpro-modules { gap: 36px; }.assistpro-modules ul { grid-template-columns: 1fr; } } @media (max-width: 560px) { .assistpro-vertical-grid { grid-template-columns: 1fr; }.assistpro-core { min-height: 330px; }.assistpro-core i { font-size: 9px; }.assistpro-core i:nth-of-type(1) { left: 3%; }.assistpro-core i:nth-of-type(2) { right: 4%; }.assistpro-core i:nth-of-type(3) { right: 0; }.assistpro-core i:nth-of-type(5) { left: 0; } }

.storefront-home-hero {
    width: min(1240px, calc(100% - 48px));
    min-height: 660px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 72px;
}

.storefront-home-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 6.2vw, 84px);
    font-weight: 900;
    line-height: .94;
    letter-spacing: -.06em;
}

.storefront-home-hero h1 span:first-child {
    color: var(--sf-blue);
}

.storefront-home-hero h1 span:nth-child(3) {
    color: var(--sf-orange);
}

.storefront-home-hero > div:first-child > p:not(.storefront-kicker) {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--sf-muted);
    font-size: 18px;
}

.home-system-map {
    position: relative;
    min-height: 510px;
    border: 1px solid rgba(7, 86, 165, .11);
    border-radius: 38px;
    background:
        radial-gradient(circle at center, rgba(7, 86, 165, .13), transparent 35%),
        linear-gradient(145deg, #edf5fc, #fff);
    box-shadow: 0 32px 80px rgba(16, 35, 63, .12);
}

.system-center {
    position: absolute;
    z-index: 3;
    inset: 50% auto auto 50%;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 9px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    color: white;
    background: var(--sf-blue);
    box-shadow: 0 15px 35px rgba(7, 86, 165, .28);
    font-size: 17px;
    font-weight: 900;
}

.system-node {
    position: absolute;
    z-index: 2;
    width: 190px;
    padding: 18px 20px;
    display: grid;
    border: 1px solid var(--sf-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 38px rgba(16, 35, 63, .1);
}

.system-node small {
    margin-bottom: 6px;
    color: var(--sf-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.system-node strong {
    font-size: 18px;
}

.system-node span {
    color: var(--sf-muted);
    font-size: 11px;
}

.software-node {
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 4px solid var(--sf-blue);
}

.hardware-node {
    left: 28px;
    bottom: 48px;
    border-top: 4px solid var(--sf-orange);
}

.service-node {
    right: 28px;
    bottom: 48px;
    border-top: 4px solid var(--sf-green);
}

.system-line {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    width: 55%;
    height: 1px;
    transform-origin: left center;
    background: #9bbbd9;
}

.line-one {
    transform: rotate(31deg);
}

.line-two {
    transform: rotate(149deg);
}

.business-grid {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.business-grid article {
    min-height: 300px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sf-line);
    border-radius: 22px;
    background: white;
    box-shadow: 0 16px 44px rgba(16, 35, 63, .05);
}

.business-grid article > span {
    color: var(--sf-blue);
    font-size: 10px;
    font-weight: 900;
}

.business-grid article.hardware > span {
    color: var(--sf-orange);
}

.business-grid article.services > span {
    color: var(--sf-green);
}

.business-grid h2 {
    margin: auto 0 12px;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -.04em;
}

.business-grid p {
    margin: 0 0 24px;
    color: var(--sf-muted);
    font-size: 13px;
}

.business-grid a {
    color: var(--sf-blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.published-products {
    padding: 100px max(24px, calc((100% - 1180px) / 2));
    color: white;
    background: var(--sf-blue-dark);
}

.published-heading {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    gap: 70px;
}

.published-heading .storefront-kicker {
    color: #7ed9eb;
}

.published-heading h2,
.solution-method h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -.05em;
}

.published-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.published-grid {
    display: grid;
    gap: 18px;
}

.published-card {
    min-height: 380px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr .86fr;
    align-items: center;
    gap: 46px;
    overflow: hidden;
    border-radius: 28px;
    color: var(--sf-ink);
    background: white;
    text-decoration: none;
}

.published-label {
    color: var(--sf-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.published-card h3 {
    margin: 16px 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: .95;
    letter-spacing: -.055em;
}

.published-card p {
    max-width: 580px;
    color: var(--sf-muted);
}

.published-card strong {
    display: inline-block;
    margin-top: 18px;
    color: var(--sf-blue);
    font-size: 13px;
}

.published-card strong i {
    color: var(--sf-orange);
    font-style: normal;
}

.published-card img {
    width: 100%;
    height: 270px;
    object-fit: contain;
    border-radius: 22px;
    background: #edf5fc;
}

.solution-method {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 108px 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.solution-method ol {
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.solution-method li {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 46px 130px 1fr;
    align-items: baseline;
    border-top: 1px solid var(--sf-line);
}

.solution-method li > span {
    color: var(--sf-orange);
    font-size: 10px;
    font-weight: 900;
}

.solution-method li strong {
    font-size: 18px;
}

.solution-method li p {
    margin: 0;
    color: var(--sf-muted);
    font-size: 13px;
}

.storefront-contact {
    padding: 104px max(24px, calc((100% - 1180px) / 2));
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 88px;
    align-items: start;
    background: #eef4fa;
}

.contact-intro {
    position: sticky;
    top: 32px;
}

.contact-intro h2 {
    max-width: 500px;
    margin: 0;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1;
    letter-spacing: -.05em;
}

.contact-intro > p:not(.storefront-kicker) {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--sf-muted);
    font-size: 15px;
}

.contact-promise {
    margin-top: 38px;
    display: grid;
    gap: 12px;
}

.contact-promise span {
    padding: 13px 0;
    display: flex;
    gap: 16px;
    border-top: 1px solid #cad9e7;
    color: var(--sf-ink);
    font-size: 13px;
    font-weight: 800;
}

.contact-promise strong {
    color: var(--sf-orange);
    font-size: 10px;
    letter-spacing: .1em;
}

.contact-panel {
    padding: 38px;
    border: 1px solid var(--sf-line);
    border-radius: 26px;
    background: white;
    box-shadow: 0 24px 60px rgba(16, 35, 63, .09);
}

.contact-form {
    display: grid;
    gap: 19px;
}

.contact-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label:not(.contact-consent) {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: var(--sf-ink);
    font-size: 11px;
    font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #cbd8e5;
    border-radius: 10px;
    color: var(--sf-ink);
    background: #fbfcfe;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.contact-form textarea {
    min-height: 118px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--sf-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(7, 86, 165, .11);
}

.contact-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.contact-consent input {
    width: 17px;
    min-height: 17px;
    margin: 2px 0 0;
}

.contact-consent span {
    color: var(--sf-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.contact-form .storefront-button {
    width: fit-content;
    min-width: 210px;
    cursor: pointer;
}

.contact-note {
    color: var(--sf-muted);
    font-size: 10px;
}

.contact-message {
    margin-bottom: 22px;
    padding: 15px 17px;
    display: grid;
    gap: 3px;
    border-radius: 12px;
    font-size: 12px;
}

.contact-message.success {
    color: #0f5e49;
    border: 1px solid #a9dfcf;
    background: #eaf8f3;
}

.contact-message.error {
    color: #913d2e;
    border: 1px solid #efc4bb;
    background: #fff1ed;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 980px) {
    .storefront-nav nav {
        display: none;
    }

    .storefront-hero {
        padding: 60px 0 80px;
        grid-template-columns: 1fr;
    }

    .storefront-visual {
        min-height: 480px;
    }

    .storefront-intro,
    .storefront-integration {
        grid-template-columns: 1fr;
    }

    .storefront-intro {
        gap: 26px;
    }

    .storefront-capabilities {
        grid-template-columns: 1fr;
    }

    .storefront-home-hero,
    .published-heading,
    .published-card,
    .solution-method,
    .storefront-contact {
        grid-template-columns: 1fr;
    }

    .storefront-home-hero {
        padding: 70px 0;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .published-heading,
    .solution-method,
    .storefront-contact {
        gap: 36px;
    }

    .contact-intro {
        position: static;
    }
}

@media (max-width: 640px) {
    .storefront-nav,
    .storefront-hero,
    .storefront-capabilities,
    .storefront-integration,
    .storefront-home-hero,
    .business-grid,
    .solution-method,
    .storefront-footer {
        width: min(100% - 28px, 1180px);
    }

    .storefront-nav .storefront-button {
        display: none;
    }

    .storefront-hero {
        min-height: 0;
        padding-top: 44px;
        gap: 28px;
    }

    .storefront-hero h1 {
        font-size: 58px;
    }

    .storefront-lead {
        font-size: 17px;
    }

    .storefront-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .storefront-proof {
        grid-template-columns: 1fr;
    }

    .storefront-visual {
        min-height: 360px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 390px;
        height: 390px;
    }

    .storefront-status {
        right: 8px;
        bottom: 30px;
    }

    .storefront-intro {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .storefront-capabilities {
        padding: 56px 0;
    }

    .storefront-capabilities article {
        min-height: 230px;
    }

    .storefront-integration {
        margin-bottom: 56px;
        padding: 34px 20px;
        gap: 34px;
    }

    .storefront-integration-graphic {
        min-height: 220px;
        grid-template-columns: 1fr 24px 1.2fr 24px 1fr;
    }

    .storefront-integration-graphic span,
    .storefront-integration-graphic strong {
        min-height: 86px;
        padding: 6px;
        font-size: 10px;
    }

    .storefront-integration-graphic strong {
        min-height: 112px;
        font-size: 12px;
    }

    .storefront-footer {
        padding: 26px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .storefront-whatsapp {
        right: 14px;
        bottom: 14px;
        padding-right: 7px;
    }

    .storefront-whatsapp strong {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .storefront-home-hero {
        min-height: 0;
        padding: 50px 0 70px;
        gap: 42px;
    }

    .storefront-home-hero h1 {
        font-size: 49px;
    }

    .storefront-contact {
        padding: 64px 14px;
    }

    .contact-panel {
        padding: 24px 18px;
    }

    .contact-field-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .storefront-button {
        width: 100%;
    }

    .home-system-map {
        min-height: 430px;
    }

    .system-node {
        width: 150px;
        padding: 14px;
    }

    .hardware-node {
        left: 12px;
    }

    .service-node {
        right: 12px;
    }

    .business-grid {
        padding-bottom: 64px;
        grid-template-columns: 1fr;
    }

    .business-grid article {
        min-height: 240px;
    }

    .published-products {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .published-card {
        min-height: 0;
        padding: 28px;
    }

    .published-card img {
        height: 210px;
    }

    .solution-method {
        padding: 72px 0;
    }

    .solution-method li {
        grid-template-columns: 38px 1fr;
    }

    .solution-method li p {
        grid-column: 2;
    }
}

/* Densidad operativa homologada con AssistPro ER / orden_compra.php. */
.app-page {
    --ap-primary: #0f5aad;
    --ap-primary-dark: #0c4a8d;
    --ap-primary-2: #2474c7;
    --ap-line: #e2e8f0;
    --ap-bg: #f5f7fb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 10px;
    background: #f5f7fb;
}

.app-page .topbar {
    height: 52px;
    padding: 0 18px;
}

.app-page .brand {
    gap: 9px;
    font-size: 12px;
}

.app-page .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 10px;
}

.app-page .main-nav a {
    padding: 6px 9px;
    font-size: 11px;
}

.app-page .account,
.app-page .account > span {
    font-size: 11px;
}

.app-page main {
    width: min(1440px, calc(100% - 28px));
    padding: 8px 0 24px;
}

.app-page h1,
.app-page .page-heading h1 {
    color: var(--ap-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.app-page .page-heading {
    margin-bottom: 8px;
}

.app-page .page-heading p:last-child {
    margin-top: 2px;
    font-size: 10px;
}

.app-page .eyebrow {
    margin-bottom: 2px;
    font-size: 9px;
    letter-spacing: .08em;
}

.app-page .button {
    min-height: 30px;
    padding: 3px 14px;
    border-radius: 999px;
    font-size: 11px;
}

.app-page .button.small {
    min-height: 28px;
    padding: 2px 10px;
    font-size: 10px;
}

.app-page .hero {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 0 0 8px;
}

.app-page .hero h1 {
    font-size: 18px;
    line-height: 1.15;
}

.app-page .hero-copy {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.35;
}

.app-page .status-card {
    min-width: 220px;
    padding: 8px 10px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 90, 173, .08);
}

.app-page .status-card strong,
.app-page .status-card span:last-child {
    font-size: 10px;
}

.app-page .status-dot,
.app-page .status-dot.is-ok {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(15, 90, 173, .12);
}

.app-page .module-grid {
    gap: 8px;
}

.app-page .module-card {
    min-height: 126px;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 90, 173, .08);
}

.app-page .module-card h2 {
    margin: 14px 0 4px;
    font-size: 13px;
}

.app-page .module-card p,
.app-page .module-state,
.app-page .flow-steps {
    font-size: 10px;
    line-height: 1.35;
}

.app-page .module-card p {
    margin-bottom: 8px;
}

.app-page .module-state {
    padding: 2px 8px;
}

.app-page .flow {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 90, 173, .08);
}

.app-page .flow h2 {
    color: var(--ap-primary);
    font-size: 12px;
}

.app-page .flow-steps span {
    padding: 4px 8px;
    border-radius: 8px;
}

.commerce-insights {
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #e5edf8;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(15, 90, 173, .06);
}

.insights-heading {
    margin-bottom: 10px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.insights-heading h2 {
    margin: 0;
    color: var(--ap-primary);
    font-size: 15px;
    letter-spacing: -.025em;
}

.insights-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--ap-muted);
    font-size: 9px;
    text-align: right;
}

.commerce-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.commerce-metrics article {
    min-height: 84px;
    padding: 10px 12px;
    display: grid;
    align-content: space-between;
    border: 1px solid #e8eef6;
    border-radius: 12px;
    background: #f9fbfe;
}

.commerce-metrics span,
.commerce-metrics small {
    color: var(--ap-muted);
    font-size: 9px;
}

.commerce-metrics span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.commerce-metrics strong {
    color: var(--ap-primary);
    font-size: 24px;
    line-height: 1;
}

.commerce-metrics .conversion-metric {
    color: white;
    border-color: var(--ap-primary);
    background: linear-gradient(135deg, var(--ap-primary), var(--ap-primary-dark));
}

.commerce-metrics .conversion-metric strong,
.commerce-metrics .conversion-metric span,
.commerce-metrics .conversion-metric small {
    color: white;
}

.crm-capture-panel {
    margin-top: 8px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 20px;
    align-items: center;
    border: 1px solid #e3ebf4;
    border-radius: 12px;
    background: #f7fafd;
}

.crm-capture-panel h3 {
    margin: 2px 0;
    color: var(--ap-primary);
    font-size: 12px;
}

.crm-capture-panel > div > span {
    color: var(--ap-muted);
    font-size: 9px;
}

.crm-capture-panel dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.crm-capture-panel dl > div {
    padding: 9px;
    display: grid;
    border-radius: 8px;
    background: white;
}

.crm-capture-panel dt {
    color: var(--ap-muted);
    font-size: 8px;
}

.crm-capture-panel dd {
    margin: 1px 0 0;
    color: var(--ap-primary);
    font-size: 18px;
    font-weight: 850;
}

.crm-capture-panel .attention {
    background: #fff1ed;
}

.crm-capture-panel .attention dd {
    color: #b34c36;
}

.interest-panel {
    margin-top: 8px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    border-radius: 12px;
    background: #f5f8fc;
}

.interest-panel h3 {
    margin: 0 0 2px;
    font-size: 11px;
}

.interest-panel > div > span,
.interest-empty {
    color: var(--ap-muted);
    font-size: 9px;
}

.interest-panel table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9px;
}

.interest-panel th,
.interest-panel td {
    padding: 3px 6px;
    border-bottom: 1px solid #e3eaf4;
    text-align: left;
}

.interest-panel th:nth-child(n+2),
.interest-panel td:nth-child(n+2) {
    text-align: right;
}

.interest-panel th {
    color: var(--ap-muted);
    font-weight: 800;
}

.interest-empty {
    margin: 0;
    align-self: center;
}

.import-workbench {
    margin-bottom: 10px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 12px;
    border: 1px solid #e5edf8;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(15, 90, 173, .06);
}

.import-form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 10px;
}

.import-form > div {
    display: grid;
    gap: 3px;
}

.import-form label {
    color: var(--ap-primary);
    font-size: 10px;
    font-weight: 800;
}

.import-form small {
    color: var(--ap-muted);
    font-size: 8px;
}

.import-workbench aside {
    padding: 10px 12px;
    display: grid;
    align-content: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--ap-primary), var(--ap-primary-dark));
}

.import-workbench aside strong {
    font-size: 11px;
}

.import-workbench aside span {
    color: rgba(255, 255, 255, .72);
    font-size: 9px;
}

.import-list {
    display: grid;
    gap: 8px;
}

.import-card {
    padding: 12px 14px;
    border: 1px solid #e5edf8;
    border-radius: 14px;
    background: white;
    box-shadow: 0 8px 24px rgba(15, 90, 173, .05);
}

.import-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.import-card-heading > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.import-card h2 {
    margin: 0;
    color: var(--ap-primary);
    font-size: 13px;
}

.import-card time {
    color: var(--ap-muted);
    font-size: 8px;
}

.import-card > p {
    margin: 8px 0;
    color: var(--ap-muted);
    font-size: 10px;
}

.import-tags,
.import-evidence {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.import-tags span {
    padding: 3px 7px;
    border-radius: 999px;
    color: var(--ap-primary);
    background: #edf5fd;
    font-size: 8px;
}

.import-evidence {
    margin-top: 9px;
    padding-top: 8px;
    border-top: 1px solid #edf1f6;
}

.import-evidence a,
.import-evidence span {
    color: var(--ap-muted);
    font-size: 9px;
}

.import-evidence a {
    color: var(--ap-primary);
    font-weight: 800;
    text-decoration: none;
}

.import-evidence .import-next {
    margin-left: auto;
    color: white;
}

.import-evidence .import-next.ghost {
    color: var(--ap-primary);
}

.source-review-banner {
    margin-bottom: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #bcd6ef;
    border-radius: 12px;
    background: #edf6fd;
}

.source-review-banner > div {
    display: grid;
}

.source-review-banner span {
    color: var(--ap-primary);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.source-review-banner strong {
    font-size: 11px;
}

.source-review-banner p {
    margin: 2px 0 0;
    color: var(--ap-muted);
    font-size: 9px;
}

.source-review-banner a {
    flex: 0 0 auto;
    color: var(--ap-primary);
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
}

.import-empty {
    min-height: 240px;
}

.app-page .catalog-summary {
    margin-bottom: 8px;
    gap: 8px;
}

.app-page .catalog-summary article {
    padding: 10px 12px;
    border-radius: 10px;
}

.app-page .catalog-summary strong {
    font-size: 20px;
}

.app-page .catalog-summary span {
    font-size: 10px;
}

.app-page .catalog-filters {
    margin-bottom: 8px;
    padding: 8px 10px;
    gap: 8px;
    border-radius: 12px;
}

.app-page label,
.app-page .ap-label {
    gap: 3px;
    font-size: 11px;
}

.app-page input,
.app-page select,
.app-page textarea {
    min-height: 30px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.2;
}

.app-page textarea {
    min-height: 70px;
}

.app-page .input-prefix {
    border-radius: 8px;
}

.app-page .input-prefix span {
    padding: 0 8px;
    font-size: 10px;
}

.app-page .table-shell,
.app-page .detail-card,
.app-page .form-section,
.app-page .content-card,
.app-page .empty-state {
    border-color: #eef1f7;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 90, 173, .08);
}

.app-page th,
.app-page td {
    padding: 5px 8px;
    font-size: 10px;
    white-space: nowrap;
    vertical-align: middle;
}

.app-page th {
    color: #4a5568;
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f8fafc;
}

.app-page tbody tr:nth-child(even) {
    background: #fbfcfe;
}

.app-page tbody tr:hover {
    background: #eef5ff;
}

.app-page td small {
    font-size: 9px;
}

.app-page .status-pill {
    padding: 2px 8px;
    font-size: 10px;
}

.app-page .product-form {
    gap: 8px;
}

.app-page .form-section {
    padding: 14px;
    grid-template-columns: 0.55fr 1.7fr;
    gap: 22px;
}

.app-page .section-intro {
    gap: 10px;
}

.app-page .section-intro h2 {
    margin-bottom: 4px;
    font-size: 14px;
}

.app-page .section-intro p,
.app-page label small,
.app-page .form-actions p {
    font-size: 10px;
}

.app-page .form-grid,
.app-page .form-stack {
    gap: 9px;
}

.app-page .form-actions {
    padding: 8px 0;
}

.app-page .product-overview,
.app-page .content-card {
    gap: 10px;
}

.app-page .detail-card {
    padding: 10px;
}

.app-page .detail-card h2 {
    margin-bottom: 8px;
    color: var(--ap-primary);
    font-size: 13px;
}

.app-page .detail-list,
.app-page .identifier-list,
.app-page .seo-preview {
    gap: 9px;
}

.app-page .detail-list dt,
.app-page .seo-preview dt,
.app-page .detail-list dd,
.app-page .seo-preview dd,
.app-page .identifier-list,
.app-page .body-copy {
    font-size: 10px;
}

.app-page .content-card {
    margin-top: 8px;
    padding: 10px;
    background: var(--ap-surface);
}

.app-page .seo-preview {
    padding: 10px;
    border-radius: 8px;
}

.app-page .empty-state {
    min-height: 230px;
    padding: 24px 16px;
    border-style: solid;
}

.app-page .empty-state h1,
.app-page .empty-state h2 {
    margin: 8px 0 4px;
    color: var(--ap-primary);
    font-size: 15px;
}

.app-page .empty-state p {
    margin-bottom: 12px;
    font-size: 10px;
}

.app-page .empty-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 11px;
}

.app-page .flash,
.app-page .form-error {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10px;
}

.app-page .flash {
    width: min(1440px, calc(100% - 28px));
    margin-top: 8px;
}

.app-page .form-error {
    margin-bottom: 8px;
}

.app-page .table-shell {
    max-height: 520px;
    overflow: auto;
}

.app-page .flash.error {
    color: #9c2635;
    border-color: #edb4bc;
    background: #fff1f3;
}

.publication-panel {
    margin-top: 8px;
}

.publication-heading,
.publication-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.publication-heading p,
.publication-footer small {
    margin: 0;
}

.publication-score {
    width: 64px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid #efc56e;
    border-radius: 10px;
    color: #76520d;
    background: #fff8e8;
}

.publication-score.is-ready {
    color: #125d37;
    border-color: #a8d5bc;
    background: #eefaf3;
}

.publication-score strong {
    font-size: 16px;
    line-height: 1;
}

.publication-score span {
    margin-top: 3px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.publication-checks {
    margin: 8px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.publication-checks > div {
    min-width: 0;
    padding: 6px 8px;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    column-gap: 5px;
    border: 1px solid var(--ap-line);
    border-radius: 8px;
    background: #fbfcfe;
}

.publication-checks > div > span {
    grid-row: span 2;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 900;
}

.publication-checks .is-complete > span {
    color: #125d37;
    background: #dff4e8;
}

.publication-checks .is-pending > span {
    color: #76520d;
    background: #fff1ca;
}

.publication-checks strong,
.publication-checks small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.publication-checks small,
.publication-footer small {
    color: var(--ap-muted);
    font-size: 9px;
}

.publication-footer {
    padding-top: 7px;
    border-top: 1px solid var(--ap-line);
}

.publication-footer > div {
    display: grid;
}

.app-page .button:disabled {
    cursor: not-allowed;
    opacity: .48;
}

.asset-workspace {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.asset-empty {
    min-height: 52px;
    margin: 0;
    display: flex;
    align-items: center;
}

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

.media-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px;
    overflow: hidden;
    border: 1px solid var(--ap-line);
    border-radius: 8px;
    background: #fbfcfe;
}

.media-item img {
    width: 82px;
    height: 72px;
    object-fit: cover;
    background: #eef1f7;
}

.media-item > div {
    min-width: 0;
    padding: 7px 7px 7px 0;
    display: grid;
    align-content: center;
    gap: 2px;
}

.media-item strong,
.media-item small,
.document-list strong,
.document-list small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.media-item small,
.document-list small,
.asset-form small {
    color: var(--ap-muted);
    font-size: 9px;
}

.document-list {
    display: grid;
    gap: 4px;
}

.document-list a {
    padding: 6px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) minmax(120px, .6fr);
    gap: 8px;
    align-items: center;
    border: 1px solid var(--ap-line);
    border-radius: 8px;
    color: inherit;
    background: #fbfcfe;
    text-decoration: none;
}

.document-list a:hover {
    border-color: var(--ap-primary);
    background: #eef5ff;
}

.document-list a > span {
    min-width: 0;
    display: grid;
}

.document-type {
    padding: 3px 6px;
    border-radius: 999px;
    color: var(--ap-primary);
    background: #eaf3fd;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

.asset-form {
    margin-top: 8px;
    border-top: 1px solid var(--ap-line);
}

.asset-form summary {
    padding: 7px 0 2px;
    color: var(--ap-primary);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
}

.asset-form form {
    padding-top: 7px;
}

.asset-form-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

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

    .app-page .status-card {
        min-width: 0;
    }

    .app-page .form-section {
        grid-template-columns: 1fr;
    }

    .asset-workspace {
        grid-template-columns: 1fr;
    }

    .publication-checks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .commerce-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .interest-panel {
        grid-template-columns: 1fr;
    }

    .import-workbench {
        grid-template-columns: 1fr;
    }
}

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

    .document-list a {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .document-list a > span:last-child {
        grid-column: 2;
    }

    .publication-checks {
        grid-template-columns: 1fr;
    }

    .publication-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .insights-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .insights-heading > p {
        text-align: left;
    }

    .commerce-metrics {
        grid-template-columns: 1fr;
    }

    .import-form {
        grid-template-columns: 1fr;
    }

    .import-card-heading,
    .import-card-heading > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .import-evidence .import-next {
        width: 100%;
        margin-left: 0;
    }

    .source-review-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}
.dsc-page { background: #f5f8fc; color: #14233c; }
.dsc-hero, .dsc-context, .dsc-control, .dsc-integration { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.dsc-hero { min-height: 590px; padding: 90px 0; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.dsc-hero h1 { margin: 0; max-width: 700px; font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -.055em; }
.dsc-hero h1 span { color: #1169c7; }
.dsc-hero > div > p:not(.storefront-kicker) { max-width: 590px; color: #50627f; font-size: 18px; line-height: 1.7; }
.dsc-screen { position: relative; overflow: hidden; border: 1px solid #dae4f5; border-radius: 20px; background: linear-gradient(145deg, #0d4e99, #071d63); box-shadow: 0 28px 70px rgba(12, 57, 122, .22); }
.dsc-screen img { width: 100%; display: block; }
.dsc-screen > strong { display: block; padding: 96px 44px 8px; color: #fff; font-size: 64px; }
.dsc-screen > span { display: block; padding: 0 44px 96px; color: #a8d9ff; }
.dsc-context { padding: 84px 0; max-width: 850px; text-align: center; }
.dsc-context h2, .dsc-control h2, .dsc-integration h2 { margin: 8px 0 18px; font-size: clamp(30px, 3.7vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.dsc-context > p:last-child, .dsc-control p { color: #50627f; font-size: 17px; line-height: 1.75; }
.dsc-flow { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 0 0 96px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dsc-flow article { min-height: 245px; padding: 28px; border: 1px solid #dbe5f4; border-radius: 18px; background: #fff; }
.dsc-flow span { color: #1b75d0; font-size: 13px; font-weight: 800; letter-spacing: .08em; }.dsc-flow h3 { margin: 60px 0 10px; font-size: 22px; }.dsc-flow p { margin: 0; color: #60718e; line-height: 1.55; }
.dsc-control { padding: 72px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; border-radius: 26px; color: #fff; background: linear-gradient(130deg, #061b58, #0b58aa); }.dsc-control h2 { color: #fff; }.dsc-control p, .dsc-control li { color: rgba(255,255,255,.76); }.dsc-control ul { margin: 0; padding: 0; list-style: none; }.dsc-control li { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.dsc-integration { padding: 100px 0; text-align: center; }.dsc-integration > div { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }.dsc-integration span { padding: 13px 17px; border-radius: 999px; color: #0c4f9b; background: #e7f1fd; font-weight: 800; }.dsc-integration i { color: #19a7a2; font-style: normal; font-size: 24px; }
@media (max-width: 800px) { .dsc-hero, .dsc-control { grid-template-columns: 1fr; gap: 34px; }.dsc-hero { padding: 56px 0; }.dsc-flow { grid-template-columns: repeat(2,1fr); }.dsc-control { padding: 38px 26px; } }
@media (max-width: 540px) { .dsc-flow { grid-template-columns: 1fr; }.dsc-hero, .dsc-context, .dsc-control, .dsc-integration, .dsc-flow { width: min(100% - 32px, 1180px); }.dsc-hero h1 { font-size: 39px; } }
.dsc-stage-details { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 0 0 96px; display: grid; gap: 28px; }
.dsc-stage-details article { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; padding: 32px; border: 1px solid #dbe5f4; border-radius: 20px; background: #fff; box-shadow: 0 16px 38px rgba(12, 57, 122, .08); }
.dsc-stage-details article:nth-child(even) .dsc-stage-copy { order: 2; }.dsc-stage-details article:nth-child(even) img { order: 1; }
.dsc-stage-copy > span { color: #1b75d0; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.dsc-stage-copy h2 { margin: 10px 0 14px; color: #14233c; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; letter-spacing: -.04em; }.dsc-stage-copy p { color: #50627f; line-height: 1.72; }.dsc-stage-copy ul { margin: 18px 0 0; padding-left: 20px; color: #174f83; line-height: 1.85; }.dsc-stage-details img { display: block; width: 100%; border: 1px solid #dbe5f4; border-radius: 12px; background: #f4f8fc; }
@media (max-width: 800px) { .dsc-stage-details { width: min(100% - 32px, 1180px); gap: 18px; padding-bottom: 64px; }.dsc-stage-details article { grid-template-columns: 1fr; gap: 22px; padding: 22px; }.dsc-stage-details article:nth-child(even) .dsc-stage-copy, .dsc-stage-details article:nth-child(even) img { order: initial; } }
