/* Portal Recibos - landing pública Corporate Professional.
   Todo queda encapsulado bajo .pr-landing para no contaminar el portal autenticado. */

.pr-landing {
    --prl-navy-950: #061427;
    --prl-navy-900: #091a31;
    --prl-navy-850: #0c213d;
    --prl-navy-800: #102b50;
    --prl-cobalt: #145bd7;
    --prl-cobalt-strong: #0d4fc7;
    --prl-cobalt-soft: #eaf1ff;
    --prl-gold: #c6a25b;
    --prl-gold-light: #e3c989;
    --prl-ink: #122039;
    --prl-copy: #4a5a70;
    --prl-muted: #718096;
    --prl-line: #dce3ec;
    --prl-surface: #f5f7fa;
    --prl-white: #ffffff;
    --prl-success: #0d8d6f;
    --prl-serif: Georgia, Cambria, "Times New Roman", serif;
    --prl-sans: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
    --prl-mono: "Roboto Mono", Consolas, monospace;
    --prl-shadow: 0 28px 70px rgba(5, 20, 39, .14);
    min-height: 100vh;
    overflow: clip;
    color: var(--prl-ink);
    background: var(--prl-white);
    font-family: var(--prl-sans);
}

.pr-landing *,
.pr-landing *::before,
.pr-landing *::after {
    box-sizing: border-box;
}

.pr-landing a {
    color: inherit;
    text-decoration: none;
}

.pr-landing button,
.pr-landing a {
    -webkit-tap-highlight-color: transparent;
}

.pr-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.pr-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    color: #fff !important;
    background: var(--prl-cobalt);
    border-radius: 3px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.pr-skip-link:focus {
    transform: translateY(0);
}

.pr-scroll-progress {
    position: fixed;
    z-index: 999;
    inset: 0 0 auto;
    height: 3px;
    pointer-events: none;
}

.pr-scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--prl-gold), var(--prl-cobalt));
    transform: scaleX(0);
    transform-origin: left center;
}

.pr-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 82px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    transition: height .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.pr-header.is-scrolled {
    height: 70px;
    background: rgba(6, 20, 39, .96);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 12px 30px rgba(1, 12, 26, .18);
    backdrop-filter: blur(14px);
}

.pr-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pr-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    color: #fff !important;
}

.pr-brand__image {
    width: 218px;
    height: auto;
    display: block;
    object-fit: contain;
}

.pr-brand__mark {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(227, 201, 137, .62);
    background: rgba(255, 255, 255, .04);
}

.pr-brand__mark::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 17px;
    height: 17px;
    border-right: 2px solid var(--prl-gold);
    border-bottom: 2px solid var(--prl-gold);
}

.pr-brand__mark i {
    font-size: 1.3rem;
}

.pr-brand__name {
    display: grid;
    gap: 1px;
}

.pr-brand__name strong {
    font-family: var(--prl-serif);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: .005em;
    line-height: 1.1;
}

.pr-brand__name small {
    color: rgba(255, 255, 255, .58);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.pr-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-left: auto;
}

.pr-nav a {
    position: relative;
    padding-block: 29px;
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .025em;
    transition: color .2s ease;
}

.pr-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 1px;
    background: var(--prl-gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.pr-nav a:hover,
.pr-nav a.is-current {
    color: #fff;
}

.pr-nav a:hover::after,
.pr-nav a.is-current::after {
    transform: scaleX(1);
}

.pr-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pr-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: .8rem;
    font-weight: 750;
    letter-spacing: .015em;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.pr-button i {
    font-size: 1rem;
    transition: transform .2s ease;
}

.pr-button:hover {
    transform: translateY(-1px);
}

.pr-button:hover i {
    transform: translateX(2px);
}

.pr-button--primary {
    color: #fff !important;
    background: var(--prl-cobalt);
    border-color: var(--prl-cobalt);
    box-shadow: 0 9px 22px rgba(20, 91, 215, .23);
}

.pr-button--primary:hover {
    background: #1c67e8;
    border-color: #1c67e8;
    box-shadow: 0 13px 28px rgba(20, 91, 215, .31);
}

.pr-button--quiet {
    color: rgba(255, 255, 255, .82) !important;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .025);
}

