:root {
    --black: #000;
    --white: #fff;
    --paper: #f5f5f2;
    --soft: #ededeb;
    --muted: #707070;
    --line: rgba(0, 0, 0, .18);
    --line-strong: #000;
    --pad: clamp(1.25rem, 4vw, 4.5rem);
    --heading: "Space Grotesk", sans-serif;
    --body: "DM Sans", sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--white);
}

body {
    min-width: 320px;
    font-family: var(--body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

button, input, textarea, select {
    font: inherit;
}

button, summary, a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

button {
    color: inherit;
}

::selection {
    color: var(--white);
    background: var(--black);
}

.section-pad {
    padding: clamp(4rem, 8vw, 8rem) var(--pad);
}

.eyebrow,
.section-kicker {
    font-size: .7rem;
    line-height: 1.3;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.wordmark,
.footer-logo {
    font-family: var(--heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: lowercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 3.15rem;
    padding: .9rem 1.15rem;
    border: 1px solid var(--black);
    font-family: var(--heading);
    font-weight: 500;
    font-size: .72rem;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-dark {
    color: var(--white);
    background: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
    color: var(--black);
    background: var(--white);
}

.button-light {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
    color: var(--white);
    background: var(--black);
}

.button-outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255,255,255,.75);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
    color: var(--black);
    background: var(--white);
}

/* Login */
.login-page {
    min-height: 100svh;
    background: var(--white);
}

.login-shell {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(23rem, .9fr);
}

.login-panel {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 4vw, 4rem);
}

.login-copy {
    max-width: 54rem;
    margin: auto 0 3rem;
}

.login-copy h1 {
    margin: 1.2rem 0 2rem;
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(3.25rem, 8.3vw, 8.5rem);
    line-height: .9;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.login-copy h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--black);
}

.login-copy > p:last-child {
    max-width: 48ch;
    font-size: clamp(.95rem, 1.3vw, 1.1rem);
    line-height: 1.65;
    color: #333;
}

.login-form {
    width: min(100%, 33rem);
    margin-bottom: auto;
}

.login-form label {
    display: block;
    margin-bottom: .6rem;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.password-field {
    position: relative;
    border-bottom: 1px solid var(--black);
}

.password-field input {
    width: 100%;
    height: 3.5rem;
    padding: .5rem 6.5rem .5rem 0;
    border: 0;
    outline: 0;
    border-radius: 0;
    background: transparent;
    font-family: var(--heading);
    font-size: 1.2rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

.login-submit {
    width: 100%;
    margin-top: 1.25rem;
}

.button-arrow {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.button-arrow::before,
.button-arrow::after {
    content: "";
    position: absolute;
}

.button-arrow::before {
    right: .08rem;
    bottom: .13rem;
    width: .72rem;
    height: .72rem;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.button-arrow::after {
    right: .12rem;
    bottom: .12rem;
    width: .95rem;
    height: 1px;
    background: currentColor;
    transform: rotate(-45deg);
    transform-origin: right center;
}

.login-error {
    min-height: 1.3rem;
    margin-top: .7rem;
    font-size: .82rem;
    color: #a00016;
}

.login-note {
    margin-top: .85rem;
    font-size: .76rem;
    color: var(--muted);
}

.login-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--black);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.login-art {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 4rem);
    color: var(--white);
    background:
        radial-gradient(circle at 65% 25%, rgba(255,255,255,.2), transparent 18%),
        linear-gradient(125deg, transparent 0 25%, rgba(255,255,255,.1) 38%, transparent 52%),
        linear-gradient(145deg, #090909, #272727 52%, #020202);
    overflow: hidden;
}

.login-art::before {
    content: "";
    position: absolute;
    inset: -15%;
    background: repeating-linear-gradient(118deg, transparent 0 5rem, rgba(255,255,255,.045) 5.05rem, transparent 5.1rem);
    animation: artMove 16s var(--ease) infinite alternate;
}

.login-art-word {
    position: absolute;
    top: 6%;
    left: -2%;
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(5rem, 12vw, 13rem);
    line-height: .8;
    letter-spacing: .05em;
    transform: rotate(90deg) translateX(100%);
    transform-origin: left top;
    opacity: .12;
}

.login-art-line {
    position: relative;
    width: 100%;
    height: 1px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,.5);
}

.login-art p {
    position: relative;
    font-family: var(--heading);
    font-size: clamp(2rem, 4.2vw, 4.5rem);
    line-height: .95;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.reveal-on-load {
    opacity: 0;
    transform: translateY(1.2rem);
    animation: revealLoad .9s var(--ease) forwards;
}

.login-form.reveal-on-load { animation-delay: .12s; }
.login-meta.reveal-on-load { animation-delay: .22s; }

@keyframes revealLoad {
    to { opacity: 1; transform: none; }
}

@keyframes artMove {
    from { transform: translate3d(-1%, -1%, 0) scale(1.02); }
    to { transform: translate3d(2%, 1%, 0) scale(1.07); }
}

/* Offer header and progress */
.page-progress {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--black);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem var(--pad);
    border-bottom: 1px solid var(--black);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .68rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.header-action {
    text-underline-offset: .2em;
}

/* Hero */
.offer-hero {
    min-height: calc(100svh - 3.2rem);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(23rem, .85fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: end;
    padding-top: clamp(4rem, 9vw, 8rem);
    border-bottom: 1px solid var(--black);
}

.offer-hero-copy h1,
.section-heading h2,
.scope-toolbar h2,
.closing-copy h2,
.terms-section h2 {
    font-family: var(--heading);
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.offer-hero-copy h1 {
    margin: 1rem 0 2rem;
    font-size: clamp(3.4rem, 8.3vw, 9rem);
    line-height: .89;
}

.offer-hero-copy h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--black);
}

.hero-lead {
    max-width: 52ch;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.62;
    color: #333;
}

.hero-price-card {
    position: relative;
    min-height: 31rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--white);
    background:
        radial-gradient(circle at 76% 10%, rgba(255,255,255,.17), transparent 24%),
        linear-gradient(135deg, #050505, #252525 56%, #000);
    transform-style: preserve-3d;
    transition: transform .3s var(--ease);
    overflow: hidden;
}

.hero-price-card::before {
    content: "";
    position: absolute;
    inset: -25%;
    background: linear-gradient(118deg, transparent 32%, rgba(255,255,255,.13) 45%, transparent 59%);
    transform: translateX(-35%);
    animation: sheen 7s var(--ease) infinite;
}

@keyframes sheen {
    0%, 30% { transform: translateX(-45%); opacity: 0; }
    50% { opacity: 1; }
    75%, 100% { transform: translateX(55%); opacity: 0; }
}

.price-card-top,
.price-breakdown-quick,
.hero-price-card .button,
.hero-price {
    position: relative;
    z-index: 1;
}

.price-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .7rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-price {
    margin: 3rem 0;
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 6.3rem);
    line-height: .88;
    letter-spacing: -.045em;
}

.price-breakdown-quick {
    border-top: 1px solid rgba(255,255,255,.45);
}

.price-breakdown-quick a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.45);
    font-size: .85rem;
    text-decoration: none;
}

.price-breakdown-quick a strong {
    font-family: var(--heading);
    white-space: nowrap;
}

.hero-price-card .button {
    width: 100%;
    margin-top: 1.5rem;
}

.statement-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--black);
}

