.p-account-page {
    --p-account-ink: #092f43;
    --p-account-petrol: #025170;
    --p-account-petrol-dark: #003b52;
    --p-account-green: #667800;
    --p-account-green-dark: #5b6b00;
    --p-account-green-pale: #f2f7d9;
    --p-account-paper: #f4f7f8;
    --p-account-line: #d9e2e6;
    --p-account-muted: #58707d;
    --p-account-shadow: 0 22px 55px rgba(0, 59, 82, 0.14);
}

.p-account-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 91% 15%, rgba(102, 120, 0, 0.16), transparent 22rem),
        linear-gradient(135deg, #f9fbf4 0%, #edf4f6 100%);
}

.p-account-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -11rem;
    width: 31rem;
    height: 31rem;
    border: 2.8rem solid rgba(2, 81, 112, 0.035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.p-account-hero .container {
    position: relative;
    z-index: 1;
}

.p-account-hero h1 {
    max-width: 16ch;
}

.p-account-hero__visual {
    min-width: 0;
    border: 1px solid rgba(9, 47, 67, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--p-account-shadow);
    padding: clamp(1.2rem, 3vw, 1.85rem);
}

.p-account-hero__visual > p:last-child {
    margin: 1rem 0 0;
    color: var(--p-account-muted);
    font-size: 0.82rem;
    text-align: center;
}

.p-account-hero__cta {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.p-account-purpose-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.45rem;
    align-items: center;
    margin-top: 1rem;
}

.p-account-purpose-flow > b {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: var(--p-account-ink);
    color: #fff;
    place-items: center;
}

.p-account-purpose-flow__node {
    display: flex;
    min-width: 0;
    min-height: 8.8rem;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--p-account-line);
    border-top: 5px solid var(--p-account-petrol);
    border-radius: 14px;
    background:
        linear-gradient(rgba(9, 47, 67, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 47, 67, 0.035) 1px, transparent 1px),
        #fff;
    background-size: 16px 16px;
    padding: 0.8rem;
}

.p-account-purpose-flow__node.is-agency {
    border-top-color: var(--p-account-green);
    background:
        radial-gradient(circle at 84% 18%, rgba(102, 120, 0, 0.14), transparent 4.8rem),
        #fff;
}

.p-account-purpose-flow__node.is-check {
    border-top-color: #93a61e;
}

.p-account-purpose-flow__node span {
    color: var(--p-account-muted);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.p-account-purpose-flow__node strong {
    margin-top: 0.35rem;
    color: var(--p-account-ink);
    font: 700 0.86rem/1.25 Quicksand, sans-serif;
    overflow-wrap: anywhere;
}

.p-account-purpose-flow__blocked {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.p-account-purpose-flow__blocked span {
    position: relative;
    border: 1px solid #d8e0e3;
    border-radius: 999px;
    background: #f5f7f8;
    padding: 0.45rem 0.55rem 0.45rem 1.45rem;
    color: var(--p-account-muted);
    font-size: 0.64rem;
    font-weight: 800;
    text-align: center;
}

.p-account-purpose-flow__blocked span::before {
    position: absolute;
    top: 50%;
    left: 0.55rem;
    color: #9a382f;
    content: "×";
    font-size: 1rem;
    font-weight: 900;
    transform: translateY(-52%);
}

.p-account-summary-grid,
.p-account-term-grid,
.p-account-visibility-grid,
.p-account-protection-levels,
.p-account-myth-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}

.p-account-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-account-summary-grid article,
.p-account-term-grid article,
.p-account-protection-levels article,
.p-account-myth-grid article {
    min-width: 0;
    border: 1px solid var(--p-account-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 13px 32px rgba(0, 59, 82, 0.065);
    padding: 1.35rem;
}

.p-account-summary-grid article {
    border-top: 4px solid var(--p-account-green);
}

.p-account-summary-grid article:nth-child(3n + 2) {
    border-top-color: var(--p-account-petrol);
}

.p-account-summary-grid article:nth-child(3n + 3) {
    border-top-color: #93a61e;
}

.p-account-summary-grid span,
.p-account-myth-grid span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--p-account-green-dark);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.p-account-summary-grid h3,
.p-account-term-grid h3,
.p-account-protection-levels h3,
.p-account-myth-grid h3 {
    margin: 0 0 0.55rem;
    font-size: 1.04rem;
}

.p-account-summary-grid p,
.p-account-term-grid p,
.p-account-protection-levels p,
.p-account-myth-grid p {
    margin: 0;
    font-size: 0.9rem;
}

.p-account-basics-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 92%, rgba(102, 120, 0, 0.08), transparent 18rem),
        var(--p-account-paper) !important;
}

