.npmk-app {
    --npmk-navy: #123d5b;
    --npmk-blue: #1f628f;
    --npmk-blue-light: #3b8fc1;
    --npmk-green: #14735b;
    --npmk-green-light: #35a17e;
    --npmk-ink: #18262f;
    --npmk-muted: #5d6a73;
    --npmk-border: #c7d6df;
    --npmk-border-strong: #9eb6c5;
    --npmk-surface: #f4f8fa;
    --npmk-blue-soft: #eaf4fa;
    --npmk-green-soft: #eaf7f2;
    --npmk-warning: #815300;
    --npmk-warning-bg: #fff7e2;
    --npmk-error: #a42626;
    --npmk-error-bg: #fff1f1;
    --npmk-radius: 15px;
    container-name: npmk;
    container-type: inline-size;
    width: 100%;
    min-width: 0;
    max-width: 1180px;
    margin: 1.5rem auto;
    color: var(--npmk-ink);
    font-family: inherit;
    line-height: 1.55;
}

.npmk-app *,
.npmk-app *::before,
.npmk-app *::after {
    box-sizing: border-box;
}

.npmk-app button,
.npmk-app input,
.npmk-app select {
    font: inherit;
}

.npmk-app h2,
.npmk-app h3,
.npmk-app p,
.npmk-app dl,
.npmk-app ul {
    margin-top: 0;
}

.npmk-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.npmk-header {
    position: relative;
    overflow: hidden;
    padding: clamp(1.4rem, 3.2vw, 2.35rem);
    border-radius: var(--npmk-radius) var(--npmk-radius) 0 0;
    color: #fff;
    background:
        radial-gradient(circle at 89% 12%, rgba(53, 161, 126, 0.34), transparent 31%),
        linear-gradient(132deg, #10344e 0%, var(--npmk-blue) 66%, #216d79 100%);
}

.npmk-header::before,
.npmk-header::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.npmk-header::before {
    right: 4rem;
    bottom: -7.5rem;
    width: 15rem;
    height: 15rem;
}

.npmk-header::after {
    right: -5rem;
    top: -6rem;
    width: 13rem;
    height: 13rem;
}

.npmk-header__topline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.npmk-pill {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0.2rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.npmk-method {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
}

.npmk-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.45rem;
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 2.55rem);
    line-height: 1.15;
}

.npmk-lead {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(0.98rem, 1.7vw, 1.08rem);
}

.npmk-workspace {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(390px, 100%), 1fr));
    gap: 1.2rem;
    align-items: start;
    padding: clamp(0.8rem, 2.4vw, 1.35rem);
    border: 1px solid var(--npmk-border);
    border-top: 0;
    border-radius: 0 0 var(--npmk-radius) var(--npmk-radius);
    background: var(--npmk-surface);
    box-shadow: 0 15px 38px rgba(18, 61, 91, 0.1);
}

.npmk-form {
    display: grid;
    gap: 0.95rem;
    min-width: 0;
}

.npmk-section {
    min-width: 0;
    margin: 0;
    padding: 1.15rem;
    border: 1px solid var(--npmk-border);
    border-radius: 13px;
    background: #fff;
}

.npmk-section__heading {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.npmk-section__heading h3 {
    margin-bottom: 0.08rem;
    color: var(--npmk-navy);
    font-size: 1.12rem;
}

.npmk-section__heading p {
    margin-bottom: 0;
    color: var(--npmk-muted);
    font-size: 0.86rem;
}

.npmk-step {
    display: inline-flex;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--npmk-green-soft);
    color: var(--npmk-green);
    font-size: 0.84rem;
    font-weight: 900;
}

.npmk-field-grid {
    display: grid;
    gap: 0.95rem;
}

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

.npmk-field-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npmk-field-grid--spaced {
    margin-top: 1rem;
}