.statement-strip > div {
    min-height: 10.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem var(--pad);
}

.statement-strip > div + div {
    border-left: 1px solid var(--black);
}

.statement-strip span,
.statement-strip small {
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.statement-strip span,
.statement-strip small {
    color: var(--muted);
}

.statement-strip strong {
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.5vw, 2.3rem);
    line-height: 1;
    text-transform: uppercase;
}

/* General section heading */
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr);
    gap: clamp(2rem, 8vw, 9rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -1rem;
}

.section-heading h2,
.scope-toolbar h2,
.terms-section h2,
.closing-copy h2 {
    font-size: clamp(2.7rem, 6.5vw, 6.7rem);
    line-height: .9;
}

.section-heading > p:last-child {
    max-width: 50ch;
    font-size: clamp(.94rem, 1.25vw, 1.08rem);
    line-height: 1.68;
    color: #333;
}

/* Budget */
.offer-overview {
    background: var(--paper);
    border-bottom: 1px solid var(--black);
}

.budget-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(21rem, .85fr);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.budget-chart {
    padding: 2rem 3rem 2rem 0;
}

.budget-bar {
    width: 100%;
    display: grid;
    grid-template-columns: 7rem minmax(5rem, 1fr) 7rem 3rem;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.budget-bar:last-child {
    border-bottom: 0;
}

.budget-bar-label {
    font-family: var(--heading);
    font-size: .84rem;
    text-transform: uppercase;
}

.budget-bar-track {
    height: 1.1rem;
    background: #d8d8d4;
    overflow: hidden;
}

.budget-bar-track i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--black);
    transition: width 1.2s var(--ease);
}

.budget-chart.visible .budget-bar-track i {
    width: var(--share);
}

.budget-bar strong {
    font-family: var(--heading);
    font-size: .88rem;
    text-align: right;
    white-space: nowrap;
}

.budget-bar small {
    color: var(--muted);
    text-align: right;
}

.budget-summary {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 2rem 3rem;
    border-left: 1px solid var(--black);
}

.budget-ring {
    width: 9rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--black) 0 56.8%, #555 56.8% 77.3%, #999 77.3% 88.7%, #d3d3d0 88.7% 100%);
}

.budget-ring::before {
    content: "";
    grid-area: 1 / 1;
    width: 65%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--paper);
}

