:root {
    --ink: #0a0a09;
    --ink-raised: #121210;
    --ink-soft: #1a1917;
    --line-dark: #34322e;
    --paper: #eee9de;
    --paper-bright: #f8f4ea;
    --paper-deep: #d9d3c7;
    --text: #f2eee5;
    --muted: #a6a199;
    --muted-dark: #69655f;
    --signal: #ff642b;
    --signal-bright: #ff7a47;
    --danger: #e6604f;
    --success: #77a985;
    --font-sans: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    --font-mono: "SFMono-Regular", "Roboto Mono", "Cascadia Mono", "Liberation Mono", Menlo, monospace;
    --page-pad: clamp(20px, 4.5vw, 76px);
    --header-height: 84px;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-snappy: cubic-bezier(.22, .8, .2, 1);
}

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

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

body {
    min-width: 320px;
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    font: inherit;
}

button,
input {
    border-radius: 0;
}

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

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3,
dl,
dd,
ol {
    margin: 0;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--signal);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--paper-bright);
    color: var(--ink);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .2s;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 18px var(--page-pad);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: min-height .25s ease, background .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
    min-height: 66px;
    background: rgba(10, 10, 9, .88);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.brand-mark::before {
    inset: 5px;
    border: 1px solid rgba(255, 100, 43, .55);
}

.brand-mark::after {
    top: 1px;
    right: 8px;
    width: 5px;
    height: 5px;
    background: var(--signal);
    box-shadow: 0 0 14px var(--signal);
}

.brand-mark span {
    width: 3px;
    height: 3px;
    background: var(--paper);
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 13px;
    letter-spacing: .1em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .16em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #d5d1c8;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-nav a,
.site-nav button {
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: .82;
    transition: opacity .2s ease, color .2s ease;
}

.site-nav a::after,
.site-nav button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease-out);
}

.site-nav a:hover,
.site-nav button:hover {
    color: #fff;
    opacity: 1;
}

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

.nav-admin {
    color: var(--muted);
}

.nav-logout {
    margin: 0;
}

.operator-name {
    max-width: 170px;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
}

.global-notice {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    width: min(calc(100vw - 32px), 600px);
    padding: 13px 16px;
    border: 1px solid var(--line-dark);
    background: rgba(15, 15, 13, .96);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .35);
    color: var(--text);
    transform: translateX(-50%);
    animation: notice-in .45s var(--ease-out) both;
}

.global-notice > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--danger);
    color: var(--ink);
    font-family: var(--font-mono);
    font-weight: 800;
}

.global-notice--success > span {
    background: var(--success);
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    padding: 13px 18px;
    border: 1px solid rgba(255, 100, 43, .55);
    background: var(--ink-raised);
    box-shadow: 0 14px 50px rgba(0, 0, 0, .42);
    color: var(--paper-bright);
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .35s var(--ease-out);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .38);
    color: var(--paper-bright);
    font-size: 13px;
    font-weight: 650;
    transition: color .2s ease, border-color .2s ease;
}

.text-link span {
    color: var(--signal);
    transition: transform .3s var(--ease-out);
}

.text-link:hover {
    border-color: var(--signal);
}

.text-link:hover span {
    transform: translateY(4px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}

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

.button:active {
    transform: translateY(0);
}

.button--primary {
    background: var(--signal);
    color: var(--ink);
}

.button--primary:hover {
    background: var(--signal-bright);
}

.button--primary > span:last-child {
    margin-left: 28px;
    font-size: 18px;
    font-weight: 400;
}

.button--wide {
    width: 100%;
}

.section-index {
    color: rgba(27, 26, 23, .1);
    font-family: var(--font-mono);
    font-size: clamp(72px, 11vw, 172px);
    font-weight: 700;
    letter-spacing: -.08em;
    line-height: .8;
    user-select: none;
}

/* Public checkout */

.checkout-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 42px) var(--page-pad) 48px;
    isolation: isolate;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-image {
    z-index: -3;
    background: #080807 url("/static/img/hero-watch.png") center center / cover no-repeat;
    transform: scale(1.025);
    animation: hero-image-settle 1.8s var(--ease-out) both;
}

.hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(6, 6, 5, .94) 0%, rgba(6, 6, 5, .8) 32%, rgba(6, 6, 5, .24) 66%, rgba(6, 6, 5, .2) 100%),
        linear-gradient(0deg, rgba(6, 6, 5, .7), transparent 35%);
}

.hero-shade::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 100% 64px;
    mask-image: linear-gradient(90deg, #000, transparent 55%);
}

.hero-copy {
    align-self: center;
    width: min(100%, 680px);
    padding-top: 4vh;
}

.hero-copy .eyebrow {
    width: min(100%, 510px);
    margin-bottom: clamp(30px, 5vh, 58px);
}

.hero-copy .eyebrow span:last-child {
    color: #77736c;
}

.hero-copy h1 {
    color: var(--paper-bright);
    font-size: clamp(48px, 7.1vw, 108px);
    font-weight: 620;
    letter-spacing: -.065em;
    line-height: .94;
}

.hero-copy h1 em,
.order-heading h1 em {
    color: var(--signal);
    font-style: normal;
    font-weight: 500;
}

.hero-lede {
    width: min(100%, 510px);
    margin: 34px 0 30px;
    color: #b6b1a8;
    font-size: clamp(14px, 1.3vw, 17px);
    line-height: 1.75;
}

.hero-status {
    align-self: end;
    justify-self: end;
    display: flex;
    gap: clamp(18px, 3vw, 46px);
    color: #aaa69e;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
}

.hero-status span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-status i {
    width: 6px;
    height: 6px;
    border: 1px solid var(--signal);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 100, 43, .65);
}

.checkout-workspace,
.checkout-result,
.license-delivery {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(44px, 8vw, 150px);
    padding: clamp(78px, 10vw, 150px) var(--page-pad);
}

.checkout-workspace {
    background: var(--paper);
    color: var(--ink);
}

.checkout-workspace .section-index,
.checkout-result .section-index,
.license-delivery .section-index {
    position: absolute;
    top: 42px;
    right: var(--page-pad);
}

.workspace-intro {
    max-width: 480px;
}

.workspace-intro .eyebrow {
    justify-content: flex-start;
    margin-bottom: 23px;
}

.workspace-intro h2 {
    max-width: 580px;
    font-size: clamp(36px, 4.4vw, 66px);
    font-weight: 620;
    letter-spacing: -.055em;
    line-height: 1;
}

.workspace-intro > p:not(.eyebrow) {
    max-width: 460px;
    margin-top: 24px;
    color: var(--muted-dark);
    line-height: 1.75;
}

.process-list {
    margin-top: 58px;
    padding: 0;
    border-top: 1px solid #c7c1b6;
    list-style: none;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #c7c1b6;
    color: #8c877e;
    font-size: 13px;
}

.process-list li span {
    color: #aaa49a;
    font-family: var(--font-mono);
    font-size: 10px;
}

.process-list .is-active {
    color: var(--ink);
    font-weight: 700;
}

.process-list .is-active span {
    color: var(--signal);
}

.checkout-form {
    align-self: start;
    max-width: 820px;
}

.checkout-form fieldset {
    margin: 0;
    padding: 0 0 44px;
    border: 0;
}

.checkout-form fieldset + fieldset {
    padding-top: 42px;
    border-top: 1px solid #c7c1b6;
}

.checkout-form legend {
    padding: 0;
    font-size: 19px;
    font-weight: 720;
    letter-spacing: -.02em;
}

.field-hint {
    margin: 8px 0 24px;
    color: var(--muted-dark);
    font-size: 13px;
}

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

.field {
    display: grid;
    gap: 9px;
}

.field > span {
    color: #66625b;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.field input,
.admin-search input {
    width: 100%;
    min-height: 55px;
    border: 0;
    border-bottom: 1px solid #a9a399;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    transition: border-color .2s ease, background .2s ease;
}

.field input::placeholder,
.admin-search input::placeholder {
    color: #aaa49b;
}

.field input:focus,
.admin-search input:focus {
    border-color: var(--signal);
    box-shadow: inset 0 -1px var(--signal);
}

.field input:user-invalid,
.field input.is-mismatch {
    border-color: var(--danger);
    box-shadow: inset 0 -1px var(--danger);
}

[data-device-code] {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid #c7c1b6;
}

.form-submit p {
    max-width: 340px;
    color: var(--muted-dark);
    font-size: 11px;
}

.checkout-result {
    background: var(--ink-raised);
}

.checkout-result .section-index {
    color: rgba(255, 255, 255, .035);
}

.checkout-result .workspace-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.payment-stage {
    align-self: start;
    border-top: 1px solid var(--line-dark);
}

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

.verification-summary > div {
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--line-dark);
}

