@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    --paper: #f6f0e3;
    --paper-deep: #ede3d2;
    --paper-light: #fffaf0;
    --navy: #071b3b;
    --navy-soft: #17365c;
    --ink: #10213b;
    --muted: #536176;
    --cobalt: #1166c9;
    --cobalt-dark: #0a4f9e;
    --coral: #f46e59;
    --coral-dark: #c74b3b;
    --sage: #278b68;
    --sage-dark: #17684c;
    --teal: #147c86;
    --violet: #6f62b5;
    --marigold: #f2b72e;
    --rose: #c7607d;
    --steel: #486978;
    --logo-stage: #e4eaf0;
    --line: rgba(7, 27, 59, 0.2);
    --shadow-1: 0 7px 16px rgba(7, 27, 59, 0.13);
    --shadow-2: 0 16px 34px rgba(7, 27, 59, 0.16);
    --body: "Manrope", sans-serif;
    --display: "Manrope", sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scrollbar-color: var(--navy) var(--paper-deep);
    scrollbar-width: thin;
}

body {
    margin: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: var(--paper-deep);
}

body::-webkit-scrollbar-thumb {
    background: var(--navy);
    border: 3px solid var(--paper-deep);
    border-radius: 999px;
}

::selection {
    background: var(--marigold);
    color: var(--navy);
}

img,
svg {
    display: block;
    max-width: 100%;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

a {
    color: inherit;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.24em;
}

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
    caret-color: var(--coral);
}

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

:focus-visible {
    outline: 3px solid var(--marigold);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--navy);
    color: #fff;
    transform: translateY(-160%);
    transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
    transform: translateY(0);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.05;
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-weight: 800;
    letter-spacing: -0.025em;
}

.section-shell {
    width: min(1440px, calc(100% - 96px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: var(--paper-light);
}

.site-header::before,
.site-header::after {
    position: absolute;
    bottom: -7px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    content: "";
}

.site-header::before {
    left: -7px;
}

.site-header::after {
    right: -7px;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(1440px, calc(100% - 96px));
    min-height: 78px;
    margin-inline: auto;
    gap: 44px;
}

.beta-site-banner {
    position: relative;
    z-index: 45;
    margin: 0;
    background: var(--navy);
    color: #fff;
}

.beta-site-banner a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    gap: 12px 20px;
    text-align: center;
    text-decoration: none;
}

.beta-site-banner strong {
    color: var(--marigold);
    font-size: 0.78rem;
}

.beta-site-banner span,
.beta-site-banner b {
    font-size: 0.78rem;
}

.beta-site-banner b {
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.beta-site-banner a:hover b {
    border-bottom-color: var(--marigold);
    color: var(--marigold);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: clamp(1.55rem, 2vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
    text-decoration: none;
}

.wordmark > img {
    display: block;
    width: clamp(142px, 12vw, 184px);
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 66px);
}

.site-nav a {
    position: relative;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--coral);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
}

.ticket-button,
.outline-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms ease;
}

.ticket-button {
    position: relative;
    padding-inline: 40px;
    background: var(--navy);
    box-shadow: 0 6px 14px rgba(7, 27, 59, 0.18);
    color: #fff;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% 38%, calc(100% - 8px) 50%, 100% 62%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 62%, 8px 50%, 0 38%, 0 10px);
}

.ticket-button::before,
.ticket-button::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background-color: var(--coral);
    background-image: radial-gradient(circle, var(--paper-light) 1.8px, transparent 2px);
    background-position: center 3px;
    background-repeat: repeat-y;
    background-size: 6px 10px;
    content: "";
}

.ticket-button::before {
    left: 0;
}

.ticket-button::after {
    right: 0;
    background-color: var(--marigold);
}

.ticket-button:hover,
.ticket-button:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 11px 22px rgba(7, 27, 59, 0.2);
}

.ticket-button:active,
.outline-button:active {
    transform: translateY(0);
}

.ticket-button[aria-disabled="true"],
.ticket-button:disabled {
    cursor: not-allowed;
    filter: saturate(0.25);
    opacity: 0.62;
    pointer-events: none;
}

.ticket-button--compact {
    min-height: 50px;
    padding-inline: 26px;
    font-size: 0.86rem;
    text-transform: uppercase;
}

.ticket-button--warm {
    background: var(--navy);
}

.outline-button {
    border: 2px solid var(--cobalt-dark);
    background: transparent;
    color: var(--cobalt-dark);
    clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
}

.outline-button--light {
    border-color: var(--paper-light);
    color: var(--paper-light);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
    min-height: 580px;
    border-bottom: 1px solid var(--line);
}

.hero__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 20px clamp(36px, 4vw, 64px) 20px max(48px, calc((100vw - 1440px) / 2));
}

.hero h1 {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 4.5vw, 4.3rem);
}