.budget-ring span {
    grid-area: 1 / 1;
    z-index: 1;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.4rem;
}

.budget-summary h3 {
    margin: .7rem 0 1rem;
    font-family: var(--heading);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.budget-summary p:last-child {
    font-size: .92rem;
    line-height: 1.65;
    color: #444;
}

/* Accordion */
.scope-section {
    border-bottom: 1px solid var(--black);
}

.scope-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3rem;
}

.scope-toolbar .eyebrow {
    margin-bottom: 1rem;
}

.toolbar-actions {
    display: flex;
    gap: 1rem;
    padding-bottom: .7rem;
}

.text-button {
    border: 0;
    border-bottom: 1px solid var(--black);
    background: transparent;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}

.accordion-stack {
    border-top: 1px solid var(--black);
}

.accordion {
    border-bottom: 1px solid var(--black);
}

.accordion summary {
    list-style: none;
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto 1.5rem;
    gap: 1rem;
    align-items: center;
    min-height: 6.5rem;
    padding: 1.2rem 0;
    cursor: pointer;
    transition: background .25s var(--ease), padding .25s var(--ease);
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion-level-1 > summary:hover,
.accordion-level-1 > summary:focus-visible {
    padding-left: 1rem;
    padding-right: 1rem;
    background: var(--paper);
}

.accordion-index,
.page-number {
    font-family: var(--heading);
    font-size: .72rem;
    color: var(--muted);
}

.accordion-title {
    display: flex;
    flex-direction: column;
    gap: .28rem;
    min-width: 0;
}

.accordion-title strong {
    font-family: var(--heading);
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.accordion-title small {
    max-width: 60ch;
    font-size: .79rem;
    line-height: 1.45;
    color: var(--muted);
}

.accordion-price {
    font-family: var(--heading);
    font-size: clamp(.85rem, 1.2vw, 1.05rem);
    text-align: right;
    white-space: nowrap;
}

.accordion-icon {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1px;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease);
}

.accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion.is-expanded > summary .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transition:
        grid-template-rows .46s var(--ease),
        opacity .32s ease,
        visibility 0s linear .46s;
}

.accordion.is-expanded > .accordion-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition:
        grid-template-rows .46s var(--ease),
        opacity .36s ease .06s,
        visibility 0s linear 0s;
}

.accordion-content.is-instant {
    transition: none !important;
}

.accordion-content-clip {
    min-height: 0;
    overflow: hidden;
}

.accordion-content-body {
    padding: .5rem 0 2.2rem 4rem;
}

.content-lead {
    max-width: 62ch;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.accordion-level-2,
.accordion-level-3 {
    border-color: var(--line);
}

.accordion-level-2 > summary {
    min-height: 5.2rem;
    grid-template-columns: minmax(0, 1fr) auto 1.5rem;
}

.accordion-level-3 > summary {
    min-height: 4.4rem;
    grid-template-columns: minmax(0, 1fr) 1.5rem;
}

.accordion-level-2 .accordion-title strong {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.accordion-level-3 .accordion-title strong {
    font-size: .92rem;
    letter-spacing: .05em;
}

.accordion-level-2 > .accordion-content > .accordion-content-clip > .accordion-content-body,
.accordion-level-3 > .accordion-content > .accordion-content-clip > .accordion-content-body {
    padding-left: 0;
}

.check-list {
    list-style: none;
    columns: 2;
    column-gap: 3rem;
}

.check-list li {
    position: relative;
    break-inside: avoid;
    padding: .7rem 0 .7rem 1.4rem;
    border-top: 1px solid var(--line);
    font-size: .9rem;
    line-height: 1.55;
}

.check-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    font-family: var(--heading);
}

.check-list-negative li::before {
    content: "−";
}

.division-demo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.division-demo span {
    padding: 1.4rem;
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    text-align: center;
}

.division-demo span + span {
    border-left: 1px solid var(--black);
}

.division-demo small {
    display: block;
    margin-top: .3rem;
    font-family: var(--body);
    font-weight: 400;
    font-size: .64rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.tag-list li {
    padding: .55rem .75rem;
    border: 1px solid var(--black);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-item > summary {
    grid-template-columns: 3rem minmax(0, 1fr) 1.5rem;
}

.page-accordions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
}

.page-accordions .page-item {
    align-self: start;
}

.section-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem 2rem;
    counter-reset: item;
    list-style: none;
}

.section-list li {
    position: relative;
    min-height: 2.6rem;
    padding: .7rem 0 .7rem 2rem;
    border-top: 1px solid var(--line);
    font-size: .84rem;
    line-height: 1.45;
    counter-increment: item;
}

.section-list li::before {
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--muted);
    font-size: .62rem;
}

.two-column-list {
    display: block;
}

.two-column-list > .accordion-content-clip > .accordion-content-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 3rem;
}