.verification-summary > div + div {
    padding-left: 26px;
    border-left: 1px solid var(--line-dark);
}

.verification-summary dt {
    margin-bottom: 10px;
    color: #77736c;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.verification-summary dd {
    color: var(--paper-bright);
    font-size: 14px;
}

.mono {
    font-family: var(--font-mono);
    letter-spacing: .06em;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    border: 1px solid var(--line-dark);
}

.payment-options button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 0 22px;
    border: 0;
    background: transparent;
    color: #8b877f;
    cursor: not-allowed;
}

.payment-options button + button {
    border-left: 1px solid var(--line-dark);
}

.payment-options small {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.payment-wordmark {
    color: #bcb7ae;
    font-size: 19px;
    font-weight: 700;
}

.admin-note {
    margin-top: 18px;
    color: #78746d;
    font-size: 11px;
}

.payment-stage > .button {
    margin-top: 32px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--paper-bright);
    color: var(--ink);
}

.trust-strip > div {
    min-height: 260px;
    padding: 52px var(--page-pad);
    border-right: 1px solid var(--paper-deep);
}

.trust-strip > div:last-child {
    border-right: 0;
}

.trust-strip span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
}

.trust-strip h3 {
    margin-top: 58px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.trust-strip p {
    max-width: 340px;
    margin-top: 10px;
    color: var(--muted-dark);
    font-size: 13px;
    line-height: 1.65;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    padding: 28px var(--page-pad);
    border-top: 1px solid #22211f;
    background: var(--ink);
    color: #77736c;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.site-footer > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-signal {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 14px rgba(255, 100, 43, .65);
}

/* Order */

.order-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    align-items: center;
    min-height: 76svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 70px) var(--page-pad) 70px;
    background:
        radial-gradient(circle at 80% 50%, rgba(255, 100, 43, .1), transparent 34%),
        linear-gradient(130deg, var(--ink), #11100e);
}

.order-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 78% 50%, #000, transparent 55%);
}

.order-heading {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.order-heading .eyebrow {
    max-width: 590px;
    margin-bottom: 36px;
}

.order-heading .eyebrow span:last-child {
    color: #77736c;
}

.order-heading h1 {
    font-size: clamp(46px, 7vw, 100px);
    font-weight: 620;
    letter-spacing: -.065em;
    line-height: .95;
}

.order-heading > p:last-child {
    max-width: 540px;
    margin-top: 30px;
    color: var(--muted);
    line-height: 1.75;
}

.order-orbit {
    position: relative;
    justify-self: center;
    width: min(31vw, 410px);
    aspect-ratio: 1;
    border: 1px solid #322f2b;
    border-radius: 50%;
}

.order-orbit::before,
.order-orbit::after,
.order-orbit span,
.order-orbit i {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.order-orbit::before {
    inset: 8%;
    border: 1px solid #444039;
}

.order-orbit::after {
    inset: 21%;
    border: 1px solid rgba(255, 100, 43, .7);
    box-shadow: 0 0 60px rgba(255, 100, 43, .1), inset 0 0 35px rgba(255, 100, 43, .05);
}

.order-orbit span {
    inset: -1px;
    border-top: 2px solid var(--signal);
    animation: orbit-spin 12s linear infinite;
}

.order-orbit i {
    top: 10%;
    right: 15%;
    width: 7px;
    height: 7px;
    background: var(--signal);
    box-shadow: 0 0 18px var(--signal);
}

.order-orbit b {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--paper-bright);
    font-family: var(--font-mono);
    font-size: clamp(28px, 3.4vw, 52px);
    letter-spacing: .1em;
}

.license-delivery {
    background: var(--paper);
    color: var(--ink);
}

.license-panel {
    align-self: start;
    padding-top: 3px;
    border-top: 1px solid #aaa49a;
}

.license-label {
    padding: 17px 0;
    color: var(--muted-dark);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.license-code-row {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #aaa49a;
    border-bottom: 1px solid #aaa49a;
}

.license-code {
    display: flex;
    flex: 1;
    align-items: center;
    min-width: 0;
    min-height: 120px;
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: clamp(24px, 3.6vw, 54px);
    font-weight: 700;
    letter-spacing: .09em;
    white-space: nowrap;
}

.copy-button {
    position: relative;
    display: grid;
    flex: 0 0 108px;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-left: 1px solid #aaa49a;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease;
}

.copy-button::before {
    content: "";
    position: absolute;
    inset: 50%;
    border-radius: 50%;
    background: var(--signal);
    transform: translate(-50%, -50%) scale(0);
    transition: transform .55s var(--ease-out);
}

.copy-button:hover::before,
.copy-button.is-copied::before {
    transform: translate(-50%, -50%) scale(8);
}

.copy-button span {
    position: relative;
    z-index: 1;
}

.copy-button:hover,
.copy-button.is-copied {
    color: var(--ink);
}

.copy-button i {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.unlock-steps {
    display: grid;
    gap: 0;
    margin-top: 32px;
    padding: 0;
    list-style: none;
}

.unlock-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #cec8bd;
    color: #55514c;
    font-size: 13px;
}

.unlock-steps li span {
    display: grid;
    flex: 0 0 24px;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #aaa49a;
    border-radius: 50%;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 9px;
}

.pending-license {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 150px;
    padding: 28px 0;
    border-bottom: 1px solid #aaa49a;
}

.pending-license strong {
    font-size: 18px;
}

.pending-license p {
    margin-top: 8px;
    color: var(--muted-dark);
    font-size: 13px;
}

.pending-pulse {
    width: 18px;
    height: 18px;
    border: 1px solid var(--signal);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 100, 43, .4);
    animation: pending-pulse 2s infinite;
}

.order-metadata {
    padding: 58px var(--page-pad) 70px;
    border-top: 1px solid var(--line-dark);
    background: var(--ink-raised);
}

.order-metadata dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-metadata dl > div {
    min-width: 0;
    padding: 5px 26px 25px 0;
    border-bottom: 1px solid var(--line-dark);
}

.order-metadata dl > div + div {
    padding-left: 26px;
    border-left: 1px solid var(--line-dark);
}

.order-metadata dt {
    margin-bottom: 13px;
    color: #77736c;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.order-metadata dd {
    overflow: hidden;
    color: #d8d3ca;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-metadata > p {
    margin-top: 20px;
    color: #77736c;
    font-size: 11px;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: #77736c;
}

.status-dot--paid,
.status-dot--fulfilled,
.status-dot--active {
    background: var(--success);
    box-shadow: 0 0 10px rgba(119, 169, 133, .45);
}

.status-dot--banned,
.status-dot--blocked,
.status-dot--revoked {
    background: var(--danger);
}

/* Admin authentication */

.admin-login-page {
    min-height: 100svh;
}

.admin-login-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    align-items: center;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 40px) var(--page-pad) 60px;
}

.admin-login-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 46%, rgba(255, 100, 43, .09), transparent 30%),
        linear-gradient(120deg, #080807, #11100e);
}

.login-atmosphere {
    position: absolute;
    inset: 0 50% 0 0;
    overflow: hidden;
    pointer-events: none;
}

.login-atmosphere::before,
.login-atmosphere::after,
.login-atmosphere span {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.login-atmosphere::before {
    top: 12%;
    left: -18vw;
    width: 55vw;
    height: 55vw;
}

.login-atmosphere::after {
    top: 28%;
    left: -7vw;
    width: 34vw;
    height: 34vw;
    border-color: rgba(255, 100, 43, .18);
}

.login-atmosphere span:nth-child(1) {
    top: calc(45% - 4px);
    left: 26%;
    width: 8px;
    height: 8px;
    border: 0;
    background: var(--signal);
    box-shadow: 0 0 25px var(--signal);
}

.login-atmosphere span:nth-child(2) {
    top: 0;
    left: 28%;
    width: 1px;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .04);
}

.login-intro,
.login-form {
    position: relative;
    z-index: 2;
}

.login-intro {
    max-width: 600px;
}

.login-intro h1 {
    margin-top: 25px;
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 620;
    letter-spacing: -.06em;
    line-height: .96;
}

.login-intro > p:last-child {
    max-width: 430px;
    margin-top: 26px;
    color: var(--muted);
}