.hero__lede {
    max-width: 62ch;
    margin-bottom: 22px;
    color: #263650;
    font-size: clamp(1rem, 1.3vw, 1.22rem);
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero__module-link {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    padding-inline: 6px;
    color: var(--cobalt-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.proof-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 20px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.proof-rail > div {
    min-width: 0;
    padding-inline: 18px;
    border-right: 1px solid var(--line);
}

.proof-rail > div:first-child {
    padding-left: 0;
}

.proof-rail > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.proof-rail dt {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.proof-rail svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    padding: 5px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
}

.proof-rail > div:nth-child(2) svg {
    background: var(--marigold);
    color: var(--navy);
}

.proof-rail > div:nth-child(3) svg {
    background: var(--cobalt);
}

.proof-rail dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.4;
}

.stack-builder {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    padding: 24px clamp(214px, 17vw, 250px) 24px 28px;
    background: var(--paper-deep);
}

.stack-builder__layers {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    filter: drop-shadow(0 16px 22px rgba(7, 27, 59, 0.16));
}

.stack-layer {
    --layer: var(--cobalt);
    --layer-text: #fff;
    position: relative;
    display: grid;
    grid-template-columns: minmax(170px, 0.3fr) minmax(310px, 0.7fr);
    min-height: 126px;
    border: 1px solid rgba(7, 27, 59, 0.66);
    background: var(--layer);
    color: var(--layer-text);
    clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(50% - 12px), calc(100% - 8px) calc(50% - 7px), calc(100% - 8px) calc(50% + 7px), 100% calc(50% + 12px), 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
}

.stack-layer + .stack-layer {
    margin-top: -1px;
}

.stack-layer[data-stack-layer="planogram"],
.stack-layer[data-stack-layer="daily-records"],
.stack-layer[data-stack-layer="payroll"] {
    width: calc(100% - 6px);
    transform: translateX(6px);
}

.stack-layer[data-stack-layer="inventory"],
.stack-layer[data-stack-layer="disciplinary-records"],
.stack-layer[data-stack-layer="repair-log"] {
    width: calc(100% - 4px);
    transform: translateX(-4px);
}

.stack-layer--cobalt,
.module-ledger__row--cobalt {
    --layer: var(--cobalt);
    --layer-text: #fff;
}

.stack-layer--coral,
.module-ledger__row--coral {
    --layer: var(--coral);
    --layer-text: var(--navy);
}

.stack-layer--sage,
.module-ledger__row--sage {
    --layer: var(--sage);
    --layer-text: #fff;
}

.stack-layer--teal,
.module-ledger__row--teal {
    --layer: var(--teal);
    --layer-text: #fff;
}

.stack-layer--violet,
.module-ledger__row--violet {
    --layer: var(--violet);
    --layer-text: #fff;
}

.stack-layer--marigold,
.module-ledger__row--marigold {
    --layer: var(--marigold);
    --layer-text: var(--navy);
}

.stack-layer--rose,
.module-ledger__row--rose {
    --layer: var(--rose);
    --layer-text: var(--navy);
}

.stack-layer--steel,
.module-ledger__row--steel {
    --layer: var(--steel);
    --layer-text: #fff;
}

.stack-layer--navy,
.module-ledger__row--navy {
    --layer: var(--navy-soft);
    --layer-text: #fff;
}

.stack-layer__grip {
    position: absolute;
    top: 22px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(2, 3px);
    gap: 4px;
}

.stack-layer__grip span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.stack-layer__identity {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 16px 14px 16px 42px;
}

.stack-layer h2 {
    margin: 0 0 4px;
    color: inherit;
    font-family: var(--body);
    font-size: clamp(1rem, 1.3vw, 1.35rem);
    letter-spacing: -0.025em;
}

.stack-layer__identity > strong {
    font-size: 0.96rem;
    font-variant-numeric: tabular-nums;
}

.stack-layer__identity > strong span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.layer-switch {
    display: inline-grid;
    grid-template-columns: 38px auto;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 10px 5px 6px;
    gap: 7px;
    border-radius: 5px;
    background: var(--paper-light);
    box-shadow: 0 3px 8px rgba(7, 27, 59, 0.17);
    color: var(--navy);
    cursor: pointer;
}

.layer-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.layer-switch > span[aria-hidden="true"] {
    position: relative;
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: #abb5c1;
    transition: background 180ms ease;
}

.layer-switch > span[aria-hidden="true"]::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(7, 27, 59, 0.22);
    content: "";
    transition: transform 220ms var(--ease-out);
}

.layer-switch input:checked + span {
    background: var(--sage);
}

.layer-switch input:checked + span::after {
    transform: translateX(18px);
}

.layer-switch input:focus-visible + span {
    outline: 3px solid var(--marigold);
    outline-offset: 3px;
}

.layer-switch b {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stack-layer__screen {
    min-width: 0;
    height: 104px;
    margin: 12px 24px 12px 0;
    overflow: hidden;
    border: 2px solid rgba(7, 27, 59, 0.78);
    background: var(--paper-light);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.28), 0 5px 12px rgba(7, 27, 59, 0.2);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.stack-layer__screen img {
    width: 100%;
    height: 100%;
    min-height: 100px;
    object-fit: cover;
    object-position: center top;
}

.module-drawer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 72px;
    padding: 12px 22px;
    gap: 22px;
    border: 1px solid rgba(7, 27, 59, 0.55);
    background: linear-gradient(90deg, var(--coral) 0 7px, var(--paper-light) 7px calc(100% - 7px), var(--marigold) calc(100% - 7px));
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.module-drawer > div:first-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.module-drawer strong {
    color: var(--navy);
    font-family: var(--display);
    font-size: 1.25rem;
}

.module-drawer span {
    color: var(--muted);
    font-size: 0.75rem;
}

.module-drawer__toggle {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    border: 1px dashed var(--cobalt-dark);
    background: transparent;
    color: var(--cobalt-dark);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 800;
}

.module-drawer__toggle svg {
    width: 22px;
}

.module-drawer__mobile {
    display: none;
}

.module-drawer__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px;
    gap: 0 12px;
    border: 1px solid var(--navy);
    background: var(--paper-light);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.module-drawer__options label {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    padding: 10px 9px;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.module-drawer__options label:last-child {
    border-bottom: 0;
}

.module-drawer__options input {
    width: 18px;
    height: 18px;
    accent-color: var(--sage);
}

.module-drawer__options strong {
    font-family: var(--body);
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
}

.stack-total-wrap {
    position: absolute;
    z-index: 10;
    right: 18px;
    top: 50%;
    width: clamp(140px, 10vw, 166px);
    transform: translateY(-50%);
}

.stack-connector {
    position: absolute;
    z-index: -1;
    top: 38px;
    right: calc(100% - 4px);
    width: 58px;
    height: calc(100% - 76px);
    border: 2px solid var(--navy);
    border-right: 0;
}

.stack-connector::before,
.stack-connector::after {
    position: absolute;
    right: -8px;
    width: 10px;
    height: 2px;
    background: var(--navy);
    content: "";
}

.stack-connector::before {
    top: -2px;
}

.stack-connector::after {
    bottom: -2px;
}

.stack-total-registration {
    position: absolute;
    z-index: -1;
    inset: 7px -7px -7px 7px;
    background: var(--coral);
    clip-path: polygon(10px 0, 26px 0, 31px 6px, 38px 0, calc(100% - 38px) 0, calc(100% - 31px) 6px, calc(100% - 26px) 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.stack-total {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 30px 18px 24px;
    background: var(--navy);
    box-shadow: var(--shadow-2);
    color: #fff;
    text-align: center;
    clip-path: polygon(10px 0, 26px 0, 31px 6px, 38px 0, calc(100% - 38px) 0, calc(100% - 31px) 6px, calc(100% - 26px) 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.stack-total > span {
    display: block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stack-total > strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stack-total > p {
    margin: 12px 0 0;
    color: #dfe7f4;
    font-size: 0.7rem;
    line-height: 1.45;
}

.stack-total__rule {
    height: 1px;
    margin: 19px 0 8px;
    background: rgba(255, 255, 255, 0.45);
}

.stack-total .ticket-button {
    width: 100%;
    min-height: 64px;
    margin-top: 22px;
    padding: 10px 8px;
    background: #fff;
    box-shadow: none;
    color: var(--navy);
    font-size: 0.72rem;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
    .hero .stack-builder__layers {
        animation: stack-arrival 820ms var(--ease-out) both;
    }

    .hero .stack-total {
        animation: total-arrival 980ms 120ms var(--ease-out) both;
    }
}

@keyframes stack-arrival {
    from {
        filter: blur(4px) drop-shadow(0 5px 8px rgba(7, 27, 59, 0.08));
        clip-path: inset(0 0 0 16%);
        transform: translateX(26px);
    }
    to {
        filter: blur(0) drop-shadow(0 16px 22px rgba(7, 27, 59, 0.16));
        clip-path: inset(-30px);
        transform: translateX(0);
    }
}

@keyframes total-arrival {
    from {
        filter: blur(3px);
        opacity: 0.5;
        transform: translateX(30px);
    }
    to {
        filter: blur(0);
        opacity: 1;
        transform: translateX(0);
    }
}

.module-gallery {
    padding-block: 34px 96px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.section-heading p {
    max-width: 70ch;
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading--split > div {
    max-width: 760px;
}

.gallery-stage {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    border: 1px solid var(--navy);
    background: var(--paper-light);
    box-shadow: var(--shadow-1);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.gallery-stage__tabs {
    display: flex;
    flex-direction: column;
    padding-block: 12px;
    border-right: 1px solid var(--navy);
    background: var(--paper-deep);
}

.gallery-stage__tabs button {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 62px;
    align-items: center;
    padding: 10px 18px;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
}

.gallery-stage__tabs button:last-child {
    border-bottom: 0;
}

.gallery-stage__tabs button[aria-selected="true"] {
    background: var(--navy);
    color: #fff;
}

.gallery-stage__tabs button:hover:not([aria-selected="true"]) {
    background: var(--paper-light);
}

.gallery-stage__tabs span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    font-weight: 800;
}

.gallery-stage__tabs span img {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    object-fit: contain;
}

.gallery-stage__tabs strong {
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

.gallery-stage__panel {
    --layer: var(--cobalt);
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
    min-width: 0;
    background: var(--layer);
}

.gallery-stage__panel figure {
    position: relative;
    align-self: start;
    min-width: 0;
    margin: 22px;
    overflow: hidden;
    border: 2px solid var(--navy);
    background: #fff;
    box-shadow: 0 7px 16px rgba(7, 27, 59, 0.2);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.gallery-stage__panel img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top;
}

.gallery-stage__panel figcaption,
.module-ledger figcaption {
    padding: 7px 12px;
    background: var(--navy);
    color: #fff;
    font-size: 0.67rem;
}

.gallery-stage__panel > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 34px 34px 16px;
    color: var(--layer-text, #fff);
}

.gallery-stage__panel > div > span {
    order: 2;
    margin: -4px 0 12px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.gallery-stage__panel h3 {
    order: 1;
    margin-bottom: 14px;
    color: inherit;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.gallery-stage__panel p {
    order: 3;
    font-size: 0.92rem;
}

.gallery-stage__panel ul {
    order: 4;
    padding: 0;
    list-style: none;
}

.gallery-stage__panel li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
    font-size: 0.78rem;
}

.gallery-stage__panel li::before {
    position: absolute;
    top: 0.64em;
    left: 0;
    width: 9px;
    height: 2px;
    background: currentColor;
    content: "";
}

.text-link {
    order: 5;
    width: fit-content;
    margin-top: 10px;
    font-weight: 800;
}

.bundle-section,
.pricing-bundles {
    padding-block: 90px;
    background: var(--navy);
    color: #fff;
}

.bundle-section .section-heading h2,
.pricing-bundles .section-heading h2 {
    color: #fff;
}

.bundle-section .section-heading p,
.pricing-bundles .section-heading p {
    color: #c8d3e2;
}

.bundle-section .outline-button {
    border-color: #fff;
    color: #fff;
}

.bundle-stack {
    display: grid;
    gap: 12px;
}

.bundle-ticket {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 116px;
    padding: 22px 28px;
    gap: 34px;
    background: var(--paper-light);
    color: var(--ink);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(50% - 9px), calc(100% - 6px) 50%, 100% calc(50% + 9px), 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 calc(50% + 9px), 6px 50%, 0 calc(50% - 9px), 0 10px);
}

.bundle-ticket h3 {
    margin-bottom: 4px;
    font-size: 1.12rem;
}

.bundle-ticket p {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.82rem;
}

.bundle-ticket span {
    color: var(--cobalt-dark);
    font-size: 0.7rem;
    font-weight: 700;
}

.bundle-ticket small {
    display: block;
    margin-top: 5px;
    color: var(--sage-dark);
    font-size: 0.68rem;
    font-weight: 800;
}

.bundle-ticket > strong {
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

.bundle-ticket__price {
    display: grid;
    min-width: 110px;
    justify-items: end;
    line-height: 1.05;
}

.bundle-ticket__price del {
    color: var(--muted);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.bundle-ticket__price strong {
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

.bundle-ticket__price span {
    margin-top: 3px;
    color: var(--sage-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bundle-ticket > a {
    font-size: 0.77rem;
    font-weight: 800;
}

.closing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 92px;
    gap: 64px;
}

.closing-cta > div {
    max-width: 760px;
}

.closing-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(2.5rem, 4vw, 4.6rem);
}

.closing-cta p {
    max-width: 65ch;
    margin-bottom: 0;
    color: var(--muted);
}

.closing-cta__actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 12px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 68px 0 34px;
    background: #04132d;
    color: #fff;
}

.site-footer__stack {
    position: absolute;
    right: 6vw;
    bottom: -30px;
    width: 280px;
    height: 200px;
    opacity: 0.28;
}

.site-footer__stack span {
    position: absolute;
    right: 0;
    width: 250px;
    height: 54px;
    border: 1px solid #fff;
    background: var(--cobalt);
    clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
    transform: rotate(-7deg);
}

.site-footer__stack span:nth-child(2) {
    top: 48px;
    right: 20px;
    background: var(--sage);
    transform: rotate(2deg);
}

.site-footer__stack span:nth-child(3) {
    top: 98px;
    right: 2px;
    background: var(--marigold);
    transform: rotate(-2deg);
}

.site-footer__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(1440px, calc(100% - 96px));
    margin-inline: auto;
    gap: 46px;
}

.wordmark--footer {
    gap: 10px;
    color: #fff;
}

.wordmark--footer > img {
    width: 44px;
    height: 44px;
}

.wordmark--footer > span {
    font-size: 1.65rem;
    letter-spacing: -0.045em;
}

.site-footer__inner > div p {
    max-width: 440px;
    margin: 14px 0 0;
    color: #b9c7da;
}

.site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-content: start;
    gap: 10px 32px;
}

.site-footer nav a {
    font-size: 0.86rem;
    font-weight: 700;
}

.site-footer__legal {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #93a6c1;
    font-size: 0.72rem;
}

.page-hero {
    display: flex;
    min-height: 450px;
    align-items: end;
    justify-content: space-between;
    padding: 90px max(48px, calc((100vw - 1440px) / 2)) 72px;
    gap: 80px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-deep);
}

.page-hero > div {
    max-width: 940px;
}

.page-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3.8rem, 7vw, 6rem);
}

.page-hero p {
    max-width: 68ch;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.page-hero--pricing {
    background: var(--marigold);
}

.beta-pricing-summary {
    display: grid;
    max-width: 720px;
    margin-top: 28px;
    padding: 16px 18px;
    gap: 2px;
    border: 1px solid rgba(7, 27, 59, 0.38);
    background: rgba(255, 250, 240, 0.58);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.beta-pricing-summary strong {
    color: var(--navy);
    font-size: 1rem;
}

.beta-pricing-summary span {
    color: var(--ink);
    font-size: 0.78rem;
}

.page-hero--about {
    align-items: center;
    background: var(--coral);
}

.page-hero--contact {
    min-height: 390px;
    background: var(--sage);
}

.page-hero--feedback {
    min-height: 390px;
    background: var(--cobalt-dark);
}

.page-hero--buy {
    min-height: 390px;
    background: var(--navy);
}

.page-hero--buy .outline-button {
    border-color: var(--paper-light);
    color: var(--paper-light);
}

.page-hero--legal {
    min-height: 390px;
    background: var(--sage);
}

.legal-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding-bottom: 7px;
    border-bottom: 2px dashed rgba(7, 27, 59, 0.42);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero--contact h1,
.page-hero--contact p,
.page-hero--feedback h1,
.page-hero--feedback p,
.page-hero--buy h1,
.page-hero--buy p {
    color: #fff;
}

.legal-document {
    max-width: 960px;
    padding-block: 80px 120px;
}

.legal-document__date {
    margin: 0 0 48px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-document > section {
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.legal-document > section:first-of-type {
    border-top: 3px solid var(--navy);
}

.legal-document h2 {
    margin-bottom: 14px;
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.legal-document p,
.legal-document li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-document section p:last-child,
.legal-document section ul:last-child {
    margin-bottom: 0;
}

.legal-document ul {
    display: grid;
    margin: 18px 0 0;
    padding-left: 22px;
    gap: 10px;
}

.legal-document a:not(.outline-button),
.form-footnote a {
    color: var(--cobalt-dark);
    font-weight: 750;
    text-underline-offset: 3px;
}

.legal-callout {
    margin-top: 42px;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--navy);
    background: var(--paper-deep);
    box-shadow: var(--shadow-1);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.legal-callout p {
    max-width: 70ch;
}

.module-ledger {
    padding-block: 84px 110px;
}

.module-ledger__row {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    min-height: 470px;
    margin-bottom: 28px;
    border: 1px solid var(--navy);
    background: var(--layer, var(--cobalt));
    color: var(--layer-text, #fff);
    box-shadow: var(--shadow-1);
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(50% - 12px), calc(100% - 7px) 50%, 100% calc(50% + 12px), 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.module-ledger__row:nth-child(even) {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.module-ledger__row:nth-child(even) .module-ledger__copy {
    order: 2;
}

.module-ledger__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 70px);
    background: var(--logo-stage);
    color: var(--navy);
}

.module-ledger__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.module-ledger__meta strong {
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

.module-ledger__price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.module-ledger__price del {
    color: var(--muted);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.module-ledger h2 {
    min-width: 0;
    margin: 0;
    color: inherit;
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.02;
}

.module-ledger__title {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    margin-bottom: 18px;
    gap: 14px;
}

.module-ledger__title img {
    width: clamp(88px, 7vw, 110px);
    height: clamp(88px, 7vw, 110px);
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 7px rgba(7, 27, 59, 0.26));
}

.module-ledger__copy p {
    font-size: 0.96rem;
}

.module-ledger__copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    gap: 9px 20px;
    list-style: none;
}

.module-ledger__copy li {
    position: relative;
    padding-left: 18px;
    font-size: 0.78rem;
}

.module-ledger__copy li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 9px;
    height: 2px;
    background: currentColor;
    content: "";
}

.module-ledger__status {
    width: fit-content;
    margin-top: 12px;
    padding: 8px 12px;
    border: 1px solid currentColor;
    font-size: 0.73rem;
    font-weight: 800;
}

.module-ledger figure {
    min-width: 0;
    margin: clamp(20px, 3vw, 38px);
    align-self: center;
    overflow: hidden;
    border: 2px solid var(--navy);
    background: #fff;
    box-shadow: 0 10px 22px rgba(7, 27, 59, 0.2);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.module-ledger figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top;
}

.pricing-ledger {
    padding-block: 86px 110px;
}

.pricing-tier {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    margin-bottom: 18px;
    border: 1px solid var(--navy);
    background: var(--paper-light);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.pricing-tier > header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: var(--navy);
    color: #fff;
}

.pricing-tier:nth-of-type(3) > header {
    background: var(--sage-dark);
}

.pricing-tier:nth-of-type(4) > header {
    background: var(--marigold);
    color: var(--navy);
}

.pricing-tier h3 {
    margin-bottom: 12px;
    color: inherit;
    font-size: 1.2rem;
}

.pricing-tier header strong {
    font-family: var(--display);
    font-size: 2.7rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-tier header del {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.pricing-tier:nth-of-type(4) header del {
    color: rgba(7, 27, 59, 0.64);
}

.pricing-tier header span {
    margin-top: 8px;
    font-size: 0.66rem;
}

.pricing-tier header small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}

.pricing-tier:nth-of-type(4) header small {
    color: rgba(7, 27, 59, 0.72);
}

.pricing-tier > div {
    display: grid;
}

.pricing-tier > div > a,
.pricing-tier__upcoming {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 84px;
    padding: 16px 24px;
    gap: 26px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

.pricing-tier > div > :last-child {
    border-bottom: 0;
}

.pricing-tier > div > a:hover {
    background: var(--paper-deep);
}

.pricing-tier > div span {
    color: var(--navy);
    font-weight: 800;
}

.pricing-tier > div small {
    color: var(--muted);
}

.pricing-tier > div b {
    color: var(--cobalt-dark);
    font-size: 0.73rem;
}

.pricing-tier__upcoming {
    background: var(--paper-deep);
}

.pricing-tier__upcoming b {
    color: var(--sage-dark);
}

.pricing-note {
    padding-block: 90px 110px;
}

.pricing-note h2 {
    margin-bottom: 36px;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.pricing-note ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    gap: 42px;
    list-style: none;
}

.pricing-note li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pricing-note li > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    background: var(--cobalt);
    color: #fff;
    clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
    font-weight: 800;
}

.pricing-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
}

.pricing-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    padding-block: 100px;
    gap: clamp(60px, 9vw, 150px);
}

.about-story__lead h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.about-story__lead p {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-principles {
    margin: 0;
}

.about-principles > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 24px 0;
    gap: 30px;
    border-top: 1px solid var(--line);
}

.about-principles > div:last-child {
    border-bottom: 1px solid var(--line);
}

.about-principles dt {
    color: var(--navy);
    font-weight: 800;
}

.about-principles dd {
    margin: 0;
    color: var(--muted);
}

.about-boundary {
    padding-block: 100px;
    background: var(--cobalt-dark);
    color: #fff;
}

.about-boundary .section-shell {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr auto;
    align-items: center;
    gap: 60px;
}

.about-boundary h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.about-boundary p {
    margin: 0;
    color: #dbe7f7;
}

.license-request {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    padding-block: 90px 120px;
    gap: clamp(50px, 8vw, 130px);
}

.license-request aside {
    align-self: start;
    padding: 34px;
    border: 1px solid var(--navy);
    background: var(--marigold);
    box-shadow: var(--shadow-1);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.license-request aside h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.license-request aside p,
.license-request aside li {
    font-size: 0.86rem;
}

.license-request aside ul {
    padding-left: 20px;
}

.license-form {
    min-width: 0;
}

.license-form fieldset {
    margin: 0 0 34px;
    padding: 0;
    border: 0;
}

.license-form legend {
    width: 100%;
    margin-bottom: 6px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--navy);
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.license-form fieldset > p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.8rem;
}

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

.license-form label:not(.choice-row):not(.honeypot) {
    display: grid;
    gap: 7px;
}

.license-form label > span {
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
}

.license-form label small {
    color: var(--muted);
    font-weight: 500;
}

.license-form input[type="text"],
.license-form input[type="email"],
.license-form input[type="tel"],
.license-form select,
.license-form textarea {
    width: 100%;
    border: 1px solid #8390a2;
    border-radius: 0;
    background: var(--paper-light);
    box-shadow: inset 0 2px 4px rgba(7, 27, 59, 0.05);
}

.license-form input[type="text"],
.license-form input[type="email"],
.license-form input[type="tel"] {
    min-height: 50px;
    padding: 10px 13px;
}

.license-form select {
    min-height: 50px;
    padding: 10px 38px 10px 13px;
}

.license-form textarea {
    min-height: 130px;
    padding: 13px;
    resize: vertical;
}

.license-form input:focus,
.license-form select:focus,
.license-form textarea:focus {
    border-color: var(--cobalt);
    outline: 3px solid rgba(17, 102, 201, 0.2);
}

.feedback-request {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
    padding-block: 90px 120px;
    gap: clamp(50px, 8vw, 130px);
}

.feedback-request aside {
    align-self: start;
    padding: 34px;
    border: 1px solid var(--navy);
    background: var(--cobalt);
    box-shadow: var(--shadow-1);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
    color: #fff;
}

.feedback-request aside h2,
.feedback-request aside p {
    color: #fff;
}

.feedback-request aside h2 {
    margin-top: 20px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.feedback-request aside li,
.feedback-request aside p {
    font-size: 0.86rem;
}

.feedback-ticket {
    display: inline-block;
    padding-bottom: 7px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.feedback-form fieldset > label {
    margin-top: 18px;
}

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

.choice-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    min-height: 76px;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
    border: 1px solid var(--line);
    background: var(--paper-light);
    cursor: pointer;
}

.choice-row:hover {
    border-color: var(--cobalt);
}

.choice-row:has(input:checked) {
    border-color: var(--sage-dark);
    background: #e4f2e9;
}

.choice-row input {
    width: 18px;
    height: 18px;
    accent-color: var(--sage-dark);
}

.choice-row > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.choice-row b {
    color: var(--navy);
    font-size: 0.82rem;
}

.choice-row small {
    font-size: 0.65rem;
    line-height: 1.35;
}

.choice-row > strong {
    color: var(--navy);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.choice-price {
    display: grid;
    justify-items: end;
    line-height: 1.25;
}

.choice-price del {
    color: var(--muted);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.choice-price strong {
    color: var(--navy);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.choice-grid--bundles {
    grid-template-columns: 1fr;
}

.starter-choice {
    border: 1px solid var(--line);
    background: var(--paper-light);
}

.starter-choice > .choice-row {
    border: 0;
}

.starter-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 14px 16px 48px;
    gap: 10px;
}

.starter-options select {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #8390a2;
    border-radius: 0;
    background: #fff;
}

.license-form > .ticket-button {
    margin-top: 26px;
}

.form-footnote {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.68rem;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-message {
    margin-bottom: 28px;
    padding: 16px 18px;
    border: 1px solid currentColor;
    font-weight: 700;
}

.form-message--success {
    background: #e4f2e9;
    color: #135b42;
}

.form-message--error {
    background: #fae6e2;
    color: #842f25;
}

.checkout-workbench {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    padding-block: 90px 120px;
    gap: clamp(44px, 7vw, 110px);
}

.checkout-summary {
    position: sticky;
    top: 28px;
    padding: 38px 34px;
    background: var(--navy);
    box-shadow: var(--shadow-2);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
    color: #fff;
}

.checkout-summary > span {
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--coral);
    color: #c7d4e5;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-summary h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.checkout-summary__price {
    display: grid;
    margin-bottom: 22px;
    gap: 3px;
}

.checkout-summary__price del {
    color: #b9c7da;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.checkout-summary__price > strong {
    color: var(--marigold);
    font-size: 2rem;
    font-variant-numeric: tabular-nums;
}

.checkout-summary__price > strong small {
    color: #c7d4e5;
    font-size: 0.72rem;
}

.checkout-summary__price > span {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.checkout-summary > p,
.checkout-summary li {
    color: #dbe5f1;
    font-size: 0.88rem;
}

.checkout-summary ul {
    margin: 24px 0;
    padding-left: 20px;
}

.checkout-summary__assurance {
    display: grid;
    margin-top: 30px;
    padding-top: 22px;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-summary__assurance b {
    color: #fff;
}

.checkout-summary__assurance span {
    color: #b9c7da;
    font-size: 0.8rem;
}

.checkout-form {
    padding-top: 10px;
}

.checkout-form__wide {
    grid-column: 1 / -1;
}

.checkout-form legend small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
}

.checkout-starter-options {
    padding: 18px 0 0;
}

.checkout-help {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
    align-items: center;
    padding-block: 64px 80px;
    gap: 34px;
    border-top: 1px solid var(--line);
}

.checkout-help h2,
.checkout-help p {
    margin: 0;
}

.checkout-help p {
    color: var(--muted);
}

.purchase-picker {
    padding-block: 84px 110px;
}

.purchase-picker__list {
    border-top: 1px solid var(--navy);
}

.purchase-picker__list > a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 22px 18px;
    gap: 28px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background 180ms var(--ease-out);
}

.purchase-picker__price {
    display: grid;
    justify-items: end;
    gap: 2px;
}

.purchase-picker__price del {
    color: var(--muted);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.purchase-picker__list > a:hover {
    background: var(--paper-light);
}

.purchase-picker__list > a > span:not(.purchase-picker__price) {
    display: grid;
    gap: 4px;
    transition: transform 180ms var(--ease-out);
}

.purchase-picker__list > a:hover > span:not(.purchase-picker__price) {
    transform: translateX(6px);
}

.purchase-picker__list b,
.purchase-picker__list strong {
    color: var(--navy);
}

.purchase-picker__list small {
    max-width: 72ch;
    color: var(--muted);
}

.purchase-picker__list strong {
    font-variant-numeric: tabular-nums;
}

.deal-price {
    --deal-slash: var(--coral);
}

.deal-price del {
    position: relative;
    display: inline-block;
    width: max-content;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    text-decoration: none;
}

.deal-price del::after {
    position: absolute;
    top: 50%;
    right: -0.14em;
    left: -0.14em;
    height: 3px;
    border-radius: 999px;
    background: var(--deal-slash);
    content: "";
    transform: rotate(-8deg);
    transform-origin: center;
}

.deal-price strong {
    font-variant-numeric: tabular-nums;
}

.deal-price .deal-price__badge {
    display: inline-flex;
    width: max-content;
    margin-top: 6px;
    padding: 5px 8px;
    align-items: center;
    background: var(--sage-dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.deal-price--inverse {
    --deal-slash: var(--marigold);
}

.deal-price--inverse del {
    color: rgba(255, 255, 255, 0.9);
}

.deal-price--inverse .deal-price__badge {
    background: var(--marigold);
    color: var(--navy);
}

.pricing-tier__price {
    display: grid;
    justify-items: start;
    line-height: 1.05;
}

.pricing-tier__price del {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.pricing-tier__price strong {
    font-size: 3.2rem;
}

.pricing-tier__price .deal-price__badge {
    margin-top: 10px;
}

.pricing-tier:nth-of-type(4) .deal-price--inverse {
    --deal-slash: var(--navy);
}

.pricing-tier:nth-of-type(4) .deal-price--inverse del {
    color: rgba(7, 27, 59, 0.82);
}

.pricing-tier:nth-of-type(4) .deal-price--inverse .deal-price__badge {
    background: var(--navy);
    color: #fff;
}

.bundle-ticket__price.deal-price {
    min-width: 150px;
}

.bundle-ticket__price.deal-price del {
    font-size: 1rem;
}

.bundle-ticket__price.deal-price strong {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.module-ledger__price.deal-price,
.purchase-picker__price.deal-price,
.choice-price.deal-price {
    display: grid;
    justify-items: end;
    gap: 3px;
}

.module-ledger__price.deal-price del,
.purchase-picker__price.deal-price del {
    font-size: 0.78rem;
}

.module-ledger__price.deal-price strong {
    font-size: 1.15rem;
}

.purchase-picker__price.deal-price strong {
    font-size: 1.15rem;
}

.choice-price.deal-price del {
    font-size: 0.78rem;
}

.choice-price.deal-price strong {
    font-size: 1rem;
}

.deal-price--compact .deal-price__badge {
    padding: 4px 6px;
    font-size: 0.78rem;
}

.checkout-summary__price.deal-price {
    gap: 7px;
}

.checkout-summary__price.deal-price del {
    font-size: 1rem;
}

.checkout-summary__price.deal-price > strong {
    font-size: clamp(3.2rem, 4.5vw, 4.3rem);
    line-height: 1;
}

.checkout-summary__price.deal-price .deal-price__badge {
    margin-top: 4px;
}

.content-page {
    min-height: 60vh;
    padding-block: 90px 120px;
}

.content-page h1 {
    font-size: clamp(3.5rem, 7vw, 5.6rem);
}

.content-page__body {
    max-width: 72ch;
}

.support-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.support-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(34vw, 520px);
    height: 12px;
    background: linear-gradient(90deg, var(--cobalt) 0 38%, var(--coral) 38% 72%, var(--marigold) 72%);
    content: "";
}

.support-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    align-items: end;
    min-height: 430px;
    padding-block: 82px 74px;
    gap: clamp(54px, 8vw, 130px);
}

.support-hero__copy h1 {
    max-width: 12ch;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(3.4rem, 5.3vw, 5.8rem);
}

.support-hero__copy p {
    max-width: 62ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
}

.support-search {
    position: relative;
    padding: 26px;
    background: var(--paper-light);
    color: var(--ink);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.support-search::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--marigold);
    content: "";
}

.support-search label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.support-search__field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    border: 2px solid var(--navy);
    background: #fff;
}

.support-search__field:focus-within {
    outline: 3px solid var(--marigold);
    outline-offset: 4px;
}

.support-search__field input {
    min-width: 0;
    padding: 14px 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy);
    font-size: 1rem;
}

.support-search__field input::placeholder {
    color: var(--muted);
    opacity: 1;
}

.support-search__field > button {
    display: grid;
    min-width: 108px;
    place-items: center;
    border: 0;
    background: var(--cobalt-dark);
    color: #fff;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 800;
}

.support-search__field > button:hover {
    background: var(--navy);
}

.support-search > p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.support-start {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    align-items: stretch;
    padding-block: 58px 74px;
    gap: 42px;
}

.support-start__heading {
    align-self: center;
}

.support-start__heading h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.support-start__heading p {
    max-width: 34ch;
    margin: 0;
    color: var(--muted);
}

.support-start__route {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--navy);
}

.support-start__route > a {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 210px;
    padding: 24px 26px 24px 88px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    transition: background 180ms var(--ease-out);
}

.support-start__route > a:last-child {
    border-right: 0;
}

.support-start__route > a:hover {
    background: var(--paper-light);
}

.support-start__route > a > span {
    position: absolute;
    top: 25px;
    left: 16px;
    display: grid;
    width: auto;
    min-width: 44px;
    height: 30px;
    padding-inline: 8px;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

.support-start__route strong {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1rem;
}

.support-start__route small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.support-manual {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    padding-bottom: 110px;
    gap: clamp(42px, 6vw, 92px);
}

.support-manual__index {
    position: sticky;
    top: 24px;
    display: grid;
    border-top: 6px solid var(--navy);
    background: var(--paper-deep);
}

.support-manual__index > strong {
    padding: 18px 20px 15px;
    color: var(--navy);
    font-size: 0.84rem;
}

.support-manual__index > button {
    min-height: 46px;
    padding: 10px 20px;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: left;
}

.support-manual__index > button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.support-manual__index > button.is-active {
    background: var(--navy);
    color: #fff;
}

.support-manual__help {
    display: grid;
    padding: 18px 20px 20px;
    border-top: 1px solid var(--line);
    gap: 5px;
}

.support-manual__help span {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
}

.support-manual__help a {
    color: var(--cobalt-dark);
    font-size: 0.74rem;
    font-weight: 700;
}

.support-manual__pages {
    min-width: 0;
}

.support-group {
    padding: 0 0 78px;
    scroll-margin-top: 28px;
}

.support-group + .support-group {
    padding-top: 70px;
    border-top: 1px solid var(--line);
}

.support-group__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 24px;
}

.support-group__heading h2 {
    margin-bottom: 9px;
    font-size: clamp(2.25rem, 4vw, 4.25rem);
}

.support-group__heading p {
    max-width: 64ch;
    margin: 0;
    color: var(--muted);
}

.support-group__heading > a {
    flex: 0 0 auto;
    color: var(--cobalt-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.support-module-list {
    border-top: 2px solid var(--navy);
}

.support-module {
    --support-accent: var(--cobalt);
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 150px 92px;
    align-items: center;
    min-height: 116px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    transition: background 180ms var(--ease-out);
}

.support-module::before {
    position: absolute;
    top: 18px;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--support-accent);
    content: "";
}

.support-module:hover {
    background: var(--paper-light);
}

.support-module--cobalt { --support-accent: var(--cobalt); }
.support-module--coral { --support-accent: var(--coral-dark); }
.support-module--sage { --support-accent: var(--sage); }
.support-module--teal { --support-accent: var(--teal); }
.support-module--violet { --support-accent: var(--violet); }
.support-module--steel { --support-accent: var(--steel); }
.support-module--marigold { --support-accent: #a96e00; }
.support-module--rose { --support-accent: var(--rose); }
.support-module--navy { --support-accent: var(--copper, #9a5a2f); }

.support-module__mark {
    display: grid;
    width: 70px;
    height: 70px;
    margin-left: 16px;
    place-items: center;
    background: var(--logo-stage);
}

.support-module__mark img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.support-module__copy {
    display: grid;
    padding: 18px 24px;
    gap: 7px;
}

.support-module__copy strong {
    color: var(--navy);
    font-size: 1.05rem;
}

.support-module__copy small {
    max-width: 70ch;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.support-module__meta {
    display: grid;
    justify-items: start;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    gap: 5px;
}

.support-module__meta b {
    padding: 3px 6px;
    background: var(--paper-deep);
    color: var(--navy);
    font-size: 0.62rem;
}

.support-module__arrow {
    color: var(--cobalt-dark);
    font-size: 0.72rem;
    font-weight: 800;
    transition: transform 180ms var(--ease-out);
}

.support-module:hover .support-module__arrow {
    transform: translateX(5px);
}

.support-guide-list {
    border-top: 2px solid var(--navy);
}

.support-guide-list > a {
    display: grid;
    grid-template-columns: 150px minmax(200px, 0.7fr) minmax(280px, 1.3fr) 110px;
    align-items: baseline;
    min-height: 94px;
    padding: 20px 12px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    transition: background 180ms var(--ease-out);
}

.support-guide-list > a:hover {
    background: var(--paper-light);
}

.support-guide-list__label,
.support-guide-list > a > span:last-child {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.support-guide-list strong {
    color: var(--navy);
    font-size: 0.92rem;
}

.support-guide-list small {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.support-empty {
    padding: 76px 34px;
    border-block: 1px solid var(--navy);
    text-align: center;
}

.support-empty h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.support-empty p {
    max-width: 56ch;
    margin: 0 auto 24px;
    color: var(--muted);
}

.support-close {
    background: var(--navy);
    color: #fff;
}

.support-close > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 70px;
    gap: 34px;
}

.support-close h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.support-close p {
    max-width: 66ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.support-breadcrumbs {
    display: flex;
    align-items: center;
    min-height: 58px;
    gap: 9px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.support-breadcrumbs a {
    color: var(--cobalt-dark);
}

.support-article-hero {
    --support-accent: var(--cobalt);
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.support-article-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(34vw, 520px);
    height: 12px;
    background: var(--support-accent);
    content: "";
}

.support-article-hero--cobalt { --support-accent: var(--cobalt); }
.support-article-hero--coral { --support-accent: var(--coral); }
.support-article-hero--sage { --support-accent: var(--sage); }
.support-article-hero--teal { --support-accent: var(--teal); }
.support-article-hero--violet { --support-accent: var(--violet); }
.support-article-hero--steel { --support-accent: var(--steel); }
.support-article-hero--marigold { --support-accent: var(--marigold); }
.support-article-hero--rose { --support-accent: var(--rose); }
.support-article-hero--navy { --support-accent: #b86d34; }

.support-article-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    min-height: 410px;
    padding-block: 64px 70px;
    gap: 72px;
}

.support-article-hero__copy h1 {
    max-width: 15ch;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(3.2rem, 5.7vw, 5.8rem);
}

.support-article-hero__copy > p {
    max-width: 68ch;
    color: rgba(255, 255, 255, 0.86);
}

.support-article-hero__copy dl {
    display: flex;
    margin: 30px 0 0;
    gap: 30px;
}

.support-article-hero__copy dl > div {
    display: grid;
    gap: 2px;
}

.support-article-hero__copy dt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.64rem;
    font-weight: 800;
}

.support-article-hero__copy dd {
    margin: 0;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.support-article-hero__module {
    display: grid;
    justify-items: center;
    padding: 20px 20px 16px;
    background: var(--logo-stage);
    color: var(--navy);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.support-article-hero__module img {
    width: 190px;
    height: 190px;
    object-fit: contain;
}

.support-article-hero__module span {
    padding-top: 10px;
    border-top: 1px solid rgba(7, 27, 59, 0.22);
    font-size: 0.68rem;
    font-weight: 800;
}

.support-article-hero__manual {
    display: grid;
    width: 210px;
    min-height: 270px;
    align-content: space-between;
    padding: 24px;
    background: var(--paper-light);
    color: var(--navy);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.support-article-hero__manual span,
.support-article-hero__manual small {
    font-size: 0.66rem;
    font-weight: 800;
}

.support-article-hero__manual strong {
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.support-article {
    display: grid;
    grid-template-columns: 250px minmax(0, 820px);
    justify-content: center;
    align-items: start;
    padding-block: 76px 120px;
    gap: clamp(54px, 8vw, 110px);
}

.support-article__rail {
    position: sticky;
    top: 24px;
    display: grid;
    border-top: 5px solid var(--navy);
    background: var(--paper-deep);
}

.support-article__back {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--cobalt-dark);
    font-size: 0.74rem;
    font-weight: 800;
}

.support-article__rail nav,
.support-article__rail > div {
    display: grid;
    padding: 17px 18px;
    gap: 8px;
}

.support-article__rail nav {
    border-bottom: 1px solid var(--line);
}

.support-article__rail strong,
.support-article__rail span {
    color: var(--navy);
    font-size: 0.69rem;
    font-weight: 800;
}

.support-article__rail a:not(.support-article__back) {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}

.support-article__rail a:not(.support-article__back):hover {
    color: var(--cobalt-dark);
    text-decoration: underline;
}

.support-article__content {
    min-width: 0;
}

.support-article__lead {
    max-width: 70ch;
    margin-bottom: 42px;
    color: var(--navy);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.55;
}

.support-article__screenshot {
    margin: 0 0 64px;
    padding: 12px;
    background: var(--navy);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.support-article__screenshot img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
    background: var(--logo-stage);
}

.support-article__screenshot figcaption {
    padding: 9px 4px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.63rem;
}

.support-procedure {
    padding: 60px 0 18px;
    border-top: 1px solid var(--line);
    scroll-margin-top: 24px;
}

.support-procedure:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.support-procedure__heading {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    margin-bottom: 26px;
    gap: 16px;
}

.support-procedure__heading > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
}

.support-procedure h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.support-procedure__intro {
    max-width: 70ch;
    margin: -8px 0 24px 58px;
    color: var(--muted);
}

.support-command {
    position: relative;
    margin: 0 0 28px 58px;
}

.support-command pre {
    overflow-x: auto;
    margin: 0;
    padding: 20px 138px 20px 22px;
    background: var(--navy);
    color: #fff;
    font-size: 0.83rem;
    line-height: 1.7;
    scrollbar-color: var(--marigold) var(--navy-soft);
}

.support-command > button {
    position: absolute;
    top: 10px;
    right: 10px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--navy-soft);
    color: #fff;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 800;
}

.support-command > button:hover {
    background: var(--cobalt-dark);
}

.support-procedure ol {
    margin: 0 0 0 58px;
    padding: 0;
    list-style: none;
    counter-reset: support-step;
}

.support-procedure li {
    position: relative;
    padding: 0 0 26px 48px;
    counter-increment: support-step;
}

.support-procedure li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--cobalt-dark);
    content: counter(support-step, decimal-leading-zero);
    font-size: 0.72rem;
    font-weight: 800;
}

.support-procedure li::after {
    position: absolute;
    top: 25px;
    bottom: 0;
    left: 9px;
    width: 1px;
    background: var(--line);
    content: "";
}

.support-procedure li:last-child::after {
    display: none;
}

.support-procedure li > strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 0.95rem;
}

.support-procedure li p {
    max-width: 70ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.support-command--step {
    margin: 14px 0 0;
}

.support-command--step pre {
    padding: 16px 124px 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.65;
}

.support-note {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    margin: 8px 0 20px 58px;
    padding: 18px 20px;
    background: rgba(242, 183, 46, 0.24);
    color: var(--navy);
    gap: 18px;
}

.support-note strong {
    font-size: 0.72rem;
}

.support-note p {
    margin: 0;
    font-size: 0.83rem;
}

.support-related {
    margin-top: 68px;
    padding-top: 56px;
    border-top: 2px solid var(--navy);
}

.support-related h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.support-related > div {
    border-top: 1px solid var(--line);
}

.support-related a {
    display: grid;
    grid-template-columns: 140px 190px minmax(0, 1fr);
    padding: 20px 10px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background 180ms var(--ease-out);
}

.support-related a:hover {
    background: var(--paper-light);
}

.support-related span,
.support-related small {
    color: var(--muted);
    font-size: 0.7rem;
}

.support-related strong {
    color: var(--navy);
    font-size: 0.85rem;
}

.support-related small {
    line-height: 1.5;
}

@media (max-width: 1240px) {
    .site-header__inner,
    .site-footer__inner,
    .section-shell {
        width: min(100% - 56px, 1180px);
    }

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

    .hero__copy {
        padding: 82px 7vw 60px;
    }

    .hero h1 {
        max-width: 12ch;
    }

    .stack-builder {
        min-height: 680px;
        padding-left: 7vw;
    }

    .gallery-stage__panel {
        grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
    }

    .about-boundary .section-shell {
        grid-template-columns: 1fr 1fr;
    }

    .about-boundary .outline-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 920px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        min-height: 70px;
        gap: 18px;
    }

    .site-header__inner > .ticket-button {
        display: none;
    }

    .nav-toggle {
        display: grid;
        width: 46px;
        height: 46px;
        place-content: center;
        justify-self: end;
        gap: 5px;
        border: 1px solid var(--navy);
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle span:not(.screen-reader-text) {
        width: 20px;
        height: 2px;
        background: var(--navy);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        padding: 22px 28px;
        gap: 0;
        border-bottom: 1px solid var(--navy);
        background: var(--paper-light);
        box-shadow: var(--shadow-1);
    }

    .site-nav[data-open="true"] {
        display: flex;
    }

    .site-nav a {
        min-height: 48px;
        padding-block: 11px;
        border-bottom: 1px solid var(--line);
    }

    .proof-rail {
        max-width: 720px;
    }

    .stack-layer {
        grid-template-columns: minmax(160px, 0.36fr) minmax(260px, 0.64fr);
    }

    .gallery-stage {
        grid-template-columns: 1fr;
    }

    .gallery-stage__tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--navy);
    }

    .gallery-stage__tabs button {
        min-width: 180px;
        border-right: 1px solid var(--line);
    }

    .gallery-stage__panel {
        grid-template-columns: 1fr;
    }

    .gallery-stage__panel > div {
        padding: 10px 30px 34px;
    }

    .bundle-ticket {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .bundle-ticket > a {
        grid-column: 1 / -1;
    }

    .module-ledger__row,
    .module-ledger__row:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .module-ledger__row:nth-child(even) .module-ledger__copy {
        order: 0;
    }

    .pricing-tier {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .pricing-tier > div > a,
    .pricing-tier__upcoming {
        grid-template-columns: 1fr auto;
    }

    .pricing-tier > div small {
        grid-column: 1 / -1;
    }

    .pricing-note ol {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .license-request {
        grid-template-columns: 1fr;
    }

    .feedback-request {
        grid-template-columns: 1fr;
    }

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

    .checkout-summary {
        position: static;
    }

    .checkout-help {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-header__inner,
    .site-footer__inner,
    .section-shell {
        width: min(100% - 32px, 620px);
    }

    .beta-site-banner a {
        min-height: 58px;
        flex-wrap: wrap;
        padding: 9px 16px;
        gap: 1px 8px;
    }

    .beta-site-banner strong,
    .beta-site-banner span {
        flex-basis: 100%;
    }

    .beta-site-banner b {
        margin-top: 2px;
    }

    .hero {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .hero__copy {
        display: contents;
    }

    .hero h1 {
        order: 1;
        max-width: none;
        margin: 30px 20px 14px;
        font-size: clamp(2.8rem, 11vw, 3.35rem);
    }

    .hero__lede {
        order: 2;
        margin: 0 20px 20px;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero__actions {
        order: 3;
        margin: 0 20px 24px;
        gap: 10px;
    }

    .hero__actions a {
        min-width: 0;
        flex: 1 1 190px;
        padding-inline: 26px;
    }

    .proof-rail {
        order: 5;
        grid-template-columns: 1fr;
        margin: 0;
        padding: 38px 20px;
        gap: 16px;
        background: var(--paper-light);
    }

    .proof-rail > div,
    .proof-rail > div:first-child,
    .proof-rail > div:last-child {
        padding: 0 0 16px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-rail > div:last-child {
        border-bottom: 0;
    }

    .proof-rail dd {
        font-size: 0.78rem;
    }

    .stack-builder {
        order: 4;
        display: block;
        min-height: 0;
        padding: 18px 16px 0;
    }

    .stack-builder__layers {
        filter: none;
    }

    .stack-layer {
        grid-template-columns: 1fr;
        min-height: 0;
        width: 100% !important;
        transform: none !important;
    }

    .stack-layer:not(.is-primary) {
        display: none !important;
    }

    .stack-layer__identity {
        display: grid;
        grid-template-columns: 1fr auto;
        padding: 20px 22px 14px 44px;
    }

    .stack-layer h2 {
        grid-column: 1;
    }

    .stack-layer__identity > strong {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .layer-switch {
        display: none;
    }

    .stack-layer__screen {
        height: auto;
        margin: 0 14px 14px;
    }

    .stack-layer__screen img {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .module-drawer {
        grid-template-columns: 1fr;
        margin-top: 8px;
        padding: 14px 18px;
    }

    .module-drawer > div:first-child,
    .module-drawer__toggle {
        display: none;
    }

    .module-drawer__mobile {
        display: grid;
        gap: 5px;
    }

    .module-drawer__mobile span {
        color: var(--navy);
        font-size: 0.68rem;
        font-weight: 800;
    }

    .module-drawer__mobile select {
        width: 100%;
        min-height: 46px;
        padding: 8px 12px;
        border: 1px solid var(--navy);
        border-radius: 0;
        background: var(--paper-light);
        font-size: 0.8rem;
        font-weight: 700;
    }

    .module-drawer__mobile-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
    }

    .module-drawer__mobile-row button {
        min-width: 82px;
        border: 1px dashed var(--cobalt-dark);
        background: var(--paper-light);
        color: var(--cobalt-dark);
        cursor: pointer;
        font-size: 0.72rem;
        font-weight: 800;
    }

    .module-drawer__options {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: -10px;
        grid-column: 1;
    }

    .stack-total-wrap {
        position: sticky;
        right: auto;
        bottom: 0;
        top: auto;
        width: calc(100% + 32px);
        margin: 24px -16px 0;
        transform: none;
    }

    .stack-connector,
    .stack-total-registration {
        display: none;
    }

    .stack-total {
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
        padding: 18px 16px;
        align-items: center;
        gap: 5px 14px;
        text-align: left;
        clip-path: none;
    }

    .stack-total > span,
    .stack-total > strong,
    .stack-total > p {
        margin: 0;
    }

    .stack-total > span {
        grid-column: 1;
    }

    .stack-total > strong {
        grid-column: 2;
        grid-row: 1 / span 2;
        font-size: 2rem;
    }

    .stack-total__rule,
    .stack-total > p:nth-of-type(2) {
        display: none;
    }

    .stack-total .ticket-button {
        grid-column: 1 / -1;
        min-height: 50px;
        margin-top: 10px;
    }

    @media (prefers-reduced-motion: no-preference) {
        .hero .stack-total {
            animation: none;
        }
    }

    .module-gallery,
    .module-ledger,
    .pricing-ledger,
    .pricing-note,
    .about-story,
    .license-request,
    .checkout-workbench,
    .purchase-picker {
        padding-block: 62px 78px;
    }

    .section-heading--split,
    .closing-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-stage__tabs {
        display: flex;
        flex-direction: row;
    }

    .gallery-stage__panel figure {
        margin: 14px;
    }

    .bundle-section,
    .pricing-bundles {
        padding-block: 66px;
    }

    .bundle-ticket {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 16px;
    }

    .bundle-ticket__price.deal-price {
        justify-items: start;
    }

    .bundle-ticket > a {
        grid-column: 1;
    }

    .closing-cta {
        padding-block: 66px;
        gap: 26px;
    }

    .closing-cta .ticket-button {
        width: 100%;
    }

    .closing-cta__actions,
    .closing-cta__actions .outline-button {
        width: 100%;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer nav {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        padding: 64px 20px 52px;
        gap: 30px;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .module-ledger__copy {
        padding: 30px 24px;
    }

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

    .pricing-tier {
        grid-template-columns: 1fr;
    }

    .pricing-tier > div > a,
    .pricing-tier__upcoming {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .pricing-tier > div small,
    .pricing-tier > div b {
        grid-column: 1;
    }

    .about-principles > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-boundary {
        padding-block: 68px;
    }

    .about-boundary .section-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-boundary .outline-button {
        grid-column: 1;
    }

    .license-request aside {
        padding: 26px;
    }

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

    .starter-options {
        grid-template-columns: 1fr;
        padding-left: 48px;
    }

    .checkout-starter-options {
        padding-left: 0;
    }

    .checkout-form__wide {
        grid-column: 1;
    }

    .checkout-help {
        padding-block: 52px 64px;
    }

    .purchase-picker__list > a {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 920px) {
    .support-hero__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-block: 68px;
        gap: 42px;
    }

    .support-hero__copy h1 {
        max-width: 14ch;
    }

    .support-start {
        grid-template-columns: 1fr;
    }

    .support-start__heading p {
        max-width: 60ch;
    }

    .support-manual {
        grid-template-columns: 1fr;
    }

    .support-manual__index {
        position: static;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .support-manual__index > strong,
    .support-manual__help {
        grid-column: 1 / -1;
    }

    .support-manual__index > button {
        min-height: 54px;
        padding-inline: 12px;
        border-right: 1px solid var(--line);
        text-align: center;
    }

    .support-manual__help {
        grid-template-columns: auto auto auto;
        align-items: center;
    }

    .support-guide-list > a {
        grid-template-columns: 125px minmax(180px, 0.7fr) minmax(220px, 1.3fr);
    }

    .support-guide-list > a > span:last-child {
        display: none;
    }

    .support-article {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .support-article__rail {
        position: static;
        grid-template-columns: 1fr 1.7fr 1fr;
    }

    .support-article__rail nav,
    .support-article__rail > div,
    .support-article__back {
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .support-hero__inner {
        padding-block: 58px 64px;
    }

    .support-hero__copy h1 {
        font-size: clamp(3rem, 14vw, 4.25rem);
    }

    .support-search {
        padding: 18px;
    }

    .support-search__field {
        min-height: 58px;
    }

    .support-search__field > button {
        min-width: 74px;
        font-size: 0.68rem;
    }

    .support-search__field input {
        padding-inline: 12px;
        font-size: 0.88rem;
    }

    .support-start {
        padding-block: 48px 60px;
        gap: 24px;
    }

    .support-start__route {
        grid-template-columns: 1fr;
    }

    .support-start__route > a {
        min-height: 0;
        padding-block: 22px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .support-start__route > a:last-child {
        border-bottom: 0;
    }

    .support-manual {
        padding-bottom: 76px;
        gap: 50px;
    }

    .support-manual__index {
        grid-template-columns: 1fr 1fr;
    }

    .support-manual__index > strong,
    .support-manual__help {
        grid-column: 1 / -1;
    }

    .support-manual__help {
        grid-template-columns: 1fr;
    }

    .support-group,
    .support-group + .support-group {
        padding-block: 0 62px;
    }

    .support-group + .support-group {
        padding-top: 56px;
    }

    .support-group__heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .support-module {
        grid-template-columns: 78px minmax(0, 1fr);
        min-height: 112px;
        padding-block: 8px;
    }

    .support-module__mark {
        width: 58px;
        height: 58px;
    }

    .support-module__mark img {
        width: 52px;
        height: 52px;
    }

    .support-module__copy {
        padding: 14px 10px;
    }

    .support-module__meta,
    .support-module__arrow {
        display: none;
    }

    .support-guide-list > a {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 20px 10px;
        gap: 6px;
    }

    .support-guide-list > a:hover {
        padding-inline: 10px;
    }

    .support-close > div {
        align-items: stretch;
        flex-direction: column;
        padding-block: 58px;
    }

    .support-close .ticket-button {
        width: 100%;
    }

    .support-breadcrumbs {
        min-height: 52px;
    }

    .support-article-hero__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-block: 54px 64px;
        gap: 36px;
    }

    .support-article-hero__copy h1 {
        font-size: clamp(3rem, 14vw, 4.3rem);
    }

    .support-article-hero__copy dl {
        flex-wrap: wrap;
        gap: 16px 26px;
    }

    .support-article-hero__module,
    .support-article-hero__manual {
        width: 160px;
        justify-self: start;
    }

    .support-article-hero__module img {
        width: 120px;
        height: 120px;
    }

    .support-article-hero__manual {
        min-height: 210px;
    }

    .support-article {
        padding-block: 52px 82px;
    }

    .support-article__rail {
        grid-template-columns: 1fr;
    }

    .support-article__rail nav,
    .support-article__rail > div,
    .support-article__back {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .support-article__lead {
        font-size: 1.05rem;
    }

    .support-procedure__heading {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .support-procedure__heading > span {
        width: 32px;
        height: 32px;
    }

    .support-procedure__intro,
    .support-command,
    .support-procedure ol,
    .support-note {
        margin-left: 0;
    }

    .support-procedure ol {
        padding-top: 4px;
    }

    .support-procedure li {
        padding-left: 38px;
    }

    .support-command pre,
    .support-command--step pre {
        padding: 16px;
    }

    .support-command > button {
        position: static;
        width: 100%;
        border-width: 1px 0 0;
        text-align: left;
    }

    .support-note {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .support-related a {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