.pr-button--quiet:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .06);
}

.pr-button--large {
    min-height: 50px;
    padding: 14px 22px;
    font-size: .82rem;
}

.pr-button--gold {
    color: var(--prl-navy-950) !important;
    background: var(--prl-gold-light);
    border-color: var(--prl-gold-light);
    box-shadow: 0 12px 30px rgba(198, 162, 91, .2);
}

.pr-button--gold:hover {
    background: #eed79f;
    border-color: #eed79f;
    box-shadow: 0 16px 34px rgba(198, 162, 91, .27);
}

.pr-button--outline-light {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .34);
    background: transparent;
}

.pr-button--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .055);
}

.pr-menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 2px;
    background: transparent;
}

.pr-menu-toggle span {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.pr-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pr-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pr-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.pr-hero {
    position: relative;
    min-height: 780px;
    padding-top: 82px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 29%, rgba(20, 91, 215, .19), transparent 29rem),
        linear-gradient(118deg, #061427 0%, #091a31 54%, #0b2343 100%);
}

.pr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 67%, #000);
}

.pr-hero__architecture {
    position: absolute;
    top: 145px;
    right: -85px;
    width: 43vw;
    height: 480px;
    opacity: .24;
    transform: skewX(-10deg);
    border: 1px solid rgba(255, 255, 255, .12);
    background: repeating-linear-gradient(90deg, transparent 0 76px, rgba(255, 255, 255, .1) 77px 78px);
}

.pr-hero__architecture::before,
.pr-hero__architecture::after {
    content: "";
    position: absolute;
    inset: 44px 14% 44px auto;
    width: 1px;
    background: rgba(227, 201, 137, .6);
}

.pr-hero__architecture::after {
    inset: 18% auto auto 10%;
    width: 72%;
    height: 1px;
}

.pr-hero__grid {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(420px, .82fr);
    align-items: center;
    gap: 78px;
    padding-top: 48px;
    padding-bottom: 44px;
}

.pr-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .62);
    font-size: .65rem;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.pr-eyebrow > span {
    width: 28px;
    height: 1px;
    background: var(--prl-gold);
}

.pr-eyebrow--blue {
    color: var(--prl-cobalt);
}

.pr-eyebrow--blue > span {
    background: var(--prl-cobalt);
}

.pr-eyebrow--gold {
    color: var(--prl-gold-light);
}

.pr-hero h1,
.pr-section-heading h2,
.pr-security__intro h2,
.pr-governance__copy h2,
.pr-faq__intro h2,
.pr-verification__panel h2,
.pr-closing h2 {
    margin: 0;
    font-family: var(--prl-serif);
    font-weight: 400;
    letter-spacing: -.045em;
}

.pr-hero h1 {
    max-width: 650px;
    font-size: clamp(3.8rem, 6vw, 6.4rem);
    line-height: .93;
}

.pr-hero h1 em,
.pr-closing h2 em {
    color: var(--prl-gold-light);
    font-weight: 400;
}

.pr-hero__lead {
    max-width: 610px;
    margin: 29px 0 0;
    color: rgba(255, 255, 255, .69);
    font-size: 1.08rem;
    line-height: 1.75;
}

.pr-hero__actions {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 34px;
}

.pr-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 4px;
    font-size: .83rem;
    font-weight: 650;
    transition: gap .2s ease, border-color .2s ease;
}

.pr-text-link:hover {
    gap: 13px;
    border-color: #fff;
}

.pr-text-link--blue {
    color: var(--prl-cobalt) !important;
    border-color: rgba(20, 91, 215, .28);
}