.login-form {
    justify-self: end;
    width: min(100%, 490px);
    padding: clamp(32px, 5vw, 64px);
    border-left: 1px solid var(--line-dark);
    background: rgba(19, 18, 16, .78);
    backdrop-filter: blur(14px);
}

.login-form-heading {
    margin-bottom: 42px;
}

.login-form-heading > span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .13em;
}

.login-form-heading h2 {
    margin-top: 12px;
    font-size: 25px;
    letter-spacing: -.03em;
}

.login-form .field {
    margin-bottom: 28px;
}

.login-form .field > span,
.mock-form .field > span {
    color: #8c877f;
}

.login-form .field input,
.mock-form .field input {
    border-color: var(--line-dark);
    color: var(--paper-bright);
}

.login-form .field input::placeholder,
.mock-form .field input::placeholder {
    color: #55514b;
}

.totp-input {
    font-family: var(--font-mono) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: .38em !important;
}

.login-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    color: #6e6a63;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.login-security span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--success);
}

/* Admin workspace */

.admin-page {
    min-height: 100svh;
    background: #0e0e0c;
}

.admin-page .site-header {
    position: relative;
    background: #0c0c0a;
}

.admin-shell {
    padding: clamp(36px, 5vw, 74px) var(--page-pad) 80px;
}

.admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.admin-heading h1 {
    margin-top: 12px;
    font-size: clamp(38px, 4.8vw, 70px);
    font-weight: 620;
    letter-spacing: -.055em;
    line-height: 1;
}

.system-health {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8c877f;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .1em;
}

.system-health i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px rgba(119, 169, 133, .5);
}

.metrics-line {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 54px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.metrics-line > div {
    display: grid;
    gap: 12px;
    padding: 24px 0;
}

.metrics-line > div + div {
    padding-left: 26px;
    border-left: 1px solid var(--line-dark);
}

.metrics-line span {
    color: #716d66;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .12em;
}

.metrics-line strong {
    font-family: var(--font-mono);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.admin-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: clamp(38px, 5vw, 78px);
    margin-top: 54px;
}

.admin-primary {
    min-width: 0;
}

.admin-search > label {
    display: block;
    margin-bottom: 14px;
    color: #77736c;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-search > div {
    display: flex;
    border-bottom: 1px solid #55514b;
}

.admin-search input {
    min-height: 66px;
    border: 0;
    color: var(--paper-bright);
    font-size: clamp(17px, 2vw, 25px);
}

.admin-search button {
    flex: 0 0 60px;
    border: 0;
    background: transparent;
    color: var(--signal);
    cursor: pointer;
    font-size: 25px;
    transition: transform .3s var(--ease-out);
}

.admin-search button:hover {
    transform: translate(3px, -3px);
}

.result-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 52px 0 16px;
}

.result-heading h2 {
    font-size: 18px;
}

.result-heading span {
    color: #77736c;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .1em;
}

.result-table-wrap {
    overflow-x: auto;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.result-table th {
    padding: 11px 12px 11px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    color: #68645e;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: left;
    text-transform: uppercase;
}

.result-table th:nth-child(1) {
    width: 16%;
}

.result-table th:nth-child(2) {
    width: 30%;
}

.result-table th:nth-child(3) {
    width: 16%;
}

.result-table th:nth-child(4) {
    width: 10%;
}

.result-table th:nth-child(5) {
    width: 28%;
}

.result-table td {
    padding: 18px 12px 18px 0;
    border-bottom: 1px solid #292825;
    color: #d1ccc3;
    font-size: 12px;
    vertical-align: middle;
}

.result-table td strong,
.result-table td small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-table td small {
    margin-top: 5px;
    color: #706c65;
    font-size: 9px;
}

.record-kind {
    color: #b2ada4;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .08em;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .08em;
}

.admin-status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #77736c;
}

.admin-status--active i,
.admin-status--paid i,
.admin-status--fulfilled i {
    background: var(--success);
}

.admin-status--banned i,
.admin-status--blocked i,
.admin-status--revoked i {
    background: var(--danger);
}

.row-actions {
    text-align: right;
}

.row-actions form {
    display: inline-block;
    margin: 3px 0;
}

.action-link {
    margin-left: 9px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #5a5650;
    background: transparent;
    color: #aaa59c;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.action-link:hover {
    color: var(--paper-bright);
    border-color: var(--paper-bright);
}

.action-link--danger {
    color: var(--danger);
    border-color: rgba(230, 96, 79, .5);
}

.action-link--positive {
    color: var(--success);
    border-color: rgba(119, 169, 133, .5);
}

.action-danger {
    border-color: rgba(230, 96, 79, .62);
    color: #f07868;
}

.empty-row td {
    height: 230px;
    padding: 40px 20px;
    text-align: center;
}

.empty-row span {
    display: block;
    color: var(--signal);
    font-size: 28px;
}

.empty-row strong {
    margin-top: 16px;
    color: #aaa59d;
    font-size: 13px;
}

.empty-row p {
    margin-top: 7px;
    color: #68645e;
    font-size: 11px;
}

.admin-secondary {
    padding-left: clamp(25px, 3vw, 48px);
    border-left: 1px solid var(--line-dark);
}

.aside-heading > span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .12em;
}

.aside-heading h2 {
    margin-top: 12px;
    font-size: 25px;
    letter-spacing: -.035em;
}

.aside-heading p {
    margin-top: 12px;
    color: #77736c;
    font-size: 12px;
    line-height: 1.65;
}

.mock-form {
    display: grid;
    gap: 23px;
    margin-top: 34px;
}

.mock-form .field input {
    min-height: 48px;
    font-size: 13px;
}

.operator-note {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    color: #6f6b64;
    font-size: 10px;
    line-height: 1.6;
}

.operator-note > span {
    display: grid;
    flex: 0 0 20px;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #5a5650;
    border-radius: 50%;
    font-family: var(--font-mono);
}

.account-controls {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--line-dark);
}

.admin-page .admin-flash {
    border-left-color: var(--success);
    background: #182018;
    color: #b8d1b5;
}

.admin-page .admin-flash--error {
    border-left-color: var(--danger);
    background: #261816;
    color: #efaaa0;
}

/* Motion */

.hero-sequence > * {
    animation: hero-copy-in .8s var(--ease-out) both;
}

.hero-sequence > *:nth-child(1) {
    animation-delay: .08s;
}

.hero-sequence > *:nth-child(2) {
    animation-delay: .17s;
}

.hero-sequence > *:nth-child(3) {
    animation-delay: .26s;
}

