@font-face {
    font-family: "Geist";
    src: url("../fonts/geist-latin-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Geist Mono";
    src: url("../fonts/geist-mono-latin-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    color-scheme: light;
    --chalk: #f7f7f7;
    --paper: #ffffff;
    --carbon: #1a1a1a;
    --muted: #1a1a1a;
    --aluminium: #a7aaad;
    --fog: #e6e8ea;
    --line: #c7c9cb;
    --signal: #e31f1a;
    --signal-dark: #be1713;
    --shell: min(100% - 40px, 1360px);
    --section: clamp(68px, 8vw, 120px);
    --display: clamp(2.9rem, 5vw, 4.75rem);
}

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

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

body {
    margin: 0;
    background: var(--chalk);
    color: var(--carbon);
    font-family: "Geist", Arial, sans-serif;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-underline-offset: 0.16em;
}

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

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

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

:target,
:focus {
    scroll-margin-top: 100px;
}

[hidden] {
    display: none !important;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.sr-only {
    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: 12px 16px;
    transform: translateY(-160%);
    background: var(--carbon);
    color: var(--paper);
    font: 650 0.75rem/1 "Geist Mono", monospace;
    text-decoration: none;
}

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

.launch-bar {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 7px 20px;
    background: var(--carbon);
    color: var(--paper);
    font: 590 0.64rem/1.2 "Geist Mono", monospace;
    letter-spacing: 0.045em;
    text-align: center;
    text-transform: uppercase;
}

.launch-bar span {
    color: var(--signal);
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: var(--chalk);
}

.site-header__row {
    display: grid;
    min-height: 72px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.wordmark {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.brand-mark {
    width: 23px;
    color: var(--signal);
}

.brand-mark svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-width: 2.25;
}

.brand-type {
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a,
.header-action,
.mobile-nav a {
    min-height: 44px;
    align-items: center;
    justify-content: center;
    font: 580 0.69rem/1 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
}

.desktop-nav a {
    display: inline-flex;
    border-bottom: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    border-color: var(--signal);
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.header-action {
    display: inline-flex;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--carbon);
    border-radius: 2px;
}

.header-action__count {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    background: var(--carbon);
    color: var(--paper);
}

.header-action:hover {
    border-color: var(--signal);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--carbon);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    margin: 4px auto;
    background: currentColor;
}

.mobile-nav {
    padding: 8px 20px 20px;
    border-top: 1px solid var(--line);
    background: var(--chalk);
}

.mobile-nav a {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font: 640 0.72rem/1 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.button--primary[data-saved="true"] {
    border-color: var(--carbon);
    background: var(--carbon);
}

.button--secondary[data-saved="true"] {
    background: var(--carbon);
    color: var(--paper);
}

.button:disabled {
    border-color: var(--aluminium);
    background: var(--fog);
    color: var(--carbon);
    cursor: not-allowed;
}

.button--secondary {
    border-color: var(--carbon);
    background: transparent;
    color: var(--carbon);
}

.button--secondary:hover {
    background: var(--carbon);
    color: var(--paper);
}

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

.button[aria-busy="true"] {
    cursor: wait;
    opacity: 0.65;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    font: 620 0.7rem/1.2 "Geist Mono", monospace;
    text-transform: uppercase;
}

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

.hero {
    display: grid;
    min-height: min(590px, calc(100svh - 102px));
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.hero__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 5vw, 72px) max(20px, calc((100vw - 1360px) / 2 + 20px));
}

.hero h1,
.shop-hero h1,
.wishlist-hero h1,
.cart-hero h1,
.product-detail__copy h1,
.error-page h1 {
    max-width: 10ch;
    margin: 0;
    font-size: var(--display);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 0.94;
    text-wrap: balance;
}

.hero__lead {
    max-width: 58ch;
    margin: 20px 0 22px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.48;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 22px 0 0;
    padding: 0;
    border-block: 1px solid var(--line);
    list-style: none;
}

.hero-proof li {
    display: grid;
    min-width: 0;
    gap: 2px;
    padding: 11px 10px;
    border-right: 1px solid var(--line);
}

.hero-proof li:first-child {
    padding-left: 0;
}

.hero-proof li:last-child {
    border-right: 0;
}

.hero-proof strong {
    font-size: 1.3rem;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.hero-proof span {
    color: var(--muted);
    font: 570 0.56rem/1.25 "Geist Mono", monospace;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.hero__state {
    display: grid;
    max-width: 570px;
    grid-template-columns: auto 1fr;
    gap: 12px 18px;
    align-items: start;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.device-matrix {
    position: relative;
    display: grid;
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    border-bottom: 1px solid var(--line);
    background: var(--chalk);
}

.device-matrix__intro {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    min-height: 94px;
    padding: 16px max(20px, calc((100vw - 1360px) / 2 + 20px));
    border-right: 1px solid var(--line);
}

.device-matrix__intro > span,
.device-matrix__credit {
    color: var(--signal-dark);
    font: 620 0.58rem/1.3 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.device-matrix__intro strong {
    display: block;
    font-size: 1rem;
}

.device-matrix__intro p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.device-matrix ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.device-matrix li {
    display: grid;
    min-width: 0;
    align-content: center;
    justify-items: center;
    gap: 6px;
    min-height: 94px;
    padding: 12px 8px;
    border-right: 1px solid var(--line);
    font: 590 0.58rem/1.2 "Geist Mono", monospace;
    text-transform: uppercase;
}

.device-matrix li:last-child {
    border-right: 0;
}

.device-matrix li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.device-matrix li small {
    color: var(--muted);
    font: 540 0.48rem/1.2 "Geist Mono", monospace;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.device-matrix__fallback {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--carbon);
    border-radius: 2px;
    background: var(--paper);
    font: 700 0.84rem/1 "Geist Mono", monospace;
}

.device-matrix__credit {
    position: absolute;
    right: 8px;
    bottom: 4px;
    margin: 0;
    color: var(--muted);
    font-size: 0.46rem;
}

.hero__state span,
.product-label,
.target-price span,
.concept-label,
.detail-state,
.table-state,
.wishlist-assurance strong,
.wishlist-assurance span,
.cart-assurance strong,
.cart-assurance span,
.footer-readiness > span,
.checkout-lock__grid > span,
.shop-hero__state span {
    font: 630 0.64rem/1.35 "Geist Mono", monospace;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.hero__state span {
    color: var(--signal-dark);
}

.hero__state p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.hero__media {
    position: relative;
    order: -1;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: var(--fog);
}

.hero__media picture,
.hero__media img {
    width: 100%;
    height: 100%;
}

.hero__media img {
    object-fit: cover;
}

.hero__media figcaption,
.product-detail__media figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 10px;
    background: var(--paper);
    color: var(--carbon);
    font: 570 0.58rem/1.2 "Geist Mono", monospace;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.calibration-sweep {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.calibration-sweep span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: var(--signal);
    animation: calibration-sweep 1150ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

@keyframes calibration-sweep {
    from { transform: translateX(12vw); opacity: 0; }
    20% { opacity: 1; }
    to { transform: translateX(49vw); opacity: 0; }
}

.proof-strip {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: var(--chalk);
}

.proof-strip > div {
    display: grid;
    min-height: 88px;
    align-content: center;
    gap: 4px;
    padding: 14px clamp(16px, 2vw, 30px);
    border-right: 1px solid var(--line);
}

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

.proof-strip span,
.proof-strip small {
    color: var(--muted);
    font: 550 0.62rem/1.35 "Geist Mono", monospace;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.proof-strip__intro {
    background: var(--carbon);
    color: var(--paper);
}

.proof-strip__intro span {
    color: var(--aluminium);
}

.finder-section,
.comparison-section,
.shop-catalogue,
.wishlist-content,
.use-case-section {
    padding-block: var(--section);
}

.section-heading {
    margin-bottom: clamp(30px, 4vw, 54px);
}

.section-heading--wide {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 48px;
    align-items: end;
}

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

.section-heading h2,
.proof-section h2,
.capability-section h2,
.use-case-section h2,
.checkout-lock h2,
.closing-cta h2,
.catalogue-toolbar h2,
.empty-state h2 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 720;
    letter-spacing: -0.04em;
    line-height: 0.98;
    text-wrap: balance;
}

.section-heading p,
.proof-section__statement p,
.capability-section__grid > div > p,
.use-case-section > div > p,
.closing-cta p,
.catalogue-toolbar p,
.empty-state p {
    max-width: 56ch;
    margin: 12px 0 0;
    color: var(--muted);
}

.finder-list {
    border-top: 1px solid var(--carbon);
}

.finder-list a {
    display: grid;
    min-height: 98px;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background-color 180ms ease;
}

.finder-list a:hover {
    background: var(--paper);
}

.finder-list__index {
    color: var(--signal);
    font: 620 0.72rem/1 "Geist Mono", monospace;
}

.finder-list a > span:nth-child(2) {
    display: grid;
    gap: 4px;
}

.finder-list strong {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.finder-list small {
    color: var(--muted);
}

.finder-list a > span:last-child {
    color: var(--signal);
    font-size: 1.25rem;
}

.catalogue-section,
.research-section {
    padding-block: var(--section);
    border-top: 1px solid var(--line);
}

.catalogue-section--launch {
    background: var(--paper);
}

.research-section {
    background: var(--fog);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: var(--paper);
}

.product-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--fog);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__media:hover img {
    transform: scale(1.018);
}

.concept-label {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 7px 9px;
    background: var(--paper);
    text-align: center;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(20px, 2.2vw, 30px);
}

.product-card__heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.product-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.product-card h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
}

.product-card h3 a {
    text-decoration: none;
}

.target-price {
    display: grid;
    flex: 0 0 auto;
    gap: 3px;
    margin: 0;
    text-align: right;
}

.target-price span {
    color: var(--muted);
}

.target-price strong {
    font-size: 1.12rem;
    font-weight: 690;
    font-variant-numeric: tabular-nums;
}

.product-summary {
    min-height: 4.65em;
    margin: 22px 0;
    color: var(--muted);
}

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

.spec-grid > div {
    min-width: 0;
    min-height: 74px;
    padding: 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.spec-grid dt {
    color: var(--muted);
    font: 590 0.58rem/1.3 "Geist Mono", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.spec-grid dd {
    margin: 7px 0 0;
    font: 610 0.74rem/1.35 "Geist Mono", monospace;
    overflow-wrap: anywhere;
}

.product-state {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--chalk);
}

.product-state span {
    font: 640 0.65rem/1.3 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.product-state[data-state="launch-candidate"] span,
.table-state[data-state="launch-candidate"] {
    color: var(--signal-dark);
}

.product-state p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}

.cart-form--card {
    grid-column: 1 / -1;
}

.cart-form--card .button {
    width: 100%;
}

.proof-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    border-block: 1px solid var(--line);
    background: var(--carbon);
    color: var(--paper);
}

.proof-section__statement,
.proof-sequence {
    padding: var(--section) max(20px, calc((100vw - 1360px) / 2 + 20px));
}

.proof-section__statement {
    border-right: 1px solid var(--aluminium);
}

.proof-section h2 {
    max-width: 12ch;
}

.proof-section__statement p {
    color: var(--aluminium);
}

.proof-sequence {
    margin: 0;
    list-style: none;
}

.proof-sequence li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--aluminium);
}

.proof-sequence li:first-child {
    border-top: 1px solid var(--aluminium);
}

.proof-sequence li > span {
    color: var(--aluminium);
    font: 600 0.65rem/1.4 "Geist Mono", monospace;
}

.proof-sequence strong {
    font-size: 1.12rem;
}

.proof-sequence p {
    margin: 3px 0 0;
    color: var(--aluminium);
    font-size: 0.88rem;
}

.comparison-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    background: var(--paper);
}

.comparison-scroll:focus-visible {
    outline-offset: 4px;
}

.comparison-scroll table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
    text-align: left;
}

.comparison-scroll th,
.comparison-scroll td {
    padding: 18px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font: 560 0.72rem/1.4 "Geist Mono", monospace;
    vertical-align: top;
    font-variant-numeric: tabular-nums;
}

.comparison-scroll thead th {
    background: var(--carbon);
    color: var(--paper);
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.comparison-scroll tbody th {
    font-family: "Geist", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 680;
}

.comparison-scroll tr:last-child th,
.comparison-scroll tr:last-child td {
    border-bottom: 0;
}

.table-hint {
    color: var(--muted);
    font: 560 0.62rem/1.4 "Geist Mono", monospace;
    text-transform: uppercase;
}

.table-state {
    display: inline-block;
    max-width: 20ch;
}

.closing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(60px, 7vw, 100px) max(20px, calc((100vw - 1360px) / 2 + 20px));
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.closing-cta h2 {
    max-width: 16ch;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--carbon);
    color: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.9fr 1.4fr;
    gap: clamp(30px, 5vw, 76px);
    padding-block: clamp(56px, 7vw, 96px);
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid h2 {
    margin: 0 0 18px;
    color: var(--aluminium);
    font: 600 0.62rem/1.3 "Geist Mono", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-grid a:not(.wordmark) {
    min-height: 34px;
    color: var(--fog);
    font-size: 0.9rem;
}

.footer-brand > p {
    margin: 20px 0 0;
    font-size: 1.15rem;
    font-weight: 650;
}

.footer-brand .footer-note {
    max-width: 43ch;
    margin-top: 8px;
    color: var(--aluminium);
    font-size: 0.82rem;
    font-weight: 450;
}

.footer-readiness {
    padding: 22px;
    border: 1px solid var(--aluminium);
}

.footer-readiness > span {
    color: var(--aluminium);
}

.footer-readiness strong {
    margin-top: 13px;
    font-size: 1.12rem;
}

.footer-readiness p {
    margin: 9px 0 0;
    color: var(--aluminium);
    font-size: 0.84rem;
}

.footer-bottom {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--aluminium);
    color: var(--aluminium);
    font: 520 0.58rem/1.4 "Geist Mono", monospace;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Shop */
.shop-hero {
    padding-block: clamp(52px, 6vw, 88px);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.shop-hero__grid,
.wishlist-hero,
.cart-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: end;
}

.shop-hero h1,
.wishlist-hero h1,
.cart-hero h1 {
    max-width: 12ch;
}

.shop-hero__grid > div:first-child > p,
.wishlist-hero > div:first-child > p,
.cart-hero > div:first-child > p {
    max-width: 58ch;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.shop-hero__state,
.wishlist-assurance,
.cart-assurance {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--chalk);
}

.shop-hero__state span,
.wishlist-assurance strong,
.cart-assurance strong {
    color: var(--signal-dark);
}

.shop-hero__state small {
    padding-top: 10px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.catalogue-toolbar {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 42px;
}

.catalogue-toolbar h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.filter-controls button,
.text-button {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--paper);
    font: 590 0.65rem/1 "Geist Mono", monospace;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-controls button:hover,
.filter-controls button.is-active {
    border-color: var(--carbon);
    background: var(--carbon);
    color: var(--paper);
}

.product-card[aria-hidden="true"] {
    display: none;
}

.empty-state {
    padding: clamp(48px, 7vw, 90px);
    border: 1px solid var(--line);
    background: var(--paper);
    text-align: center;
}

.empty-state h2,
.empty-state p {
    margin-inline: auto;
}

.empty-state .button {
    margin-top: 22px;
}

/* Product */
.breadcrumbs {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font: 570 0.62rem/1.3 "Geist Mono", monospace;
    text-transform: uppercase;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    border: 1px solid var(--line);
    background: var(--paper);
}

.product-detail__media {
    position: relative;
    order: -1;
    min-width: 0;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: var(--fog);
}

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

.product-detail__copy {
    padding: clamp(30px, 4vw, 52px);
}

.product-detail__copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 4.5vw, 4.4rem);
}

.product-detail__lead {
    max-width: 54ch;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.detail-commerce-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin: 22px 0 16px;
    padding-block: 14px;
    border-block: 1px solid var(--line);
}

.target-price--large {
    text-align: left;
}

.target-price--large strong {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.detail-state {
    max-width: 20ch;
    text-align: right;
}

.detail-state[data-state="launch-candidate"] {
    color: var(--signal-dark);
}

.evidence-notice {
    margin: 16px 0 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--chalk);
}

.evidence-notice strong {
    font: 630 0.67rem/1.3 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.evidence-notice p,
.commerce-note {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.product-detail__actions {
    display: grid;
    gap: 10px;
}

.action-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 8px 0 0;
    padding: 0;
    border-block: 1px solid var(--line);
    list-style: none;
}

.action-assurance li {
    min-width: 0;
    padding: 8px 5px;
    border-right: 1px solid var(--line);
    font: 590 0.54rem/1.2 "Geist Mono", monospace;
    text-align: center;
    text-transform: uppercase;
}

.action-assurance li:last-child {
    border-right: 0;
}

.cart-form--detail {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 10px;
}

.quantity-field {
    display: grid;
    gap: 6px;
}

.quantity-field span {
    font: 600 0.6rem/1.2 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.quantity-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid var(--carbon);
    border-radius: 2px;
    background: var(--paper);
    font-variant-numeric: tabular-nums;
}

.commerce-note {
    text-align: center;
}

.spec-grid--detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.spec-grid--detail > div:last-child {
    grid-column: 1 / -1;
}

.capability-section {
    margin-top: var(--section);
    border-block: 1px solid var(--line);
    background: var(--carbon);
    color: var(--paper);
}

.capability-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(56px, 9vw, 140px);
    padding-block: var(--section);
}

.capability-section__grid > div > p {
    color: var(--aluminium);
}

.capability-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.capability-list li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 74px;
    border-bottom: 1px solid var(--aluminium);
}

.capability-list li:first-child {
    border-top: 1px solid var(--aluminium);
}

.capability-list li > span {
    color: var(--signal);
}

.capability-list small {
    color: var(--aluminium);
    font: 540 0.58rem/1.3 "Geist Mono", monospace;
    text-transform: uppercase;
}

.use-case-section {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
    gap: 70px;
}

.use-case-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.use-case-list span {
    display: flex;
    min-height: 84px;
    align-items: center;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-weight: 640;
}

.checkout-lock {
    border-top: 1px solid var(--line);
    background: var(--fog);
}

.checkout-lock__grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
    gap: 60px;
    padding-block: clamp(56px, 7vw, 100px);
}

.checkout-lock__grid > span {
    color: var(--signal-dark);
}

.checkout-lock h2 {
    max-width: none;
}

.checkout-lock p {
    max-width: 65ch;
    margin: 12px 0 0;
    color: var(--muted);
}

/* Wishlist, cart and generic */
.wishlist-hero,
.cart-hero {
    padding-block: clamp(52px, 6vw, 88px);
}

.wishlist-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.wishlist-toolbar p {
    margin: 0;
}

.wishlist-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.text-button {
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

[data-wishlist-grid] > div {
    display: contents;
}

.cart-content {
    padding-block: var(--section);
}

.cart-content .woocommerce-error,
.cart-content .woocommerce-info,
.cart-content .woocommerce-message {
    width: 100%;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
}

.cart-lines {
    border-top: 1px solid var(--line);
}

.cart-line {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--paper);
}

.cart-line__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: var(--fog);
}

.cart-line__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-line__body {
    min-width: 0;
    padding: clamp(20px, 3vw, 34px);
}

.cart-line__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.cart-line h3 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.35rem);
    letter-spacing: -0.035em;
    line-height: 1;
}

.cart-line h3 a {
    text-decoration: none;
}

.cart-line__summary {
    max-width: 58ch;
    margin: 18px 0;
    color: var(--muted);
}

.cart-line__controls {
    display: grid;
    grid-template-columns: 90px minmax(130px, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.cart-line__subtotal {
    display: grid;
    gap: 5px;
    margin: 0;
}

.cart-line__subtotal span,
.cart-summary > span {
    font: 600 0.6rem/1.2 "Geist Mono", monospace;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.cart-line__subtotal strong {
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
}

.remove-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    color: var(--signal-dark);
    font: 620 0.64rem/1.2 "Geist Mono", monospace;
    text-transform: uppercase;
}

.cart-update {
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
}

.cart-summary {
    position: sticky;
    top: 124px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid var(--carbon);
    background: var(--paper);
}

.cart-summary > span {
    color: var(--signal-dark);
}

.cart-summary h2 {
    margin: 9px 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.cart-summary dl {
    margin: 0 0 24px;
    border-top: 1px solid var(--line);
}

.cart-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 13px;
    border-bottom: 1px solid var(--line);
}

.cart-summary dt,
.cart-summary dd {
    margin: 0;
}

.cart-summary dd {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.cart-summary > p {
    margin: 12px 0 20px;
    color: var(--muted);
    font-size: 0.84rem;
}

.generic-page {
    min-height: 55vh;
    padding-block: var(--section);
}

.generic-page > article,
.error-page {
    max-width: 760px;
}

.generic-page h1 {
    margin: 0 0 30px;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.error-page .button {
    margin-top: 20px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    width: var(--shell);
    margin: 20px auto;
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    list-style: none;
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 32px, 960px);
    }

    .desktop-nav {
        display: none;
    }

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

    .menu-button {
        display: block;
    }

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

    .hero__copy {
        order: 1;
        min-height: 520px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero__media {
        order: 2;
        aspect-ratio: 16 / 10;
        border-right: 0;
    }

    @keyframes calibration-sweep {
        from { transform: translateX(8vw); opacity: 0; }
        20% { opacity: 1; }
        to { transform: translateX(92vw); opacity: 0; }
    }

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

    .proof-strip__intro {
        grid-column: 1 / -1;
    }

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

    .proof-section {
        grid-template-columns: 1fr;
    }

    .proof-section__statement {
        border-right: 0;
        border-bottom: 1px solid var(--aluminium);
    }

    .proof-section__statement,
    .proof-sequence {
        padding-inline: max(20px, calc((100vw - 960px) / 2 + 16px));
    }

    .footer-grid {
        grid-template-columns: 1.5fr 0.75fr 0.9fr;
    }

    .footer-readiness {
        grid-column: 1 / -1;
    }

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

    .product-detail__media {
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .section-heading--wide,
    .shop-hero__grid,
    .wishlist-hero,
    .cart-hero,
    .catalogue-toolbar,
    .capability-section__grid,
    .use-case-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .product-detail__copy {
        order: -1;
    }

    .product-detail__media {
        order: 2;
        min-height: auto;
        aspect-ratio: 4 / 3;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .catalogue-toolbar {
        align-items: start;
    }

    .filter-controls {
        justify-content: flex-start;
    }

    .checkout-lock__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: min(100% - 28px, 560px);
        --display: clamp(2.55rem, 12.5vw, 3.25rem);
        --section: 64px;
    }

    .launch-bar {
        gap: 9px;
        padding-inline: 10px;
        font-size: 0.55rem;
    }

    .site-header__row {
        min-height: 64px;
    }

    .brand-type {
        font-size: 0.92rem;
    }

    .brand-mark {
        width: 20px;
    }

    .header-action {
        gap: 5px;
        padding: 0 7px;
        border-color: var(--line);
    }

    .header-action__label {
        font-size: 0.54rem;
    }

    .header-action__count {
        width: 19px;
        height: 19px;
        font-size: 0.58rem;
    }

    .hero__copy {
        min-height: 0;
        padding: 40px 20px 36px;
    }

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

    .hero__lead {
        margin-top: 16px;
        font-size: 1rem;
    }

    .button-row,
    .button-row .button {
        width: 100%;
    }

    .hero__state {
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .hero__media {
        aspect-ratio: 1 / 0.82;
    }

    .hero__media figcaption,
    .product-detail__media figcaption {
        right: 8px;
        bottom: 8px;
        left: 8px;
        text-align: center;
    }

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

    .proof-strip__intro {
        grid-column: 1 / -1;
    }

    .proof-strip > div {
        min-height: 86px;
    }

    .device-matrix {
        grid-template-columns: 1fr;
    }

    .device-matrix__intro {
        grid-template-columns: 1fr;
        gap: 6px;
        min-height: 0;
        padding: 18px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .device-matrix ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .device-matrix li {
        min-height: 76px;
        border-bottom: 1px solid var(--line);
    }

    .device-matrix li:nth-child(3) {
        border-right: 0;
    }

    .device-matrix li:nth-child(n + 4) {
        border-bottom: 0;
    }

    .device-matrix__credit {
        position: static;
        padding: 7px 14px;
        border-top: 1px solid var(--line);
        text-align: right;
    }

    .section-heading h2,
    .proof-section h2,
    .capability-section h2,
    .use-case-section h2,
    .checkout-lock h2,
    .closing-cta h2,
    .catalogue-toolbar h2,
    .empty-state h2 {
        font-size: clamp(2rem, 10vw, 2.45rem);
    }

    .finder-list a {
        grid-template-columns: 28px 1fr 18px;
        gap: 12px;
        padding-block: 16px;
    }

    .finder-list small {
        font-size: 0.78rem;
    }

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

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

    .proof-section__statement,
    .proof-sequence {
        padding-inline: 20px;
    }

    .comparison-section {
        width: 100%;
    }

    .comparison-section .section-heading {
        width: var(--shell);
        margin-inline: auto;
    }

    .comparison-scroll {
        border-right: 0;
        border-left: 0;
    }

    .closing-cta {
        padding-inline: 20px;
    }

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

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

    .footer-brand,
    .footer-readiness {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }

    .shop-hero h1,
    .wishlist-hero h1,
    .cart-hero h1 {
        max-width: 10ch;
    }

    .filter-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .filter-controls button:last-child {
        grid-column: 1 / -1;
    }

    .product-detail-page .shell:not(.breadcrumbs),
    .product-detail {
        width: 100%;
    }

    .product-detail {
        border-right: 0;
        border-left: 0;
    }

    .product-detail__copy {
        padding: 28px 20px 32px;
    }

    .product-detail__copy h1 {
        font-size: clamp(2.65rem, 13vw, 3.25rem);
    }

    .detail-commerce-row {
        align-items: end;
    }

    .detail-state {
        text-align: left;
    }

    .capability-list li {
        grid-template-columns: 22px 1fr;
        padding-block: 14px;
    }

    .capability-list small {
        grid-column: 2;
    }

    .use-case-list {
        grid-template-columns: 1fr;
    }

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

    .cart-form--detail {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .cart-line__media {
        aspect-ratio: 4 / 3;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .cart-line__heading {
        flex-direction: column;
    }

    .cart-line__heading .target-price {
        text-align: left;
    }

    .cart-line__controls {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .remove-link {
        grid-column: 1 / -1;
    }

    .cart-update .button {
        width: 100%;
    }
}

@media (max-width: 340px) {
    .product-card__actions {
        grid-template-columns: 1fr;
    }
}

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

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

    .calibration-sweep {
        display: none;
    }
}

@media print {
    .launch-bar,
    .site-header,
    .site-footer,
    .button,
    .calibration-sweep {
        display: none !important;
    }

    body {
        background: var(--paper);
    }
}