.pr-assurance-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 42px 0 0;
    padding: 20px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.pr-assurance-list li {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding-right: 14px;
    color: rgba(255, 255, 255, .53);
    font-size: .7rem;
    line-height: 1.45;
}

.pr-assurance-list li + li {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.pr-assurance-list i {
    margin-top: 2px;
    color: var(--prl-gold-light);
    font-size: .9rem;
}

.pr-assurance-list strong {
    display: block;
    color: rgba(255, 255, 255, .84);
    font-weight: 650;
}

.pr-hero__visual {
    display: flex;
    justify-content: center;
}

.pr-document-stage {
    position: relative;
    width: min(100%, 475px);
    padding: 18px 37px 26px 30px;
}

.pr-document-stage::before {
    content: "";
    position: absolute;
    inset: 14% -5% -2% 13%;
    background: rgba(20, 91, 215, .18);
    filter: blur(44px);
}

.pr-document-stage__rail {
    position: absolute;
    z-index: 3;
    top: 63px;
    right: 0;
    bottom: 70px;
    width: 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--prl-navy-950);
    background: var(--prl-gold-light);
    box-shadow: 8px 13px 28px rgba(0, 0, 0, .2);
}

.pr-document-stage__rail span {
    font-family: var(--prl-serif);
    font-size: 1rem;
    font-weight: 700;
}

.pr-document-stage__rail small {
    font-family: var(--prl-mono);
    font-size: .5rem;
    letter-spacing: .1em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pr-document {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #f7f8fa;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 35px 75px rgba(0, 6, 17, .46), 0 0 0 1px rgba(255, 255, 255, .035);
}

.pr-document__toolbar,
.pr-document__footer {
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    color: #526173;
    background: #f4f6f8;
    border-bottom: 1px solid #dfe4e9;
    font-size: .58rem;
    font-weight: 650;
    letter-spacing: .035em;
}

.pr-document__toolbar span:first-child {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pr-document__toolbar i {
    color: #a73535;
    font-size: .85rem;
}

.pr-document__paper {
    overflow: hidden;
    padding: 10px 12px;
    background: #e8ebef;
}

.pr-document__paper img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 466px;
    object-fit: cover;
    object-position: top;
    background: #fff;
    box-shadow: 0 7px 22px rgba(25, 37, 49, .17);
}

.pr-document__footer {
    height: 31px;
    border-top: 1px solid #dfe4e9;
    border-bottom: 0;
    color: #687587;
    text-transform: uppercase;
}

.pr-document__footer span:last-child {
    color: var(--prl-success);
}

.pr-status-card {
    position: absolute;
    z-index: 5;
    min-width: 212px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    color: var(--prl-ink);
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(11, 35, 67, .1);
    box-shadow: 0 16px 35px rgba(0, 10, 27, .22);
}

.pr-status-card--published {
    top: 112px;
    left: -24px;
}

.pr-status-card--trace {
    right: -10px;
    bottom: 92px;
}

.pr-status-card__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--prl-success);
}

.pr-status-card--trace .pr-status-card__icon {
    background: var(--prl-cobalt);
}

.pr-status-card span:nth-child(2) {
    display: grid;
    gap: 2px;
}

.pr-status-card small {
    color: var(--prl-muted);
    font-size: .58rem;
    font-weight: 650;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.pr-status-card strong {
    font-size: .77rem;
    font-weight: 750;
}

.pr-status-card__seal {
    margin-left: auto;
    color: var(--prl-success);
    font-size: 1.1rem;
}

.pr-hero__foot {
    position: relative;
    z-index: 3;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: .62rem;
    font-weight: 650;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pr-hero__foot > div {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, .75);
}

.pr-hero__foot i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--prl-gold);
}

.pr-section {
    position: relative;
    padding: 112px 0;
}

.pr-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .75fr);
    align-items: end;
    gap: 90px;
    margin-bottom: 56px;
}