.p-account-term-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p-account-term-grid article {
    position: relative;
    padding-top: 4.8rem;
}

.p-account-term-grid article > span {
    position: absolute;
    top: 1.2rem;
    left: 1.35rem;
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 12px;
    background: var(--p-account-ink);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    place-items: center;
}

.p-account-term-grid article:nth-child(even) > span {
    background: var(--p-account-green);
}

.p-account-term-grid small {
    display: block;
    margin-top: 0.8rem;
    border-top: 1px solid var(--p-account-line);
    padding-top: 0.75rem;
    color: var(--p-account-muted);
    line-height: 1.45;
}

.p-account-split-note,
.p-account-section-heading,
.p-account-control-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.p-account-split-note {
    margin-top: 1.5rem;
}

.p-account-split-note > div {
    min-width: 0;
    border: 1px solid var(--p-account-line);
    border-left: 5px solid var(--p-account-petrol);
    border-radius: 16px;
    background: #fff;
    padding: 1.35rem;
}

.p-account-split-note > div:last-child {
    border-left-color: var(--p-account-green);
}

.p-account-split-note h3 {
    margin: 0 0 0.55rem;
}

.p-account-split-note p:last-child {
    margin-bottom: 0;
}

.p-account-purpose-section {
    position: relative;
    overflow: hidden;
}