.npmk-field,
.npmk-fieldset {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.npmk-label {
    display: block;
    margin-bottom: 0.32rem;
    color: #132f43;
    font-size: 0.91rem;
    font-weight: 800;
}

.npmk-input-wrap {
    display: flex;
    min-width: 0;
}

.npmk-input,
.npmk-select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border: 1px solid var(--npmk-border-strong);
    background: #fff;
    color: var(--npmk-ink);
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.npmk-input {
    border-radius: 10px 0 0 10px;
    padding: 0.65rem 0.78rem;
    font-weight: 650;
}

.npmk-select {
    border-radius: 10px;
    padding: 0.65rem 2.2rem 0.65rem 0.78rem;
}

.npmk-unit {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.55rem 0.72rem;
    border: 1px solid var(--npmk-border-strong);
    border-left: 0;
    border-radius: 0 10px 10px 0;
    background: var(--npmk-blue-soft);
    color: var(--npmk-navy);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.npmk-input:focus,
.npmk-select:focus,
.npmk-button:focus-visible,
.npmk-chip:focus-visible,
.npmk-segmented input:focus-visible + label,
.npmk-result-details > summary:focus-visible {
    outline: 0;
    border-color: var(--npmk-blue);
    box-shadow: 0 0 0 3px rgba(31, 98, 143, 0.18);
}

.npmk-input.npmk-invalid,
.npmk-select.npmk-invalid {
    border-color: var(--npmk-error);
    box-shadow: 0 0 0 3px rgba(164, 38, 38, 0.13);
}

.npmk-help {
    display: block;
    margin-top: 0.28rem;
    color: var(--npmk-muted);
    font-size: 0.76rem;
    line-height: 1.4;
}

.npmk-quick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    align-items: center;
    margin-top: 0.78rem;
    color: var(--npmk-muted);
    font-size: 0.79rem;
}

.npmk-chip {
    min-height: 35px;
    padding: 0.35rem 0.68rem;
    cursor: pointer;
    border: 1px solid var(--npmk-border);
    border-radius: 999px;
    background: #fff;
    color: var(--npmk-navy);
    font-size: 0.78rem;
    font-weight: 800;
}

.npmk-chip:hover {
    border-color: var(--npmk-blue);
    background: var(--npmk-blue-soft);
}

.npmk-segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.npmk-segmented input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.npmk-segmented label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.55rem;
    cursor: pointer;
    border: 1px solid var(--npmk-border-strong);
    background: #fff;
    color: var(--npmk-navy);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
}

.npmk-segmented label:first-of-type {
    border-radius: 10px 0 0 10px;
}

.npmk-segmented label:last-of-type {
    margin-left: -1px;
    border-radius: 0 10px 10px 0;
}

.npmk-segmented input:checked + label {
    position: relative;
    z-index: 1;
    border-color: var(--npmk-green);
    background: var(--npmk-green);
    color: #fff;
}

.npmk-assumption-note {
    display: grid;
    gap: 0.2rem;
    margin-top: 0.95rem;
    padding: 0.8rem 0.9rem;
    border-left: 4px solid var(--npmk-blue-light);
    border-radius: 7px;
    background: var(--npmk-blue-soft);
    color: #284553;
    font-size: 0.8rem;
}

.npmk-assumption-note strong {
    color: var(--npmk-navy);
}