.pr-section-heading h2,
.pr-security__intro h2,
.pr-governance__copy h2,
.pr-faq__intro h2 {
    font-size: clamp(2.6rem, 4.1vw, 4.65rem);
    line-height: 1.02;
}

.pr-section-heading--split > p,
.pr-section-heading--center > p,
.pr-governance__copy > p,
.pr-faq__intro > p {
    margin: 0;
    color: var(--prl-copy);
    font-size: .96rem;
    line-height: 1.75;
}

.pr-control {
    background: #fff;
}

.pr-control::before {
    content: "PR / 01";
    position: absolute;
    top: 92px;
    right: max(24px, calc((100% - 1180px) / 2));
    color: #dfe5ec;
    font-family: var(--prl-mono);
    font-size: .62rem;
    letter-spacing: .13em;
}

.pr-control-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr);
    align-items: stretch;
    gap: 42px;
}

.pr-process {
    border-top: 1px solid var(--prl-ink);
}

.pr-process__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 19px;
    padding: 24px 10px 24px 0;
    border-bottom: 1px solid var(--prl-line);
    transition: padding-left .25s ease, background .25s ease, border-color .25s ease;
}

.pr-process__item:hover,
.pr-process__item.is-active {
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(20, 91, 215, .055), transparent 84%);
    border-color: #c7d4e6;
}

.pr-process__number {
    align-self: start;
    padding-top: 3px;
    color: var(--prl-cobalt);
    font-family: var(--prl-mono);
    font-size: .62rem;
    font-weight: 650;
}

.pr-process__item h3 {
    margin: 0 0 7px;
    font-family: var(--prl-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -.02em;
}

.pr-process__item p {
    margin: 0;
    color: var(--prl-copy);
    font-size: .78rem;
    line-height: 1.6;
}

.pr-process__item > i {
    color: #9caabd;
    font-size: 1.3rem;
    transition: color .2s ease, transform .2s ease;
}

.pr-process__item:hover > i,
.pr-process__item.is-active > i {
    color: var(--prl-cobalt);
    transform: translateX(3px);
}

.pr-ledger {
    display: flex;
    flex-direction: column;
    padding: 0 27px 27px;
    color: #fff;
    background: var(--prl-navy-900);
    box-shadow: var(--prl-shadow);
}

.pr-ledger__head {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .65);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pr-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9edbc8;
}

.pr-live-indicator i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #43c99e;
    box-shadow: 0 0 0 4px rgba(67, 201, 158, .11);
}

.pr-ledger__summary {
    display: grid;
    gap: 8px;
    padding: 28px 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.pr-ledger__summary small,
.pr-ledger__stamp small {
    color: var(--prl-gold-light);
    font-family: var(--prl-mono);
    font-size: .57rem;
    letter-spacing: .11em;
}

.pr-ledger__summary strong {
    font-family: var(--prl-serif);
    font-size: 2.55rem;
    font-weight: 400;
    letter-spacing: -.035em;
}

.pr-ledger__summary span {
    color: rgba(255, 255, 255, .5);
    font-size: .69rem;
}

.pr-ledger__rows {
    padding: 11px 0 15px;
}

.pr-ledger__rows > div {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, .65);
    border-bottom: 1px solid rgba(255, 255, 255, .075);
    font-size: .67rem;
}

.pr-ledger__rows span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pr-ledger__rows i {
    color: var(--prl-gold-light);
    font-size: .9rem;
}

.pr-ledger__rows b {
    color: #fff;
    font-weight: 650;
}

.pr-ledger__stamp {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding: 15px;
    border: 1px solid rgba(227, 201, 137, .36);
    background: rgba(227, 201, 137, .045);
}

.pr-ledger__stamp > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--prl-gold-light);
    border: 1px solid rgba(227, 201, 137, .46);
}

.pr-ledger__stamp > span i { font-size: 1.15rem; }
.pr-ledger__stamp > div { display: grid; gap: 3px; }
.pr-ledger__stamp strong { font-family: var(--prl-serif); font-size: .95rem; font-weight: 600; }