.p-account-purpose-section::after {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 19rem;
    height: 19rem;
    border: 2rem solid rgba(2, 81, 112, 0.04);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.p-account-purpose-section > * {
    position: relative;
    z-index: 1;
}

.p-account-purpose-card {
    min-width: 0;
    border-radius: 19px;
    background: linear-gradient(145deg, var(--p-account-ink), var(--p-account-petrol));
    box-shadow: var(--p-account-shadow);
    padding: 1.55rem;
}

.p-account-purpose-card span {
    display: inline-block;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    background: rgba(220, 234, 160, 0.16);
    padding: 0.38rem 0.65rem;
    color: #dceaa0;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.p-account-purpose-card h3,
.p-account-purpose-card p {
    color: #fff;
}

.p-account-purpose-card h3 {
    margin: 0 0 0.7rem;
}

.p-account-purpose-card p {
    margin: 0;
}

.p-account-boundary-strip {
    display: grid;
    grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
    border: 1px solid #dce5bb;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--p-account-green-pale), #fff);
    padding: 1.2rem 1.35rem;
}

.p-account-boundary-strip strong {
    color: var(--p-account-green-dark);
    font: 700 1rem Quicksand, sans-serif;
}

.p-account-boundary-strip span {
    color: var(--p-account-ink);
}

.p-account-visibility-section {
    background:
        radial-gradient(circle at 94% 8%, rgba(102, 120, 0, 0.12), transparent 19rem),
        var(--p-account-green-pale) !important;
}

.p-account-visibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-account-visibility-grid article {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d4deae;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 59, 82, 0.07);
}

.p-account-visibility-grid header {
    border-bottom: 1px solid var(--p-account-line);
    background: #f8fafb;
    padding: 1rem 1.25rem;
}

.p-account-visibility-grid header span,
.p-account-visibility-grid header strong {
    display: block;
}

.p-account-visibility-grid header span {
    margin-bottom: 0.32rem;
    color: var(--p-account-green-dark);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.p-account-visibility-grid header strong {
    color: var(--p-account-ink);
    font: 700 1.05rem/1.3 Quicksand, sans-serif;
}

.p-account-visibility-grid article > p {
    margin: 0;
    padding: 1.1rem 1.25rem 0.3rem;
}

.p-account-visibility-grid dl {
    margin: 0;
    padding: 0.5rem 1.25rem 1.25rem;
}

.p-account-visibility-grid dl div {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0.65rem;
    border-top: 1px solid var(--p-account-line);
    padding: 0.72rem 0;
}

.p-account-visibility-grid dt {
    color: var(--p-account-muted);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.p-account-visibility-grid dd {
    margin: 0;
    color: var(--p-account-ink);
    font-size: 0.86rem;
}

.p-account-visibility-grid .is-direct {
    border-top: 5px solid var(--p-account-petrol);
}

.p-account-visibility-grid .is-purpose {
    border-top: 5px solid var(--p-account-green);
}

.p-account-visibility-grid .is-separate {
    border-top: 5px solid #8c6b28;
}

.p-account-visibility-grid .is-blocked {
    border-top: 5px solid #9a382f;
}

.p-account-data-copy-note {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
    border: 1px solid rgba(2, 81, 112, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    padding: 1.1rem 1.25rem;
}

.p-account-data-copy-note > div {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: var(--p-account-petrol);
    color: #fff;
    font: 700 1.35rem Quicksand, sans-serif;
    place-items: center;
}

.p-account-data-copy-note p {
    margin: 0;
}

.p-account-score-section {
    position: relative;
    overflow: hidden;
}

.p-account-score-answer {
    min-width: 0;
    border: 1px solid var(--p-account-line);
    border-top: 6px solid var(--p-account-green);
    border-radius: 19px;
    background: #fff;
    box-shadow: var(--p-account-shadow);
    padding: 1.55rem;
}

.p-account-score-answer > span {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--p-account-green-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.p-account-score-answer h3 {
    margin: 0 0 0.65rem;
    font-size: 1.35rem;
}

.p-account-score-answer p {
    margin: 0;
}

.p-account-cause-model {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    margin-top: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--p-account-ink), var(--p-account-petrol));
    padding: 1.25rem;
}

.p-account-cause-model > div {
    display: flex;
    min-width: 0;
    min-height: 8rem;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
    padding: 1.2rem;
}

.p-account-cause-model > div span,
.p-account-cause-model > div strong,
.p-account-cause-model > div small,
.p-account-cause-model > b {
    color: #fff;
}

.p-account-cause-model > div span {
    margin-bottom: 0.35rem;
    color: #dceaa0;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.p-account-cause-model > div strong {
    font: 700 1.15rem Quicksand, sans-serif;
}

.p-account-cause-model > div small {
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.p-account-cause-model > b {
    align-self: center;
    color: #dceaa0;
    font-size: 2rem;
}

.p-account-qualifier {
    margin: 1.2rem 0 0 !important;
    border-left: 5px solid #8c6b28;
    border-radius: 0 14px 14px 0;
    background: #fffaf2;
    padding: 1.1rem 1.25rem;
}

.p-account-lifecycle-section {
    background:
        radial-gradient(circle at 5% 96%, rgba(2, 81, 112, 0.07), transparent 18rem),
        var(--p-account-paper) !important;
}

.p-account-lifecycle {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}

.p-account-lifecycle li {
    position: relative;
    min-width: 0;
    min-height: 13rem;
    border: 1px solid var(--p-account-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 13px 32px rgba(0, 59, 82, 0.065);
    padding: 4.8rem 1.3rem 1.3rem;
}

.p-account-lifecycle li > span {
    position: absolute;
    top: 1.15rem;
    left: 1.3rem;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 12px;
    background: var(--p-account-ink);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    place-items: center;
}

.p-account-lifecycle li:nth-child(even) > span {
    background: var(--p-account-green);
}

.p-account-lifecycle h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
}

.p-account-lifecycle p {
    margin: 0;
    font-size: 0.9rem;
}

.p-account-protection-alert {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.5rem;
    border: 1px solid #e1c9a3;
    border-left: 6px solid #8c5a1f;
    border-radius: 17px;
    background: #fffaf2;
    padding: 1.3rem;
}

.p-account-protection-alert > div:first-child {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: #7b4215;
    color: #fff;
    font: 700 2rem Quicksand, sans-serif;
    place-items: center;
}

.p-account-protection-alert h3 {
    margin: 0 0 0.55rem;
}

.p-account-protection-alert p:last-child {
    margin-bottom: 0;
}

.p-account-control-section {
    background:
        radial-gradient(circle at 96% 8%, rgba(102, 120, 0, 0.1), transparent 18rem),
        var(--p-account-green-pale) !important;
}

.p-account-control-layout {
    margin-top: 1.5rem;
}

.p-account-control-steps {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.p-account-control-steps li {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-width: 0;
    border: 1px solid #d4deae;
    border-radius: 15px;
    background: #fff;
    padding: 1rem;
}

.p-account-control-steps li > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: var(--p-account-green-pale);
    color: var(--p-account-green-dark);
    font-size: 0.72rem;
    font-weight: 900;
    place-items: center;
}

.p-account-control-steps h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.p-account-control-steps p {
    margin: 0;
    font-size: 0.88rem;
}

.p-account-document-card {
    position: sticky;
    top: 158px;
    min-width: 0;
    border-radius: 19px;
    background: linear-gradient(145deg, var(--p-account-ink), var(--p-account-petrol));
    box-shadow: var(--p-account-shadow);
    padding: 1.55rem;
}

.p-account-document-card h3,
.p-account-document-card li,
.p-account-document-card > p:last-child {
    color: #fff;
}

.p-account-document-card h3 {
    margin: 0.55rem 0 1rem;
}

.p-account-document-card ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.p-account-document-card li {
    position: relative;
    padding-left: 1.65rem;
}

.p-account-document-card li::before {
    position: absolute;
    left: 0;
    color: #dceaa0;
    content: ">";
    font-weight: 900;
}

.p-account-document-card > p:last-child {
    margin: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.p-account-immediate-note {
    margin-top: 1.2rem;
    border: 1px solid rgba(2, 81, 112, 0.2);
    border-left: 5px solid var(--p-account-petrol);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.88);
    padding: 1.15rem 1.25rem;
}

.p-account-immediate-note strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--p-account-ink);
    font: 700 1rem Quicksand, sans-serif;
}

.p-account-immediate-note p {
    margin: 0;
}

.p-account-protection-section {
    position: relative;
    overflow: hidden;
}

.p-account-protection-section::after {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 20rem;
    height: 20rem;
    border: 2rem solid rgba(102, 120, 0, 0.045);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.p-account-protection-section > * {
    position: relative;
    z-index: 1;
}

.p-account-protection-levels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-account-protection-levels article {
    position: relative;
    padding-top: 4.7rem;
}

.p-account-protection-levels article > span {
    position: absolute;
    top: 1.2rem;
    left: 1.35rem;
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background: var(--p-account-green-pale);
    color: var(--p-account-green-dark);
    font-weight: 900;
    place-items: center;
}

.p-account-official-link {
    display: grid;
    grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--p-account-ink), var(--p-account-petrol));
    box-shadow: 0 14px 34px rgba(0, 59, 82, 0.12);
    padding: 1.2rem 1.35rem;
}

.p-account-official-link span,
.p-account-official-link strong {
    color: #fff;
}

.p-account-official-link span {
    color: #dceaa0;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.p-account-official-link strong {
    font: 700 1rem/1.45 Quicksand, sans-serif;
}

.p-account-official-link:hover,
.p-account-official-link:focus-visible {
    color: #fff;
    box-shadow: 0 19px 42px rgba(0, 59, 82, 0.18);
    transform: translateY(-1px);
}

.p-account-myth-section {
    background: var(--p-account-paper) !important;
}

.p-account-myth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-account-myth-grid article {
    background: linear-gradient(145deg, #fff, #f9fbfb);
}

.p-account-related-section {
    background: var(--p-account-green-pale) !important;
}

.p-account-related-section .related-grid a {
    min-width: 0;
    border-top: 4px solid var(--p-account-green);
}

.p-account-related-section .related-grid strong {
    overflow-wrap: anywhere;
}

.p-account-faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fff, var(--p-account-paper)) !important;
}