.hero-sequence > *:nth-child(4) {
    animation-delay: .34s;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .85s var(--ease-out);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-image-settle {
    from {
        opacity: .25;
        transform: scale(1.085);
    }
    to {
        opacity: 1;
        transform: scale(1.025);
    }
}

@keyframes hero-copy-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes notice-in {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pending-pulse {
    70% {
        box-shadow: 0 0 0 12px rgba(255, 100, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 100, 43, 0);
    }
}

@media (max-width: 1080px) {
    .checkout-workspace,
    .checkout-result,
    .license-delivery {
        gap: 48px;
    }

    .admin-workspace {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .result-table th:nth-child(1) {
        width: 18%;
    }

    .result-table th:nth-child(2) {
        width: 29%;
    }

    .result-table th:nth-child(3) {
        width: 18%;
    }

    .result-table th:nth-child(4) {
        display: none;
    }

    .result-table td:nth-child(4) {
        display: none;
    }

    .result-table th:nth-child(5) {
        width: 35%;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .site-header {
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .brand-copy small {
        display: none;
    }

    .site-nav {
        gap: 15px;
    }

    .checkout-hero {
        min-height: 830px;
        padding-bottom: 32px;
    }

    .hero-image {
        background-position: 61% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(6, 6, 5, .94), rgba(6, 6, 5, .62) 62%, rgba(6, 6, 5, .28)),
            linear-gradient(0deg, rgba(6, 6, 5, .9), transparent 50%);
    }

    .hero-copy {
        align-self: end;
        padding-bottom: 90px;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 12.5vw, 78px);
    }

    .hero-status {
        justify-self: start;
    }

    .checkout-workspace,
    .checkout-result,
    .license-delivery {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .checkout-workspace .section-index,
    .checkout-result .section-index,
    .license-delivery .section-index {
        top: 35px;
    }

    .workspace-intro {
        padding-right: 80px;
    }

    .process-list {
        display: none;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-strip > div {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        border-right: 0;
        border-bottom: 1px solid var(--paper-deep);
    }

    .trust-strip h3 {
        margin-top: 28px;
    }

    .order-hero {
        grid-template-columns: 1fr;
        min-height: 86svh;
    }

    .order-orbit {
        position: absolute;
        right: -10vw;
        bottom: -10vw;
        width: 45vw;
        opacity: .5;
    }

    .order-heading {
        padding-right: 8vw;
    }

    .order-metadata dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-metadata dl > div:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .admin-login-shell {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: calc(var(--header-height) + 70px);
    }

    .login-atmosphere {
        inset: 0;
    }

    .login-intro {
        padding-right: 15vw;
    }

    .login-form {
        justify-self: stretch;
        width: 100%;
    }

    .metrics-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-line > div:nth-child(3) {
        padding-left: 0;
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .metrics-line > div:nth-child(4) {
        border-top: 1px solid var(--line-dark);
    }

    .admin-workspace {
        grid-template-columns: 1fr;
    }

    .admin-secondary {
        padding: 42px 0 0;
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }
}

@media (max-width: 600px) {
    .brand-mark {
        width: 30px;
        height: 30px;
    }

    .brand-copy strong {
        font-size: 11px;
    }

    .nav-admin,
    .operator-name {
        display: none;
    }

    .checkout-hero {
        min-height: 760px;
        padding-top: calc(var(--header-height) + 30px);
    }

    .hero-image {
        background-position: 65% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(6, 6, 5, .9), rgba(6, 6, 5, .38)),
            linear-gradient(0deg, rgba(6, 6, 5, .98) 0%, rgba(6, 6, 5, .78) 44%, transparent 78%);
    }

    .hero-copy {
        padding-bottom: 82px;
    }

    .hero-copy .eyebrow {
        margin-bottom: 24px;
    }

    .hero-copy .eyebrow span:last-child {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .hero-lede {
        margin-top: 24px;
        font-size: 13px;
    }

    .hero-status {
        gap: 20px;
        font-size: 7px;
    }

    .checkout-workspace,
    .checkout-result,
    .license-delivery {
        gap: 42px;
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .workspace-intro {
        padding-right: 42px;
    }

    .workspace-intro h2 {
        font-size: 38px;
    }

    .workspace-intro > p:not(.eyebrow) {
        font-size: 13px;
    }

    .section-index {
        font-size: 70px;
    }

    .field-pair {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-form fieldset {
        padding-bottom: 36px;
    }

    .checkout-form fieldset + fieldset {
        padding-top: 34px;
    }

    .form-submit {
        display: grid;
    }

    .form-submit .button {
        width: 100%;
    }

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

    .verification-summary > div + div {
        padding-left: 0;
        border-left: 0;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .payment-options button + button {
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .order-hero {
        min-height: 760px;
        padding-top: calc(var(--header-height) + 70px);
    }

    .order-heading h1 {
        font-size: 48px;
    }

    .order-heading .eyebrow span:last-child {
        display: none;
    }

    .order-orbit {
        right: -24vw;
        bottom: -2vw;
        width: 72vw;
    }

    .license-code-row {
        flex-direction: column;
    }

    .license-code {
        min-height: 96px;
        font-size: clamp(24px, 7.6vw, 34px);
    }

    .copy-button {
        flex: 0 0 52px;
        border-top: 1px solid #aaa49a;
        border-left: 0;
    }

    .order-metadata dl {
        grid-template-columns: 1fr;
    }

    .order-metadata dl > div,
    .order-metadata dl > div + div {
        padding: 16px 0;
        border-left: 0;
    }

    .admin-login-shell {
        display: block;
        padding-top: calc(var(--header-height) + 70px);
    }

    .login-intro {
        padding-right: 0;
    }

    .login-intro h1 {
        font-size: 48px;
    }

    .login-form {
        margin-top: 58px;
        padding: 30px 24px;
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .admin-shell {
        padding-top: 38px;
    }

    .admin-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .metrics-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
    }

    .metrics-line > div {
        padding: 18px 0;
    }

    .metrics-line > div:nth-child(even) {
        padding-left: 18px;
        border-left: 1px solid var(--line-dark);
    }

    .metrics-line > div:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .metrics-line > div:nth-child(n + 3) {
        border-top: 1px solid var(--line-dark);
    }

    .result-table,
    .result-table tbody,
    .result-table tr,
    .result-table td {
        display: block;
        width: 100%;
    }

    .result-table thead {
        display: none;
    }

    .result-table tr:not(.empty-row) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 15px 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .result-table td,
    .result-table td:nth-child(4) {
        display: block;
        padding: 9px 10px 9px 0;
        border: 0;
    }

    .result-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 6px;
        color: #5f5b55;
        font-family: var(--font-mono);
        font-size: 7px;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .result-table .row-actions {
        grid-column: 1 / -1;
        text-align: left;
    }

    .result-table .row-actions::before {
        display: none;
    }

    .action-link {
        margin: 0 14px 0 0;
    }

    .empty-row {
        display: table-row !important;
    }

    .empty-row td {
        display: table-cell;
    }
}

/* Product publishing workspace */

.product-admin-page {
    background: #f4f1ea;
}

.product-admin-shell {
    width: min(100%, 1640px);
    margin: 0 auto;
    padding: calc(var(--header-height, 76px) + 52px) clamp(18px, 3.4vw, 56px) 90px;
}

.product-admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line, #d7d1c5);
}

.product-admin-heading h1 {
    margin-top: 8px;
    font-size: clamp(42px, 5vw, 74px);
    letter-spacing: -.065em;
    line-height: .94;
}

.product-admin-heading > div > p:last-child {
    max-width: 690px;
    margin-top: 17px;
    color: var(--muted, #666158);
    line-height: 1.7;
}

.product-admin-layout {
    display: grid;
    grid-template-columns: minmax(290px, .32fr) minmax(0, .68fr);
    gap: clamp(26px, 4vw, 62px);
    align-items: start;
    margin-top: 42px;
}

.product-admin-list {
    position: sticky;
    top: 92px;
    min-width: 0;
}

.product-admin-list-heading,
.product-editor-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line, #d7d1c5);
}

.product-admin-list-heading span,
.product-editor-heading span {
    color: var(--muted, #666158);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
}

.product-admin-list-heading h2,
.product-editor-heading h2 {
    margin-top: 6px;
    font-size: 25px;
    letter-spacing: -.035em;
}

.product-admin-list-heading > strong {
    color: #db672e;
    font-size: 31px;
}

.managed-product-cards {
    max-height: calc(100svh - 220px);
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.managed-product-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line, #d7d1c5);
}

.managed-product-card.is-current {
    padding-right: 12px;
    padding-left: 12px;
    background: #fffdf9;
    box-shadow: 0 12px 34px rgba(39, 31, 20, .07);
}

.managed-product-thumb {
    display: grid;
    aspect-ratio: 1;
    overflow: hidden;
    place-items: center;
    border-radius: 11px;
    background: #e5ded2;
    color: var(--muted, #666158);
    font-size: 9px;
}

.managed-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.managed-product-card > div:last-child {
    min-width: 0;
}

.managed-product-card > div > p {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--muted, #666158);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
}

.catalog-state {
    padding: 4px 6px;
    border-radius: 999px;
    background: #e1ddd5;
}

.catalog-state--concept {
    background: #f2d8c6;
    color: #913a15;
}

.catalog-state--available {
    background: #d9e7d6;
    color: #365d31;
}

.managed-product-card h3 {
    margin-top: 8px;
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.managed-product-card h3 small {
    color: var(--muted, #666158);
    font-size: .74em;
    font-weight: 560;
}

.managed-product-card > div > span {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: var(--muted, #666158);
    font-family: var(--mono, monospace);
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.managed-product-actions {
    display: flex;
    gap: 13px;
    margin-top: 10px;
}

.managed-product-actions a {
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    font-weight: 700;
}

.managed-products-empty {
    padding: 30px 0;
    color: var(--muted, #666158);
    line-height: 1.65;
}

.managed-products-empty strong {
    color: var(--ink, #171714);
}

.managed-products-empty p {
    margin-top: 8px;
}

.product-editor {
    min-width: 0;
    padding: clamp(24px, 3vw, 46px);
    background: #fffdf9;
    box-shadow: 0 24px 70px rgba(39, 31, 20, .08);
}

.product-editor-form fieldset {
    margin: 0;
    padding: 35px 0 39px;
    border: 0;
    border-bottom: 1px solid var(--line, #d7d1c5);
}

.product-editor-form legend {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 760;
    letter-spacing: -.025em;
}

.product-editor-form legend span {
    color: #c95420;
    font-size: 9px;
    letter-spacing: .08em;
}

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

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

.product-field-span-two {
    grid-column: span 2;
}

.product-editor-form .field {
    min-width: 0;
}

.product-editor-form .field > span,
.product-upload > span {
    display: block;
    margin-bottom: 8px;
    color: #4f4b44;
    font-size: 10px;
    font-weight: 760;
}

.product-editor-form input,
.product-editor-form textarea,
.product-editor-form select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid #cec7bb;
    border-radius: 0;
    background: #fff;
    color: #171714;
}

.product-editor-form textarea {
    min-height: 112px;
    resize: vertical;
}

.product-editor-form input:focus,
.product-editor-form textarea:focus,
.product-editor-form select:focus {
    border-color: #c95420;
    outline: 2px solid rgba(201, 84, 32, .13);
}

.product-editor-form .field small,
.product-upload small {
    display: block;
    margin-top: 7px;
    color: var(--muted, #666158);
    font-size: 8px;
    line-height: 1.5;
}

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

.product-upload {
    display: block;
    min-width: 0;
    padding: 16px;
    border: 1px dashed #bcb4a7;
    background: #f8f4ed;
}

.product-upload img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 14px;
    object-fit: cover;
    background: #e5ded2;
}

.product-upload:first-child img {
    aspect-ratio: 1;
}

.product-upload input {
    min-height: 44px;
    padding: 8px;
    background: #fff;
    font-size: 10px;
}

.product-publish-note {
    min-height: 100%;
    padding: 14px;
    border-left: 3px solid #dc6b34;
    background: #f7eadf;
}

.product-publish-note strong {
    font-size: 11px;
}

.product-publish-note p {
    margin-top: 7px;
    color: #655e55;
    font-size: 9px;
    line-height: 1.6;
}

.product-editor-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 30px;
}

.product-editor-submit p {
    max-width: 520px;
    color: var(--muted, #666158);
    line-height: 1.6;
}

.admin-flash {
    margin: 20px 0;
    padding: 14px 16px;
    border-left: 3px solid #52744f;
    background: #e6eee3;
    color: #294327;
    font-weight: 650;
}

.admin-flash--error {
    border-left-color: #a43f29;
    background: #f4dfd8;
    color: #792d1d;
}

@media (max-width: 1080px) {
    .product-admin-layout {
        grid-template-columns: 1fr;
    }

    .product-admin-list {
        position: static;
    }

    .managed-product-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
        max-height: none;
    }
}

@media (max-width: 720px) {
    .product-admin-shell {
        padding-top: calc(var(--header-height, 68px) + 30px);
    }

    .product-admin-heading {
        display: block;
    }

    .product-admin-heading .button {
        width: 100%;
        margin-top: 24px;
    }

    .managed-product-cards,
    .product-form-grid,
    .product-form-grid--three,
    .product-upload-grid {
        grid-template-columns: 1fr;
    }

    .product-field-span-two {
        grid-column: auto;
    }

    .product-editor {
        padding: 22px 16px;
    }

    .product-editor-submit {
        display: grid;
    }

    .product-editor-submit .button {
        width: 100%;
    }
}

@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;
    }

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

/* Sunny storefront */

.store-page,
.product-page,
.order-page {
    --sunny-ink: #18233a;
    --sunny-muted: #667085;
    --sunny-paper: #f8f6ff;
    --sunny-white: #fffefb;
    --sunny-blue: #4a72ff;
    --sunny-blue-deep: #3158dd;
    --sunny-sky: #dcecff;
    --sunny-orange: #ff784b;
    --sunny-yellow: #ffd768;
    --sunny-mint: #ccefdc;
    --sunny-lilac: #e9ddff;
    --sunny-line: #dcddec;
    --sunny-shadow: 0 24px 70px rgba(53, 71, 120, .13);
    min-height: 100svh;
    background: var(--sunny-paper);
    color: var(--sunny-ink);
    overflow-x: hidden;
}

.store-page ::selection,
.product-page ::selection,
.order-page ::selection {
    background: var(--sunny-yellow);
    color: var(--sunny-ink);
}

.store-page :focus-visible,
.product-page :focus-visible,
.order-page :focus-visible {
    outline-color: var(--sunny-blue);
}

.store-page .site-header,
.product-page .site-header,
.order-page .site-header {
    min-height: 72px;
    border-bottom: 1px solid rgba(24, 35, 58, .1);
    background: rgba(248, 246, 255, .82);
    color: var(--sunny-ink);
    backdrop-filter: blur(18px);
}

.store-page .site-header.is-scrolled,
.product-page .site-header.is-scrolled,
.order-page .site-header.is-scrolled {
    min-height: 64px;
    background: rgba(255, 254, 251, .92);
    box-shadow: 0 8px 36px rgba(51, 63, 98, .08);
}

.store-page .brand-copy strong,
.product-page .brand-copy strong,
.order-page .brand-copy strong {
    color: var(--sunny-blue);
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.store-page .brand-copy small,
.product-page .brand-copy small,
.order-page .brand-copy small {
    margin-top: 2px;
    color: var(--sunny-muted);
    font-size: 8px;
    letter-spacing: .12em;
}

.store-page .site-nav,
.product-page .site-nav,
.order-page .site-nav {
    color: var(--sunny-ink);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.store-page .site-nav a::after,
.product-page .site-nav a::after,
.order-page .site-nav a::after {
    background: var(--sunny-blue);
}

.store-page .site-nav a:hover,
.product-page .site-nav a:hover,
.order-page .site-nav a:hover {
    color: var(--sunny-blue);
}

.sunny-kicker {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sunny-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 780;
    text-align: center;
    transition: transform .24s var(--ease-out), box-shadow .24s ease, background .2s ease, border-color .2s ease;
}

.sunny-button:hover {
    transform: translateY(-2px);
}

.sunny-button:active {
    transform: translateY(1px) scale(.99);
}

.sunny-button:disabled {
    cursor: wait;
    opacity: .68;
    transform: none;
}

.sunny-button--primary {
    background: var(--sunny-orange);
    box-shadow: 0 11px 24px rgba(255, 120, 75, .26);
    color: #251d1a;
}

.sunny-button--primary:hover {
    background: #ff8a62;
    box-shadow: 0 15px 30px rgba(255, 120, 75, .31);
}

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

.sunny-button--dark:hover {
    background: #243452;
}

.sunny-button--quiet {
    border-color: var(--sunny-line);
    background: var(--sunny-white);
    color: var(--sunny-ink);
}

.sunny-button--quiet:hover {
    border-color: #babdd2;
    box-shadow: 0 8px 20px rgba(63, 75, 115, .09);
}

.sunny-button--full {
    width: 100%;
}

.sunny-link,
.back-to-shelf {
    width: max-content;
    border-bottom: 1px solid rgba(49, 88, 221, .35);
    color: var(--sunny-blue-deep);
    font-size: 13px;
    font-weight: 720;
}

.sunny-link:hover,
.back-to-shelf:hover {
    border-color: currentColor;
}

.store-page .global-notice,
.product-page .global-notice,
.order-page .global-notice {
    border-color: #d9dbea;
    border-radius: 16px;
    background: rgba(255, 254, 251, .96);
    box-shadow: var(--sunny-shadow);
    color: var(--sunny-ink);
}

.store-page .toast,
.product-page .toast,
.order-page .toast {
    border: 0;
    border-radius: 13px;
    background: var(--sunny-ink);
    color: var(--sunny-white);
}

.store-page .site-footer,
.product-page .site-footer,
.order-page .site-footer {
    min-height: 150px;
    border-top: 1px solid var(--sunny-line);
    background: var(--sunny-white);
    color: var(--sunny-muted);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
}

.footer-brand,
.footer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong {
    color: var(--sunny-blue);
    font-size: 22px;
    letter-spacing: -.04em;
}

.footer-meta {
    justify-content: flex-end;
}

.footer-meta a {
    color: var(--sunny-ink);
    font-weight: 700;
}

/* Catalog */

.store-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    align-items: center;
    gap: clamp(44px, 7vw, 110px);
    min-height: 800px;
    padding: calc(var(--header-height) + 72px) var(--page-pad) 92px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(220, 236, 255, .7), rgba(248, 246, 255, 0) 50%),
        var(--sunny-paper);
}

.store-hero-copy {
    max-width: 760px;
}

.store-hero h1 {
    margin-top: 24px;
    color: var(--sunny-ink);
    font-size: clamp(54px, 7.2vw, 108px);
    font-weight: 820;
    letter-spacing: -.075em;
    line-height: .91;
}

.store-hero h1 span {
    display: block;
    color: var(--sunny-blue);
}

.store-hero-lede {
    max-width: 610px;
    margin-top: 30px;
    color: var(--sunny-muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
}

.store-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.store-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 36px;
    padding: 0;
    list-style: none;
}

.store-promises li {
    padding: 7px 11px;
    border: 1px solid #cdd3ea;
    border-radius: 999px;
    background: rgba(255, 255, 255, .5);
    color: #556077;
    font-size: 10px;
    font-weight: 700;
}

.featured-watch {
    display: block;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 34px;
    background: var(--sunny-white);
    box-shadow: var(--sunny-shadow);
    transform: rotate(1.5deg);
    transition: transform .45s var(--ease-out), box-shadow .35s ease;
}

.featured-watch:hover {
    box-shadow: 0 34px 90px rgba(53, 71, 120, .18);
    transform: rotate(0) translateY(-7px);
}

.featured-watch-image {
    height: clamp(390px, 44vw, 570px);
    overflow: hidden;
    border-radius: 24px;
    background: #131515;
}

.featured-watch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    transform: scale(1.14);
    transition: transform .8s var(--ease-out);
}

.featured-watch:hover img {
    transform: scale(1.09);
}

.featured-watch-caption {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 12px 10px;
}

.featured-watch-caption > div {
    display: grid;
    gap: 4px;
}

.featured-watch-caption span {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.featured-watch-caption strong {
    color: var(--sunny-ink);
    font-size: 21px;
    letter-spacing: -.03em;
}

.featured-watch-caption small {
    color: var(--sunny-muted);
    font-size: 10px;
    font-weight: 700;
}

.watchface-shelf {
    padding: clamp(88px, 10vw, 150px) var(--page-pad);
    background: var(--sunny-white);
}

.shelf-heading,
.buy-flow-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.shelf-heading h2,
.how-it-works h2,
.offline-banner h2,
.buy-flow-heading h2 {
    margin-top: 15px;
    color: var(--sunny-ink);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 780;
    letter-spacing: -.06em;
    line-height: .98;
}

.buy-flow-heading h2 span {
    display: block;
}

.shelf-heading > p,
.buy-flow-heading > p {
    max-width: 470px;
    color: var(--sunny-muted);
    line-height: 1.7;
}

.buy-flow-heading > p strong {
    color: var(--sunny-blue);
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .45fr);
    gap: 24px;
    margin-top: 60px;
}

.product-card,
.next-release-card {
    border: 1px solid var(--sunny-line);
    border-radius: 28px;
    overflow: hidden;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(300px, .92fr) minmax(330px, 1.08fr);
    min-height: 520px;
    background: #f5f7ff;
    box-shadow: 0 16px 50px rgba(53, 71, 120, .07);
}

.product-card-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: #121414;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    transform: scale(1.14);
    transition: transform .7s var(--ease-out);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-image > span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--sunny-yellow);
    color: #3a3016;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 4vw, 54px);
}

.product-card-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.product-card-title p {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
}

.product-card-title h3 {
    margin-top: 10px;
    font-size: clamp(30px, 3.5vw, 50px);
    letter-spacing: -.055em;
    line-height: 1;
}

.availability-pill {
    flex: 0 0 auto;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--sunny-mint);
    color: #22543d;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
}

.product-card-body > p {
    max-width: 520px;
    margin-top: 27px;
    color: var(--sunny-muted);
    line-height: 1.72;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: auto;
    padding-top: 42px;
}

.product-card-meta > span {
    max-width: 240px;
    color: var(--sunny-muted);
    font-size: 11px;
}

.next-release-card {
    display: flex;
    flex-direction: column;
    padding: clamp(30px, 4vw, 50px);
    background: var(--sunny-blue);
    color: #fff;
}

.next-release-card .sunny-kicker {
    color: #cdd9ff;
}

.next-release-card h3 {
    margin-top: 18px;
    font-size: clamp(29px, 3.2vw, 45px);
    letter-spacing: -.05em;
    line-height: 1.02;
}

.next-release-card > p:not(.sunny-kicker) {
    margin-top: 24px;
    color: #e3e9ff;
    font-size: 13px;
    line-height: 1.72;
}

.next-release-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: auto;
    padding-top: 38px;
}

.next-release-card dl > div {
    display: grid;
    gap: 8px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.next-release-card dt {
    color: #bac9ff;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .09em;
}

.next-release-card dd {
    color: #fff;
    font-size: 14px;
    font-weight: 750;
}

.how-it-works {
    padding: clamp(82px, 10vw, 148px) var(--page-pad);
    background: var(--sunny-yellow);
}

.how-it-works header {
    max-width: 780px;
}

.how-it-works .sunny-kicker {
    color: #755813;
}

.how-it-works ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 55px;
    padding: 0;
    list-style: none;
}

.how-it-works li {
    display: flex;
    align-items: start;
    gap: 18px;
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(64, 48, 13, .16);
    border-radius: 22px;
    background: rgba(255, 254, 251, .62);
}

.how-it-works li > span {
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sunny-blue);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
}

.how-it-works h3 {
    font-size: 19px;
    letter-spacing: -.025em;
}

.how-it-works li p {
    margin-top: 11px;
    color: #65572e;
    font-size: 13px;
    line-height: 1.66;
}

.offline-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
    align-items: end;
    gap: 70px;
    padding: clamp(80px, 9vw, 138px) var(--page-pad);
    background: var(--sunny-mint);
}

.offline-banner .sunny-kicker {
    color: #287254;
}

.offline-banner > p {
    color: #466658;
    line-height: 1.8;
}

/* Product detail and checkout */

.product-intro {
    display: grid;
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(44px, 8vw, 130px);
    min-height: 760px;
    padding: calc(var(--header-height) + 68px) var(--page-pad) 90px;
    background:
        linear-gradient(130deg, rgba(233, 221, 255, .7), rgba(248, 246, 255, 0) 54%),
        var(--sunny-paper);
}

.product-visual-frame {
    height: clamp(430px, 49vw, 640px);
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 34px;
    background: var(--sunny-white);
    box-shadow: var(--sunny-shadow);
    transform: rotate(-1.5deg);
}

.product-visual-frame img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: 66% center;
    transform: scale(1.13);
}

.product-visual > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.product-visual > ul li {
    padding: 7px 11px;
    border: 1px solid #cbd0e5;
    border-radius: 999px;
    background: rgba(255, 255, 255, .64);
    color: var(--sunny-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
}

.product-copy {
    max-width: 690px;
}

.product-copy .sunny-kicker {
    margin-top: 50px;
}

.product-copy h1 {
    margin-top: 15px;
    color: var(--sunny-ink);
    font-size: clamp(58px, 7vw, 106px);
    font-weight: 820;
    letter-spacing: -.075em;
    line-height: .92;
}

.product-copy h1 span {
    display: block;
    color: var(--sunny-blue);
    font-size: .78em;
}

.product-description {
    max-width: 580px;
    margin-top: 27px;
    color: var(--sunny-muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.76;
}

.product-facts {
    margin: 32px 0;
    border-top: 1px solid var(--sunny-line);
}

.product-facts > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--sunny-line);
}

.product-facts dt {
    color: #7b8498;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
}

.product-facts dd {
    color: var(--sunny-ink);
    font-size: 13px;
    font-weight: 680;
}

.prototype-note {
    margin-top: 13px;
    color: #7e8798;
    font-size: 10px;
}

.buy-flow {
    padding: clamp(82px, 10vw, 148px) var(--page-pad);
    scroll-margin-top: 64px;
    background: var(--sunny-sky);
}

.checkout-shell {
    display: grid;
    grid-template-columns: minmax(230px, .35fr) minmax(0, .65fr);
    gap: 24px;
    max-width: 1240px;
    margin: 55px auto 0;
}

.checkout-product-summary {
    position: sticky;
    top: 95px;
    align-self: start;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 24px;
    background: rgba(255, 254, 251, .72);
    box-shadow: 0 14px 42px rgba(54, 79, 139, .09);
}

.checkout-product-summary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: 67% center;
    transform: scale(1.13);
}

.checkout-product-summary > div {
    display: grid;
    gap: 5px;
    padding: 22px;
}

.checkout-product-summary span {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
}

.checkout-product-summary strong {
    font-size: 20px;
    letter-spacing: -.025em;
}

.checkout-product-summary small {
    color: var(--sunny-muted);
    font-family: var(--font-mono);
    font-size: 9px;
}

.checkout-card {
    min-height: 670px;
    padding: clamp(26px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 28px;
    background: var(--sunny-white);
    box-shadow: var(--sunny-shadow);
    scroll-margin-top: 90px;
}

.checkout-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 50px;
    padding: 0;
    list-style: none;
}

.checkout-progress li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 13px;
    border-bottom: 3px solid #ececf4;
    color: #9a9fb0;
    font-size: 11px;
    font-weight: 720;
}

.checkout-progress li span {
    display: grid;
    flex: 0 0 24px;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ececf4;
    color: #7f8495;
    font-family: var(--font-mono);
    font-size: 9px;
}

.checkout-progress li.is-current {
    border-color: var(--sunny-blue);
    color: var(--sunny-blue);
}

.checkout-progress li.is-current span {
    background: var(--sunny-blue);
    color: #fff;
}

.checkout-progress li.is-complete {
    border-color: #81caa1;
    color: #387653;
}

.checkout-progress li.is-complete span {
    background: var(--sunny-mint);
    color: #286344;
}

.checkout-inline-error {
    margin: -25px 0 30px;
    padding: 16px 18px;
    border: 1px solid #f3b1a0;
    border-radius: 14px;
    background: #fff0eb;
    color: #7f3425;
}

.checkout-inline-error strong {
    display: block;
    font-size: 13px;
}

.checkout-inline-error p {
    margin-top: 3px;
    font-size: 12px;
}

.checkout-step[hidden] {
    display: none !important;
}

.checkout-step.is-active {
    animation: sunny-step-in .35s var(--ease-out) both;
}

.step-count {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.checkout-step h3 {
    margin-top: 12px;
    color: var(--sunny-ink);
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 780;
    letter-spacing: -.055em;
    line-height: 1;
}

.checkout-step h3:focus {
    outline: 0;
}

.step-lede {
    max-width: 650px;
    margin-top: 17px;
    color: var(--sunny-muted);
    font-size: 13px;
    line-height: 1.72;
}

.friendly-field {
    display: grid;
    gap: 9px;
    margin-top: 34px;
}

.friendly-field > span {
    color: var(--sunny-ink);
    font-size: 12px;
    font-weight: 760;
}

.friendly-field input {
    width: 100%;
    min-height: 64px;
    padding: 0 17px;
    border: 1px solid #cfd2e3;
    border-radius: 15px;
    outline: 0;
    background: #fff;
    color: var(--sunny-ink);
    font-size: 17px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.friendly-field input::placeholder {
    color: #b0b4c2;
}

.friendly-field input:focus {
    border-color: var(--sunny-blue);
    box-shadow: 0 0 0 4px rgba(74, 114, 255, .12);
}

.friendly-field input:user-invalid,
.friendly-field input.is-mismatch {
    border-color: #e27159;
    box-shadow: 0 0 0 4px rgba(226, 113, 89, .1);
}

.friendly-field [data-device-code] {
    font-family: var(--font-mono);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: .18em;
}

.friendly-field small {
    min-height: 18px;
    color: #7a8294;
    font-size: 10px;
    line-height: 1.5;
}

.friendly-field small.is-warning {
    color: #9a5b13;
}

.field-feedback.is-success {
    color: #347653;
}

.field-feedback.is-error {
    color: #b84f3a;
}

.js .progressive-confirm {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .5s var(--ease-out), opacity .3s ease, transform .4s var(--ease-out);
}

.js .progressive-confirm.is-ready {
    max-height: 150px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid #e5e6ef;
}

.step-actions > span {
    color: #8b91a1;
    font-size: 10px;
}

.step-actions--split {
    justify-content: space-between;
}

.review-list {
    margin-top: 30px;
    border-top: 1px solid #dddfea;
}

.review-list > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 52px;
    border-bottom: 1px solid #e5e6ef;
}

.review-list dt {
    color: #8b91a1;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
}

.review-list dd {
    overflow-wrap: anywhere;
    color: var(--sunny-ink);
    font-size: 13px;
    font-weight: 680;
}

.review-list button {
    padding: 5px 0;
    border: 0;
    border-bottom: 1px solid #aab9f1;
    background: transparent;
    color: var(--sunny-blue-deep);
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
}

.review-code {
    font-family: var(--font-mono);
    letter-spacing: .12em;
}

.review-confirm {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 13px;
    background: #f1f5ff;
    color: #4d5871;
    font-size: 11px;
    line-height: 1.55;
}

.review-confirm input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--sunny-blue);
}

.checkout-step[data-checkout-step="3"] .step-actions {
    margin-top: 18px;
}

.prototype-result {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 8vw, 130px);
    padding: clamp(84px, 10vw, 150px) var(--page-pad);
    scroll-margin-top: 70px;
    background: var(--sunny-mint);
}

.result-copy h2 {
    max-width: 680px;
    margin-top: 17px;
    color: var(--sunny-ink);
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 790;
    letter-spacing: -.06em;
    line-height: .98;
}

.result-copy > p:last-child {
    max-width: 560px;
    margin-top: 23px;
    color: #4b6759;
    line-height: 1.75;
}

.result-panel {
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 24px;
    background: rgba(255, 254, 251, .76);
    box-shadow: 0 18px 55px rgba(48, 102, 74, .1);
}

.result-panel dl {
    border-top: 1px solid #c4d9cc;
}

.result-panel dl > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #c4d9cc;
}

.result-panel dt {
    color: #668373;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
}

.result-panel dd {
    overflow-wrap: anywhere;
    color: var(--sunny-ink);
    font-size: 13px;
    font-weight: 680;
}

.payment-placeholders {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 14px;
}

.payment-placeholders > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 64px;
    padding: 0 16px;
    border: 1px dashed #abc4b5;
    border-radius: 14px;
    color: #657d70;
}

.payment-placeholders strong {
    color: #425c4e;
}

.payment-placeholders span {
    font-family: var(--font-mono);
    font-size: 8px;
}

.recovery-complete {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
    background: var(--sunny-white);
}

.recovery-complete strong {
    color: #28714f;
}

.recovery-complete p {
    margin-top: 6px;
    color: #607469;
    font-size: 11px;
}

.product-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--sunny-white);
}