.pr-security {
    overflow: hidden;
    color: #fff;
    background: var(--prl-navy-950);
}

.pr-security__grid {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .24) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, #000, transparent 74%);
}

.pr-security__intro {
    position: relative;
    max-width: 750px;
    margin-bottom: 60px;
}

.pr-security__intro p:last-child {
    max-width: 660px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
}

.pr-security-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.pr-security-card {
    position: relative;
    min-height: 280px;
    padding: 31px 27px;
    border-right: 1px solid rgba(255, 255, 255, .13);
    transition: background .25s ease, transform .25s ease;
}

.pr-security-card:first-child { border-left: 1px solid rgba(255, 255, 255, .13); }
.pr-security-card:hover { z-index: 2; background: rgba(20, 91, 215, .16); transform: translateY(-4px); }

.pr-security-card__index {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(255, 255, 255, .28);
    font-family: var(--prl-mono);
    font-size: .58rem;
}

.pr-security-card > i {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 50px;
    color: var(--prl-gold-light);
    border: 1px solid rgba(227, 201, 137, .35);
    font-size: 1.35rem;
}

.pr-security-card h3 {
    margin: 0 0 13px;
    font-family: var(--prl-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -.025em;
}

.pr-security-card p {
    margin: 0;
    color: rgba(255, 255, 255, .53);
    font-size: .74rem;
    line-height: 1.65;
}

.pr-security__statement {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 38px;
    margin-top: 58px;
    padding-top: 35px;
}

.pr-security__statement > span {
    color: var(--prl-gold-light);
    font-family: var(--prl-mono);
    font-size: .58rem;
    letter-spacing: .12em;
}

.pr-security__statement blockquote {
    max-width: 780px;
    margin: 0;
    font-family: var(--prl-serif);
    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.35;
}

.pr-security__statement > div {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .46);
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pr-security__statement > div i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--prl-gold);
}

.pr-governance {
    background: var(--prl-surface);
}

.pr-governance__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
    align-items: center;
    gap: 100px;
}

.pr-governance__copy > p {
    margin-top: 25px;
    margin-bottom: 31px;
}

.pr-evidence-card {
    padding: 0 30px 28px;
    background: #fff;
    border: 1px solid #d7dfe8;
    box-shadow: 0 24px 60px rgba(19, 41, 71, .11);
}

.pr-evidence-card__top {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--prl-muted);
    border-bottom: 1px solid var(--prl-line);
    font-family: var(--prl-mono);
    font-size: .57rem;
    letter-spacing: .1em;
}

.pr-evidence-card__top span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--prl-success);
}

.pr-evidence-card__top i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--prl-success);
}

.pr-evidence-card dl { margin: 17px 0 20px; }

.pr-evidence-card dl > div {
    min-height: 43px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #edf0f4;
    font-size: .68rem;
}

.pr-evidence-card dt { color: var(--prl-copy); font-weight: 550; }
.pr-evidence-card dd { margin: 0; color: var(--prl-ink); font-weight: 700; text-align: right; }
.pr-evidence-card .pr-hash { color: var(--prl-cobalt); font-family: var(--prl-mono); font-size: .61rem; }

.pr-evidence-card__bottom {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    color: #fff;
    background: var(--prl-navy-900);
}

.pr-evidence-card__bottom > i { color: var(--prl-gold-light); font-size: 1.5rem; }
.pr-evidence-card__bottom > span { display: grid; gap: 3px; }
.pr-evidence-card__bottom strong { font-family: var(--prl-serif); font-size: .9rem; font-weight: 600; }
.pr-evidence-card__bottom small { color: rgba(255, 255, 255, .52); font-size: .58rem; }

.pr-audience { background: #fff; }

.pr-section-heading--center {
    max-width: 790px;
    margin: 0 auto 58px;
    text-align: center;
}

.pr-section-heading--center .pr-eyebrow { justify-content: center; }
.pr-section-heading--center > p { max-width: 590px; margin: 20px auto 0; }

.pr-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--prl-line);
}