.p-account-section-heading {
    align-items: center;
}

.p-account-section-heading h2,
.p-account-section-heading p:last-child {
    margin-bottom: 0;
}

.p-account-faq-visual {
    position: relative;
    justify-self: end;
    width: 8.5rem;
    height: 8.5rem;
    border: 1px solid #dce5bb;
    border-radius: 50%;
    background: var(--p-account-green-pale);
}

.p-account-faq-visual span {
    position: absolute;
    inset: 0;
    display: grid;
    color: var(--p-account-green);
    font: 700 4rem Quicksand, sans-serif;
    place-items: center;
}

.p-account-faq-visual i {
    position: absolute;
    border: 2px solid var(--p-account-petrol);
    border-radius: 50%;
}

.p-account-faq-visual i:first-of-type {
    top: 0.7rem;
    right: 0.7rem;
    width: 1.2rem;
    height: 1.2rem;
}

.p-account-faq-visual i:last-of-type {
    bottom: 1rem;
    left: 0.65rem;
    width: 0.8rem;
    height: 0.8rem;
}

.p-account-faq-section .faq-list {
    margin-top: 1.5rem;
    border: 1px solid var(--p-account-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 59, 82, 0.08);
    padding: 0 1.2rem;
}

.p-account-faq-section .faq-list details:last-child {
    border-bottom: 0;
}