.product-assurance article {
    min-height: 270px;
    padding: 48px var(--page-pad);
    border-right: 1px solid var(--sunny-line);
}

.product-assurance article:last-child {
    border-right: 0;
}

.product-assurance article > span {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 800;
}

.product-assurance h2 {
    margin-top: 60px;
    color: var(--sunny-ink);
    font-size: 19px;
    letter-spacing: -.025em;
}

.product-assurance p {
    max-width: 360px;
    margin-top: 11px;
    color: var(--sunny-muted);
    font-size: 12px;
    line-height: 1.66;
}

@keyframes sunny-step-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1060px) {
    .store-hero {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
    }

    .product-grid,
    .product-card {
        grid-template-columns: 1fr;
    }

    .next-release-card {
        min-height: 380px;
    }

    .product-intro {
        grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
    }
}

@media (max-width: 820px) {
    .store-page .site-header,
    .product-page .site-header,
    .order-page .site-header {
        min-height: 64px;
    }

    .store-page .site-nav a:not(:last-child),
    .product-page .site-nav a:not(:last-child),
    .order-page .site-nav a:not(:last-child) {
        display: none;
    }

    .store-hero,
    .product-intro {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: calc(var(--header-height) + 54px);
    }

    .store-hero {
        gap: 56px;
    }

    .featured-watch {
        width: min(100%, 600px);
        transform: none;
    }

    .featured-watch-image {
        height: min(74vw, 520px);
    }

    .shelf-heading,
    .buy-flow-heading {
        display: grid;
        align-items: start;
        gap: 24px;
    }

    .how-it-works ol,
    .product-assurance {
        grid-template-columns: 1fr;
    }

    .how-it-works li {
        min-height: 0;
    }

    .offline-banner,
    .prototype-result {
        grid-template-columns: 1fr;
    }

    .product-visual {
        order: 2;
    }

    .product-copy {
        order: 1;
    }

    .product-copy .sunny-kicker {
        margin-top: 35px;
    }

    .product-visual-frame {
        height: min(78vw, 600px);
        transform: none;
    }

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

    .checkout-product-summary {
        position: static;
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .checkout-product-summary img {
        height: 110px;
    }

    .product-assurance article {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid var(--sunny-line);
    }

    .product-assurance h2 {
        margin-top: 35px;
    }

    .store-page .site-footer,
    .product-page .site-footer,
    .order-page .site-footer {
        display: grid;
        gap: 24px;
    }

    .footer-meta {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .store-page,
    .product-page,
    .order-page {
        --page-pad: 28px;
    }

    .store-hero,
    .product-intro {
        padding-bottom: 64px;
    }

    .store-hero h1 {
        font-size: clamp(40px, 11vw, 48px);
    }

    .store-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .store-hero-actions .sunny-button,
    .store-hero-actions .sunny-link {
        width: 100%;
        text-align: center;
    }

    .featured-watch {
        padding: 9px;
        border-radius: 24px;
    }

    .featured-watch-image {
        border-radius: 17px;
    }

    .featured-watch-caption {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .product-card {
        min-height: 0;
    }

    .product-card-image {
        min-height: 420px;
    }

    .product-card-title,
    .product-card-meta {
        align-items: start;
        flex-direction: column;
    }

    .product-card-meta .sunny-button {
        width: 100%;
    }

    .how-it-works li {
        padding: 22px;
    }

    .product-copy h1 {
        font-size: clamp(46px, 13vw, 56px);
    }

    .product-copy h1 span {
        font-size: .62em;
    }

    .product-facts > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-copy > .sunny-button {
        width: 100%;
    }

    .buy-flow {
        padding-right: 14px;
        padding-left: 14px;
    }

    .checkout-card {
        min-height: 620px;
        padding: 24px 18px;
        border-radius: 22px;
    }

    .checkout-progress {
        margin-bottom: 38px;
    }

    .checkout-progress li {
        gap: 5px;
        font-size: 9px;
    }

    .checkout-progress li span {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }

    .friendly-field input {
        min-height: 60px;
    }

    .step-actions,
    .step-actions--split {
        position: sticky;
        bottom: 0;
        z-index: 3;
        align-items: stretch;
        flex-direction: column-reverse;
        margin-right: -18px;
        margin-left: -18px;
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
        background: rgba(255, 254, 251, .96);
        box-shadow: 0 -12px 26px rgba(44, 55, 87, .08);
        backdrop-filter: blur(12px);
    }

    .step-actions > .sunny-button {
        width: 100%;
    }

    .step-actions > span {
        text-align: center;
    }

    .review-list > div {
        grid-template-columns: 80px minmax(0, 1fr) auto;
    }

    .payment-placeholders {
        grid-template-columns: 1fr;
    }

    .result-panel dl > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-brand {
        align-items: start;
        flex-direction: column;
    }
}

/* Friendly order result */

.order-result-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .55fr);
    align-items: center;
    gap: clamp(48px, 9vw, 140px);
    min-height: 760px;
    padding: calc(var(--header-height) + 76px) var(--page-pad) 90px;
    background:
        linear-gradient(132deg, rgba(204, 239, 220, .78), rgba(248, 246, 255, 0) 58%),
        var(--sunny-paper);
}

.order-result-copy {
    max-width: 850px;
}

.order-status-pill {
    width: max-content;
    margin-top: 48px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--sunny-yellow);
    color: #665017;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .1em;
}