.pr-audience-card {
    position: relative;
    min-height: 300px;
    padding: 29px 25px;
    border-right: 1px solid var(--prl-line);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.pr-audience-card:last-child { border-right: 0; }
.pr-audience-card:hover { z-index: 2; background: #fff; transform: translateY(-5px); box-shadow: 0 18px 45px rgba(21, 45, 77, .12); }

.pr-audience-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 40px;
    color: var(--prl-cobalt);
    background: var(--prl-cobalt-soft);
    border: 1px solid #d4e1f8;
}

.pr-audience-card__icon i { font-size: 1.3rem; }
.pr-audience-card > small { color: var(--prl-muted); font-family: var(--prl-mono); font-size: .52rem; letter-spacing: .08em; }

.pr-audience-card h3 {
    margin: 10px 0 13px;
    font-family: var(--prl-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -.02em;
}

.pr-audience-card p { margin: 0; color: var(--prl-copy); font-size: .72rem; line-height: 1.65; }

.pr-audience-card__rule {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    height: 2px;
    background: var(--prl-line);
    overflow: hidden;
}

.pr-audience-card__rule::after {
    content: "";
    display: block;
    width: 34%;
    height: 100%;
    background: var(--prl-gold);
    transform: translateX(-105%);
    transition: transform .3s ease;
}

.pr-audience-card:hover .pr-audience-card__rule::after { transform: translateX(0); }

.pr-verification {
    padding-top: 0;
    background: #fff;
}

.pr-verification__panel {
    min-height: 210px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 38px 48px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 76px 100%,
        linear-gradient(118deg, var(--prl-navy-900), var(--prl-navy-800));
    box-shadow: 0 28px 55px rgba(6, 20, 39, .15);
}

.pr-verification__seal {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--prl-gold-light);
    border: 1px solid rgba(227, 201, 137, .45);
    outline: 1px solid rgba(227, 201, 137, .2);
    outline-offset: -7px;
}

.pr-verification__seal i { font-size: 2.1rem; }
.pr-verification__panel .pr-eyebrow { margin-bottom: 10px; }
.pr-verification__panel h2 { font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: 1.05; }
.pr-verification__panel p:last-child { margin: 12px 0 0; color: rgba(255, 255, 255, .61); font-size: .8rem; }

.pr-faq { background: var(--prl-surface); }

.pr-faq__layout {
    display: grid;
    grid-template-columns: minmax(290px, .65fr) minmax(0, 1fr);
    gap: 100px;
}

.pr-faq__intro > p { margin-top: 22px; }
.pr-faq__items { border-top: 1px solid var(--prl-ink); }

.pr-faq details {
    border-bottom: 1px solid var(--prl-line);
}

.pr-faq summary {
    min-height: 69px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: var(--prl-ink);
    font-family: var(--prl-serif);
    font-size: 1rem;
    font-weight: 600;
}

.pr-faq summary::-webkit-details-marker { display: none; }
.pr-faq summary i { flex: 0 0 auto; color: var(--prl-cobalt); transition: transform .2s ease; }
.pr-faq details[open] summary i { transform: rotate(45deg); }
.pr-faq details p { max-width: 650px; margin: -3px 42px 21px 0; color: var(--prl-copy); font-size: .78rem; line-height: 1.7; }

.pr-closing {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(circle at 50% 115%, rgba(20, 91, 215, .25), transparent 38rem),
        var(--prl-navy-950);
}

.pr-closing__lines {
    position: absolute;
    inset: 0;
    opacity: .22;
    background: repeating-linear-gradient(90deg, transparent 0 110px, rgba(255, 255, 255, .11) 111px 112px);
    transform: perspective(600px) rotateX(58deg) scale(1.5);
    transform-origin: bottom;
}

.pr-closing__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pr-closing__monogram {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin: 0 auto 28px;
    border: 1px solid rgba(227, 201, 137, .45);
    background: rgba(255, 255, 255, .025);
}

.pr-closing__monogram img {
    width: 44px;
    height: 51px;
    display: block;
    object-fit: contain;
}

.pr-closing .pr-eyebrow { justify-content: center; }
.pr-closing h2 { font-size: clamp(3.1rem, 6vw, 5.8rem); line-height: .98; }
.pr-closing__content > p:not(.pr-eyebrow) { max-width: 600px; margin: 26px auto 0; color: rgba(255, 255, 255, .62); line-height: 1.7; }
.pr-closing__actions { display: flex; justify-content: center; gap: 11px; margin-top: 35px; }

.pr-footer {
    color: #fff;
    background: #040f1e;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.pr-footer__inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.pr-brand--footer .pr-brand__image { width: 194px; }

.pr-footer__legal {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, .43);
    font-size: .66rem;
}

.pr-footer__legal a { color: rgba(255, 255, 255, .58); transition: color .2s ease; }
.pr-footer__legal a:hover { color: #fff; }

.pr-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .72s cubic-bezier(.2, .7, .2, 1), transform .72s cubic-bezier(.2, .7, .2, 1);
}

.pr-reveal--delay-1 { transition-delay: .1s; }
.pr-reveal--delay-2 { transition-delay: .18s; }
.pr-reveal--delay-3 { transition-delay: .26s; }
.pr-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .pr-nav { gap: 17px; }
    .pr-nav a { font-size: .7rem; }
    .pr-button--quiet { display: none; }
    .pr-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); gap: 40px; }
    .pr-status-card--published { left: -10px; }
    .pr-status-card--trace { right: -4px; }
    .pr-section-heading--split { gap: 55px; }
    .pr-security-card { padding-inline: 20px; }
    .pr-governance__layout, .pr-faq__layout { gap: 60px; }
}