.p-account-source-section {
    background:
        radial-gradient(circle at 94% 8%, rgba(102, 120, 0, 0.12), transparent 19rem),
        linear-gradient(135deg, #edf4f6, #f7fafb) !important;
}

.p-account-source-heading {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.35fr);
}

.p-account-source-heading aside {
    justify-self: stretch;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--p-account-ink), var(--p-account-petrol));
    padding: 1.2rem;
    text-align: center;
}

.p-account-source-heading aside strong,
.p-account-source-heading aside span {
    display: block;
    color: #fff;
}

.p-account-source-heading aside strong {
    font: 700 2.4rem Quicksand, sans-serif;
}

.p-account-source-heading aside span {
    color: rgba(255, 255, 255, 0.8);
}

.p-account-source-section .source-list li {
    display: grid;
    align-content: start;
    gap: 0.35rem;
    min-width: 0;
}

.p-account-source-type {
    color: var(--p-account-green-dark);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.p-account-source-section .source-list a {
    font-weight: 750;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.p-account-update-history {
    margin-top: 1.25rem;
    border: 1px solid var(--p-account-line);
    border-radius: 14px;
    background: #fff;
    padding: 0 1rem;
}

.p-account-update-history summary {
    padding: 1rem 2rem 1rem 0;
    color: var(--p-account-ink);
    cursor: pointer;
    font-weight: 800;
}

.p-account-update-history p {
    margin: 0;
    border-top: 1px solid var(--p-account-line);
    padding: 1rem 0;
}

.p-account-cta .section-kicker {
    color: #dceaa0 !important;
}

@media (max-width: 991.98px) {
    .p-account-summary-grid,
    .p-account-term-grid,
    .p-account-protection-levels,
    .p-account-lifecycle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .p-account-document-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .p-account-hero h1 {
        max-width: none;
    }

    .p-account-hero__visual {
        border-radius: 14px;
        padding: 1rem;
    }

    .p-account-purpose-flow {
        grid-template-columns: 1fr;
    }

    .p-account-purpose-flow > b {
        justify-self: center;
        transform: rotate(90deg);
    }

    .p-account-purpose-flow__node {
        min-height: 6.8rem;
    }

    .p-account-summary-grid,
    .p-account-term-grid,
    .p-account-visibility-grid,
    .p-account-protection-levels,
    .p-account-myth-grid,
    .p-account-split-note,
    .p-account-section-heading,
    .p-account-control-layout,
    .p-account-lifecycle,
    .p-account-source-heading {
        grid-template-columns: 1fr;
    }

    .p-account-boundary-strip,
    .p-account-official-link {
        grid-template-columns: 1fr;
    }

    .p-account-data-copy-note,
    .p-account-protection-alert {
        grid-template-columns: 1fr;
    }

    .p-account-protection-alert > div:first-child {
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.7rem;
    }

    .p-account-cause-model {
        grid-template-columns: 1fr;
    }

    .p-account-cause-model > b {
        transform: rotate(90deg);
    }

    .p-account-lifecycle li {
        min-height: auto;
    }

    .p-account-faq-visual {
        justify-self: start;
        width: 7rem;
        height: 7rem;
    }

    .p-account-faq-visual span {
        font-size: 3.25rem;
    }

    .p-account-faq-section .faq-list {
        border-radius: 14px;
        padding: 0 0.85rem;
    }

    .p-account-source-heading aside {
        justify-self: start;
        min-width: 11rem;
    }
}

@media (max-width: 389.98px) {
    .p-account-purpose-flow__blocked {
        grid-template-columns: 1fr;
    }

    .p-account-visibility-grid dl div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .p-account-control-steps li {
        grid-template-columns: 1fr;
    }
}