.npmk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.npmk-button {
    min-height: 45px;
    padding: 0.65rem 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 800;
    transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.npmk-button:hover {
    transform: translateY(-1px);
}

.npmk-button--primary {
    background: var(--npmk-blue);
    color: #fff;
}

.npmk-button--primary:hover {
    background: var(--npmk-navy);
}

.npmk-button--secondary,
.npmk-button--outline,
.npmk-button--ghost {
    border-color: var(--npmk-blue);
    background: #fff;
    color: var(--npmk-navy);
}

.npmk-button--secondary:hover,
.npmk-button--outline:hover,
.npmk-button--ghost:hover {
    background: var(--npmk-blue-soft);
}

.npmk-error {
    padding: 0.8rem 0.9rem;
    border: 1px solid #e1a3a3;
    border-radius: 10px;
    background: var(--npmk-error-bg);
    color: var(--npmk-error);
    font-size: 0.86rem;
    font-weight: 700;
}

.npmk-result {
    position: sticky;
    top: 1.2rem;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #a9c3d3;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(18, 61, 91, 0.09);
}

.npmk-result__hero {
    padding: 1.25rem 1.2rem 1.15rem;
    color: #fff;
    background:
        radial-gradient(circle at 92% 15%, rgba(53, 161, 126, 0.27), transparent 34%),
        linear-gradient(135deg, var(--npmk-navy), #195983);
}

.npmk-result__eyebrow {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.npmk-result__total {
    display: block;
    margin-bottom: 0.32rem;
    font-size: clamp(1.65rem, 3.8vw, 2.45rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.npmk-result__hero p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
}

.npmk-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.npmk-summary__item {
    min-width: 0;
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid var(--npmk-border);
}

.npmk-summary__item:nth-child(odd):not(.npmk-summary__item--wide) {
    border-right: 1px solid var(--npmk-border);
}

.npmk-summary__item--wide {
    grid-column: 1 / -1;
    background: var(--npmk-blue-soft);
}

.npmk-summary dt {
    margin-bottom: 0.12rem;
    color: var(--npmk-muted);
    font-size: 0.72rem;
}

.npmk-summary dd {
    margin: 0;
    color: var(--npmk-navy);
    font-size: 1rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.npmk-summary small {
    display: block;
    margin-top: 0.12rem;
    color: var(--npmk-muted);
    font-size: 0.7rem;
}

.npmk-negative {
    color: var(--npmk-error) !important;
}

.npmk-composition {
    padding: 0.95rem;
    border-bottom: 1px solid var(--npmk-border);
}

.npmk-result-section-title {
    display: flex;
    gap: 0.6rem;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}

.npmk-result-section-title h3 {
    margin-bottom: 0;
    color: var(--npmk-navy);
    font-size: 0.9rem;
}

.npmk-result-section-title span {
    color: var(--npmk-muted);
    font-size: 0.7rem;
    text-align: right;
}

.npmk-composition__bar {
    display: flex;
    overflow: hidden;
    height: 14px;
    border-radius: 999px;
    background: #e8eef2;
}

.npmk-composition__principal,
.npmk-composition__return {
    display: block;
    min-width: 0;
    transition: width 0.2s ease;
}

.npmk-composition__principal {
    background: var(--npmk-blue-light);
}

.npmk-composition__return {
    background: var(--npmk-green-light);
}

.npmk-composition--loss .npmk-composition__return {
    background: #d97070;
}

.npmk-legend,
.npmk-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    margin-top: 0.48rem;
    color: var(--npmk-muted);
    font-size: 0.7rem;
}

.npmk-legend span,
.npmk-chart-legend span {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

.npmk-legend__dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.npmk-legend__dot--principal {
    background: var(--npmk-blue-light);
}

.npmk-legend__dot--return {
    background: var(--npmk-green-light);
}

.npmk-composition--loss .npmk-legend__dot--return {
    background: #d97070;
}

.npmk-warnings {
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid #ead6a1;
    background: var(--npmk-warning-bg);
    color: var(--npmk-warning);
    font-size: 0.76rem;
}

.npmk-warnings p {
    margin-bottom: 0.35rem;
}

.npmk-warnings p:last-child {
    margin-bottom: 0;
}

.npmk-print-summary {
    display: none;
}

.npmk-app--invalid-result .npmk-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1rem;
    color: var(--npmk-muted);
    font-size: 0.78rem;
    text-align: center;
}

.npmk-result-details {
    border-bottom: 1px solid var(--npmk-border);
}

.npmk-result-details > summary {
    position: relative;
    min-height: 46px;
    padding: 0.78rem 2.5rem 0.78rem 0.95rem;
    cursor: pointer;
    list-style: none;
    color: var(--npmk-navy);
    font-size: 0.84rem;
    font-weight: 900;
}

.npmk-result-details > summary::-webkit-details-marker {
    display: none;
}

.npmk-result-details > summary::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    content: "+";
    color: var(--npmk-blue);
    font-size: 1.2rem;
    transform: translateY(-50%);
}

.npmk-result-details[open] > summary::after {
    content: "−";
}

.npmk-chart-wrap {
    padding: 0 0.75rem 0.75rem;
}

.npmk-chart {
    width: 100%;
    min-height: 185px;
}

.npmk-chart svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.npmk-chart-grid {
    stroke: #dce6eb;
    stroke-width: 1;
}

.npmk-chart-label {
    fill: #687782;
    font-size: 11px;
}

.npmk-chart-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.npmk-chart-line--total {
    stroke: var(--npmk-green);
}

.npmk-chart-line--paid {
    stroke: var(--npmk-blue-light);
    stroke-dasharray: 7 6;
    stroke-width: 3;
}

.npmk-chart-point--total {
    fill: var(--npmk-green);
}

.npmk-chart-point--paid {
    fill: var(--npmk-blue-light);
}

.npmk-line-key {
    display: inline-block;
    width: 17px;
    border-top: 3px solid;
}

.npmk-line-key--total {
    border-color: var(--npmk-green);
}

.npmk-line-key--paid {
    border-color: var(--npmk-blue-light);
    border-top-style: dashed;
}

.npmk-table-wrap {
    max-height: 270px;
    overflow: auto;
    border-top: 1px solid var(--npmk-border);
}

.npmk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

.npmk-table th,
.npmk-table td {
    padding: 0.55rem 0.58rem;
    border-bottom: 1px solid #e2eaee;
    text-align: right;
    white-space: nowrap;
}

.npmk-table th:first-child,
.npmk-table td:first-child {
    text-align: left;
}

.npmk-table thead th {
    position: sticky;
    z-index: 1;
    top: 0;
    background: #eef4f7;
    color: var(--npmk-navy);
    font-weight: 900;
}

.npmk-table tbody tr:nth-child(even) {
    background: #f8fafb;
}

.npmk-result__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    padding: 0.85rem 0.9rem;
}

.npmk-copy-status {
    flex: 1 1 100%;
    min-height: 1em;
    color: var(--npmk-muted);
    font-size: 0.72rem;
}

.npmk-guide {
    max-width: 1180px;
    margin: 2.2rem auto 0;
    color: var(--npmk-ink);
}

.npmk-guide h2 {
    color: var(--npmk-navy);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.npmk-guide h3 {
    color: var(--npmk-navy);
    font-size: 1.02rem;
}

.npmk-guide__intro {
    max-width: 850px;
}

.npmk-eyebrow {
    margin-bottom: 0.3rem;
    color: var(--npmk-green);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.npmk-explanation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.25rem 0 1.7rem;
}

.npmk-explanation-card {
    padding: 1rem;
    border: 1px solid var(--npmk-border);
    border-radius: 12px;
    background: #fff;
}

.npmk-explanation-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--npmk-green);
    font-size: 1.05rem;
}

.npmk-explanation-card p {
    margin-bottom: 0;
    color: var(--npmk-muted);
    font-size: 0.84rem;
}

.npmk-formula {
    overflow-x: auto;
    margin: 1rem 0 1.6rem;
    padding: 1rem;
    border-left: 4px solid var(--npmk-green);
    border-radius: 8px;
    background: var(--npmk-green-soft);
}

.npmk-formula code {
    color: #174c3f;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.91rem;
    white-space: nowrap;
}

.npmk-faq {
    margin-top: 1.5rem;
}

.npmk-faq details {
    border-top: 1px solid var(--npmk-border);
}

.npmk-faq details:last-child {
    border-bottom: 1px solid var(--npmk-border);
}

.npmk-faq summary {
    padding: 0.85rem 0;
    cursor: pointer;
    color: var(--npmk-navy);
    font-weight: 850;
}

.npmk-faq details p {
    max-width: 900px;
    padding-bottom: 0.85rem;
    color: var(--npmk-muted);
}

.npmk-sources {
    margin-top: 1.6rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--npmk-blue-soft);
}