@media (max-width: 900px) {
    .pr-header { height: 70px; background: rgba(6, 20, 39, .97); }
    .pr-header__inner { justify-content: space-between; }
    .pr-menu-toggle { display: block; order: 3; }
    .pr-header__actions { margin-left: auto; }
    .pr-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 7px 24px 18px;
        background: rgba(6, 20, 39, .985);
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 20px 35px rgba(0, 8, 19, .25);
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform .25s ease, visibility .25s ease;
    }
    .pr-nav.is-open { transform: translateY(0); visibility: visible; }
    .pr-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .pr-nav a::after { display: none; }
    .pr-hero { padding-top: 70px; }
    .pr-hero__grid { grid-template-columns: 1fr; padding-top: 86px; padding-bottom: 75px; }
    .pr-hero__copy { max-width: 720px; }
    .pr-hero h1 { font-size: clamp(3.8rem, 11vw, 6rem); }
    .pr-hero__visual { margin-top: 18px; }
    .pr-document-stage { max-width: 520px; }
    .pr-hero__architecture { top: 53%; width: 75vw; }
    .pr-section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 24px; }
    .pr-section-heading--split > p { max-width: 650px; }
    .pr-control-grid { grid-template-columns: 1fr; }
    .pr-ledger { min-height: 510px; }
    .pr-security-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-security-card:nth-child(2) { border-right: 1px solid rgba(255, 255, 255, .13); }
    .pr-security-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .13); }
    .pr-governance__layout { grid-template-columns: 1fr; }
    .pr-governance__copy { max-width: 720px; }
    .pr-evidence-card { max-width: 640px; width: 100%; }
    .pr-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-audience-card:nth-child(2) { border-right: 0; }
    .pr-audience-card:nth-child(-n+2) { border-bottom: 1px solid var(--prl-line); }
    .pr-verification__panel { grid-template-columns: 74px minmax(0, 1fr); }
    .pr-verification__seal { width: 70px; height: 70px; }
    .pr-verification__panel .pr-button { grid-column: 2; justify-self: start; }
    .pr-faq__layout { grid-template-columns: 1fr; gap: 40px; }
    .pr-faq__intro { max-width: 600px; }
}