.order-status-pill--paid,
.order-status-pill--fulfilled,
.order-status-pill--active {
    background: var(--sunny-mint);
    color: #286347;
}

.order-status-pill--banned,
.order-status-pill--blocked,
.order-status-pill--revoked,
.order-status-pill--cancelled,
.order-status-pill--refunded {
    background: #ffe0d7;
    color: #8c3d2e;
}

.order-result-copy h1 {
    margin-top: 22px;
    color: var(--sunny-ink);
    font-size: clamp(50px, 6.8vw, 98px);
    font-weight: 820;
    letter-spacing: -.073em;
    line-height: .92;
}

.order-result-copy h1 span {
    display: block;
    color: var(--sunny-blue);
}

.order-result-copy > p:not(.order-status-pill) {
    max-width: 620px;
    margin-top: 28px;
    color: var(--sunny-muted);
    font-size: 15px;
    line-height: 1.76;
}

.order-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.order-product-card {
    overflow: hidden;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 30px;
    background: var(--sunny-white);
    box-shadow: var(--sunny-shadow);
    transform: rotate(1.4deg);
}

.order-product-card img {
    width: 100%;
    height: min(41vw, 470px);
    border-radius: 21px;
    object-fit: cover;
    object-position: 66% center;
    transform: scale(1.12);
}