.npmk-sources ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.npmk-sources a {
    color: var(--npmk-blue);
}

.npmk-disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #ead6a1;
    border-radius: 10px;
    background: var(--npmk-warning-bg);
    color: #664400;
}

@container npmk (max-width: 900px) {
    .npmk-workspace {
        grid-template-columns: 1fr;
    }

    .npmk-result {
        position: static;
    }

    .npmk-explanation-grid {
        grid-template-columns: 1fr;
    }
}

@container npmk (max-width: 620px) {
    .npmk-field-grid--two,
    .npmk-field-grid--three {
        grid-template-columns: 1fr;
    }

    .npmk-field-grid--three .npmk-field:last-child {
        grid-column: auto;
    }

    .npmk-segmented {
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .npmk-segmented label:first-of-type,
    .npmk-segmented label:last-of-type {
        margin: 0;
        border-radius: 9px;
    }
}

@media (max-width: 980px) {
    .npmk-field-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .npmk-field-grid--three .npmk-field:last-child {
        grid-column: 1 / -1;
    }
}

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

    .npmk-result {
        position: static;
    }

    .npmk-explanation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .npmk-app {
        margin: 0.8rem auto;
    }

    .npmk-header {
        border-radius: 11px 11px 0 0;
    }

    .npmk-workspace {
        padding: 0.65rem;
        border-radius: 0 0 11px 11px;
    }

    .npmk-section {
        padding: 0.9rem;
    }

    .npmk-field-grid--two,
    .npmk-field-grid--three {
        grid-template-columns: 1fr;
    }

    .npmk-field-grid--three .npmk-field:last-child {
        grid-column: auto;
    }

    .npmk-segmented {
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .npmk-segmented label:first-of-type,
    .npmk-segmented label:last-of-type {
        margin: 0;
        border-radius: 9px;
    }

    .npmk-actions .npmk-button,
    .npmk-result__actions .npmk-button {
        flex: 1 1 auto;
    }

    .npmk-summary {
        grid-template-columns: 1fr;
    }

    .npmk-summary__item,
    .npmk-summary__item:nth-child(odd):not(.npmk-summary__item--wide) {
        grid-column: auto;
        border-right: 0;
    }

    .npmk-result-section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .npmk-result-section-title span {
        text-align: left;
    }

    .npmk-chart-label {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .npmk-app *,
    .npmk-app *::before,
    .npmk-app *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (forced-colors: active) {
    .npmk-input:focus,
    .npmk-select:focus,
    .npmk-button:focus-visible,
    .npmk-chip:focus-visible,
    .npmk-segmented input:focus-visible + label,
    .npmk-result-details > summary:focus-visible,
    .npmk-table-wrap:focus-visible {
        outline: 2px solid Highlight;
        outline-offset: 2px;
        box-shadow: none;
    }
}

@media print {
    .npmk-header {
        background: #fff !important;
        color: #000;
        border: 1px solid #777;
    }

    .npmk-title,
    .npmk-header p,
    .npmk-pill,
    .npmk-method {
        color: #000 !important;
    }

    .npmk-workspace {
        display: block;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .npmk-form,
    .npmk-result__actions,
    .npmk-guide {
        display: none !important;
    }

    .npmk-print-summary {
        display: block !important;
        padding: 1rem;
        border-bottom: 1px solid #777;
        color: #000;
        background: #fff !important;
    }

    .npmk-print-summary h3 {
        margin-bottom: 0.65rem;
        color: #000;
        font-size: 1rem;
    }

    .npmk-print-summary dl {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem 1rem;
        margin-bottom: 0.8rem;
    }

    .npmk-print-summary dt {
        color: #333;
        font-size: 0.72rem;
    }

    .npmk-print-summary dd {
        margin: 0;
        color: #000;
        font-weight: 700;
    }

    .npmk-print-disclaimer {
        margin: 0;
        padding-top: 0.75rem;
        border-top: 1px solid #777;
        color: #000;
        font-size: 0.78rem;
    }

    .npmk-result {
        position: static;
        margin-top: 1rem;
        box-shadow: none;
    }

    .npmk-result__hero {
        background: #fff !important;
        color: #000;
        border-bottom: 1px solid #777;
    }

    .npmk-result__hero p,
    .npmk-result__eyebrow {
        color: #333 !important;
    }

    .npmk-table-wrap {
        max-height: none;
        overflow: visible;
    }
}