.two-column-list .check-list {
    columns: 1;
}

/* Addons */
.addons-section {
    background: var(--black);
    color: var(--white);
}

.addons-section .eyebrow,
.addons-section .section-heading > p:last-child,
.addons-section .section-kicker {
    color: rgba(255,255,255,.62);
}

.addons-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(20rem, .7fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
}

.addon-group {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.6);
}

.addon-group + .addon-group {
    margin-top: 3rem;
}

.addon-group legend {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    font-family: var(--heading);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.addon-group legend small {
    font-family: var(--body);
    font-size: .68rem;
    font-weight: 400;
    color: rgba(255,255,255,.55);
    text-transform: none;
}

.addon-option {
    display: grid;
    grid-template-columns: 1.4rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
}

.addon-option input {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--white);
}

.addon-option span {
    display: flex;
    flex-direction: column;
    gap: .22rem;
}

.addon-option strong {
    font-family: var(--heading);
    font-weight: 500;
    text-transform: uppercase;
}

.addon-option small {
    color: rgba(255,255,255,.58);
    line-height: 1.45;
}

.addon-option b {
    font-family: var(--heading);
    font-size: .9rem;
    white-space: nowrap;
}

.addons-total {
    position: sticky;
    top: 6rem;
    padding: 2rem;
    color: var(--black);
    background: var(--white);
}

.addons-price {
    margin: 1rem 0 .2rem;
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: .9;
    letter-spacing: -.04em;
}

.addons-vat {
    margin-bottom: 2.5rem;
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.addons-calculation {
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--black);
}

.addons-calculation span {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}

.addons-calculation strong {
    font-family: var(--heading);
}

.addons-total .button {
    width: 100%;
}

.addons-total > small {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.5;
}

/* Timeline */
.timeline-section {
    border-bottom: 1px solid var(--black);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--timeline-items, 7), minmax(0, 1fr));
    gap: 0;
    padding-top: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 5.45rem;
    left: calc(100% / (var(--timeline-items, 7) * 2));
    right: calc(100% / (var(--timeline-items, 7) * 2));
    height: 1px;
    background: var(--black);
}

.timeline-item {
    position: relative;
    min-width: 0;
    padding: 0 clamp(.65rem, 1.1vw, 1.2rem);
}

.timeline-item time {
    display: block;
    min-height: 2.4rem;
    font-family: var(--heading);
    font-size: .78rem;
    text-transform: uppercase;
}

.timeline-dot {
    position: relative;
    z-index: 1;
    display: block;
    width: .8rem;
    height: .8rem;
    margin: 1.1rem auto 2rem;
    border: 1px solid var(--black);
    border-radius: 50%;
    background: var(--white);
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.timeline-item:hover .timeline-dot {
    background: var(--black);
    transform: scale(1.35);
}

.timeline-item-final .timeline-dot {
    background: var(--black);
}

.timeline-item small {
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.timeline-item h3 {
    margin: .45rem 0 .7rem;
    font-family: var(--heading);
    font-size: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.timeline-item p {
    font-size: .8rem;
    line-height: 1.55;
    color: #444;
}

/* Terms */
.terms-section {
    background: var(--paper);
}

.terms-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, .8fr);
    gap: clamp(3rem, 9vw, 10rem);
}

.terms-section .eyebrow {
    margin-bottom: 1.2rem;
}

.terms-list {
    border-top: 1px solid var(--black);
}

.terms-list details {
    border-bottom: 1px solid var(--black);
}

.terms-list summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-family: var(--heading);
    text-transform: uppercase;
    cursor: pointer;
}

.terms-list summary::-webkit-details-marker { display: none; }

.terms-list summary span {
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
}

.terms-list summary span::before,
.terms-list summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1px;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition: transform .25s var(--ease);
}

.terms-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.terms-list details.is-expanded summary span::after {
    transform: translate(-50%, -50%);
}

.terms-list .accordion-content {
    padding: 0;
}

.terms-list .accordion-content-clip {
    min-height: 0;
    overflow: hidden;
}

.terms-list .accordion-content-body {
    padding: 0 0 1.4rem;
}

.terms-list p {
    font-size: .9rem;
    line-height: 1.65;
    color: #333;
}

/* Closing */
.closing-section {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(21rem, .7fr);
    min-height: 33rem;
    color: var(--white);
    background: var(--black);
}

.closing-copy,
.closing-price {
    padding: clamp(3rem, 7vw, 7rem) var(--pad);
}

.closing-copy {
    border-right: 1px solid rgba(255,255,255,.35);
}

.eyebrow-light {
    color: rgba(255,255,255,.58);
}

.closing-copy h2 {
    margin: 1rem 0 2rem;
}

.closing-copy > p:not(.eyebrow) {
    max-width: 48ch;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
}

.closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.closing-price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.closing-price span,
.closing-price small {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
}

.closing-price strong {
    margin: 1rem 0;
    font-family: var(--heading);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: .88;
    letter-spacing: -.04em;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem var(--pad);
    border-top: 1px solid var(--black);
    font-size: .68rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.mobile-price-bar {
    display: none;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .offer-hero {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, .75fr);
        gap: 3rem;
    }

    .budget-layout,
    .addons-layout {
        grid-template-columns: 1fr;
    }

    .budget-chart {
        padding-right: 0;
    }

    .budget-summary {
        padding-left: 0;
        border-top: 1px solid var(--black);
        border-left: 0;
    }

    .addons-total {
        position: static;
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-right: 2rem;
        border-top: 1px solid var(--black);
        padding-top: 1rem;
    }

    .timeline-dot {
        display: none;
    }
}

@media (max-width: 820px) {
    body.offer-page {
        padding-bottom: 4.7rem;
    }

    .login-shell,
    .offer-hero,
    .section-heading,
    .terms-grid,
    .closing-section {
        grid-template-columns: 1fr;
    }

    .login-art {
        display: none;
    }

    .login-panel {
        min-height: 100svh;
    }

    .login-copy {
        margin-top: auto;
    }

    .offer-hero {
        align-items: stretch;
    }

    .hero-price-card {
        min-height: 28rem;
    }

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

    .statement-strip > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--black);
    }

    .statement-strip > div:nth-child(4) {
        border-top: 1px solid var(--black);
    }

    .section-heading {
        gap: 1.5rem;
    }

    .section-heading .eyebrow {
        margin-bottom: 0;
    }

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

    .accordion summary {
        grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
    }

    .accordion-level-1 > summary .accordion-price {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    .accordion-level-1 > summary .accordion-icon {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .accordion-level-1 > .accordion-content > .accordion-content-clip > .accordion-content-body {
        padding-left: 2rem;
    }

    .accordion-level-2 > summary,
    .accordion-level-3 > summary {
        grid-template-columns: minmax(0, 1fr) 1.25rem;
    }

    .accordion-level-2 > summary .accordion-price {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
    }

    .accordion-level-2 > summary .accordion-icon {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .check-list,
    .page-accordions,
    .section-list {
        columns: 1;
        grid-template-columns: 1fr;
    }

    .two-column-list > .accordion-content-clip > .accordion-content-body {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .division-demo {
        grid-template-columns: 1fr;
    }

    .division-demo span + span {
        border-top: 1px solid var(--black);
        border-left: 0;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 1.5rem;
    }

    .timeline::before {
        display: block;
        top: 0;
        bottom: 0;
        left: .35rem;
        right: auto;
        width: 1px;
        height: auto;
    }

    .timeline-item {
        padding: 0 0 2.5rem 1.5rem;
        border-top: 0;
    }

    .timeline-item time {
        min-height: 0;
        margin-bottom: .6rem;
    }

    .timeline-dot {
        position: absolute;
        top: .2rem;
        left: -1.55rem;
        display: block;
        margin: 0;
    }

    .closing-copy {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.35);
    }

    .site-footer {
        flex-direction: column;
    }

    .mobile-price-bar {
        position: fixed;
        z-index: 1500;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 4.7rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: .75rem var(--pad) calc(.75rem + env(safe-area-inset-bottom));
        border-top: 1px solid var(--white);
        color: var(--white);
        background: rgba(0,0,0,.94);
        backdrop-filter: blur(12px);
    }

    .mobile-price-bar div {
        display: flex;
        flex-direction: column;
    }

    .mobile-price-bar small {
        font-size: .58rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.58);
    }

    .mobile-price-bar strong {
        font-family: var(--heading);
        font-size: 1.05rem;
    }

    .mobile-price-bar a {
        padding: .65rem .8rem;
        border: 1px solid rgba(255,255,255,.7);
        font-size: .68rem;
        letter-spacing: .1em;
        text-decoration: none;
        text-transform: uppercase;
    }
}

@media (max-width: 580px) {
    :root {
        --pad: 1.1rem;
    }

    .site-header {
        padding-top: .9rem;
        padding-bottom: .9rem;
    }

    .header-project {
        display: none;
    }

    .offer-hero {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .offer-hero-copy h1 {
        font-size: clamp(2.75rem, 15vw, 4.8rem);
    }

    .hero-price-card {
        min-height: 24rem;
        margin-top: 1rem;
    }

    .hero-price {
        font-size: clamp(3.4rem, 16vw, 5.4rem);
    }

    .price-breakdown-quick a {
        flex-direction: column;
        gap: .25rem;
    }

    .statement-strip > div {
        min-height: 8.5rem;
        padding: 1rem;
    }

    .statement-strip strong {
        font-size: 1.25rem;
    }

    .section-heading h2,
    .scope-toolbar h2,
    .terms-section h2,
    .closing-copy h2 {
        font-size: clamp(2.3rem, 13vw, 4rem);
    }

    .budget-bar {
        grid-template-columns: 4.8rem minmax(3rem, 1fr) auto;
        gap: .65rem;
    }

    .budget-bar small {
        display: none;
    }

    .budget-bar strong {
        font-size: .74rem;
    }

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

    .budget-ring {
        width: 7.5rem;
    }

    .toolbar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .accordion summary {
        min-height: 5.5rem;
        gap: .6rem;
    }

    .accordion-title strong {
        font-size: 1rem;
    }

    .accordion-title small {
        font-size: .7rem;
    }

    .accordion-level-1 > .accordion-content > .accordion-content-clip > .accordion-content-body {
        padding-left: 0;
    }

    .accordion-level-2 {
        margin-left: 1.25rem;
    }

    .accordion-level-3 {
        margin-left: 1rem;
    }

    .check-list li {
        padding-right: 0;
        font-size: .82rem;
    }

    .addon-group legend {
        flex-direction: column;
    }

    .addon-option {
        grid-template-columns: 1.2rem minmax(0, 1fr);
    }

    .addon-option b {
        grid-column: 2;
        font-size: .8rem;
    }

    .addons-total {
        padding: 1.3rem;
    }

    .closing-actions {
        flex-direction: column;
    }

    .closing-actions .button {
        width: 100%;
    }

    .login-copy h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 13.5vw, 4.1rem);
        line-height: .92;
        letter-spacing: .025em;
    }

    .login-meta {
        flex-direction: column;
        gap: .28rem;
        margin-top: 1.5rem;
        padding-top: .75rem;
        font-size: .56rem;
        line-height: 1.35;
        letter-spacing: .06em;
    }
}