.order-product-card > div {
    display: grid;
    gap: 4px;
    padding: 18px 10px 9px;
}

.order-product-card span {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
}

.order-product-card strong {
    font-size: 21px;
    letter-spacing: -.03em;
}

.order-product-card small {
    color: var(--sunny-muted);
    font-family: var(--font-mono);
    font-size: 9px;
}

.order-code-section {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(480px, 1.25fr);
    gap: clamp(44px, 8vw, 130px);
    padding: clamp(88px, 10vw, 150px) var(--page-pad);
    scroll-margin-top: 70px;
    background: var(--sunny-sky);
}

.order-code-section header {
    max-width: 600px;
}

.order-code-section h2,
.order-info-section h2 {
    margin-top: 16px;
    color: var(--sunny-ink);
    font-size: clamp(39px, 5vw, 68px);
    font-weight: 790;
    letter-spacing: -.06em;
    line-height: .98;
}

.order-code-section header > p:last-child,
.order-info-section > div > p:last-child {
    margin-top: 23px;
    color: var(--sunny-muted);
    line-height: 1.75;
}

.friendly-license-card {
    align-self: start;
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 26px;
    background: var(--sunny-white);
    box-shadow: var(--sunny-shadow);
}

.friendly-license-card > span {
    color: var(--sunny-blue);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
}

