:root {
  --ink: #101113;
  --muted: #62666b;
  --paper: #f7f7f5;
  --white: #ffffff;
  --line: #d9d9d4;
  --soft: #ecece8;
  --accent: #d7ff43;
  --accent-dark: #b7dc2f;
  --max: 1200px;
  --narrow: 760px;
  --radius: 2px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 1rem; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--accent); padding: .75rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.shell--narrow { max-width: var(--narrow); }
.site-header { height: 82px; display: flex; align-items: center; justify-content: space-between; padding-inline: max(1rem, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); background: rgba(247,247,245,.94); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px); }
.wordmark { font-size: clamp(1.08rem, calc(.98rem + .28vw), 1.24rem); font-weight: 800; letter-spacing: .23em; text-decoration: none; }
.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a { text-decoration: none; font-size: .9rem; font-weight: 650; }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .4em; }
.site-nav a:hover, .site-nav a:focus-visible, .text-link:hover { text-decoration: underline; text-underline-offset: .3em; }
.menu-button { display: none; width: 48px; height: 48px; background: transparent; border: 0; padding: 12px 9px; align-content: center; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .18s ease, opacity .18s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); font-weight: 650; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 650; }
p { margin: 0 0 1.25rem; }
.eyebrow, .section-label { margin: 0 0 1rem; color: var(--muted); font-size: .75rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.lede { color: #383b3f; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; max-width: 42rem; }
.button-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { min-height: 48px; padding: .78rem 1.2rem; border: 1px solid var(--ink); display: inline-flex; justify-content: center; align-items: center; gap: .5rem; text-decoration: none; font-weight: 750; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid #4b67ff; outline-offset: 3px; }
.button--primary { background: var(--ink); color: var(--white); }
.button--primary:hover { background: #2b2e32; }
.button--secondary { background: transparent; }
.button--secondary:hover { background: var(--white); }
.text-link { font-weight: 700; text-decoration: none; }
.home-hero { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding-block: 4rem; }
.home-hero__copy h1 { max-width: 11ch; }
.home-hero__copy .lede { max-width: 35rem; }
.home-hero__image { overflow: hidden; background: var(--soft); text-decoration: none; align-self: center; width: 100%; display: grid; }
.home-hero__image img { width: 100%; height: clamp(360px, calc(100svh - 18.5rem), 620px); object-fit: cover; object-position: center 68%; }
.home-hero__overlay { background: var(--ink); color: var(--white); padding: 1rem 1.1rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: .15rem 1rem; font-size: .9rem; }
.home-hero__overlay small { grid-column: 1 / -1; color: #b9bdc2; font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.home-hero__overlay strong { font-weight: 500; }
.home-hero__overlay b { color: var(--white); }
.home-hero__image:hover .home-hero__overlay b { text-decoration: underline; text-underline-offset: .2em; }
.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section--following-intro { padding-top: 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.product-grid--all { grid-template-columns: repeat(3, 1fr); }
.product-card { background: var(--white); border: 1px solid var(--line); }
.product-card__image { display: block; aspect-ratio: 4 / 4.7; overflow: hidden; background: var(--soft); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__image img { transform: scale(1.018); }
.product-card__body { padding: 1.4rem; }
.product-card h3 a { text-decoration: none; }
.product-card__body > p:not(.eyebrow) { color: var(--muted); }
.product-card__footer { border-top: 1px solid var(--line); margin-top: 1.5rem; padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; }
.page-intro { padding-block: clamp(3.5rem, 7vw, 6rem); }
.page-intro h1 { max-width: 13ch; }
.page-intro.shell--narrow h1 { max-width: none; }
.product-hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(2rem, 5vw, 5rem); align-items: start; }
.product-hero__content { position: sticky; top: 120px; padding-block: 2rem; }
.product-hero__content h1 { font-size: clamp(2.6rem, 5vw, 5rem); }
.product-price { font-size: 1.4rem; font-weight: 750; margin: 2rem 0 1rem; }
.purchase-note { font-size: .82rem; color: var(--muted); margin-top: .7rem; }
.availability-note { color: var(--muted); font-size: .9rem; margin: -.15rem 0 1rem; }
.related-product { margin-top: 1.1rem; font-size: .9rem; }
.configuration-note { border-left: 2px solid var(--ink); padding-left: .75rem; color: #383b3f; font-size: .88rem; }
.option-field { margin-bottom: 1rem; max-width: 18rem; }
.option-field label { display: block; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.option-field select { width: 100%; min-height: 48px; background: var(--white); border: 1px solid var(--ink); padding: .65rem; }
.gallery__main { background: var(--soft); height: clamp(540px, 70svh, 680px); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__caption { margin: .65rem 0 0; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .6rem; margin-top: .45rem; }
.gallery__thumb { border: 2px solid transparent; background: var(--soft); padding: 0; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.gallery__thumb.is-active { border-color: var(--ink); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-story { padding-block: clamp(3.5rem, 7vw, 6rem); }
.product-story p:last-child { color: var(--muted); font-size: 1.2rem; }
.product-demo { padding-bottom: clamp(3.5rem, 7vw, 6rem); display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.product-demo h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.product-demo p:not(.section-label) { color: var(--muted); }
.product-demo video { display: block; width: min(100%, 24rem); aspect-ratio: 9 / 16; object-fit: cover; justify-self: center; background: var(--ink); }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.detail-grid article { background: var(--white); padding: clamp(1.5rem, 4vw, 3rem); }
.detail-grid h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
ul { padding-left: 1.2rem; }
li { margin-bottom: .55rem; }
.limitation { padding: 1rem; border-left: 3px solid var(--ink); background: var(--paper); font-size: .92rem; }
.support-callout { margin-block: clamp(3.5rem, 7vw, 6rem); border-block: 1px solid var(--ink); padding-block: clamp(2rem, 4vw, 3rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.support-callout h2 { max-width: 19ch; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.support-callout p:not(.section-label) { color: var(--muted); margin-bottom: 0; }
.final-cta { border-top: 1px solid var(--line); padding-block: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0; }
.support-finder { margin-bottom: clamp(4rem, 8vw, 7rem); }
.support-search { max-width: 48rem; }
.support-search label { display: block; margin-bottom: .8rem; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 650; letter-spacing: -.025em; }
.support-search input { width: 100%; min-height: 58px; padding: .85rem 1rem; color: var(--ink); background: var(--white); border: 1px solid var(--ink); border-radius: 0; font-size: 1rem; }
.support-search p { margin-top: .7rem; color: var(--muted); font-size: .85rem; }
.support-results { margin-top: 2.5rem; }
.support-results__status { color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.support-list { border-top: 1px solid var(--ink); }
.support-row { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.support-row span:first-child { display: flex; flex-direction: column; }
.support-row small { color: var(--muted); font-size: .72rem; letter-spacing: .1em; }
.support-row strong { font-size: 1.25rem; }
.support-row:hover { padding-left: .75rem; }
.support-browse { margin-top: 2.5rem; border-block: 1px solid var(--ink); }
.support-browse summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; cursor: pointer; font-weight: 700; list-style: none; }
.support-browse summary::-webkit-details-marker { display: none; }
.support-browse summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; }
.support-browse[open] summary::after { content: "−"; }
.support-browse summary span { margin-left: auto; color: var(--muted); font-size: .8rem; font-weight: 600; }
.support-browse .support-list { border-top-color: var(--line); }
.support-contact { border-block: 1px solid var(--ink); padding-block: clamp(2.5rem, 5vw, 4rem); margin-bottom: clamp(5rem, 9vw, 8rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.support-contact h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.support-contact p:not(.section-label), .support-contact__actions p { color: var(--muted); }
.support-contact__actions { display: grid; gap: 1rem; justify-items: start; }
.docs-layout { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: clamp(2rem, 7vw, 7rem); padding-bottom: 6rem; }
.docs-summary { align-self: start; position: sticky; top: 110px; }
.docs-summary img { aspect-ratio: 4 / 4.7; object-fit: cover; margin-bottom: 2rem; }
.docs-summary h2 { font-size: 1.3rem; }
.docs-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 2.8rem; }
.docs-content h2:first-of-type { margin-top: 0; }
.steps { padding: 0; list-style: none; counter-reset: steps; }
.steps li { counter-increment: steps; display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.steps li::before { content: counter(steps, decimal-leading-zero); color: var(--muted); font-size: .8rem; font-weight: 750; }
.warning { background: #fff3cf; border: 1px solid #e1b936; padding: 1.2rem; }
.docs-help { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.document-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.document-actions > span { color: var(--muted); font-size: .82rem; max-width: 22rem; }
.scale-note { margin-top: 1.5rem; border: 1px solid #b88400; background: #fff3cf; padding: 1rem 1.2rem; display: grid; gap: .2rem; }
.scale-note span { font-size: .9rem; }
.prose p { color: var(--muted); }
.prose { padding-bottom: 8rem; }
.prose h2 { font-size: 1.8rem; margin-top: 3rem; }
.site-footer { background: var(--ink); color: var(--white); padding: 4rem max(1rem, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 3rem; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, auto); gap: .7rem 2rem; }
.site-footer a { text-decoration: none; }
.site-footer .legal { grid-column: 1 / -1; color: #aeb2b7; font-size: .75rem; max-width: 50rem; border-top: 1px solid #34363a; padding-top: 1.5rem; }
.wordmark--footer { display: inline-block; margin-bottom: .6rem; }
.brand-statement { border-top: 1px solid var(--ink); padding-block: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.brand-statement h2 { max-width: 12ch; }
.brand-statement > div:last-child > p { color: #383b3f; font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.5; }
.brand-statement small { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: 0; }
  .home-hero__image img { height: clamp(360px, 42svh, 480px); }
  .product-grid--all { grid-template-columns: repeat(2, 1fr); }
  .product-hero { grid-template-columns: 1fr; }
  .product-hero__content { position: static; }
  .gallery__main { height: auto; aspect-ratio: 4 / 5; }
}
@media (max-width: 680px) {
  .site-header { height: 68px; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--ink); padding: 1.2rem; flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .65rem 0; font-size: 1.1rem; }
  .home-hero { padding-top: 3rem; }
  .home-hero__image img { height: clamp(260px, 36svh, 340px); }
  .product-grid, .product-grid--all, .detail-grid, .docs-layout, .support-contact, .brand-statement, .product-demo { grid-template-columns: 1fr; }
  .section-heading, .support-callout, .final-cta { align-items: flex-start; flex-direction: column; }
  .docs-summary { position: static; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer .legal { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
@media print {
  @page { margin: .6in; }
  body { background: #fff; color: #000; font-size: 10.5pt; line-height: 1.45; }
  .site-header, .site-footer, .final-cta, .docs-help, .document-actions, .scale-note { display: none !important; }
  .shell, .shell--narrow { width: 100%; max-width: none; }
  .page-intro { padding: 0 0 .3in; border-bottom: 1px solid #777; }
  .page-intro h1 { font-size: 24pt; max-width: none; }
  .page-intro .lede { font-size: 11pt; }
  .docs-layout { display: grid; grid-template-columns: 1fr 2fr; gap: .35in; padding: .25in 0 0; }
  .docs-summary { position: static; }
  .docs-summary img { max-height: 3in; width: auto; }
  .docs-content h2 { font-size: 15pt; margin-top: .22in; break-after: avoid; }
  .steps li { break-inside: avoid; padding: .08in 0; }
  .warning, .limitation { break-inside: avoid; }
  a { text-decoration: none; }
}