@media (hover: none) {
    .accordion-level-1 > summary:hover {
        padding-left: 0;
        padding-right: 0;
        background: transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@page {
    size: A4;
    margin: 11mm 10mm 12mm;
}

@media print {
    html,
    body {
        width: auto;
        min-width: 0;
        padding: 0 !important;
        background: #fff !important;
        font-size: 9.2pt;
    }

    body::after,
    .site-header,
    .page-progress,
    .mobile-price-bar,
    .toolbar-actions,
    .addons-section,
    .closing-actions,
    .header-action {
        display: none !important;
    }

    .section-pad {
        padding: 9mm 0;
    }

    .offer-hero {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(62mm, .65fr);
        gap: 8mm;
        align-items: stretch;
        padding-top: 4mm;
        padding-bottom: 8mm;
        break-after: auto;
    }

    .offer-hero-copy h1 {
        margin: 4mm 0 5mm;
        font-size: 31pt;
    }

    .hero-lead {
        max-width: none;
        font-size: 9.5pt;
        line-height: 1.5;
    }

    .hero-price-card {
        min-height: 0;
        padding: 7mm;
        color: #fff !important;
        background: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .hero-price {
        margin: 8mm 0 6mm;
        font-size: 27pt;
    }

    .hero-price-card .button {
        display: none !important;
    }

    .price-breakdown-quick a {
        padding: 3mm 0;
    }

    .statement-strip {
        grid-template-columns: repeat(4, 1fr);
        break-inside: avoid;
    }

    .statement-strip > div {
        min-height: 24mm;
        padding: 4mm;
    }

    .statement-strip strong {
        font-size: 11pt;
    }

    .section-heading {
        grid-template-columns: 1fr 1.3fr;
        gap: 7mm;
        margin-bottom: 7mm;
    }

    .section-heading h2,
    .scope-toolbar h2,
    .terms-section h2,
    .closing-copy h2 {
        font-size: 23pt;
    }

    .budget-layout {
        grid-template-columns: 1.4fr .6fr;
        gap: 0;
    }

    .budget-chart {
        padding-right: 7mm;
    }

    .budget-summary {
        padding: 6mm;
    }

    .budget-ring {
        width: 30mm;
    }

    details,
    details[open],
    .accordion-content,
    .accordion-content-clip,
    .accordion-content-body {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .accordion-content {
        grid-template-rows: 1fr !important;
        transition: none !important;
    }

    .accordion-content-body {
        padding: 2mm 0 4mm 8mm;
    }

    .accordion-level-2 > .accordion-content > .accordion-content-clip > .accordion-content-body,
    .accordion-level-3 > .accordion-content > .accordion-content-clip > .accordion-content-body {
        padding-left: 0;
    }

    .accordion summary {
        min-height: 0;
        padding: 4mm 0;
        break-after: avoid;
    }

    .accordion-level-1 > summary {
        grid-template-columns: 9mm minmax(0, 1fr) auto;
    }

    .accordion-level-2 > summary,
    .accordion-level-3 > summary {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .accordion-icon {
        display: none !important;
    }

    .accordion-title strong {
        font-size: 11pt;
    }

    .accordion-title small,
    .accordion-price,
    .content-lead,
    .check-list li,
    .section-list li,
    .two-column-list li {
        font-size: 8pt;
    }

    .content-lead {
        margin-bottom: 3mm;
    }

    .check-list li {
        padding-top: 2mm;
        padding-bottom: 2mm;
    }

    .accordion,
    .terms-list details {
        break-inside: auto;
    }

    .accordion-level-2,
    .accordion-level-3,
    .check-list li,
    .page-item,
    .terms-list details {
        break-inside: avoid;
    }

    .page-accordions {
        columns: 2;
        column-gap: 8mm;
    }

    .page-accordions .page-item {
        display: inline-block !important;
        width: 100%;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 7mm;
        padding-top: 0;
    }

    .timeline::before,
    .timeline-dot {
        display: none !important;
    }

    .timeline-item {
        padding: 4mm 0 0;
        border-top: 1px solid #000;
        break-inside: avoid;
    }

    .timeline-item time {
        min-height: 0;
        margin-bottom: 2mm;
    }

    .terms-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 8mm;
    }

    .closing-section {
        grid-template-columns: 1.3fr .7fr;
        color: #fff !important;
        background: #000 !important;
        break-inside: avoid;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .closing-copy,
    .closing-price {
        padding: 8mm;
    }

    .site-footer {
        padding: 5mm 0 0;
        font-size: 7pt;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── V1.2 interaction refinements ───────────────────────────── */
.button-arrow {
    width: 1.05rem;
    height: 1.05rem;
    overflow: visible;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.button-arrow::before,
.button-arrow::after {
    content: none;
}

.accordion-content,
.accordion.is-expanded > .accordion-content {
    display: block;
    height: 0;
    grid-template-rows: none;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    will-change: height, opacity;
    transition:
        height .52s var(--ease),
        opacity .34s ease,
        visibility 0s linear .52s;
}

.accordion.is-expanded > .accordion-content {
    visibility: visible;
    opacity: 1;
    transition:
        height .52s var(--ease),
        opacity .38s ease .04s,
        visibility 0s linear 0s;
}

.accordion-content.is-animating {
    pointer-events: none;
}

.accordion-content-clip {
    min-height: 0;
    overflow: hidden;
}

@media (min-width: 1101px) {
    .timeline {
        --timeline-axis-y: 6.08rem;
    }

    .timeline::before {
        top: var(--timeline-axis-y);
    }

    .timeline-item {
        display: grid;
        grid-template-rows: 2.4rem 3rem auto;
    }
}


@media (min-width: 1101px) {
    .timeline-dot {
        align-self: center;
        margin: 0 auto;
        margin-top: 0.4rem;
    }
}

.print-document {
    display: none;
}

/* Purpose-built print/PDF layout */
@media print {
    @page {
        size: A4;
        margin: 10mm;
    }

    html,
    body {
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #000 !important;
        background: #fff !important;
        font-size: 9pt !important;
    }

    body::after,
    body.offer-page > main,
    .site-header,
    .site-footer,
    .page-progress,
    .mobile-price-bar {
        display: none !important;
    }

    .print-document {
        display: block !important;
        font-family: var(--body);
        color: #000;
    }

    .print-cover,
    .print-page {
        width: 100%;
    }

    .print-cover {
        min-height: 270mm;
        display: flex;
        flex-direction: column;
        padding: 10mm;
        color: #fff !important;
        background:
            linear-gradient(128deg, transparent 0 24%, rgba(255,255,255,.08) 38%, transparent 53%),
            linear-gradient(145deg, #080808, #292929 54%, #020202) !important;
        break-after: page;
        page-break-after: always;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .print-cover-top {
        display: flex;
        justify-content: space-between;
        gap: 10mm;
        padding-bottom: 4mm;
        border-bottom: .35mm solid rgba(255,255,255,.7);
        font-size: 7pt;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .print-cover-top strong,
    .print-signoff span {
        font-family: var(--heading);
        text-transform: lowercase;
    }

    .print-cover-main {
        margin: auto 0;
    }

    .print-cover-main > p:first-child {
        margin-bottom: 7mm;
        font-size: 7pt;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
    }

    .print-cover-main h1 {
        max-width: 170mm;
        font-family: var(--heading);
        font-size: 42pt;
        line-height: .92;
        letter-spacing: .035em;
        text-transform: uppercase;
    }

    .print-cover-main > p:last-child {
        max-width: 105mm;
        margin-top: 9mm;
        font-size: 11pt;
        line-height: 1.55;
        color: rgba(255,255,255,.82);
    }

    .print-cover-price {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 3mm 8mm;
        padding-top: 6mm;
        border-top: .35mm solid rgba(255,255,255,.7);
    }

    .print-cover-price span,
    .print-cover-price small {
        font-size: 7pt;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
    }

    .print-cover-price strong {
        grid-row: 1 / span 2;
        grid-column: 2;
        font-family: var(--heading);
        font-size: 29pt;
        line-height: .9;
        white-space: nowrap;
    }

    .print-page {
        padding: 1mm 0;
    }

    .print-page-break {
        break-before: page;
        page-break-before: always;
    }

    .print-section-head {
        display: grid;
        grid-template-columns: 10mm 1fr;
        gap: 4mm;
        align-items: baseline;
        margin: 4mm 0 5mm;
        padding-bottom: 3mm;
        border-bottom: .35mm solid #000;
    }

    .print-section-head-pages {
        margin-top: 8mm;
    }

    .print-section-head span {
        font-family: var(--heading);
        font-size: 7pt;
        color: #666;
    }

    .print-section-head h2 {
        font-family: var(--heading);
        font-size: 19pt;
        line-height: 1;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .print-price-table {
        width: 100%;
        margin-bottom: 8mm;
        border-collapse: collapse;
    }

    .print-price-table td {
        padding: 3mm 0;
        border-bottom: .25mm solid #bbb;
        font-size: 9.2pt;
    }

    .print-price-table td:last-child {
        width: 38mm;
        font-family: var(--heading);
        text-align: right;
        white-space: nowrap;
    }

    .print-price-table .print-price-total td {
        padding-top: 3.5mm;
        border-bottom: .6mm solid #000;
        font-family: var(--heading);
        font-size: 11.5pt;
        text-transform: uppercase;
    }

    .print-columns {
        display: grid;
        gap: 5mm;
    }

    .print-columns-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .print-columns article {
        padding-top: 3mm;
        border-top: .35mm solid #000;
        break-inside: avoid;
    }

    .print-columns h3,
    .print-pages-grid h3 {
        margin-bottom: 2mm;
        font-family: var(--heading);
        font-size: 9.5pt;
        text-transform: uppercase;
    }

    .print-columns ul {
        list-style: none;
    }

    .print-columns li {
        padding: 1.2mm 0;
        border-bottom: .2mm solid #d0d0d0;
        font-size: 7.6pt;
        line-height: 1.35;
    }

    .print-pages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 8mm;
    }

    .print-pages-grid article {
        display: grid;
        grid-template-columns: 8mm 1fr;
        gap: 0 3mm;
        padding: 2.5mm 0;
        border-bottom: .25mm solid #c4c4c4;
        break-inside: avoid;
    }

    .print-pages-grid article > strong {
        grid-row: 1 / span 2;
        font-family: var(--heading);
        font-size: 7pt;
        color: #777;
    }

    .print-pages-grid h3 {
        margin-bottom: .7mm;
        font-size: 8.5pt;
    }

    .print-pages-grid p {
        font-size: 7pt;
        line-height: 1.3;
        color: #333;
    }

    .print-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 8mm;
        margin-bottom: 8mm;
    }

    .print-timeline article {
        display: grid;
        grid-template-columns: 28mm 1fr;
        gap: 4mm;
        padding: 3mm 0;
        border-bottom: .25mm solid #c4c4c4;
        break-inside: avoid;
    }

    .print-timeline time {
        font-family: var(--heading);
        font-size: 8pt;
    }

    .print-timeline strong {
        font-family: var(--heading);
        font-size: 8.5pt;
        text-transform: uppercase;
    }

    .print-timeline p {
        margin-top: .7mm;
        font-size: 7.4pt;
        line-height: 1.35;
        color: #333;
    }

    .print-payment-title {
        margin-top: 8mm;
        padding-bottom: 2.5mm;
        border-bottom: .35mm solid #000;
        font-family: var(--heading);
        font-size: 10pt;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .print-payment-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 5mm;
    }

    .print-payment-grid article {
        padding: 4mm 3mm 3mm 0;
        border-bottom: .25mm solid #c4c4c4;
        break-inside: avoid;
    }

    .print-payment-grid article + article {
        padding-left: 3mm;
        border-left: .25mm solid #c4c4c4;
    }

    .print-payment-grid strong {
        display: block;
        margin-bottom: 1.5mm;
        font-family: var(--heading);
        font-size: 14pt;
    }

    .print-payment-grid span,
    .print-note {
        font-size: 7.4pt;
        line-height: 1.4;
    }

    .print-note {
        max-width: 155mm;
        color: #333;
    }

    .print-signoff {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2mm 8mm;
        align-items: end;
        margin-top: 8mm;
        padding: 6mm;
        color: #fff !important;
        background: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .print-signoff strong {
        grid-row: 1 / span 2;
        grid-column: 2;
        font-family: var(--heading);
        font-size: 17pt;
        white-space: nowrap;
    }

    .print-signoff small {
        font-size: 6.5pt;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
    }
}