@media (max-width: 640px) {
    .pr-container { width: min(100% - 32px, 1180px); }
    .pr-header__inner { gap: 10px; }
    .pr-header .pr-brand__image { width: 148px; }
    .pr-header__actions .pr-button { min-height: 40px; padding-inline: 13px; }
    .pr-header__actions .pr-button i { display: none; }
    .pr-brand__name small { display: none; }
    .pr-brand__mark { width: 38px; height: 38px; }
    .pr-hero__grid { padding-top: 70px; gap: 48px; }
    .pr-hero h1 { font-size: clamp(3.25rem, 16vw, 4.8rem); }
    .pr-hero__lead { font-size: .94rem; }
    .pr-hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .pr-assurance-list { grid-template-columns: 1fr; gap: 13px; }
    .pr-assurance-list li, .pr-assurance-list li + li { padding: 0; border: 0; }
    .pr-document-stage { padding: 8px 12px 24px; }
    .pr-document-stage__rail { display: none; }
    .pr-document__paper img { max-height: 400px; }
    .pr-status-card { min-width: 188px; padding: 10px; }
    .pr-status-card--published { top: 92px; left: -6px; }
    .pr-status-card--trace { right: -3px; bottom: 74px; }
    .pr-hero__foot { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 23px; }
    .pr-hero__foot > div { flex-wrap: wrap; }
    .pr-section { padding: 82px 0; }
    .pr-section-heading--split { margin-bottom: 42px; }
    .pr-section-heading h2, .pr-security__intro h2, .pr-governance__copy h2, .pr-faq__intro h2 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
    .pr-process__item { grid-template-columns: 35px minmax(0, 1fr); gap: 12px; padding-block: 21px; }
    .pr-process__item > i { display: none; }
    .pr-ledger { min-height: 475px; padding-inline: 20px; }
    .pr-security-grid { grid-template-columns: 1fr; }
    .pr-security-card, .pr-security-card:first-child, .pr-security-card:nth-child(2) { min-height: 240px; border-right: 1px solid rgba(255, 255, 255, .13); border-left: 1px solid rgba(255, 255, 255, .13); border-bottom: 1px solid rgba(255, 255, 255, .13); }
    .pr-security-card > i { margin-bottom: 35px; }
    .pr-security__statement { grid-template-columns: 1fr; gap: 18px; }
    .pr-security__statement > div { grid-column: 1; flex-wrap: wrap; }
    .pr-governance__layout { gap: 48px; }
    .pr-evidence-card { padding-inline: 19px; }
    .pr-evidence-card dl > div { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
    .pr-evidence-card dd { text-align: left; }
    .pr-audience-grid { grid-template-columns: 1fr; }
    .pr-audience-card, .pr-audience-card:nth-child(2) { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--prl-line); }
    .pr-audience-card:last-child { border-bottom: 0; }
    .pr-verification__panel { grid-template-columns: 1fr; padding: 34px 27px; }
    .pr-verification__panel .pr-button { grid-column: 1; }
    .pr-verification__seal { width: 62px; height: 62px; }
    .pr-closing { min-height: 580px; }
    .pr-closing h2 { font-size: clamp(3rem, 15vw, 4.3rem); }
    .pr-closing__actions { align-items: stretch; flex-direction: column; max-width: 310px; margin-inline: auto; }
    .pr-footer__inner { align-items: flex-start; flex-direction: column; padding-block: 28px; }
    .pr-brand--footer .pr-brand__image { width: 185px; }
    .pr-footer__legal { align-items: flex-start; flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    .pr-landing *,
    .pr-landing *::before,
    .pr-landing *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .pr-reveal {
        opacity: 1;
        transform: none;
    }
}