.friendly-license-card .license-code {
    display: block;
    min-height: 0;
    margin: 17px 0 22px;
    color: var(--sunny-ink);
    font-size: clamp(24px, 3.8vw, 50px);
    letter-spacing: .075em;
    line-height: 1.15;
    white-space: nowrap;
}

.friendly-license-card > .sunny-button {
    width: 100%;
}

.friendly-unlock-steps {
    display: grid;
    gap: 0;
    margin: 29px 0 0;
    padding: 0;
    border-top: 1px solid #e1e3ed;
    list-style: none;
}

.friendly-unlock-steps li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 52px;
    border-bottom: 1px solid #e1e3ed;
    color: #586177;
    font-size: 11px;
}

.friendly-unlock-steps li span {
    display: grid;
    flex: 0 0 25px;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--sunny-lilac);
    color: var(--sunny-blue-deep);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 800;
}

.friendly-pending {
    display: grid;
    gap: 12px;
    min-height: 260px;
    align-content: center;
}

.friendly-pending strong {
    font-size: 24px;
    letter-spacing: -.035em;
}

.friendly-pending p {
    color: var(--sunny-muted);
    font-size: 12px;
    line-height: 1.7;
}

.friendly-pending .sunny-button {
    width: max-content;
    margin-top: 8px;
}

.order-info-section {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(430px, 1.25fr);
    gap: clamp(44px, 8vw, 130px);
    padding: clamp(82px, 9vw, 130px) var(--page-pad);
    background: var(--sunny-white);
}

.order-info-section dl {
    align-self: start;
    border-top: 1px solid var(--sunny-line);
}

.order-info-section dl > div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 22px;
    padding: 15px 0;
    border-bottom: 1px solid var(--sunny-line);
}

.order-info-section dt {
    color: #8990a0;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
}

.order-info-section dd {
    overflow-wrap: anywhere;
    color: var(--sunny-ink);
    font-size: 13px;
    font-weight: 680;
}

@media (max-width: 820px) {
    .order-result-hero,
    .order-code-section,
    .order-info-section {
        grid-template-columns: 1fr;
    }

    .order-product-card {
        width: min(100%, 580px);
        transform: none;
    }

    .order-product-card img {
        height: min(76vw, 520px);
    }
}

@media (max-width: 600px) {
    .order-result-hero {
        padding-top: calc(var(--header-height) + 54px);
    }

    .order-result-copy h1 {
        font-size: clamp(36px, 9.5vw, 42px);
    }

    .order-hero-actions .sunny-button,
    .friendly-pending .sunny-button {
        width: 100%;
    }

    .order-code-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .friendly-license-card {
        padding: 24px 18px;
    }

    .friendly-license-card .license-code {
        overflow-x: auto;
        font-size: clamp(22px, 7vw, 32px);
    }

    .order-info-section dl > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
